From 10f6ad0c6416ee7b84427b30a3068fec2005e6aa Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Wed, 24 Mar 2021 16:18:02 -0700 Subject: [PATCH 01/18] Change the accessbility to virtual for Resource.Id --- .../Azure.ResourceManager.Core/src/Resources/Resource.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/Resource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/Resource.cs index 86a35ac05cf7..a8638d1c689b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/Resource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/Resource.cs @@ -14,7 +14,7 @@ public abstract class Resource : IEquatable, IEquatable, IComp /// /// Gets or sets the resource identifier. /// - public abstract ResourceIdentifier Id { get; protected set; } + public virtual ResourceIdentifier Id { get; protected set; } /// /// Gets the name. From 8d3870095bff51de27db7ac2c990ee2c4f76ab66 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Thu, 6 May 2021 11:33:12 -0700 Subject: [PATCH 02/18] Merge ResourceGroup model in Resources with Core ResourceGroupData --- .../src/{ => Generated}/ApiVersions.cs | 6 +- .../src/{ => Generated}/ApiVersionsBase.cs | 0 .../src/{ => Generated}/ArmClient.cs | 4 +- .../src/{ => Generated}/ArmClientOptions.cs | 7 +- .../src/{ => Generated}/ArmOperation.cs | 0 .../src/{ => Generated}/ArmResponse.cs | 0 .../src/{ => Generated}/ArmVoidOperation.cs | 0 .../src/{ => Generated}/ContainerBase.cs | 0 .../ExtensionResourceContainer.cs | 0 .../ExtensionResourceOperationsBase.cs | 0 .../src/{ => Generated}/GenericResource.cs | 0 .../GenericResourceOperations.cs | 0 .../src/{ => Generated}/IDeletableResource.cs | 0 .../src/{ => Generated}/ITaggableResource.cs | 0 .../ExportTemplateRequest.Serialization.cs | 36 + .../Generated/Models/ExportTemplateRequest.cs | 27 + .../Models/ResourceGroupData.Serialization.cs | 110 +++ .../src/Generated/Models/ResourceGroupData.cs | 48 ++ .../ResourceGroupListResult.Serialization.cs | 46 ++ .../Models/ResourceGroupListResult.cs | 36 + .../ResourceGroupPatchable.Serialization.cs | 47 ++ .../Models/ResourceGroupPatchable.cs | 31 + .../ResourceGroupProperties.Serialization.cs | 35 + .../Models/ResourceGroupProperties.cs | 28 + .../src/{ => Generated}/OperationsBase.cs | 0 .../src/{ => Generated}/PropertyWrapper.cs | 5 - .../{ => Generated}/ResourceContainerBase.cs | 0 .../src/{ => Generated}/ResourceGroup.cs | 2 +- .../{ => Generated}/ResourceGroupContainer.cs | 123 ++-- .../ResourceGroupOperations.cs | 91 ++- .../Generated/ResourceGroupsRestOperations.cs | 645 ++++++++++++++++++ .../{ => Generated}/ResourceListOperations.cs | 7 +- .../{ => Generated}/ResourceOperationsBase.cs | 0 .../src/{ => Generated}/TenantOperations.cs | 0 .../src/Placeholder/ResourceGroupData.cs | 64 -- 35 files changed, 1220 insertions(+), 178 deletions(-) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ApiVersions.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ApiVersionsBase.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ArmClient.cs (99%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ArmClientOptions.cs (98%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ArmOperation.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ArmResponse.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ArmVoidOperation.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ContainerBase.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ExtensionResourceContainer.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ExtensionResourceOperationsBase.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/GenericResource.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/GenericResourceOperations.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/IDeletableResource.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ITaggableResource.cs (100%) create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ExportTemplateRequest.Serialization.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ExportTemplateRequest.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupData.Serialization.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupData.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupListResult.Serialization.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupListResult.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupPatchable.Serialization.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupPatchable.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupProperties.Serialization.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupProperties.cs rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/OperationsBase.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/PropertyWrapper.cs (85%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ResourceContainerBase.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ResourceGroup.cs (99%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ResourceGroupContainer.cs (75%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ResourceGroupOperations.cs (88%) create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsRestOperations.cs rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ResourceListOperations.cs (99%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/ResourceOperationsBase.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{ => Generated}/TenantOperations.cs (100%) delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/ResourceGroupData.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersions.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ApiVersions.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersions.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ApiVersions.cs index cab1678202a3..a624928274ce 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersions.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ApiVersions.cs @@ -3,13 +3,13 @@ using System; using System.Collections.Generic; -using Azure.ResourceManager.Resources; -using System.Reflection; using System.Linq; +using System.Reflection; using System.Runtime.CompilerServices; -using System.Threading.Tasks; using System.Threading; +using System.Threading.Tasks; using Azure.Core; +using Azure.ResourceManager.Resources; using Azure.ResourceManager.Resources.Models; namespace Azure.ResourceManager.Core diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersionsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ApiVersionsBase.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersionsBase.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ApiVersionsBase.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmClient.cs similarity index 99% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmClient.cs index 6f8568f20475..a3b96a9b8b38 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmClient.cs @@ -86,13 +86,13 @@ private ArmClient( TokenCredential credential, ArmClientOptions options) { - Pipeline = ManagementPipelineBuilder.Build(credential, baseUri, options); Credential = credential; - BaseUri = baseUri; + BaseUri = baseUri == null ? new Uri(DefaultUri) : baseUri; if (credential is null) throw new ArgumentNullException(nameof(credential)); ClientOptions = options?.Clone() ?? new ArmClientOptions(); + Pipeline = ManagementPipelineBuilder.Build(credential, baseUri, options); DefaultSubscription = string.IsNullOrWhiteSpace(defaultSubscriptionId) ? GetDefaultSubscription() : GetSubscriptions().TryGet(defaultSubscriptionId); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClientOptions.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmClientOptions.cs similarity index 98% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClientOptions.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmClientOptions.cs index 76d72ad712a1..aff110dd205d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClientOptions.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmClientOptions.cs @@ -1,15 +1,12 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -using Azure.Core; -using Azure.Core.Pipeline; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.ComponentModel; -using System.Reflection; -using System.Linq; -using System.Runtime.CompilerServices; +using Azure.Core; +using Azure.Core.Pipeline; namespace Azure.ResourceManager.Core { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmOperation.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmOperation.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmOperation.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmResponse.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmResponse.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmResponse.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmResponse.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmVoidOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmVoidOperation.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmVoidOperation.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmVoidOperation.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ContainerBase.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ContainerBase.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ExtensionResourceContainer.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceContainer.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ExtensionResourceContainer.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ExtensionResourceOperationsBase.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ExtensionResourceOperationsBase.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResource.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResource.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResource.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceOperations.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceOperations.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/IDeletableResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/IDeletableResource.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/IDeletableResource.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/IDeletableResource.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ITaggableResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ITaggableResource.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ITaggableResource.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ITaggableResource.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ExportTemplateRequest.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ExportTemplateRequest.Serialization.cs new file mode 100644 index 000000000000..3961ad83ec58 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ExportTemplateRequest.Serialization.cs @@ -0,0 +1,36 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + public partial class ExportTemplateRequest : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsCollectionDefined(Resources)) + { + writer.WritePropertyName("resources"); + writer.WriteStartArray(); + foreach (var item in Resources) + { + writer.WriteStringValue(item); + } + writer.WriteEndArray(); + } + if (Optional.IsDefined(Options)) + { + writer.WritePropertyName("options"); + writer.WriteStringValue(Options); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ExportTemplateRequest.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ExportTemplateRequest.cs new file mode 100644 index 000000000000..15cffd141328 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ExportTemplateRequest.cs @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + /// Export resource group template request parameters. + public partial class ExportTemplateRequest + { + /// Initializes a new instance of ExportTemplateRequest. + public ExportTemplateRequest() + { + Resources = new ChangeTrackingList(); + } + + /// The IDs of the resources to filter the export by. To export all resources, supply an array with single entry '*'. + public IList Resources { get; } + /// The export template options. A CSV-formatted list containing zero or more of the following: 'IncludeParameterDefaultValue', 'IncludeComments', 'SkipResourceNameParameterization', 'SkipAllParameterization'. + public string Options { get; set; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupData.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupData.Serialization.cs new file mode 100644 index 000000000000..3d9123b6618b --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupData.Serialization.cs @@ -0,0 +1,110 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + public partial class ResourceGroupData : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Properties)) + { + writer.WritePropertyName("properties"); + writer.WriteObjectValue(Properties); + } + writer.WritePropertyName("location"); + writer.WriteStringValue(Location); + if (Optional.IsDefined(ManagedBy)) + { + writer.WritePropertyName("managedBy"); + writer.WriteStringValue(ManagedBy); + } + if (Optional.IsCollectionDefined(Tags)) + { + writer.WritePropertyName("tags"); + writer.WriteStartObject(); + foreach (var item in Tags) + { + writer.WritePropertyName(item.Key); + writer.WriteStringValue(item.Value); + } + writer.WriteEndObject(); + } + writer.WriteEndObject(); + } + + internal static ResourceGroupData DeserializeResourceGroup(JsonElement element) + { + Optional id = default; + Optional name = default; + Optional type = default; + Optional properties = default; + string location = default; + Optional managedBy = default; + Optional> tags = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("id")) + { + id = property.Value.GetString(); + continue; + } + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } + if (property.NameEquals("properties")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + properties = ResourceGroupProperties.DeserializeResourceGroupProperties(property.Value); + continue; + } + if (property.NameEquals("location")) + { + location = property.Value.GetString(); + continue; + } + if (property.NameEquals("managedBy")) + { + managedBy = property.Value.GetString(); + continue; + } + if (property.NameEquals("tags")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + Dictionary dictionary = new Dictionary(); + foreach (var property0 in property.Value.EnumerateObject()) + { + dictionary.Add(property0.Name, property0.Value.GetString()); + } + tags = dictionary; + continue; + } + } + return new ResourceGroupData(id.Value, name.Value, type.Value, properties.Value, location, managedBy.Value, Optional.ToDictionary(tags)); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupData.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupData.cs new file mode 100644 index 000000000000..eda51aa430d4 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupData.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + /// A class representing the ResourceGroup data model. + public partial class ResourceGroupData : TrackedResource + { + /// Initializes a new instance of ResourceGroupData. + /// The location of the resource group. It cannot be changed after the resource group has been created. It must be one of the supported Azure locations. + /// is null. + public ResourceGroupData(string location) : base(location) + { + if (location == null) + { + throw new ArgumentNullException(nameof(location)); + } + + Tags = new Dictionary(StringComparer.InvariantCultureIgnoreCase); + } + + /// Initializes a new instance of ResourceGroupData. + /// The ID of the resource group. + /// The name of the resource group. + /// The type of the resource group. + /// The resource group properties. + /// The location of the resource group. It cannot be changed after the resource group has been created. It must be one of the supported Azure locations. + /// The ID of the resource that manages this resource group. + /// The tags attached to the resource group. + internal ResourceGroupData(string id, string name, string type, ResourceGroupProperties properties, string location, string managedBy, IDictionary tags) + : base(id, name, type, tags, location) + { + Properties = properties; + ManagedBy = managedBy; + } + + /// The resource group properties. + public ResourceGroupProperties Properties { get; set; } + /// The ID of the resource that manages this resource group. + public string ManagedBy { get; set; } + /// The tags attached to the resource group. + public override IDictionary Tags { get; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupListResult.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupListResult.Serialization.cs new file mode 100644 index 000000000000..443e942e0d9b --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupListResult.Serialization.cs @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + internal partial class ResourceGroupListResult + { + internal static ResourceGroupListResult DeserializeResourceGroupListResult(JsonElement element) + { + Optional> value = default; + Optional nextLink = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("value")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(ResourceGroupData.DeserializeResourceGroup(item)); + } + value = array; + continue; + } + if (property.NameEquals("nextLink")) + { + nextLink = property.Value.GetString(); + continue; + } + } + return new ResourceGroupListResult(Optional.ToList(value), nextLink.Value); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupListResult.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupListResult.cs new file mode 100644 index 000000000000..f075a9263cf7 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupListResult.cs @@ -0,0 +1,36 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + /// List of resource groups. + internal partial class ResourceGroupListResult + { + /// Initializes a new instance of ResourceGroupListResult. + internal ResourceGroupListResult() + { + Value = new ChangeTrackingList(); + } + + /// Initializes a new instance of ResourceGroupListResult. + /// An array of resource groups. + /// The URL to use for getting the next set of results. + internal ResourceGroupListResult(IReadOnlyList value, string nextLink) + { + Value = value; + NextLink = nextLink; + } + + /// An array of resource groups. + public IReadOnlyList Value { get; } + /// The URL to use for getting the next set of results. + public string NextLink { get; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupPatchable.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupPatchable.Serialization.cs new file mode 100644 index 000000000000..3142c5a05361 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupPatchable.Serialization.cs @@ -0,0 +1,47 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + public partial class ResourceGroupPatchable : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Name)) + { + writer.WritePropertyName("name"); + writer.WriteStringValue(Name); + } + if (Optional.IsDefined(Properties)) + { + writer.WritePropertyName("properties"); + writer.WriteObjectValue(Properties); + } + if (Optional.IsDefined(ManagedBy)) + { + writer.WritePropertyName("managedBy"); + writer.WriteStringValue(ManagedBy); + } + if (Optional.IsCollectionDefined(Tags)) + { + writer.WritePropertyName("tags"); + writer.WriteStartObject(); + foreach (var item in Tags) + { + writer.WritePropertyName(item.Key); + writer.WriteStringValue(item.Value); + } + writer.WriteEndObject(); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupPatchable.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupPatchable.cs new file mode 100644 index 000000000000..542ed91d788f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupPatchable.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + /// Resource group information. + public partial class ResourceGroupPatchable + { + /// Initializes a new instance of ResourceGroupPatchable. + public ResourceGroupPatchable() + { + Tags = new ChangeTrackingDictionary(); + } + + /// The name of the resource group. + public string Name { get; set; } + /// The resource group properties. + public ResourceGroupProperties Properties { get; set; } + /// The ID of the resource that manages this resource group. + public string ManagedBy { get; set; } + /// The tags attached to the resource group. + public IDictionary Tags { get; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupProperties.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupProperties.Serialization.cs new file mode 100644 index 000000000000..39fdebfef59c --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupProperties.Serialization.cs @@ -0,0 +1,35 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + public partial class ResourceGroupProperties : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WriteEndObject(); + } + + internal static ResourceGroupProperties DeserializeResourceGroupProperties(JsonElement element) + { + Optional provisioningState = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("provisioningState")) + { + provisioningState = property.Value.GetString(); + continue; + } + } + return new ResourceGroupProperties(provisioningState.Value); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupProperties.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupProperties.cs new file mode 100644 index 000000000000..6c788f3d9589 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupProperties.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.ResourceManager.Core +{ + /// The resource group properties. + public partial class ResourceGroupProperties + { + /// Initializes a new instance of ResourceGroupProperties. + public ResourceGroupProperties() + { + } + + /// Initializes a new instance of ResourceGroupProperties. + /// The provisioning state. + internal ResourceGroupProperties(string provisioningState) + { + ProvisioningState = provisioningState; + } + + /// The provisioning state. + public string ProvisioningState { get; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/OperationsBase.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/OperationsBase.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/PropertyWrapper.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/PropertyWrapper.cs similarity index 85% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/PropertyWrapper.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/PropertyWrapper.cs index a4d805ed5495..a0c908fdb7ac 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/PropertyWrapper.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/PropertyWrapper.cs @@ -2,12 +2,7 @@ // Licensed under the MIT License. using System; -using System.Collections.Generic; -using Azure.ResourceManager.Resources; using System.Reflection; -using System.Linq; -using System.Runtime.CompilerServices; -using System.Threading.Tasks; namespace Azure.ResourceManager.Core { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceContainerBase.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceContainerBase.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroup.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroup.cs similarity index 99% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroup.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroup.cs index 0c6d131cc687..5804ec1cb936 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroup.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroup.cs @@ -17,7 +17,7 @@ public class ResourceGroup : ResourceGroupOperations protected ResourceGroup() { } - + /// /// Initializes a new instance of the class. /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs similarity index 75% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs index f1b3f4f968d8..90f1bca8cf89 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs @@ -3,10 +3,10 @@ using System; using System.Collections.Generic; +using System.Linq; using System.Threading; using System.Threading.Tasks; using Azure.Core; -using Azure.ResourceManager.Resources; namespace Azure.ResourceManager.Core { @@ -34,18 +34,14 @@ internal ResourceGroupContainer(SubscriptionOperations subscription) /// protected override ResourceType ValidResourceType => SubscriptionOperations.ResourceType; - private ResourceGroupsOperations Operations + private ResourceGroupsRestOperations RestClient { get { string subscriptionId; if (Id is null || !Id.TryGetSubscriptionId(out subscriptionId)) subscriptionId = Guid.NewGuid().ToString(); - return new ResourcesManagementClient( - BaseUri, - subscriptionId, - Credential, - ClientOptions.Convert()).ResourceGroups; + return new ResourceGroupsRestOperations(Diagnostics, Pipeline, subscriptionId, BaseUri); } } @@ -62,11 +58,11 @@ public ResourceGroupBuilder Construct(LocationData location, IDictionary @@ -90,10 +86,10 @@ public ArmResponse CreateOrUpdate(string name, ResourceGroupData try { - var response = Operations.CreateOrUpdate(name, resourceDetails, cancellationToken); - return new PhArmResponse( + var response = RestClient.CreateOrUpdate(name, resourceDetails, cancellationToken); + return new PhArmResponse( response, - g => new ResourceGroup(Parent, new ResourceGroupData(g))); + g => new ResourceGroup(Parent, g)); } catch (Exception e) { @@ -123,10 +119,10 @@ public virtual async Task> CreateOrUpdateAsync(string try { - var response = await Operations.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).ConfigureAwait(false); - return new PhArmResponse( + var response = await RestClient.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).ConfigureAwait(false); + return new PhArmResponse( response, - g => new ResourceGroup(Parent, new ResourceGroupData(g))); + g => new ResourceGroup(Parent, g)); } catch (Exception e) { @@ -159,9 +155,9 @@ public ArmOperation StartCreateOrUpdate(string name, ResourceGrou try { - return new PhArmOperation( - Operations.CreateOrUpdate(name, resourceDetails, cancellationToken), - g => new ResourceGroup(Parent, new ResourceGroupData(g))); + return new PhArmOperation( + RestClient.CreateOrUpdate(name, resourceDetails, cancellationToken), + g => new ResourceGroup(Parent, g)); } catch (Exception e) { @@ -194,9 +190,9 @@ public virtual async Task> StartCreateOrUpdateAsync( try { - return new PhArmOperation( - await Operations.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).ConfigureAwait(false), - g => new ResourceGroup(Parent, new ResourceGroupData(g))); + return new PhArmOperation( + await RestClient.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).ConfigureAwait(false), + g => new ResourceGroup(Parent, g)); } catch (Exception e) { @@ -213,21 +209,37 @@ await Operations.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).C [ForwardsClientCalls] public virtual Pageable List(CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("ResourceGroupContainer.List"); - scope.Start(); - - try + Page FirstPageFunc(int? pageSizeHint) { - var results = Operations.List(null, null, cancellationToken); - return new PhWrappingPageable( - results, - s => new ResourceGroup(Parent, new ResourceGroupData(s))); + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.List"); + scope.Start(); + try + { + var response = RestClient.List(null, null, cancellationToken); + return Page.FromValues(response.Value.Value.Select(data => new ResourceGroup(Parent, data)), response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } - catch (Exception e) + Page NextPageFunc(string nextLink, int? pageSizeHint) { - scope.Failed(e); - throw; + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.List"); + scope.Start(); + try + { + var response = RestClient.ListNextPage(nextLink, null, null, cancellationToken); + return Page.FromValues(response.Value.Value.Select(data => new ResourceGroup(Parent, data)), response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } + return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); } /// @@ -238,20 +250,37 @@ public virtual Pageable List(CancellationToken cancellationToken [ForwardsClientCalls] public virtual AsyncPageable ListAsync(CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("ResourceGroupContainer.List"); - scope.Start(); - - try + async Task> FirstPageFunc(int? pageSizeHint) { - return new PhWrappingAsyncPageable( - Operations.ListAsync(null, null, cancellationToken), - s => new ResourceGroup(Parent, new ResourceGroupData(s))); + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.List"); + scope.Start(); + try + { + var response = await RestClient.ListAsync(null, null, cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value.Select(data => new ResourceGroup(Parent, data)), response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } - catch (Exception e) + async Task> NextPageFunc(string nextLink, int? pageSizeHint) { - scope.Failed(e); - throw; + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.List"); + scope.Start(); + try + { + var response = await RestClient.ListNextPageAsync(nextLink, null, null, cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value.Select(data => new ResourceGroup(Parent, data)), response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } + return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); } /// @@ -262,9 +291,9 @@ public override ArmResponse Get(string resourceGroupName, Cancell try { - return new PhArmResponse(Operations.Get(resourceGroupName, cancellationToken), g => + return new PhArmResponse(RestClient.Get(resourceGroupName, cancellationToken), g => { - return new ResourceGroup(Parent, new ResourceGroupData(g)); + return new ResourceGroup(Parent, g); }); } catch (Exception e) @@ -282,12 +311,12 @@ public override async Task> GetAsync(string resourceG try { - var result = await Operations.GetAsync(resourceGroupName, cancellationToken).ConfigureAwait(false); - return new PhArmResponse( + var result = await RestClient.GetAsync(resourceGroupName, cancellationToken).ConfigureAwait(false); + return new PhArmResponse( result, g => { - return new ResourceGroup(Parent, new ResourceGroupData(g)); + return new ResourceGroup(Parent, g); }); } catch (Exception e) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs similarity index 88% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs index b0911df20d78..5cded49d5b19 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs @@ -6,9 +6,6 @@ using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; -using Azure.Core.Pipeline; -using Azure.ResourceManager.Resources; -using Azure.ResourceManager.Resources.Models; namespace Azure.ResourceManager.Core { @@ -70,11 +67,11 @@ protected ResourceGroupOperations(ResourceOperationsBase options, ResourceGroupR /// protected override ResourceType ValidResourceType => ResourceType; - private ResourceGroupsOperations Operations => new ResourcesManagementClient( - BaseUri, + private ResourceGroupsRestOperations RestClient => new ResourceGroupsRestOperations( + Diagnostics, + Pipeline, Id.SubscriptionId, - Credential, - ClientOptions.Convert()).ResourceGroups; + BaseUri); /// /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. @@ -88,7 +85,7 @@ public virtual ArmResponse Delete(CancellationToken cancellationToken try { - return new ArmResponse(Operations.StartDelete(Id.Name, cancellationToken).WaitForCompletion(cancellationToken)); + return new ArmResponse(RestClient.Delete(Id.Name, cancellationToken)); } catch (Exception e) { @@ -109,7 +106,7 @@ public virtual async Task> DeleteAsync(CancellationToken c try { - return new ArmResponse(await Operations.StartDelete(Id.Name, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false)); + return new ArmResponse(await RestClient.DeleteAsync(Id.Name, cancellationToken).ConfigureAwait(false)); } catch (Exception e) { @@ -133,7 +130,7 @@ public virtual ArmOperation StartDelete(CancellationToken cancellation try { - return new ArmVoidOperation(Operations.StartDelete(Id.Name, cancellationToken)); + return new ArmVoidOperation(RestClient.Delete(Id.Name, cancellationToken)); } catch (Exception e) { @@ -157,7 +154,7 @@ public virtual async Task> StartDeleteAsync(CancellationT try { - return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.Name, cancellationToken).ConfigureAwait(false)); + return new ArmVoidOperation(await RestClient.DeleteAsync(Id.Name, cancellationToken).ConfigureAwait(false)); } catch (Exception e) { @@ -174,9 +171,9 @@ public override ArmResponse Get(CancellationToken cancellationTok try { - return new PhArmResponse(Operations.Get(Id.Name, cancellationToken), g => + return new PhArmResponse(RestClient.Get(Id.Name, cancellationToken), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -194,11 +191,11 @@ public override async Task> GetAsync(CancellationToke try { - return new PhArmResponse( - await Operations.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false), + return new PhArmResponse( + await RestClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -223,9 +220,9 @@ public virtual ArmResponse AddTag(string key, string value, Cance var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags[key] = value; - return new PhArmResponse(Operations.Update(Id.Name, patch, cancellationToken), g => + return new PhArmResponse(RestClient.Update(Id.Name, patch, cancellationToken), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -250,10 +247,10 @@ public virtual async Task> AddTagAsync(string key, st var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags[key] = value; - return new PhArmResponse( - await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), g => + return new PhArmResponse( + await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -278,9 +275,9 @@ public virtual ArmOperation StartAddTag(string key, string value, var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags[key] = value; - return new PhArmOperation(Operations.Update(Id.Name, patch, cancellationToken), g => + return new PhArmOperation(RestClient.Update(Id.Name, patch, cancellationToken), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -305,11 +302,11 @@ public virtual async Task> StartAddTagAsync(string k var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags[key] = value; - return new PhArmOperation( - await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), + return new PhArmOperation( + await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -363,7 +360,7 @@ public virtual ArmResponse CreateResource Model cannot be null. public virtual Task> CreateResourceAsync(string name, TResource model, CancellationToken cancellationToken = default) where TResource : TrackedResource - where TOperations : ResourceOperationsBase + where TOperations : ResourceOperationsBase where TContainer : ResourceContainerBase where TIdentifier : SubscriptionResourceIdentifier { @@ -393,9 +390,9 @@ public virtual ArmResponse SetTags(IDictionary ta var resource = GetResource(cancellationToken); var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(tags); - return new PhArmResponse(Operations.Update(Id.Name, patch, cancellationToken), g => + return new PhArmResponse(RestClient.Update(Id.Name, patch, cancellationToken), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -419,11 +416,11 @@ public virtual async Task> SetTagsAsync(IDictionary( - await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), + return new PhArmResponse( + await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -447,9 +444,9 @@ public virtual ArmOperation StartSetTags(IDictionary(Operations.Update(Id.Name, patch, cancellationToken), g => + return new PhArmOperation(RestClient.Update(Id.Name, patch, cancellationToken), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -473,11 +470,11 @@ public virtual async Task> StartSetTagsAsync(IDictio ResourceGroup resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(tags); - return new PhArmOperation( - await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), + return new PhArmOperation( + await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -502,9 +499,9 @@ public virtual ArmResponse RemoveTag(string key, CancellationToke var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags.Remove(key); - return new PhArmResponse(Operations.Update(Id.Name, patch, cancellationToken), g => + return new PhArmResponse(RestClient.Update(Id.Name, patch, cancellationToken), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -529,11 +526,11 @@ public virtual async Task> RemoveTagAsync(string key, var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags.Remove(key); - return new PhArmResponse( - await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), + return new PhArmResponse( + await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -558,9 +555,9 @@ public virtual ArmOperation StartRemoveTag(string key, Cancellati var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags.Remove(key); - return new PhArmOperation(Operations.Update(Id.Name, patch, cancellationToken), g => + return new PhArmOperation(RestClient.Update(Id.Name, patch, cancellationToken), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) @@ -585,11 +582,11 @@ public virtual async Task> StartRemoveTagAsync(strin var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags.Remove(key); - return new PhArmOperation( - await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), + return new PhArmOperation( + await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), g => { - return new ResourceGroup(this, new ResourceGroupData(g)); + return new ResourceGroup(this, g); }); } catch (Exception e) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsRestOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsRestOperations.cs new file mode 100644 index 000000000000..aae5e5356d7c --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsRestOperations.cs @@ -0,0 +1,645 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.ResourceManager.Core +{ + internal partial class ResourceGroupsRestOperations + { + private string subscriptionId; + private Uri endpoint; + private ClientDiagnostics _clientDiagnostics; + private HttpPipeline _pipeline; + + /// Initializes a new instance of ResourceGroupsRestOperations. + /// The handler for diagnostic messaging in the client. + /// The HTTP pipeline for sending and receiving REST requests and responses. + /// The ID of the target subscription. + /// server parameter. + /// is null. + public ResourceGroupsRestOperations(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, string subscriptionId, Uri endpoint = null) + { + if (subscriptionId == null) + { + throw new ArgumentNullException(nameof(subscriptionId)); + } + endpoint ??= new Uri("https://management.azure.com"); + + this.subscriptionId = subscriptionId; + this.endpoint = endpoint; + _clientDiagnostics = clientDiagnostics; + _pipeline = pipeline; + } + + internal Azure.Core.HttpMessage CreateCheckExistenceRequest(string resourceGroupName) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Head; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/subscriptions/", false); + uri.AppendPath(subscriptionId, true); + uri.AppendPath("/resourcegroups/", false); + uri.AppendPath(resourceGroupName, true); + uri.AppendQuery("api-version", "2019-10-01", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Checks whether a resource group exists. + /// The name of the resource group to check. The name is case insensitive. + /// The cancellation token to use. + /// is null. + public async Task> CheckExistenceAsync(string resourceGroupName, CancellationToken cancellationToken = default) + { + if (resourceGroupName == null) + { + throw new ArgumentNullException(nameof(resourceGroupName)); + } + + using var message = CreateCheckExistenceRequest(resourceGroupName); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case int s when s >= 200 && s < 300: + { + bool value = true; + return Response.FromValue(value, message.Response); + } + case int s when s >= 400 && s < 500: + { + bool value = false; + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Checks whether a resource group exists. + /// The name of the resource group to check. The name is case insensitive. + /// The cancellation token to use. + /// is null. + public Response CheckExistence(string resourceGroupName, CancellationToken cancellationToken = default) + { + if (resourceGroupName == null) + { + throw new ArgumentNullException(nameof(resourceGroupName)); + } + + using var message = CreateCheckExistenceRequest(resourceGroupName); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case int s when s >= 200 && s < 300: + { + bool value = true; + return Response.FromValue(value, message.Response); + } + case int s when s >= 400 && s < 500: + { + bool value = false; + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal Azure.Core.HttpMessage CreateCreateOrUpdateRequest(string resourceGroupName, ResourceGroupData parameters) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Put; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/subscriptions/", false); + uri.AppendPath(subscriptionId, true); + uri.AppendPath("/resourcegroups/", false); + uri.AppendPath(resourceGroupName, true); + uri.AppendQuery("api-version", "2019-10-01", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + request.Headers.Add("Content-Type", "application/json"); + var content = new Utf8JsonRequestContent(); + content.JsonWriter.WriteObjectValue(parameters); + request.Content = content; + return message; + } + + /// Creates or updates a resource group. + /// The name of the resource group to create or update. Can include alphanumeric, underscore, parentheses, hyphen, period (except at end), and Unicode characters that match the allowed characters. + /// Parameters supplied to the create or update a resource group. + /// The cancellation token to use. + /// or is null. + public async Task> CreateOrUpdateAsync(string resourceGroupName, ResourceGroupData parameters, CancellationToken cancellationToken = default) + { + if (resourceGroupName == null) + { + throw new ArgumentNullException(nameof(resourceGroupName)); + } + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var message = CreateCreateOrUpdateRequest(resourceGroupName, parameters); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + case 201: + { + ResourceGroupData value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = ResourceGroupData.DeserializeResourceGroup(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Creates or updates a resource group. + /// The name of the resource group to create or update. Can include alphanumeric, underscore, parentheses, hyphen, period (except at end), and Unicode characters that match the allowed characters. + /// Parameters supplied to the create or update a resource group. + /// The cancellation token to use. + /// or is null. + public Response CreateOrUpdate(string resourceGroupName, ResourceGroupData parameters, CancellationToken cancellationToken = default) + { + if (resourceGroupName == null) + { + throw new ArgumentNullException(nameof(resourceGroupName)); + } + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var message = CreateCreateOrUpdateRequest(resourceGroupName, parameters); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + case 201: + { + ResourceGroupData value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = ResourceGroupData.DeserializeResourceGroup(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal Azure.Core.HttpMessage CreateDeleteRequest(string resourceGroupName) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Delete; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/subscriptions/", false); + uri.AppendPath(subscriptionId, true); + uri.AppendPath("/resourcegroups/", false); + uri.AppendPath(resourceGroupName, true); + uri.AppendQuery("api-version", "2019-10-01", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. + /// The name of the resource group to delete. The name is case insensitive. + /// The cancellation token to use. + /// is null. + public async Task DeleteAsync(string resourceGroupName, CancellationToken cancellationToken = default) + { + if (resourceGroupName == null) + { + throw new ArgumentNullException(nameof(resourceGroupName)); + } + + using var message = CreateDeleteRequest(resourceGroupName); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + case 202: + return message.Response; + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. + /// The name of the resource group to delete. The name is case insensitive. + /// The cancellation token to use. + /// is null. + public Response Delete(string resourceGroupName, CancellationToken cancellationToken = default) + { + if (resourceGroupName == null) + { + throw new ArgumentNullException(nameof(resourceGroupName)); + } + + using var message = CreateDeleteRequest(resourceGroupName); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + case 202: + return message.Response; + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal Azure.Core.HttpMessage CreateGetRequest(string resourceGroupName) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/subscriptions/", false); + uri.AppendPath(subscriptionId, true); + uri.AppendPath("/resourcegroups/", false); + uri.AppendPath(resourceGroupName, true); + uri.AppendQuery("api-version", "2019-10-01", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Gets a resource group. + /// The name of the resource group to get. The name is case insensitive. + /// The cancellation token to use. + /// is null. + public async Task> GetAsync(string resourceGroupName, CancellationToken cancellationToken = default) + { + if (resourceGroupName == null) + { + throw new ArgumentNullException(nameof(resourceGroupName)); + } + + using var message = CreateGetRequest(resourceGroupName); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + ResourceGroupData value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = ResourceGroupData.DeserializeResourceGroup(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Gets a resource group. + /// The name of the resource group to get. The name is case insensitive. + /// The cancellation token to use. + /// is null. + public Response Get(string resourceGroupName, CancellationToken cancellationToken = default) + { + if (resourceGroupName == null) + { + throw new ArgumentNullException(nameof(resourceGroupName)); + } + + using var message = CreateGetRequest(resourceGroupName); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + ResourceGroupData value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = ResourceGroupData.DeserializeResourceGroup(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal Azure.Core.HttpMessage CreateUpdateRequest(string resourceGroupName, ResourceGroupPatchable parameters) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Patch; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/subscriptions/", false); + uri.AppendPath(subscriptionId, true); + uri.AppendPath("/resourcegroups/", false); + uri.AppendPath(resourceGroupName, true); + uri.AppendQuery("api-version", "2019-10-01", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + request.Headers.Add("Content-Type", "application/json"); + var content = new Utf8JsonRequestContent(); + content.JsonWriter.WriteObjectValue(parameters); + request.Content = content; + return message; + } + + /// Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is the same as that for creating a resource group. If a field is unspecified, the current value is retained. + /// The name of the resource group to update. The name is case insensitive. + /// Parameters supplied to update a resource group. + /// The cancellation token to use. + /// or is null. + public async Task> UpdateAsync(string resourceGroupName, ResourceGroupPatchable parameters, CancellationToken cancellationToken = default) + { + if (resourceGroupName == null) + { + throw new ArgumentNullException(nameof(resourceGroupName)); + } + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var message = CreateUpdateRequest(resourceGroupName, parameters); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + // return resource group data + ResourceGroupData value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = ResourceGroupData.DeserializeResourceGroup(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is the same as that for creating a resource group. If a field is unspecified, the current value is retained. + /// The name of the resource group to update. The name is case insensitive. + /// Parameters supplied to update a resource group. + /// The cancellation token to use. + /// or is null. + public Response Update(string resourceGroupName, ResourceGroupPatchable parameters, CancellationToken cancellationToken = default) + { + if (resourceGroupName == null) + { + throw new ArgumentNullException(nameof(resourceGroupName)); + } + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var message = CreateUpdateRequest(resourceGroupName, parameters); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + ResourceGroupData value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = ResourceGroupData.DeserializeResourceGroup(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal Azure.Core.HttpMessage CreateExportTemplateRequest(string resourceGroupName, ExportTemplateRequest parameters) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Post; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/subscriptions/", false); + uri.AppendPath(subscriptionId, true); + uri.AppendPath("/resourcegroups/", false); + uri.AppendPath(resourceGroupName, true); + uri.AppendPath("/exportTemplate", false); + uri.AppendQuery("api-version", "2019-10-01", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + request.Headers.Add("Content-Type", "application/json"); + var content = new Utf8JsonRequestContent(); + content.JsonWriter.WriteObjectValue(parameters); + request.Content = content; + return message; + } + + /// Captures the specified resource group as a template. + /// The name of the resource group. The name is case insensitive. + /// Parameters for exporting the template. + /// The cancellation token to use. + /// or is null. + public async Task ExportTemplateAsync(string resourceGroupName, ExportTemplateRequest parameters, CancellationToken cancellationToken = default) + { + if (resourceGroupName == null) + { + throw new ArgumentNullException(nameof(resourceGroupName)); + } + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var message = CreateExportTemplateRequest(resourceGroupName, parameters); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + case 202: + return message.Response; + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Captures the specified resource group as a template. + /// The name of the resource group. The name is case insensitive. + /// Parameters for exporting the template. + /// The cancellation token to use. + /// or is null. + public Response ExportTemplate(string resourceGroupName, ExportTemplateRequest parameters, CancellationToken cancellationToken = default) + { + if (resourceGroupName == null) + { + throw new ArgumentNullException(nameof(resourceGroupName)); + } + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var message = CreateExportTemplateRequest(resourceGroupName, parameters); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + case 202: + return message.Response; + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal Azure.Core.HttpMessage CreateListRequest(string filter, int? top) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendPath("/subscriptions/", false); + uri.AppendPath(subscriptionId, true); + uri.AppendPath("/resourcegroups", false); + if (filter != null) + { + uri.AppendQuery("$filter", filter, true); + } + if (top != null) + { + uri.AppendQuery("$top", top.Value, true); + } + uri.AppendQuery("api-version", "2019-10-01", true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Gets all the resource groups for a subscription. + /// The filter to apply on the operation.<br><br>You can filter by tag names and values. For example, to filter for a tag name and value, use $filter=tagName eq 'tag1' and tagValue eq 'Value1'. + /// The number of results to return. If null is passed, returns all resource groups. + /// The cancellation token to use. + public async Task> ListAsync(string filter = null, int? top = null, CancellationToken cancellationToken = default) + { + using var message = CreateListRequest(filter, top); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + ResourceGroupListResult value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = ResourceGroupListResult.DeserializeResourceGroupListResult(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Gets all the resource groups for a subscription. + /// The filter to apply on the operation.<br><br>You can filter by tag names and values. For example, to filter for a tag name and value, use $filter=tagName eq 'tag1' and tagValue eq 'Value1'. + /// The number of results to return. If null is passed, returns all resource groups. + /// The cancellation token to use. + public Response List(string filter = null, int? top = null, CancellationToken cancellationToken = default) + { + using var message = CreateListRequest(filter, top); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + ResourceGroupListResult value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = ResourceGroupListResult.DeserializeResourceGroupListResult(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal Azure.Core.HttpMessage CreateListNextPageRequest(string nextLink, string filter, int? top) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.Reset(endpoint); + uri.AppendRawNextLink(nextLink, false); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Gets all the resource groups for a subscription. + /// The URL to the next page of results. + /// The filter to apply on the operation.<br><br>You can filter by tag names and values. For example, to filter for a tag name and value, use $filter=tagName eq 'tag1' and tagValue eq 'Value1'. + /// The number of results to return. If null is passed, returns all resource groups. + /// The cancellation token to use. + /// is null. + public async Task> ListNextPageAsync(string nextLink, string filter = null, int? top = null, CancellationToken cancellationToken = default) + { + if (nextLink == null) + { + throw new ArgumentNullException(nameof(nextLink)); + } + + using var message = CreateListNextPageRequest(nextLink, filter, top); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + ResourceGroupListResult value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = ResourceGroupListResult.DeserializeResourceGroupListResult(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Gets all the resource groups for a subscription. + /// The URL to the next page of results. + /// The filter to apply on the operation.<br><br>You can filter by tag names and values. For example, to filter for a tag name and value, use $filter=tagName eq 'tag1' and tagValue eq 'Value1'. + /// The number of results to return. If null is passed, returns all resource groups. + /// The cancellation token to use. + /// is null. + public Response ListNextPage(string nextLink, string filter = null, int? top = null, CancellationToken cancellationToken = default) + { + if (nextLink == null) + { + throw new ArgumentNullException(nameof(nextLink)); + } + + using var message = CreateListNextPageRequest(nextLink, filter, top); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + ResourceGroupListResult value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = ResourceGroupListResult.DeserializeResourceGroupListResult(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceListOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceListOperations.cs similarity index 99% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceListOperations.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceListOperations.cs index 8217e11ec8c1..de43837b378f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceListOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceListOperations.cs @@ -1,14 +1,13 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -using Azure.ResourceManager.Core.Adapters; -using Azure.ResourceManager.Core.Resources; -using Azure.ResourceManager.Resources; -using Azure.ResourceManager.Resources.Models; using System; using System.Globalization; using System.Reflection; using System.Threading; +using Azure.ResourceManager.Core.Resources; +using Azure.ResourceManager.Resources; +using Azure.ResourceManager.Resources.Models; namespace Azure.ResourceManager.Core { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceOperationsBase.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceOperationsBase.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/TenantOperations.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/TenantOperations.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/ResourceGroupData.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/ResourceGroupData.cs deleted file mode 100644 index db26673c18d7..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/ResourceGroupData.cs +++ /dev/null @@ -1,64 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Collections.Generic; -using Azure.ResourceManager.Core.Adapters; -using Azure.ResourceManager.Resources.Models; - -namespace Azure.ResourceManager.Core -{ - /// - /// A class representing the ResourceGroup data model. - /// - public class ResourceGroupData : TrackedResource - { - /// - /// Initializes a new instance of the class. - /// - /// The existing resource group model to copy from. - public ResourceGroupData(ResourceManager.Resources.Models.ResourceGroup rg) - : base(rg.Id, rg.Location, rg) - { - } - - /// - public override IDictionary Tags => Model.Tags; - - /// - public override string Name => Model.Name; - - /// - /// Gets or sets the resource group properties - /// - public ResourceGroupProperties Properties - { - get => Model.Properties; - set => Model.Properties = value; - } - - /// - /// Gets or sets who this resource group is managed by - /// - public string ManagedBy - { - get => Model.ManagedBy; - set => Model.ManagedBy = value; - } - - /// - /// Converts from a into the ResourceManager.Resources.Models.ResourceGroup. - /// - /// The tracked resource convert from. - public static implicit operator ResourceManager.Resources.Models.ResourceGroup(ResourceGroupData other) - { - other.Model.Tags.Clear(); - foreach (var tag in other.Tags) - { - other.Model.Tags.Add(tag); - } - - return other.Model; - } - } -} From 90a9cd4f4f6f3e7a59fc835b36f75ba98d990a95 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Thu, 6 May 2021 11:33:46 -0700 Subject: [PATCH 03/18] Add and update scenario tests --- .../tests/Scenario/HttpPipelineTests.cs | 9 +- .../Scenario/ResourceGroupContainerTests.cs | 19 ++- .../Scenario/ResourceGroupOperationsTests.cs | 145 +++++++++++++++++- 3 files changed, 154 insertions(+), 19 deletions(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/HttpPipelineTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/HttpPipelineTests.cs index c45f477b75ee..4f3e90336b4b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/HttpPipelineTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/HttpPipelineTests.cs @@ -1,10 +1,5 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using System.Threading.Tasks; using Azure.Core.TestFramework; -using Azure.Identity; using NUnit.Framework; namespace Azure.ResourceManager.Core.Tests.Scenario @@ -32,7 +27,7 @@ public void SetUp() public async Task ValidateHttpPipelines() { await _client.DefaultSubscription - .GetResourceGroups().Construct("westus") + .GetResourceGroups().Construct(LocationData.WestUS) .CreateOrUpdateAsync(_rgName); await foreach (var rg in _client.DefaultSubscription.GetResourceGroups().ListAsync()) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs index 53b1e65a230d..aff6ef6d39d4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using System.Threading.Tasks; using Azure.Core.TestFramework; using NUnit.Framework; @@ -22,11 +18,11 @@ public async Task List() _ = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testRg-")); _ = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testRg-")); int count = 0; - await foreach(var rg in Client.DefaultSubscription.GetResourceGroups().ListAsync()) + await foreach (var rg in Client.DefaultSubscription.GetResourceGroups().ListAsync()) { count++; } - Assert.Greater(count, 2); + Assert.GreaterOrEqual(count, 2); } [TestCase] @@ -53,9 +49,16 @@ public async Task StartCreate() public async Task Get() { string rgName = Recording.GenerateAssetName("testRg-"); - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); + ResourceGroup rg3 = await Client.DefaultSubscription.GetResourceGroups().GetAsync("azhang-test"); + /*ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); ResourceGroup rg2 = await Client.DefaultSubscription.GetResourceGroups().GetAsync(rgName); Assert.AreEqual(rg.Data.Name, rg2.Data.Name); + Assert.AreEqual(rg.Data.Id, rg2.Data.Id); + Assert.AreEqual(rg.Data.Type, rg2.Data.Type); + Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); + Assert.AreEqual(rg.Data.Location, rg2.Data.Location); + Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); + Assert.AreEqual(rg.Data.Tags, rg2.Data.Tags);*/ } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs index 379c2ff91826..da0feafcc419 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs @@ -1,8 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -using System; -using System.Threading; +using System.Collections.Generic; using System.Threading.Tasks; using Azure.Core.TestFramework; using NUnit.Framework; @@ -49,7 +48,145 @@ public void StartDeleteNonExistantRg() public async Task Get() { ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - await rg.GetAsync(); + ResourceGroup rg2 = await rg.GetAsync(); + Assert.AreEqual(rg.Data.Name, rg2.Data.Name); + Assert.AreEqual(rg.Data.Id, rg2.Data.Id); + Assert.AreEqual(rg.Data.Type, rg2.Data.Type); + Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); + Assert.AreEqual(rg.Data.Location, rg2.Data.Location); + Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); + Assert.AreEqual(rg.Data.Tags, rg2.Data.Tags); + } + + [TestCase] + [RecordedTest] + public async Task AddTag() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + Assert.AreEqual(0, rg.Data.Tags.Count); + ResourceGroup rg2 = await rg.AddTagAsync("key", "value"); + Assert.AreEqual(1, rg2.Data.Tags.Count); + Assert.IsTrue(rg2.Data.Tags.Contains(new KeyValuePair("key", "value"))); + Assert.AreEqual(rg.Data.Name, rg2.Data.Name); + Assert.AreEqual(rg.Data.Id, rg2.Data.Id); + Assert.AreEqual(rg.Data.Type, rg2.Data.Type); + Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); + Assert.AreEqual(rg.Data.Location, rg2.Data.Location); + Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); + } + + [TestCase] + [RecordedTest] + public async Task StartAddTag() + { + var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg = await rgOp.WaitForCompletionAsync(); + Assert.AreEqual(0, rg.Data.Tags.Count); + var addTagOp = await rg.StartAddTagAsync("key", "value"); + ResourceGroup rg2 = await addTagOp.WaitForCompletionAsync(); + Assert.AreEqual(1, rg2.Data.Tags.Count); + Assert.IsTrue(rg2.Data.Tags.Contains(new KeyValuePair("key", "value"))); + Assert.AreEqual(rg.Data.Name, rg2.Data.Name); + Assert.AreEqual(rg.Data.Id, rg2.Data.Id); + Assert.AreEqual(rg.Data.Type, rg2.Data.Type); + Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); + Assert.AreEqual(rg.Data.Location, rg2.Data.Location); + Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); + } + + [TestCase] + [RecordedTest] + public async Task SetTags() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + Assert.AreEqual(0, rg.Data.Tags.Count); + var tags = new Dictionary() + { + { "key", "value"} + }; + ResourceGroup rg2 = await rg.SetTagsAsync(tags); + Assert.AreEqual(tags, rg2.Data.Tags); + Assert.AreEqual(rg.Data.Name, rg2.Data.Name); + Assert.AreEqual(rg.Data.Id, rg2.Data.Id); + Assert.AreEqual(rg.Data.Type, rg2.Data.Type); + Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); + Assert.AreEqual(rg.Data.Location, rg2.Data.Location); + Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); + } + + [TestCase] + [RecordedTest] + public async Task StartSetTags() + { + var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg = await rgOp.WaitForCompletionAsync(); + Assert.AreEqual(0, rg.Data.Tags.Count); + var tags = new Dictionary() + { + { "key", "value"} + }; + var setTagOp = await rg.StartSetTagsAsync(tags); + ResourceGroup rg2 = await setTagOp.WaitForCompletionAsync(); + Assert.AreEqual(tags, rg2.Data.Tags); + Assert.AreEqual(rg.Data.Name, rg2.Data.Name); + Assert.AreEqual(rg.Data.Id, rg2.Data.Id); + Assert.AreEqual(rg.Data.Type, rg2.Data.Type); + Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); + Assert.AreEqual(rg.Data.Location, rg2.Data.Location); + Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); + } + + [TestCase] + [RecordedTest] + public async Task RemoveTag() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + var tags = new Dictionary() + { + { "k1", "v1"}, + { "k2", "v2"} + }; + ResourceGroup rg2 = await rg.SetTagsAsync(tags); + ResourceGroup rg3 = await rg2.RemoveTagAsync("k1"); + var tags2 = new Dictionary() + { + { "k2", "v2"} + }; + Assert.AreEqual(tags2, rg3.Data.Tags); + Assert.AreEqual(rg2.Data.Name, rg3.Data.Name); + Assert.AreEqual(rg2.Data.Id, rg3.Data.Id); + Assert.AreEqual(rg2.Data.Type, rg3.Data.Type); + Assert.AreEqual(rg2.Data.Properties, rg3.Data.Properties); + Assert.AreEqual(rg2.Data.Location, rg3.Data.Location); + Assert.AreEqual(rg2.Data.ManagedBy, rg3.Data.ManagedBy); + } + + [TestCase] + [RecordedTest] + public async Task StartRemoveTag() + { + var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg = await rgOp.WaitForCompletionAsync(); + var tags = new Dictionary() + { + { "k1", "v1"}, + { "k2", "v2"} + }; + var setTagOp = await rg.StartSetTagsAsync(tags); + ResourceGroup rg2 = await setTagOp.WaitForCompletionAsync(); + var removeTagOp = await rg2.StartRemoveTagAsync("k1"); + ResourceGroup rg3 = await removeTagOp.WaitForCompletionAsync(); + var tags2 = new Dictionary() + { + { "k2", "v2"} + }; + Assert.AreEqual(tags2, rg3.Data.Tags); + Assert.AreEqual(rg2.Data.Name, rg3.Data.Name); + Assert.AreEqual(rg2.Data.Id, rg3.Data.Id); + Assert.AreEqual(rg2.Data.Type, rg3.Data.Type); + Assert.AreEqual(rg2.Data.Properties, rg3.Data.Properties); + Assert.AreEqual(rg2.Data.Location, rg3.Data.Location); + Assert.AreEqual(rg2.Data.ManagedBy, rg3.Data.ManagedBy); } [TestCase] @@ -59,7 +196,7 @@ public async Task ListAvailableLocations() ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); var locations = await rg.ListAvailableLocationsAsync(); int count = 0; - foreach(var location in locations) + foreach (var location in locations) { count++; } From c0ef2a067e70349cf9d98da7e7c2ba687d78aed0 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Thu, 6 May 2021 12:12:46 -0700 Subject: [PATCH 04/18] Resolve merge conflicts --- .../src/Generated/ArmOperation.cs | 83 ------------- .../src/Generated/ArmResponse.cs | 46 ------- .../src/Generated/ArmVoidOperation.cs | 116 ------------------ .../Generated/UpdateResourceGroupOperation.cs | 2 +- .../src/{Generated => }/GenericResource.cs | 0 .../GenericResourceOperations.cs | 0 .../src/{Generated => }/IDeletableResource.cs | 0 .../src/{Generated => }/ITaggableResource.cs | 0 .../src/Placeholder/ResourceGroupData.cs | 64 ---------- .../src/{Generated => }/PropertyWrapper.cs | 0 10 files changed, 1 insertion(+), 310 deletions(-) delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmOperation.cs delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmResponse.cs delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmVoidOperation.cs rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/GenericResource.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/GenericResourceOperations.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/IDeletableResource.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/ITaggableResource.cs (100%) delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/ResourceGroupData.cs rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/PropertyWrapper.cs (100%) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmOperation.cs deleted file mode 100644 index be1a82edf4f6..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmOperation.cs +++ /dev/null @@ -1,83 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Threading; -using System.Threading.Tasks; -using Azure.Core; - -namespace Azure.ResourceManager.Core -{ - /// - /// Abstract class for long-running or synchronous applications. - /// - /// The to return representing the result of the ArmOperation. - public abstract class ArmOperation : Operation - where TOperations : class - { - /// - /// Initializes a new instance of the class for mocking. - /// - protected ArmOperation() - { - } - - /// - /// Initializes a new instance of the class. - /// - /// The representing the result of the ArmOperation. - protected ArmOperation(TOperations syncValue) - { - CompletedSynchronously = syncValue != null; - SyncValue = syncValue; - } - - /// - /// Gets a value indicating whether or not the operation completed synchronously. - /// - protected bool CompletedSynchronously { get; } - - /// - /// Gets the representing the result of the ArmOperation. - /// - protected TOperations SyncValue { get; } - - /// - /// Waits for the completion of the long running operations. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A response with the operation for this resource. - /// - /// Details on long running operation object. - /// - public Response WaitForCompletion(CancellationToken cancellationToken = default) - { - return WaitForCompletion(ArmOperationHelpers.DefaultPollingInterval.Seconds, cancellationToken); - } - - /// - /// Waits for the completion of the long running operations. - /// - /// The polling interval in seconds to check for status. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A response with the operation for this resource. - /// - /// Details on long running operation object. - /// - public Response WaitForCompletion(int pollingInterval, CancellationToken cancellationToken = default) - { - var polling = TimeSpan.FromSeconds(pollingInterval); - while (true) - { - UpdateStatus(cancellationToken); - if (HasCompleted) - { - Response response = Response.FromValue(Value, GetRawResponse()); - return new PhArmResponse(response, old => old); - } - - Task.Delay(pollingInterval, cancellationToken).Wait(cancellationToken); - } - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmResponse.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmResponse.cs deleted file mode 100644 index c9f4e005822d..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmResponse.cs +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; - -namespace Azure.ResourceManager.Core -{ - /// - /// A class representing a response object from azure resource manager service. - /// - public sealed class ArmResponse : ArmResponse - { - private readonly Response _response; - - /// - /// Initializes a new instance of the class. - /// - /// The azure response object to wrap. - /// If is null. - public ArmResponse(Response response) - { - if (response is null) - throw new ArgumentNullException(nameof(response)); - - _response = response; - } - - /// - public override Response Value => _response; - - /// - public override Response GetRawResponse() - { - return _response; - } - } - - /// - /// A class representing a response object from azure resource manager service. - /// - /// The operations object return by the api call. - [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1402:File may only contain a single type", Justification = "Allowed when we have a generic version of the same type")] - public abstract class ArmResponse : Response - { - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmVoidOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmVoidOperation.cs deleted file mode 100644 index f0d24e3e714e..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmVoidOperation.cs +++ /dev/null @@ -1,116 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Threading; -using System.Threading.Tasks; - -namespace Azure.ResourceManager.Core -{ - /// - /// Generic ARM long running operation class for operations with no returned value - /// - public sealed class ArmVoidOperation : ArmOperation - { - private readonly Operation _wrapped; - - /// - /// Initializes a new instance of the class. - /// - /// The operation that has a response which has no body. - public ArmVoidOperation(Operation other) - : base(null) - { - if (other is null) - throw new ArgumentNullException(nameof(other)); - - _wrapped = other; - } - - /// - /// Initializes a new instance of the class. - /// - /// The response which has no body. - public ArmVoidOperation(Response other) - : base(other) - { - if (other is null) - throw new ArgumentNullException(nameof(other)); - } - - /// - public override string Id => _wrapped?.Id; - - /// - public override Response Value => SyncValue; - - /// - public override bool HasCompleted => CompletedSynchronously || _wrapped.HasCompleted; - - /// - public override bool HasValue => CompletedSynchronously || _wrapped.HasValue; - - /// - public override Response GetRawResponse() - { - return CompletedSynchronously ? SyncValue : _wrapped.GetRawResponse(); - } - - /// - public override Response UpdateStatus(CancellationToken cancellationToken = default) - { - return CompletedSynchronously ? SyncValue : _wrapped.UpdateStatus(cancellationToken); - } - - /// - public override async ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) - { - return CompletedSynchronously ? SyncValue : await _wrapped.UpdateStatusAsync(cancellationToken).ConfigureAwait(false); - } - - /// - public override async ValueTask> WaitForCompletionAsync( - CancellationToken cancellationToken = default) - { - return CompletedSynchronously - ? new WrappingResponse(SyncValue) - : await _wrapped.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); - } - - /// - public override async ValueTask> WaitForCompletionAsync( - TimeSpan pollingInterval, - CancellationToken cancellationToken) - { - return CompletedSynchronously - ? new WrappingResponse(SyncValue) - : await _wrapped.WaitForCompletionAsync(pollingInterval, cancellationToken).ConfigureAwait(false); - } - - /// - /// A class which wraps a response with no body. - /// - internal class WrappingResponse : ArmResponse - { - private readonly Response _wrapped; - - /// - /// Initializes a new instance of the class. - /// - /// The response object to wrap. - public WrappingResponse(Response wrapped) - { - _wrapped = wrapped; - } - - /// - public override Response Value => _wrapped; - - /// - public override Response GetRawResponse() - { - return _wrapped; - } - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/UpdateResourceGroupOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/UpdateResourceGroupOperation.cs index 86b8bea8bbd5..249211670e5d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/UpdateResourceGroupOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/UpdateResourceGroupOperation.cs @@ -58,7 +58,7 @@ private ResourceGroup GetResourceGrouop(JsonDocument document) { var method = typeof(ResourceManager.Resources.Models.ResourceGroup).GetMethod("DeserializeResourceGroup", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Static); var obj = method.Invoke(null, new object[] { document.RootElement }); - return new ResourceGroup(_operations, new ResourceGroupData(obj as ResourceManager.Resources.Models.ResourceGroup)); + return new ResourceGroup(_operations, obj as ResourceGroupData); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResource.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResource.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResource.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceOperations.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/IDeletableResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/IDeletableResource.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/IDeletableResource.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/IDeletableResource.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ITaggableResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ITaggableResource.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ITaggableResource.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/ITaggableResource.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/ResourceGroupData.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/ResourceGroupData.cs deleted file mode 100644 index 15fdf78eb9ea..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/ResourceGroupData.cs +++ /dev/null @@ -1,64 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Collections.Generic; -using Azure.ResourceManager.Core.Adapters; -using Azure.ResourceManager.Resources.Models; - -namespace Azure.ResourceManager.Core -{ - /// - /// A class representing the ResourceGroup data model. - /// - public partial class ResourceGroupData : TrackedResource - { - /// - /// Initializes a new instance of the class. - /// - /// The existing resource group model to copy from. - public ResourceGroupData(ResourceManager.Resources.Models.ResourceGroup rg) - : base(rg.Id, rg.Location, rg) - { - } - - /// - public override IDictionary Tags => Model.Tags; - - /// - public override string Name => Model.Name; - - /// - /// Gets or sets the resource group properties - /// - public ResourceGroupProperties Properties - { - get => Model.Properties; - set => Model.Properties = value; - } - - /// - /// Gets or sets who this resource group is managed by - /// - public string ManagedBy - { - get => Model.ManagedBy; - set => Model.ManagedBy = value; - } - - /// - /// Converts from a into the ResourceManager.Resources.Models.ResourceGroup. - /// - /// The tracked resource convert from. - public static implicit operator ResourceManager.Resources.Models.ResourceGroup(ResourceGroupData other) - { - other.Model.Tags.Clear(); - foreach (var tag in other.Tags) - { - other.Model.Tags.Add(tag); - } - - return other.Model; - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/PropertyWrapper.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/PropertyWrapper.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/PropertyWrapper.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/PropertyWrapper.cs From 294034c860e3afe21be672ba8d2d3ad3dc69d9c6 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Thu, 6 May 2021 15:03:37 -0700 Subject: [PATCH 05/18] Update scenario tests --- .../tests/Scenario/ResourceGroupContainerTests.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs index aff6ef6d39d4..8cf7b54d7059 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs @@ -49,8 +49,7 @@ public async Task StartCreate() public async Task Get() { string rgName = Recording.GenerateAssetName("testRg-"); - ResourceGroup rg3 = await Client.DefaultSubscription.GetResourceGroups().GetAsync("azhang-test"); - /*ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); ResourceGroup rg2 = await Client.DefaultSubscription.GetResourceGroups().GetAsync(rgName); Assert.AreEqual(rg.Data.Name, rg2.Data.Name); Assert.AreEqual(rg.Data.Id, rg2.Data.Id); @@ -58,7 +57,7 @@ public async Task Get() Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); Assert.AreEqual(rg.Data.Location, rg2.Data.Location); Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); - Assert.AreEqual(rg.Data.Tags, rg2.Data.Tags);*/ + Assert.AreEqual(rg.Data.Tags, rg2.Data.Tags); } } } From 7f273c919a9dbf95b76a85a58da8256c039d456e Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Thu, 6 May 2021 15:20:17 -0700 Subject: [PATCH 06/18] Record ResourceGroupContainerTests --- .../Scenario/ResourceGroupContainerTests.cs | 2 +- .../ResourceGroupContainerTests/Create().json | 30 ++- .../Create()Async.json | 24 +-- .../ResourceGroupContainerTests/Get().json | 48 ++--- .../Get()Async.json | 46 ++-- .../ResourceGroupContainerTests/List().json | 197 +++++++++-------- .../List()Async.json | 203 ++++++++++-------- .../StartCreate().json | 36 ++-- .../StartCreate()Async.json | 32 ++- 9 files changed, 304 insertions(+), 314 deletions(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs index 8cf7b54d7059..f1016c117816 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs @@ -54,7 +54,7 @@ public async Task Get() Assert.AreEqual(rg.Data.Name, rg2.Data.Name); Assert.AreEqual(rg.Data.Id, rg2.Data.Id); Assert.AreEqual(rg.Data.Type, rg2.Data.Type); - Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); + Assert.AreEqual(rg.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); Assert.AreEqual(rg.Data.Location, rg2.Data.Location); Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); Assert.AreEqual(rg.Data.Tags, rg2.Data.Tags); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json index c8bcde3911c9..6c95f5d6f287 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json @@ -6,10 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fbf5ae5d9d0e4ef6d820c67cd78a6b7d", "x-ms-return-client-request-id": "true" }, @@ -19,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:36 GMT", + "Date": "Thu, 06 May 2021 22:14:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "176fabc3-9b9d-40b4-9970-db9d19b5b5d6", + "x-ms-correlation-request-id": "bd05c8ee-517d-4f23-ba58-dfa58247146c", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "176fabc3-9b9d-40b4-9970-db9d19b5b5d6", - "x-ms-routing-request-id": "WESTUS:20210330T180536Z:176fabc3-9b9d-40b4-9970-db9d19b5b5d6" + "x-ms-request-id": "bd05c8ee-517d-4f23-ba58-dfa58247146c", + "x-ms-routing-request-id": "WESTUS2:20210506T221422Z:bd05c8ee-517d-4f23-ba58-dfa58247146c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -52,11 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-6cae5528e0cb184a9c7fa7ceac3223ec-6164d3c261e6d74e-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-009e6444ff50dd4cabcaedcdaeb50f65-4ee3a3652342e94d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4f9b1cb0c615a755df66b08668e1e5c8", "x-ms-return-client-request-id": "true" }, @@ -64,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:37 GMT", + "Date": "Thu, 06 May 2021 22:14:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1e67f02-80a1-43da-8957-30b60639d74c", + "x-ms-correlation-request-id": "42ddfec9-3adf-4a74-af44-8d1ed256be3f", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "c1e67f02-80a1-43da-8957-30b60639d74c", - "x-ms-routing-request-id": "WESTUS:20210330T180537Z:c1e67f02-80a1-43da-8957-30b60639d74c" + "x-ms-request-id": "42ddfec9-3adf-4a74-af44-8d1ed256be3f", + "x-ms-routing-request-id": "WESTUS2:20210506T221423Z:42ddfec9-3adf-4a74-af44-8d1ed256be3f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create()Async.json index b2a71ac0ee3b..71664814dc2b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fbf5ae5d9d0e4ef6d820c67cd78a6b7d", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:34:38 GMT", + "Date": "Thu, 06 May 2021 22:14:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f1ad86e-1c25-460e-8ced-1a6fa0953b40", + "x-ms-correlation-request-id": "1e1abc4e-cc70-4263-bb0a-d87524bb1ec1", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "9f1ad86e-1c25-460e-8ced-1a6fa0953b40", - "x-ms-routing-request-id": "WESTUS:20210330T183439Z:9f1ad86e-1c25-460e-8ced-1a6fa0953b40" + "x-ms-request-id": "1e1abc4e-cc70-4263-bb0a-d87524bb1ec1", + "x-ms-routing-request-id": "WESTUS2:20210506T221422Z:1e1abc4e-cc70-4263-bb0a-d87524bb1ec1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-ca3b88b9349e9d44a8110350e9ea5679-2cd2331440e9514d-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-9a2b66316fd1904db45f1fcec0c64ddb-8c8c760d455fdf47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4f9b1cb0c615a755df66b08668e1e5c8", "x-ms-return-client-request-id": "true" }, @@ -58,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:34:40 GMT", + "Date": "Thu, 06 May 2021 22:14:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "841cdbac-a446-4b4c-8ab9-df4fe48d034a", + "x-ms-correlation-request-id": "14b226f8-398d-4a1a-93b0-9912a9300932", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "841cdbac-a446-4b4c-8ab9-df4fe48d034a", - "x-ms-routing-request-id": "WESTUS:20210330T183440Z:841cdbac-a446-4b4c-8ab9-df4fe48d034a" + "x-ms-request-id": "14b226f8-398d-4a1a-93b0-9912a9300932", + "x-ms-routing-request-id": "WESTUS2:20210506T221423Z:14b226f8-398d-4a1a-93b0-9912a9300932" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json index 9a91a00e83cf..8b2b75fb6f83 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json @@ -6,11 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-974c385cf62a5543b9df9eef2227d898-f2a66d5c01c7f94b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "947ed80a888c329c78682d2e8a26a844", "x-ms-return-client-request-id": "true" }, @@ -20,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:38 GMT", + "Date": "Thu, 06 May 2021 22:14:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "144b4a32-9a0e-45d8-bffe-0d45f4a630e8", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "144b4a32-9a0e-45d8-bffe-0d45f4a630e8", - "x-ms-routing-request-id": "WESTUS:20210330T180538Z:144b4a32-9a0e-45d8-bffe-0d45f4a630e8" + "x-ms-correlation-request-id": "28f955f4-61c5-437b-8748-24db1e22c1cf", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "28f955f4-61c5-437b-8748-24db1e22c1cf", + "x-ms-routing-request-id": "WESTUS2:20210506T221424Z:28f955f4-61c5-437b-8748-24db1e22c1cf" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,11 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-9e03cf3f413a814bbacc65772dc34e00-3e9319c77144e34c-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-16e206391de6e54a9259e7205c3263f3-9c6f102f3e435040-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6e214c3fac952f6afda406451eb6e501", "x-ms-return-client-request-id": "true" }, @@ -65,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:39 GMT", + "Date": "Thu, 06 May 2021 22:14:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3752461-fe83-415c-8f48-e37865681e94", + "x-ms-correlation-request-id": "5e1c98f4-563b-452d-8dec-aae2764672a0", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "c3752461-fe83-415c-8f48-e37865681e94", - "x-ms-routing-request-id": "WESTUS:20210330T180539Z:c3752461-fe83-415c-8f48-e37865681e94" + "x-ms-request-id": "5e1c98f4-563b-452d-8dec-aae2764672a0", + "x-ms-routing-request-id": "WESTUS2:20210506T221425Z:5e1c98f4-563b-452d-8dec-aae2764672a0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", @@ -97,11 +90,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-06dd43639407144eb64c2e924550f7af-2fe29d4e69f3ae4a-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-615226c0a5673840afb5062c01f6ace7-d51fdf833235d945-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9730847ff5de83c556d82af59a97e08a", "x-ms-return-client-request-id": "true" }, @@ -111,15 +101,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:39 GMT", + "Date": "Thu, 06 May 2021 22:14:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2258c7a2-addb-4585-8ef5-a3e38a0b7739", + "x-ms-correlation-request-id": "31062e0b-4858-415d-b48b-f40f3a4e4c0a", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "2258c7a2-addb-4585-8ef5-a3e38a0b7739", - "x-ms-routing-request-id": "WESTUS:20210330T180539Z:2258c7a2-addb-4585-8ef5-a3e38a0b7739" + "x-ms-request-id": "31062e0b-4858-415d-b48b-f40f3a4e4c0a", + "x-ms-routing-request-id": "WESTUS2:20210506T221425Z:31062e0b-4858-415d-b48b-f40f3a4e4c0a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get()Async.json index c7bfa9f043bf..6eeb7e573d7d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get()Async.json @@ -6,11 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-313807f8679416488d1cd8b1aa6ffa16-750f5fef2329b64f-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bf56a65b1b3503a53e85268135c4c103", "x-ms-return-client-request-id": "true" }, @@ -20,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:38 GMT", + "Date": "Thu, 06 May 2021 22:14:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19d2332e-2790-44b2-b602-7f25f9eaf66e", + "x-ms-correlation-request-id": "635a66e0-c614-4a68-98ed-b47278bc5218", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "19d2332e-2790-44b2-b602-7f25f9eaf66e", - "x-ms-routing-request-id": "WESTUS:20210330T180538Z:19d2332e-2790-44b2-b602-7f25f9eaf66e" + "x-ms-request-id": "635a66e0-c614-4a68-98ed-b47278bc5218", + "x-ms-routing-request-id": "WESTUS2:20210506T221424Z:635a66e0-c614-4a68-98ed-b47278bc5218" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,11 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-3cffe3ae7afb8749a1cf6d0590175547-fac75f15b464f045-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-9e7f1de80097a14fafd3b4115d977d98-91f7679f8dd71d42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b569d83722f70f6203999b272959e7c7", "x-ms-return-client-request-id": "true" }, @@ -70,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:39 GMT", + "Date": "Thu, 06 May 2021 22:14:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "adbccdc5-ce04-461d-9dee-227d2e0229aa", + "x-ms-correlation-request-id": "ff8bbaa7-5ddc-4e0d-99bf-5befa5d7abfe", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "adbccdc5-ce04-461d-9dee-227d2e0229aa", - "x-ms-routing-request-id": "WESTUS:20210330T180539Z:adbccdc5-ce04-461d-9dee-227d2e0229aa" + "x-ms-request-id": "ff8bbaa7-5ddc-4e0d-99bf-5befa5d7abfe", + "x-ms-routing-request-id": "WESTUS2:20210506T221425Z:ff8bbaa7-5ddc-4e0d-99bf-5befa5d7abfe" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", @@ -97,11 +90,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f25021177ea6d641885ea6ea6808784b-5288debb1582754c-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-5fbb9b54e6ad00468835140ed54b6bc9-9fc8c64b4881eb43-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e0f8777a432c9cce195e5f9f9edde36", "x-ms-return-client-request-id": "true" }, @@ -111,15 +101,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:39 GMT", + "Date": "Thu, 06 May 2021 22:14:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e4cd8aa-1859-4936-83d6-571b449c18d6", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "1e4cd8aa-1859-4936-83d6-571b449c18d6", - "x-ms-routing-request-id": "WESTUS:20210330T180539Z:1e4cd8aa-1859-4936-83d6-571b449c18d6" + "x-ms-correlation-request-id": "94abd4f5-a793-4be1-8e7f-b6eb449f54e2", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "94abd4f5-a793-4be1-8e7f-b6eb449f54e2", + "x-ms-routing-request-id": "WESTUS2:20210506T221425Z:94abd4f5-a793-4be1-8e7f-b6eb449f54e2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json index 3e6493385724..5182458e3c8d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json @@ -6,11 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-59066b4d30f10745bf45216550349afa-aab27b0fe76ea343-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-bd25d44e0346bc4c8427b53b72748e92-56c530be78a54145-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "32314624bfbe8662a7fea2c55ef4175d", "x-ms-return-client-request-id": "true" }, @@ -20,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:41 GMT", + "Date": "Thu, 06 May 2021 22:14:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2246c430-16ba-4b2c-82db-3e97809f617e", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "2246c430-16ba-4b2c-82db-3e97809f617e", - "x-ms-routing-request-id": "WESTUS:20210330T180541Z:2246c430-16ba-4b2c-82db-3e97809f617e" + "x-ms-correlation-request-id": "fcb5c685-c3fa-43cb-986b-b781e04e40a8", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "fcb5c685-c3fa-43cb-986b-b781e04e40a8", + "x-ms-routing-request-id": "WESTUS2:20210506T221425Z:fcb5c685-c3fa-43cb-986b-b781e04e40a8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,11 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-ffbbe11aebfc164bbb56caf6f2834d39-2e6d713687e77546-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-1ee8e173f5fa9645a8f8a768b3326a46-8cb3d9c7d7ca7045-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4d506cbd48c3a8c934b1e57276165c60", "x-ms-return-client-request-id": "true" }, @@ -65,20 +59,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:41 GMT", + "Date": "Thu, 06 May 2021 22:14:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2d76a93-287f-495a-a368-bd7d91bd5435", + "x-ms-correlation-request-id": "b9ec2e07-21b2-43b2-aa6b-91f4a0ad95d8", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "a2d76a93-287f-495a-a368-bd7d91bd5435", - "x-ms-routing-request-id": "WESTUS:20210330T180542Z:a2d76a93-287f-495a-a368-bd7d91bd5435" + "x-ms-request-id": "b9ec2e07-21b2-43b2-aa6b-91f4a0ad95d8", + "x-ms-routing-request-id": "WESTUS2:20210506T221426Z:b9ec2e07-21b2-43b2-aa6b-91f4a0ad95d8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", @@ -99,11 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-434a307aa7ddac4b9d9e1e5a38de6d1f-c4e9eac1a4ac944c-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c974cc910f3a224da6b1527cd5ecfe48-c1623141373fad44-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "997a583a7a13a661eb9ff26126efcbab", "x-ms-return-client-request-id": "true" }, @@ -111,20 +102,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:42 GMT", + "Date": "Thu, 06 May 2021 22:14:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2782279e-7ff8-4a0d-bda1-0873f75b1487", + "x-ms-correlation-request-id": "b9aaba07-a468-4bbb-90a1-71aceaec0a72", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "2782279e-7ff8-4a0d-bda1-0873f75b1487", - "x-ms-routing-request-id": "WESTUS:20210330T180543Z:2782279e-7ff8-4a0d-bda1-0873f75b1487" + "x-ms-request-id": "b9aaba07-a468-4bbb-90a1-71aceaec0a72", + "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:b9aaba07-a468-4bbb-90a1-71aceaec0a72" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", @@ -143,11 +134,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e57f75d6ac5b7245a0342a4837d5052a-cbbd3e0955730443-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-80786f19a9dd134e91a7c40ab9ffa4ef-64921257d1716048-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "db5e9666609168fe8a8a0e7c1330e845", "x-ms-return-client-request-id": "true" }, @@ -155,52 +143,80 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4790", + "Content-Length": "5354", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:42 GMT", + "Date": "Thu, 06 May 2021 22:14:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cdaab491-08d0-4e44-9906-f499d9789792", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "cdaab491-08d0-4e44-9906-f499d9789792", - "x-ms-routing-request-id": "WESTUS:20210330T180543Z:cdaab491-08d0-4e44-9906-f499d9789792" + "x-ms-correlation-request-id": "ec28a51b-581c-4a04-9f29-9d7fd90992bf", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "ec28a51b-581c-4a04-9f29-9d7fd90992bf", + "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:ec28a51b-581c-4a04-9f29-9d7fd90992bf" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-898", - "name": "testRg-898", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/zipstoragemc001", + "name": "zipstoragemc001", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus2", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG", + "name": "AzSecPackAutoConfigRG", "type": "Microsoft.Resources/resourceGroups", - "location": "southcentralus", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", + "name": "NetworkWatcherRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8850", + "name": "testrg8850", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8970", - "name": "testRg-8970", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9511", + "name": "testrg9511", "type": "Microsoft.Resources/resourceGroups", - "location": "southcentralus", + "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG", - "name": "AzSecPackAutoConfigRG", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3278", + "name": "testrg3278", "type": "Microsoft.Resources/resourceGroups", - "location": "eastus", + "location": "westus2", + "tags": {}, "properties": { "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/nibhati-432037640-rg", - "name": "nibhati-432037640-rg", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7404", + "name": "testrg7404", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -209,45 +225,38 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", - "name": "NetworkWatcherRG", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8198", + "name": "testrg8198", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", + "tags": {}, "properties": { "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5701", - "name": "rg5701", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2336", + "name": "testrg2336", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", - "tags": { - "key1": "value1", - "key2": "value2", - "UpdateKey3": "UpdateValue3" - }, + "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2616", - "name": "rg2616", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1536", + "name": "testrg1536", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", - "tags": { - "key1": "value1", - "key2": "value2", - "UpdateKey3": "UpdateValue3" - }, + "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9936", - "name": "rg9936", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1424", + "name": "testrg1424", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -256,48 +265,48 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", - "name": "testRg-9476", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6756", + "name": "testrg6756", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3087", - "name": "testrg3087", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", + "name": "testRg-6350", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", - "name": "testRg-6439", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", + "name": "testRg-6091", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", - "name": "testRg-2388", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", + "name": "testRg-9476", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", - "name": "testRg-9522", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5251", + "name": "testRg-5251", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -306,8 +315,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", - "name": "testRg-6350", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", + "name": "testRg-2388", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -316,8 +325,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", - "name": "testRg-6091", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", + "name": "testRg-6439", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -326,8 +335,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", - "name": "testRg-2283", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", + "name": "testRg-9522", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List()Async.json index b61a4d64b1f7..3f5caf8b4152 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List()Async.json @@ -6,11 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-388958a95fed424185a6bbdee2cecc10-93dc607e510e0046-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "Request-Id": "|274b216a-4f7b5282ec0f0086.", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fc4e15b5fbbb5705603d2b33fb5b2337", "x-ms-return-client-request-id": "true" }, @@ -20,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:40 GMT", + "Date": "Thu, 06 May 2021 22:14:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b426bbb-f442-47c3-a2b5-cc347362007b", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "3b426bbb-f442-47c3-a2b5-cc347362007b", - "x-ms-routing-request-id": "WESTUS:20210330T180540Z:3b426bbb-f442-47c3-a2b5-cc347362007b" + "x-ms-correlation-request-id": "6782cf30-f904-4844-98cd-021450ce1c17", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "6782cf30-f904-4844-98cd-021450ce1c17", + "x-ms-routing-request-id": "WESTUS2:20210506T221425Z:6782cf30-f904-4844-98cd-021450ce1c17" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,11 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-980bed4e335977479bd30d8cb72cb0ce-8d757733462d6a45-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-324de41d0d67d345a8cdbd8efa8df4df-89d2921e2ea8844d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c1867024544a4ce2fd808a6a8f416fa", "x-ms-return-client-request-id": "true" }, @@ -70,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:41 GMT", + "Date": "Thu, 06 May 2021 22:14:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "935d9a7f-2009-4571-9c07-af6501035115", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "935d9a7f-2009-4571-9c07-af6501035115", - "x-ms-routing-request-id": "WESTUS:20210330T180541Z:935d9a7f-2009-4571-9c07-af6501035115" + "x-ms-correlation-request-id": "fab63fc1-6135-4d27-b64b-1455499671a9", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "fab63fc1-6135-4d27-b64b-1455499671a9", + "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:fab63fc1-6135-4d27-b64b-1455499671a9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", @@ -99,11 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-17def9e3a6d6a642886a44e7e9068c19-7296290e29a68a4d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-bdbe76d85ccb5d4c868ede56f59dce60-a45ef1e82f7ad640-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f77522cdaf69f33f8f0ffba77bde90a3", "x-ms-return-client-request-id": "true" }, @@ -116,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:42 GMT", + "Date": "Thu, 06 May 2021 22:14:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71332bfc-acd1-4c89-be93-18e8b66f6f58", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "71332bfc-acd1-4c89-be93-18e8b66f6f58", - "x-ms-routing-request-id": "WESTUS:20210330T180543Z:71332bfc-acd1-4c89-be93-18e8b66f6f58" + "x-ms-correlation-request-id": "b97d9bb9-1106-432e-8fc0-be1ac0e3a66d", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "b97d9bb9-1106-432e-8fc0-be1ac0e3a66d", + "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:b97d9bb9-1106-432e-8fc0-be1ac0e3a66d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", @@ -143,11 +134,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-135cc44a98d24d42b8dd38b23e210fb1-0a57b0f1f1a8db4d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-08fa87c82b0999419656a75628786797-4dffaadab0261a4a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e6fd11270f580cf588b22fcb1b74814", "x-ms-return-client-request-id": "true" }, @@ -155,52 +143,80 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4790", + "Content-Length": "5585", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:42 GMT", + "Date": "Thu, 06 May 2021 22:14:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8c9d4d5-7044-4e68-9d6b-827d868ba086", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "b8c9d4d5-7044-4e68-9d6b-827d868ba086", - "x-ms-routing-request-id": "WESTUS:20210330T180543Z:b8c9d4d5-7044-4e68-9d6b-827d868ba086" + "x-ms-correlation-request-id": "97493c9e-0bde-4c90-a387-6dbc1e74ef93", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "97493c9e-0bde-4c90-a387-6dbc1e74ef93", + "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:97493c9e-0bde-4c90-a387-6dbc1e74ef93" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-898", - "name": "testRg-898", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/zipstoragemc001", + "name": "zipstoragemc001", "type": "Microsoft.Resources/resourceGroups", - "location": "southcentralus", + "location": "eastus2", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG", + "name": "AzSecPackAutoConfigRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", + "name": "NetworkWatcherRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8850", + "name": "testrg8850", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8970", - "name": "testRg-8970", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9511", + "name": "testrg9511", "type": "Microsoft.Resources/resourceGroups", - "location": "southcentralus", + "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG", - "name": "AzSecPackAutoConfigRG", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3278", + "name": "testrg3278", "type": "Microsoft.Resources/resourceGroups", - "location": "eastus", + "location": "westus2", + "tags": {}, "properties": { "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/nibhati-432037640-rg", - "name": "nibhati-432037640-rg", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7404", + "name": "testrg7404", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -209,45 +225,48 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", - "name": "NetworkWatcherRG", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8198", + "name": "testrg8198", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2336", + "name": "testrg2336", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", + "tags": {}, "properties": { "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5701", - "name": "rg5701", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1536", + "name": "testrg1536", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", - "tags": { - "key1": "value1", - "key2": "value2", - "UpdateKey3": "UpdateValue3" - }, + "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2616", - "name": "rg2616", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1424", + "name": "testrg1424", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", - "tags": { - "key1": "value1", - "key2": "value2", - "UpdateKey3": "UpdateValue3" - }, + "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9936", - "name": "rg9936", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6756", + "name": "testrg6756", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -256,48 +275,48 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", - "name": "testRg-9476", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", + "name": "testRg-6350", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3087", - "name": "testrg3087", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", + "name": "testRg-6091", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", - "name": "testRg-6439", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", + "name": "testRg-9476", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", - "name": "testRg-2388", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5251", + "name": "testRg-5251", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Deleting" + "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", - "name": "testRg-9522", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", + "name": "testRg-2388", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -306,8 +325,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", - "name": "testRg-6350", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", + "name": "testRg-6439", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -316,8 +335,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", - "name": "testRg-6091", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", + "name": "testRg-9522", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate().json index d26824782973..a02d3d7e9b97 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate().json @@ -6,11 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0b0b22d2476eb74bac92a7eac38073c3-30653ba7953e5b4c-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-17de32561fccee42a59f9c70a25b829c-d60898df3641754f-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "884af3a7695b086bb37b82d98938cb3a", "x-ms-return-client-request-id": "true" }, @@ -20,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:44 GMT", + "Date": "Thu, 06 May 2021 22:14:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6cb24e0-19ee-4a86-b624-9f91f1062dc8", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "c6cb24e0-19ee-4a86-b624-9f91f1062dc8", - "x-ms-routing-request-id": "WESTUS:20210330T180544Z:c6cb24e0-19ee-4a86-b624-9f91f1062dc8" + "x-ms-correlation-request-id": "649cf656-16b9-44a3-a970-bc647978c717", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "649cf656-16b9-44a3-a970-bc647978c717", + "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:649cf656-16b9-44a3-a970-bc647978c717" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,11 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-f543bed0e53d784ebae11226b54fd6f0-cec592b07b7ea746-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-4dffcd5098f2e74bbbbfdc5e78127181-0f78fee2657a854a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8b2b066fc48fef0717970e149205230a", "x-ms-return-client-request-id": "true" }, @@ -65,20 +59,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:45 GMT", + "Date": "Thu, 06 May 2021 22:14:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14c205fd-30d2-4d0d-8709-c99e09b42d19", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "14c205fd-30d2-4d0d-8709-c99e09b42d19", - "x-ms-routing-request-id": "WESTUS:20210330T180545Z:14c205fd-30d2-4d0d-8709-c99e09b42d19" + "x-ms-correlation-request-id": "52a739bc-b693-4017-91f9-40c0d41d4061", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "52a739bc-b693-4017-91f9-40c0d41d4061", + "x-ms-routing-request-id": "WESTUS2:20210506T221428Z:52a739bc-b693-4017-91f9-40c0d41d4061" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5251", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate()Async.json index c253734c74b2..39b797fbdeb2 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate()Async.json @@ -6,11 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1d2eea2a693b474e897b8218a482a7ea-a62e8b1fb4aaa146-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "Request-Id": "|274b216b-4f7b5282ec0f0086.", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "41d0d7715fb7e09d06eff6e127b77d79", "x-ms-return-client-request-id": "true" }, @@ -20,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:43 GMT", + "Date": "Thu, 06 May 2021 22:14:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca9ef72d-3544-4bab-b51e-f2180d76b91d", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "ca9ef72d-3544-4bab-b51e-f2180d76b91d", - "x-ms-routing-request-id": "WESTUS:20210330T180544Z:ca9ef72d-3544-4bab-b51e-f2180d76b91d" + "x-ms-correlation-request-id": "9e718e7d-6639-4741-8ec4-1d9785de95b7", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "9e718e7d-6639-4741-8ec4-1d9785de95b7", + "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:9e718e7d-6639-4741-8ec4-1d9785de95b7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,11 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-0a98d81b24f7a64c9024d0510c1cbc32-1e7369f1647d7840-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-03e8f4183d6e6146b437c88c426f5829-3715710ece250440-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3b69c81f3028db1851038e65627d650", "x-ms-return-client-request-id": "true" }, @@ -70,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:44 GMT", + "Date": "Thu, 06 May 2021 22:14:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "499c9318-f3f7-443c-8c09-4e8ea1388da6", + "x-ms-correlation-request-id": "341a397a-724e-41c6-a3d1-b1f6122ee066", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "499c9318-f3f7-443c-8c09-4e8ea1388da6", - "x-ms-routing-request-id": "WESTUS:20210330T180545Z:499c9318-f3f7-443c-8c09-4e8ea1388da6" + "x-ms-request-id": "341a397a-724e-41c6-a3d1-b1f6122ee066", + "x-ms-routing-request-id": "WESTUS2:20210506T221428Z:341a397a-724e-41c6-a3d1-b1f6122ee066" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-1105", From d5bff88a3ffebf09c73b19246037e81543f7f92f Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Thu, 6 May 2021 16:58:24 -0700 Subject: [PATCH 07/18] Initialize Tags in base class --- .../src/Generated/Models/ResourceGroupData.cs | 5 ----- .../src/Resources/TrackedResource.cs | 1 + 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupData.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupData.cs index eda51aa430d4..fe20e2482c10 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupData.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupData.cs @@ -3,7 +3,6 @@ using System; using System.Collections.Generic; -using Azure.Core; namespace Azure.ResourceManager.Core { @@ -19,8 +18,6 @@ public ResourceGroupData(string location) : base(location) { throw new ArgumentNullException(nameof(location)); } - - Tags = new Dictionary(StringComparer.InvariantCultureIgnoreCase); } /// Initializes a new instance of ResourceGroupData. @@ -42,7 +39,5 @@ internal ResourceGroupData(string id, string name, string type, ResourceGroupPro public ResourceGroupProperties Properties { get; set; } /// The ID of the resource that manages this resource group. public string ManagedBy { get; set; } - /// The tags attached to the resource group. - public override IDictionary Tags { get; } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TrackedResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TrackedResource.cs index 6c6238a50c3f..426c0e9d6504 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TrackedResource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TrackedResource.cs @@ -20,6 +20,7 @@ public abstract partial class TrackedResource : Resource(StringComparer.InvariantCultureIgnoreCase); } /// From 16051ca06f27e69b83a21220a5f30c025ec680d2 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Thu, 6 May 2021 17:29:20 -0700 Subject: [PATCH 08/18] Update ResourceGroupOperationsTests and re-record --- .../Scenario/ResourceGroupOperationsTests.cs | 48 +- .../AddTag().json | 138 + .../AddTag()Async.json | 137 + .../DeleteRg().json | 975 +- .../DeleteRg()Async.json | 974 +- .../ResourceGroupOperationsTests/Get().json | 49 +- .../Get()Async.json | 50 +- .../ListAvailableLocations().json | 6215 +++++++-- .../ListAvailableLocations()Async.json | 6216 +++++++-- .../RemoveTag().json | 186 + .../RemoveTag()Async.json | 184 + .../SetTags().json | 138 + .../SetTags()Async.json | 137 + .../StartAddTag().json | 139 + .../StartAddTag()Async.json | 139 + .../StartDeleteNonExistantRg().json | 27 +- .../StartDeleteNonExistantRg()Async.json | 26 +- .../StartDeleteRg().json | 11271 +--------------- .../StartDeleteRg()Async.json | 1010 +- .../StartRemoveTag().json | 187 + .../StartRemoveTag()Async.json | 186 + .../StartSetTags().json | 138 + .../StartSetTags()Async.json | 138 + 23 files changed, 11778 insertions(+), 16930 deletions(-) create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag()Async.json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs index 72aca5d528ad..33255a715acb 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs @@ -52,7 +52,7 @@ public async Task Get() Assert.AreEqual(rg.Data.Name, rg2.Data.Name); Assert.AreEqual(rg.Data.Id, rg2.Data.Id); Assert.AreEqual(rg.Data.Type, rg2.Data.Type); - Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); + Assert.AreEqual(rg.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); Assert.AreEqual(rg.Data.Location, rg2.Data.Location); Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); Assert.AreEqual(rg.Data.Tags, rg2.Data.Tags); @@ -70,7 +70,7 @@ public async Task AddTag() Assert.AreEqual(rg.Data.Name, rg2.Data.Name); Assert.AreEqual(rg.Data.Id, rg2.Data.Id); Assert.AreEqual(rg.Data.Type, rg2.Data.Type); - Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); + Assert.AreEqual(rg.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); Assert.AreEqual(rg.Data.Location, rg2.Data.Location); Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); } @@ -89,7 +89,7 @@ public async Task StartAddTag() Assert.AreEqual(rg.Data.Name, rg2.Data.Name); Assert.AreEqual(rg.Data.Id, rg2.Data.Id); Assert.AreEqual(rg.Data.Type, rg2.Data.Type); - Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); + Assert.AreEqual(rg.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); Assert.AreEqual(rg.Data.Location, rg2.Data.Location); Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); } @@ -109,7 +109,7 @@ public async Task SetTags() Assert.AreEqual(rg.Data.Name, rg2.Data.Name); Assert.AreEqual(rg.Data.Id, rg2.Data.Id); Assert.AreEqual(rg.Data.Type, rg2.Data.Type); - Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); + Assert.AreEqual(rg.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); Assert.AreEqual(rg.Data.Location, rg2.Data.Location); Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); } @@ -131,7 +131,7 @@ public async Task StartSetTags() Assert.AreEqual(rg.Data.Name, rg2.Data.Name); Assert.AreEqual(rg.Data.Id, rg2.Data.Id); Assert.AreEqual(rg.Data.Type, rg2.Data.Type); - Assert.AreEqual(rg.Data.Properties, rg2.Data.Properties); + Assert.AreEqual(rg.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); Assert.AreEqual(rg.Data.Location, rg2.Data.Location); Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); } @@ -146,19 +146,19 @@ public async Task RemoveTag() { "k1", "v1"}, { "k2", "v2"} }; - ResourceGroup rg2 = await rg.SetTagsAsync(tags); - ResourceGroup rg3 = await rg2.RemoveTagAsync("k1"); + rg = await rg.SetTagsAsync(tags); + ResourceGroup rg2 = await rg.RemoveTagAsync("k1"); var tags2 = new Dictionary() { { "k2", "v2"} }; - Assert.AreEqual(tags2, rg3.Data.Tags); - Assert.AreEqual(rg2.Data.Name, rg3.Data.Name); - Assert.AreEqual(rg2.Data.Id, rg3.Data.Id); - Assert.AreEqual(rg2.Data.Type, rg3.Data.Type); - Assert.AreEqual(rg2.Data.Properties, rg3.Data.Properties); - Assert.AreEqual(rg2.Data.Location, rg3.Data.Location); - Assert.AreEqual(rg2.Data.ManagedBy, rg3.Data.ManagedBy); + Assert.AreEqual(tags2, rg2.Data.Tags); + Assert.AreEqual(rg.Data.Name, rg2.Data.Name); + Assert.AreEqual(rg.Data.Id, rg2.Data.Id); + Assert.AreEqual(rg.Data.Type, rg2.Data.Type); + Assert.AreEqual(rg.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); + Assert.AreEqual(rg.Data.Location, rg2.Data.Location); + Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); } [TestCase] @@ -173,20 +173,20 @@ public async Task StartRemoveTag() { "k2", "v2"} }; var setTagOp = await rg.StartSetTagsAsync(tags); - ResourceGroup rg2 = await setTagOp.WaitForCompletionAsync(); - var removeTagOp = await rg2.StartRemoveTagAsync("k1"); - ResourceGroup rg3 = await removeTagOp.WaitForCompletionAsync(); + rg = await setTagOp.WaitForCompletionAsync(); + var removeTagOp = await rg.StartRemoveTagAsync("k1"); + ResourceGroup rg2 = await removeTagOp.WaitForCompletionAsync(); var tags2 = new Dictionary() { { "k2", "v2"} }; - Assert.AreEqual(tags2, rg3.Data.Tags); - Assert.AreEqual(rg2.Data.Name, rg3.Data.Name); - Assert.AreEqual(rg2.Data.Id, rg3.Data.Id); - Assert.AreEqual(rg2.Data.Type, rg3.Data.Type); - Assert.AreEqual(rg2.Data.Properties, rg3.Data.Properties); - Assert.AreEqual(rg2.Data.Location, rg3.Data.Location); - Assert.AreEqual(rg2.Data.ManagedBy, rg3.Data.ManagedBy); + Assert.AreEqual(tags2, rg2.Data.Tags); + Assert.AreEqual(rg.Data.Name, rg2.Data.Name); + Assert.AreEqual(rg.Data.Id, rg2.Data.Id); + Assert.AreEqual(rg.Data.Type, rg2.Data.Type); + Assert.AreEqual(rg.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); + Assert.AreEqual(rg.Data.Location, rg2.Data.Location); + Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); } [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag().json new file mode 100644 index 000000000000..f54d3feffb12 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag().json @@ -0,0 +1,138 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4a5e542919dab42fffda5350028d688c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:22:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2387eb3d-7b0f-4c35-a454-33d7b623cd81", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "2387eb3d-7b0f-4c35-a454-33d7b623cd81", + "x-ms-routing-request-id": "WESTUS2:20210507T002258Z:2387eb3d-7b0f-4c35-a454-33d7b623cd81" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg843?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-ebbc996ad1c1564e89f0f99bec2f6b35-4591f49217bde443-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d1da8b7561b8028cbcb34792a863a65c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:22:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "94415fc1-1747-438d-9f87-11308ab3c37f", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "94415fc1-1747-438d-9f87-11308ab3c37f", + "x-ms-routing-request-id": "WESTUS2:20210507T002259Z:94415fc1-1747-438d-9f87-11308ab3c37f" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg843", + "name": "testrg843", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg843?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "24", + "Content-Type": "application/json", + "traceparent": "00-d7e15fabf5a1214994c1760876b86373-0e7b90a66003574c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b88bc6574e449dc41491ab9b82fcef2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "239", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:22:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9417920d-22f8-4c98-b196-0ceda5fc1892", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "9417920d-22f8-4c98-b196-0ceda5fc1892", + "x-ms-routing-request-id": "WESTUS2:20210507T002300Z:9417920d-22f8-4c98-b196-0ceda5fc1892" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg843", + "name": "testrg843", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "key": "value" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "2003657492", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag()Async.json new file mode 100644 index 000000000000..06afd0eef9a9 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag()Async.json @@ -0,0 +1,137 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "df4905ee034c09350d8fd369b2eaa5f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:22:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dd5b41fd-79d8-47f3-9226-bf50b6c23511", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "dd5b41fd-79d8-47f3-9226-bf50b6c23511", + "x-ms-routing-request-id": "WESTUS2:20210507T002258Z:dd5b41fd-79d8-47f3-9226-bf50b6c23511" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9462?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-6016902170ece645b5562947eaba252a-de7824345a58fd43-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3cec09a8ec6483d8ae6dff6faace7ce9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:22:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2bb9f3f0-bd91-4724-9c64-7dc50461ef50", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "2bb9f3f0-bd91-4724-9c64-7dc50461ef50", + "x-ms-routing-request-id": "WESTUS2:20210507T002259Z:2bb9f3f0-bd91-4724-9c64-7dc50461ef50" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9462", + "name": "testrg9462", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9462?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "24", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "142fbe2561211c9c917da1a94d5c97ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "241", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ea31d80d-f23b-4f5e-90f1-efb5d91bb625", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "ea31d80d-f23b-4f5e-90f1-efb5d91bb625", + "x-ms-routing-request-id": "WESTUS2:20210507T002300Z:ea31d80d-f23b-4f5e-90f1-efb5d91bb625" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9462", + "name": "testrg9462", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "key": "value" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "1558668007", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json index 7f198be7e2b8..8ef206702ab1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json @@ -6,11 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2ca201ed19b7ae4e9fb3d4693de7a906-f0e713745295854b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "36ca397932140e126372a7087188334f", "x-ms-return-client-request-id": "true" }, @@ -20,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:37 GMT", + "Date": "Fri, 07 May 2021 00:23:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "871b1979-cf3a-4c0f-a139-d8dfdcb5fc8e", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "871b1979-cf3a-4c0f-a139-d8dfdcb5fc8e", - "x-ms-routing-request-id": "WESTUS:20210330T180538Z:871b1979-cf3a-4c0f-a139-d8dfdcb5fc8e" + "x-ms-correlation-request-id": "fc3cd5c5-7def-4b0b-a093-2e0897c86cec", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "fc3cd5c5-7def-4b0b-a093-2e0897c86cec", + "x-ms-routing-request-id": "WESTUS2:20210507T002300Z:fc3cd5c5-7def-4b0b-a093-2e0897c86cec" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,11 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-da0a2b955a4c454c88527c34741a3b26-f4dee7809805d144-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-556cf4b28650894294f5f8167edafd36-c9f765e32dc38d4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a2fa65b3af59b8c04d4be3d77f82d2af", "x-ms-return-client-request-id": "true" }, @@ -70,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:38 GMT", + "Date": "Fri, 07 May 2021 00:23:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98376e75-9fb6-4162-a67d-6abf7e82564a", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "98376e75-9fb6-4162-a67d-6abf7e82564a", - "x-ms-routing-request-id": "WESTUS:20210330T180539Z:98376e75-9fb6-4162-a67d-6abf7e82564a" + "x-ms-correlation-request-id": "e1fa909f-fca3-4957-b5d1-614d09e43043", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "e1fa909f-fca3-4957-b5d1-614d09e43043", + "x-ms-routing-request-id": "WESTUS2:20210507T002301Z:e1fa909f-fca3-4957-b5d1-614d09e43043" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3087", @@ -97,11 +90,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-3338d5114c5b5e4e-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d80061beada5eb9763bfaae39996fb94", "x-ms-return-client-request-id": "true" }, @@ -110,943 +99,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:39 GMT", + "Date": "Fri, 07 May 2021 00:23:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02db09c9-ea51-43d3-b471-de43ceb35cc6", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "02db09c9-ea51-43d3-b471-de43ceb35cc6", - "x-ms-routing-request-id": "WESTUS:20210330T180540Z:02db09c9-ea51-43d3-b471-de43ceb35cc6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-bbc853e571f3e84d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "26b359d576330684ce0e3f9a04dd1fb6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41102983-b069-4b1b-930b-e73469942052", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "41102983-b069-4b1b-930b-e73469942052", - "x-ms-routing-request-id": "WESTUS:20210330T180540Z:41102983-b069-4b1b-930b-e73469942052" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-b147ad92a9adfe48-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6fbf4f507676b1854276ce27e6afbc2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8263450c-7da2-4ec8-b471-b96a6a3efe9f", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "8263450c-7da2-4ec8-b471-b96a6a3efe9f", - "x-ms-routing-request-id": "WESTUS:20210330T180541Z:8263450c-7da2-4ec8-b471-b96a6a3efe9f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-7bed85e8a6efd24c-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3f0dbadbd5e3a1618a058d1acd85842c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb9efdd7-7c33-4016-a27d-745e4c83803a", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "cb9efdd7-7c33-4016-a27d-745e4c83803a", - "x-ms-routing-request-id": "WESTUS:20210330T180542Z:cb9efdd7-7c33-4016-a27d-745e4c83803a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-d975c662aa5bdb49-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "df96105e73775f79d301e3bca75c201e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd3e9a10-2b02-4ae1-b4b9-12d707aec131", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "fd3e9a10-2b02-4ae1-b4b9-12d707aec131", - "x-ms-routing-request-id": "WESTUS:20210330T180543Z:fd3e9a10-2b02-4ae1-b4b9-12d707aec131" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-179f4b3e4f56b740-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "49be1351e0d07bd3ed1ee570e96ae4bd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9459a9f7-ae3f-44a5-9ab9-0000b62ef0fd", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "9459a9f7-ae3f-44a5-9ab9-0000b62ef0fd", - "x-ms-routing-request-id": "WESTUS:20210330T180544Z:9459a9f7-ae3f-44a5-9ab9-0000b62ef0fd" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-2c0e866025027644-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d5c9a1f1dd1967b441ad6be1f1a4f92d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc1d8fe4-c446-4279-b9b9-a3013d1fe179", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "dc1d8fe4-c446-4279-b9b9-a3013d1fe179", - "x-ms-routing-request-id": "WESTUS:20210330T180545Z:dc1d8fe4-c446-4279-b9b9-a3013d1fe179" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-5ead76a5fa13d44b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bac96fe53ac77d5c3c1af1588e097668", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6eddd5a6-e7bb-4416-a915-592744a30632", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "6eddd5a6-e7bb-4416-a915-592744a30632", - "x-ms-routing-request-id": "WESTUS:20210330T180546Z:6eddd5a6-e7bb-4416-a915-592744a30632" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-7860bb3e33d81c4a-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "05cb261d4a9374045e56082274f28a49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b091c2af-da9a-4088-a869-2478ae9f001d", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "b091c2af-da9a-4088-a869-2478ae9f001d", - "x-ms-routing-request-id": "WESTUS:20210330T180548Z:b091c2af-da9a-4088-a869-2478ae9f001d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-480aee7d45463543-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7a8ab7252aa1b6f6454b98feeb5bd837", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:48 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf9639f2-a4b9-4717-a399-c5c5788bf688", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "bf9639f2-a4b9-4717-a399-c5c5788bf688", - "x-ms-routing-request-id": "WESTUS:20210330T180549Z:bf9639f2-a4b9-4717-a399-c5c5788bf688" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-73051be373273f4b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "cac40237f3d89a9a6a545b70323a094a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eef18f86-6d56-44e9-a5ff-d9b760916fa8", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "eef18f86-6d56-44e9-a5ff-d9b760916fa8", - "x-ms-routing-request-id": "WESTUS:20210330T180550Z:eef18f86-6d56-44e9-a5ff-d9b760916fa8" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-4445e07aacce5a42-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d733a890fc7ef3c73015c047b1068902", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6bd841b-a784-40bd-8190-e69046b59656", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "b6bd841b-a784-40bd-8190-e69046b59656", - "x-ms-routing-request-id": "WESTUS:20210330T180551Z:b6bd841b-a784-40bd-8190-e69046b59656" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-03d50583fef15249-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "71ead07dbf2e32701cf00f4cce85840a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:51 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f0086b8-2e9f-4eca-ad95-3b7f67b81547", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "1f0086b8-2e9f-4eca-ad95-3b7f67b81547", - "x-ms-routing-request-id": "WESTUS:20210330T180552Z:1f0086b8-2e9f-4eca-ad95-3b7f67b81547" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-4689643290624543-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "426d4e4201283bb83bd09ac33253e863", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:52 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3efa51c5-4f44-4f59-b256-5d487eb0e8d1", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "3efa51c5-4f44-4f59-b256-5d487eb0e8d1", - "x-ms-routing-request-id": "WESTUS:20210330T180553Z:3efa51c5-4f44-4f59-b256-5d487eb0e8d1" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-df9fc1d770cd4b47-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "61f258cb974fd11c3701ba8eec7a24aa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:53 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e828be05-2ed6-46bf-bb86-d2fa5346579c", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "e828be05-2ed6-46bf-bb86-d2fa5346579c", - "x-ms-routing-request-id": "WESTUS:20210330T180554Z:e828be05-2ed6-46bf-bb86-d2fa5346579c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-f6dce5d641f33a45-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6304b59146987cda18ae355d24acffc8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:55 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ab68f63-059d-4dc4-9744-f749629bb25a", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "4ab68f63-059d-4dc4-9744-f749629bb25a", - "x-ms-routing-request-id": "WESTUS:20210330T180555Z:4ab68f63-059d-4dc4-9744-f749629bb25a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-2c39072357cad945-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7581ac072292aabb319c0a2646294fc1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:56 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3e06cf6-6e93-4352-8dfd-eebc87225d84", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "e3e06cf6-6e93-4352-8dfd-eebc87225d84", - "x-ms-routing-request-id": "WESTUS:20210330T180556Z:e3e06cf6-6e93-4352-8dfd-eebc87225d84" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-3216ddbedf0f4c41-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7d32efac854f84cb7d7649a062bfac8b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:57 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d88ac4f6-6b74-40fe-9917-ad2b96ed1677", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "d88ac4f6-6b74-40fe-9917-ad2b96ed1677", - "x-ms-routing-request-id": "WESTUS:20210330T180557Z:d88ac4f6-6b74-40fe-9917-ad2b96ed1677" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-d0efda51d4bd7446-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4087f202aef86e17fa5a31fb3bb435ee", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:57 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9551a52-b8f3-4fc2-b544-a37a98e344e1", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "e9551a52-b8f3-4fc2-b544-a37a98e344e1", - "x-ms-routing-request-id": "WESTUS:20210330T180558Z:e9551a52-b8f3-4fc2-b544-a37a98e344e1" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-7e04c0ddac59974b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "34b0745f82798279e0fcf71cd91a4872", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:59 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a105e6d4-fd10-4a7d-8474-2dce651d280c", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "a105e6d4-fd10-4a7d-8474-2dce651d280c", - "x-ms-routing-request-id": "WESTUS:20210330T180559Z:a105e6d4-fd10-4a7d-8474-2dce651d280c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-5947a676802ce74e-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "54247ff00fa2fdc8d8c482f553cf49c9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:00 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cce7767-6a1e-49ca-9674-b822c4c88cbd", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "7cce7767-6a1e-49ca-9674-b822c4c88cbd", - "x-ms-routing-request-id": "WESTUS:20210330T180601Z:7cce7767-6a1e-49ca-9674-b822c4c88cbd" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-4d9f2a3f6c481249-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ed415b41770e801178055ffcb6fb94e0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:01 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "992e0a36-898a-4b1b-aa4d-a763fb73ea9a", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "992e0a36-898a-4b1b-aa4d-a763fb73ea9a", - "x-ms-routing-request-id": "WESTUS:20210330T180602Z:992e0a36-898a-4b1b-aa4d-a763fb73ea9a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-3a6f5297fd285b43-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bc0bbf11e190504bacb35cb5ff842e10", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:02 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b76ec3d-969e-4067-b4a7-61720c2f0383", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "8b76ec3d-969e-4067-b4a7-61720c2f0383", - "x-ms-routing-request-id": "WESTUS:20210330T180603Z:8b76ec3d-969e-4067-b4a7-61720c2f0383" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-3426bc1491964a40-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7edb2eb35ad878646ea4db9dafcc46dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:04 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "badd1776-70cd-4b9f-9f1f-de03e8da3168", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "badd1776-70cd-4b9f-9f1f-de03e8da3168", - "x-ms-routing-request-id": "WESTUS:20210330T180604Z:badd1776-70cd-4b9f-9f1f-de03e8da3168" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-66903542f31e9645-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "94e3a12f8cc45f390ff0415b1a5b80f4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:04 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc09bd51-22e6-40bc-b9a5-102081c48c4c", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "cc09bd51-22e6-40bc-b9a5-102081c48c4c", - "x-ms-routing-request-id": "WESTUS:20210330T180605Z:cc09bd51-22e6-40bc-b9a5-102081c48c4c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-260687e600107b4c-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "88484ed61620b7075b924deb06aea0df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:05 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0d062bd-a8b5-4eb3-9758-47bd69ca0728", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "a0d062bd-a8b5-4eb3-9758-47bd69ca0728", - "x-ms-routing-request-id": "WESTUS:20210330T180606Z:a0d062bd-a8b5-4eb3-9758-47bd69ca0728" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-2b47b6cc3f653b49-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5d867f6c9aa1264cf47b6fe818085e12", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:07 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfeb0ea3-7ec1-45ff-a42a-89cb54c61dff", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "dfeb0ea3-7ec1-45ff-a42a-89cb54c61dff", - "x-ms-routing-request-id": "WESTUS:20210330T180608Z:dfeb0ea3-7ec1-45ff-a42a-89cb54c61dff" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-ba9e3da22b21ef4d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "60c7e624bd8319bc9a2b39313f4d5961", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:08 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f268b6a-f2e5-425f-9181-a60f9eb02669", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "7f268b6a-f2e5-425f-9181-a60f9eb02669", - "x-ms-routing-request-id": "WESTUS:20210330T180609Z:7f268b6a-f2e5-425f-9181-a60f9eb02669" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-786df5d6816a6449-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9aee614f22d53b53022294a4a71f9e52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:09 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8190195-ff1b-4e21-89e1-ddfb2294b839", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "d8190195-ff1b-4e21-89e1-ddfb2294b839", - "x-ms-routing-request-id": "WESTUS:20210330T180610Z:d8190195-ff1b-4e21-89e1-ddfb2294b839" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0026ac96d3c1a74d956b2e13b3fc5c53-a9e127eb10c89c4e-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1fc73a3440e6ae5cc36dc375611ae7a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb1c5d1a-99af-4c4f-b882-eade7edfb7f0", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "eb1c5d1a-99af-4c4f-b882-eade7edfb7f0", - "x-ms-routing-request-id": "WESTUS:20210330T180611Z:eb1c5d1a-99af-4c4f-b882-eade7edfb7f0" + "x-ms-correlation-request-id": "e891ef77-feb2-46ae-bdde-2152baffbe98", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "e891ef77-feb2-46ae-bdde-2152baffbe98", + "x-ms-routing-request-id": "WESTUS2:20210507T002301Z:e891ef77-feb2-46ae-bdde-2152baffbe98" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json index 27779b758c7e..b0150fb567d7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json @@ -6,11 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1a2219686d75c547abf3ab07a993c57c-6ce698af2f1f8c47-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "36ca397932140e126372a7087188334f", "x-ms-return-client-request-id": "true" }, @@ -20,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:37 GMT", + "Date": "Fri, 07 May 2021 00:23:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae67610e-7e99-4240-b325-509b008256f3", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "ae67610e-7e99-4240-b325-509b008256f3", - "x-ms-routing-request-id": "WESTUS:20210330T180538Z:ae67610e-7e99-4240-b325-509b008256f3" + "x-ms-correlation-request-id": "b35a6832-a303-4f59-89ab-849bddb788b9", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "b35a6832-a303-4f59-89ab-849bddb788b9", + "x-ms-routing-request-id": "WESTUS2:20210507T002300Z:b35a6832-a303-4f59-89ab-849bddb788b9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,11 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-39f671932e2d0043a2436da9cbb1fa33-d84c1a233a705c4b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-337e6852e44e3741b9bfe4baec383790-fa27ed94a1a5d149-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a2fa65b3af59b8c04d4be3d77f82d2af", "x-ms-return-client-request-id": "true" }, @@ -70,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:05:38 GMT", + "Date": "Fri, 07 May 2021 00:23:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "396584c8-3ba6-45c4-b8b8-66698097ad3f", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "396584c8-3ba6-45c4-b8b8-66698097ad3f", - "x-ms-routing-request-id": "WESTUS:20210330T180539Z:396584c8-3ba6-45c4-b8b8-66698097ad3f" + "x-ms-correlation-request-id": "bc10321d-7027-4a67-b665-a594057ebfa6", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "bc10321d-7027-4a67-b665-a594057ebfa6", + "x-ms-routing-request-id": "WESTUS2:20210507T002301Z:bc10321d-7027-4a67-b665-a594057ebfa6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3087", @@ -97,11 +90,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-666e3bf086d47847-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-9c7a56bdb6fe384693b7a950b7f434e9-3bab3727604e2948-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d80061beada5eb9763bfaae39996fb94", "x-ms-return-client-request-id": "true" }, @@ -110,943 +100,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:39 GMT", + "Date": "Fri, 07 May 2021 00:23:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f0a608e-6d35-4aa9-8b08-64f0be0399cc", + "x-ms-correlation-request-id": "004858d8-29ef-4a9e-8325-bd126d7221ac", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "2f0a608e-6d35-4aa9-8b08-64f0be0399cc", - "x-ms-routing-request-id": "WESTUS:20210330T180539Z:2f0a608e-6d35-4aa9-8b08-64f0be0399cc" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-b7082cc313adce41-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "26b359d576330684ce0e3f9a04dd1fb6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c59f1cb-6f4a-4e26-b5da-ab62f4420037", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "3c59f1cb-6f4a-4e26-b5da-ab62f4420037", - "x-ms-routing-request-id": "WESTUS:20210330T180539Z:3c59f1cb-6f4a-4e26-b5da-ab62f4420037" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-dadf7e73eea43d4d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6fbf4f507676b1854276ce27e6afbc2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ac9245d-dbec-4515-96a9-65b61865f0d2", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "3ac9245d-dbec-4515-96a9-65b61865f0d2", - "x-ms-routing-request-id": "WESTUS:20210330T180541Z:3ac9245d-dbec-4515-96a9-65b61865f0d2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-e5e9695fff581c47-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3f0dbadbd5e3a1618a058d1acd85842c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5823e84d-cf7b-455e-b3e3-4e09734812ec", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "5823e84d-cf7b-455e-b3e3-4e09734812ec", - "x-ms-routing-request-id": "WESTUS:20210330T180542Z:5823e84d-cf7b-455e-b3e3-4e09734812ec" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-7d9b8afcb62a1b4b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "df96105e73775f79d301e3bca75c201e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "861ec32f-cc5e-4734-9f87-be09c7133a20", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "861ec32f-cc5e-4734-9f87-be09c7133a20", - "x-ms-routing-request-id": "WESTUS:20210330T180543Z:861ec32f-cc5e-4734-9f87-be09c7133a20" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-ebfdcbbbdf369a4c-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "49be1351e0d07bd3ed1ee570e96ae4bd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cce81cf5-c96f-4b05-bd48-5d0c0fb9a18a", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "cce81cf5-c96f-4b05-bd48-5d0c0fb9a18a", - "x-ms-routing-request-id": "WESTUS:20210330T180544Z:cce81cf5-c96f-4b05-bd48-5d0c0fb9a18a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-647b6a041fee054e-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d5c9a1f1dd1967b441ad6be1f1a4f92d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38bc00af-64cb-442f-a8fb-6647625f90d0", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "38bc00af-64cb-442f-a8fb-6647625f90d0", - "x-ms-routing-request-id": "WESTUS:20210330T180545Z:38bc00af-64cb-442f-a8fb-6647625f90d0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-bf5a7b57326acf4b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bac96fe53ac77d5c3c1af1588e097668", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb3c7521-6a49-4931-b308-543a4db2f8e8", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "fb3c7521-6a49-4931-b308-543a4db2f8e8", - "x-ms-routing-request-id": "WESTUS:20210330T180546Z:fb3c7521-6a49-4931-b308-543a4db2f8e8" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-a66d5d3f88df1348-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "05cb261d4a9374045e56082274f28a49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4b29af2-bc57-419a-8964-ea95b795680f", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "c4b29af2-bc57-419a-8964-ea95b795680f", - "x-ms-routing-request-id": "WESTUS:20210330T180547Z:c4b29af2-bc57-419a-8964-ea95b795680f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-46c1b624f0dfbf4d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7a8ab7252aa1b6f6454b98feeb5bd837", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "399f5352-2508-432e-be20-d85928e2f61e", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "399f5352-2508-432e-be20-d85928e2f61e", - "x-ms-routing-request-id": "WESTUS:20210330T180548Z:399f5352-2508-432e-be20-d85928e2f61e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-bacb8286ff96c14e-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "cac40237f3d89a9a6a545b70323a094a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9025c207-3022-4cc1-8a19-88c38bf89f10", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "9025c207-3022-4cc1-8a19-88c38bf89f10", - "x-ms-routing-request-id": "WESTUS:20210330T180549Z:9025c207-3022-4cc1-8a19-88c38bf89f10" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-af8bec14feb8e14a-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d733a890fc7ef3c73015c047b1068902", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0ab5e55-7705-4470-a0d0-4d9f5f23307e", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "b0ab5e55-7705-4470-a0d0-4d9f5f23307e", - "x-ms-routing-request-id": "WESTUS:20210330T180550Z:b0ab5e55-7705-4470-a0d0-4d9f5f23307e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-93e38be11b834046-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "71ead07dbf2e32701cf00f4cce85840a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:51 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e8ed140-a5a9-45f2-b4e4-5d0911bd92b7", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "1e8ed140-a5a9-45f2-b4e4-5d0911bd92b7", - "x-ms-routing-request-id": "WESTUS:20210330T180552Z:1e8ed140-a5a9-45f2-b4e4-5d0911bd92b7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-d10c488c70f59a45-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "426d4e4201283bb83bd09ac33253e863", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:52 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3dc005e4-74c2-4f2f-8a30-17f3917689bd", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "3dc005e4-74c2-4f2f-8a30-17f3917689bd", - "x-ms-routing-request-id": "WESTUS:20210330T180553Z:3dc005e4-74c2-4f2f-8a30-17f3917689bd" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-fa435ea02ffd6b49-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "61f258cb974fd11c3701ba8eec7a24aa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:53 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "485996cb-4c51-4950-bcc6-6361cd6ff72c", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "485996cb-4c51-4950-bcc6-6361cd6ff72c", - "x-ms-routing-request-id": "WESTUS:20210330T180554Z:485996cb-4c51-4950-bcc6-6361cd6ff72c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-4eddb8abdc4a8e42-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6304b59146987cda18ae355d24acffc8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:54 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b27b299-2801-4cad-af9b-087a9208fc91", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "6b27b299-2801-4cad-af9b-087a9208fc91", - "x-ms-routing-request-id": "WESTUS:20210330T180555Z:6b27b299-2801-4cad-af9b-087a9208fc91" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-232d25aedc8de94e-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7581ac072292aabb319c0a2646294fc1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:56 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4f6a80c-e032-4d6e-b19b-8c32e47658e9", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "f4f6a80c-e032-4d6e-b19b-8c32e47658e9", - "x-ms-routing-request-id": "WESTUS:20210330T180556Z:f4f6a80c-e032-4d6e-b19b-8c32e47658e9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-b1e88b3460ed4245-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7d32efac854f84cb7d7649a062bfac8b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:57 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b59e324d-2fea-4eeb-8fe8-a6949c56ecd5", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "b59e324d-2fea-4eeb-8fe8-a6949c56ecd5", - "x-ms-routing-request-id": "WESTUS:20210330T180557Z:b59e324d-2fea-4eeb-8fe8-a6949c56ecd5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-00c05d4a43c13941-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4087f202aef86e17fa5a31fb3bb435ee", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:57 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4cb581d-4c76-48b5-836a-3c5bd0dd9a49", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "b4cb581d-4c76-48b5-836a-3c5bd0dd9a49", - "x-ms-routing-request-id": "WESTUS:20210330T180558Z:b4cb581d-4c76-48b5-836a-3c5bd0dd9a49" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-50c59af0c4942b40-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "34b0745f82798279e0fcf71cd91a4872", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:05:58 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0367f2c2-01c8-43e1-84a4-59ed1e5c1349", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "0367f2c2-01c8-43e1-84a4-59ed1e5c1349", - "x-ms-routing-request-id": "WESTUS:20210330T180559Z:0367f2c2-01c8-43e1-84a4-59ed1e5c1349" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-d05892865d99d442-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "54247ff00fa2fdc8d8c482f553cf49c9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:00 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdc9dee7-c1e8-403d-b4da-ae097c935041", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "bdc9dee7-c1e8-403d-b4da-ae097c935041", - "x-ms-routing-request-id": "WESTUS:20210330T180601Z:bdc9dee7-c1e8-403d-b4da-ae097c935041" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-9f1812f3d6f13e46-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ed415b41770e801178055ffcb6fb94e0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:01 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "559bc849-ecb8-46e2-bb96-70683ef766ac", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "559bc849-ecb8-46e2-bb96-70683ef766ac", - "x-ms-routing-request-id": "WESTUS:20210330T180602Z:559bc849-ecb8-46e2-bb96-70683ef766ac" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-82b456712d0bd849-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bc0bbf11e190504bacb35cb5ff842e10", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:02 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "786b67ff-1381-467b-a369-a4313274cfb7", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "786b67ff-1381-467b-a369-a4313274cfb7", - "x-ms-routing-request-id": "WESTUS:20210330T180603Z:786b67ff-1381-467b-a369-a4313274cfb7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-15b9f281f71c6e45-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7edb2eb35ad878646ea4db9dafcc46dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:03 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc10f924-4c89-4dcb-a05b-2623477a3862", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "cc10f924-4c89-4dcb-a05b-2623477a3862", - "x-ms-routing-request-id": "WESTUS:20210330T180604Z:cc10f924-4c89-4dcb-a05b-2623477a3862" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-05840fa5a7893246-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "94e3a12f8cc45f390ff0415b1a5b80f4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:04 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6e84728-1551-436f-a889-4c9fa34d852b", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "e6e84728-1551-436f-a889-4c9fa34d852b", - "x-ms-routing-request-id": "WESTUS:20210330T180605Z:e6e84728-1551-436f-a889-4c9fa34d852b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-3e9317bb3494674a-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "88484ed61620b7075b924deb06aea0df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:05 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9cf0f28e-0fcc-48e4-b25f-2a8b99cd9cd4", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "9cf0f28e-0fcc-48e4-b25f-2a8b99cd9cd4", - "x-ms-routing-request-id": "WESTUS:20210330T180606Z:9cf0f28e-0fcc-48e4-b25f-2a8b99cd9cd4" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-584d204ba2cbab46-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5d867f6c9aa1264cf47b6fe818085e12", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:07 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f21df089-6d9a-4b46-b35a-8eda3e3f2039", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "f21df089-6d9a-4b46-b35a-8eda3e3f2039", - "x-ms-routing-request-id": "WESTUS:20210330T180608Z:f21df089-6d9a-4b46-b35a-8eda3e3f2039" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-a7919eba94488e48-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "60c7e624bd8319bc9a2b39313f4d5961", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:08 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2454e325-3c7c-4886-aff8-35a2f6ff072d", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "2454e325-3c7c-4886-aff8-35a2f6ff072d", - "x-ms-routing-request-id": "WESTUS:20210330T180609Z:2454e325-3c7c-4886-aff8-35a2f6ff072d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-4dda9356cb2f4844-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9aee614f22d53b53022294a4a71f9e52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:09 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f428e53-260f-44cc-823c-f4b330fc93e8", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "4f428e53-260f-44cc-823c-f4b330fc93e8", - "x-ms-routing-request-id": "WESTUS:20210330T180610Z:4f428e53-260f-44cc-823c-f4b330fc93e8" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8bafc4a95c3e7b4fb493797b942e67fd-b53bbc966658c54c-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1fc73a3440e6ae5cc36dc375611ae7a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "631e0118-ffb0-4c4b-aad7-a9344b2fbf92", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "631e0118-ffb0-4c4b-aad7-a9344b2fbf92", - "x-ms-routing-request-id": "WESTUS:20210330T180611Z:631e0118-ffb0-4c4b-aad7-a9344b2fbf92" + "x-ms-request-id": "004858d8-29ef-4a9e-8325-bd126d7221ac", + "x-ms-routing-request-id": "WESTUS2:20210507T002301Z:004858d8-29ef-4a9e-8325-bd126d7221ac" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json index d0fe3f97a8e1..2bd386da2af5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json @@ -6,10 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "Request-Id": "|ad80da28-4d0c713138b5070e.", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7aee629538309d67f639bdda8430fce0", "x-ms-return-client-request-id": "true" }, @@ -19,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:11 GMT", + "Date": "Fri, 07 May 2021 00:23:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f16950d-937d-4168-b47c-f5d1c04bf35f", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "0f16950d-937d-4168-b47c-f5d1c04bf35f", - "x-ms-routing-request-id": "WESTUS:20210330T180611Z:0f16950d-937d-4168-b47c-f5d1c04bf35f" + "x-ms-correlation-request-id": "8776712a-36da-45fc-8656-8d4966103cc4", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "8776712a-36da-45fc-8656-8d4966103cc4", + "x-ms-routing-request-id": "WESTUS2:20210507T002301Z:8776712a-36da-45fc-8656-8d4966103cc4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -52,11 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-b669c42c8cacd54b9b3e9667e69fa5c6-27fcf5b78696134d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-4b81d97a64a8d04b86b2dbbb394831c5-88f1fcae971e484f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "378f4ef6677eb4a0d910572cbffefaea", "x-ms-return-client-request-id": "true" }, @@ -69,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:11 GMT", + "Date": "Fri, 07 May 2021 00:23:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a7b8cdc4-5d14-4b1e-ae79-48e97dc446b2", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "a7b8cdc4-5d14-4b1e-ae79-48e97dc446b2", - "x-ms-routing-request-id": "WESTUS:20210330T180612Z:a7b8cdc4-5d14-4b1e-ae79-48e97dc446b2" + "x-ms-correlation-request-id": "c3268017-406f-471e-ae9d-4cc2b15a0399", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "c3268017-406f-471e-ae9d-4cc2b15a0399", + "x-ms-routing-request-id": "WESTUS2:20210507T002302Z:c3268017-406f-471e-ae9d-4cc2b15a0399" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9343", @@ -96,11 +91,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d30bfb177cb57e40836fbadff5e8e0be-7e62532296b63d48-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d1fee3eff85adb7af3c3f830e4eeabb", "x-ms-return-client-request-id": "true" }, @@ -110,15 +101,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:11 GMT", + "Date": "Fri, 07 May 2021 00:23:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51ed0ce3-bca4-4cf7-8c1d-1cebf5d0568c", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "51ed0ce3-bca4-4cf7-8c1d-1cebf5d0568c", - "x-ms-routing-request-id": "WESTUS:20210330T180612Z:51ed0ce3-bca4-4cf7-8c1d-1cebf5d0568c" + "x-ms-correlation-request-id": "2b18bf2d-94d3-4a46-b617-41c35df156b4", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "2b18bf2d-94d3-4a46-b617-41c35df156b4", + "x-ms-routing-request-id": "WESTUS2:20210507T002302Z:2b18bf2d-94d3-4a46-b617-41c35df156b4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9343", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json index a2c025be1865..1bbe9590ed94 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json @@ -6,10 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-02e7e3e522e35d479020f86713f07da3-47c686ac750fd54b-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "59b7aae8604ff395a6f45701af8fb704", "x-ms-return-client-request-id": "true" }, @@ -19,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:10 GMT", + "Date": "Fri, 07 May 2021 00:23:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c382b94-e9d6-46b6-b6c1-cd5cded0b128", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "9c382b94-e9d6-46b6-b6c1-cd5cded0b128", - "x-ms-routing-request-id": "WESTUS:20210330T180611Z:9c382b94-e9d6-46b6-b6c1-cd5cded0b128" + "x-ms-correlation-request-id": "cfe0a32d-5355-42c5-a5ff-953caeecb566", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "cfe0a32d-5355-42c5-a5ff-953caeecb566", + "x-ms-routing-request-id": "WESTUS2:20210507T002301Z:cfe0a32d-5355-42c5-a5ff-953caeecb566" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -52,11 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-eb68045ca44452418885786fc7f8e205-2bb6f95173c02949-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-d87dc5f28b435744af65bac4b689a93b-34f6ff94a4649c4f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "071a7ec67987f24b062ad73bf6781c92", "x-ms-return-client-request-id": "true" }, @@ -69,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:11 GMT", + "Date": "Fri, 07 May 2021 00:23:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb553fdf-fc07-4dff-99da-95f70b9fabcd", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "cb553fdf-fc07-4dff-99da-95f70b9fabcd", - "x-ms-routing-request-id": "WESTUS:20210330T180612Z:cb553fdf-fc07-4dff-99da-95f70b9fabcd" + "x-ms-correlation-request-id": "fe735516-3502-4b0d-ad86-ab86a4dcd1f2", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "fe735516-3502-4b0d-ad86-ab86a4dcd1f2", + "x-ms-routing-request-id": "WESTUS2:20210507T002302Z:fe735516-3502-4b0d-ad86-ab86a4dcd1f2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3094", @@ -96,11 +91,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4771bd541ce39442bedff5255b438ac6-aa480f0c6fc24f48-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-2bf041542c72d64a99beb8af4549579e-0dce2190c843b44b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a56179c782b01065ad5db32879bec64", "x-ms-return-client-request-id": "true" }, @@ -110,15 +102,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:11 GMT", + "Date": "Fri, 07 May 2021 00:23:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd4eaa14-e1f7-4b1f-9742-f7cfb634a415", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "fd4eaa14-e1f7-4b1f-9742-f7cfb634a415", - "x-ms-routing-request-id": "WESTUS:20210330T180612Z:fd4eaa14-e1f7-4b1f-9742-f7cfb634a415" + "x-ms-correlation-request-id": "6e535c7a-4d56-45fe-8e66-27afdfe4c8f5", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "6e535c7a-4d56-45fe-8e66-27afdfe4c8f5", + "x-ms-routing-request-id": "WESTUS2:20210507T002302Z:6e535c7a-4d56-45fe-8e66-27afdfe4c8f5" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3094", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json index 487de6468897..eb68342ef298 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json @@ -6,10 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "Request-Id": "|ad80da29-4d0c713138b5070e.", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1ba9401c9199950ab4c6511790a6e967", "x-ms-return-client-request-id": "true" }, @@ -19,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:12 GMT", + "Date": "Fri, 07 May 2021 00:23:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9bb84e37-c46a-46c5-97cb-aabd57019826", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "9bb84e37-c46a-46c5-97cb-aabd57019826", - "x-ms-routing-request-id": "WESTUS:20210330T180613Z:9bb84e37-c46a-46c5-97cb-aabd57019826" + "x-ms-correlation-request-id": "aad9c700-c4d5-4a18-a44b-616368be9de0", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "aad9c700-c4d5-4a18-a44b-616368be9de0", + "x-ms-routing-request-id": "WESTUS2:20210507T002302Z:aad9c700-c4d5-4a18-a44b-616368be9de0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -52,11 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-ce5c241785081a48b0e4815e74e8908a-a63b5ef484894a4d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3ae3425434118c43817437aac90ea572-2e031c553d3bc648-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c10c69c4b754a8908de162f0f30ff867", "x-ms-return-client-request-id": "true" }, @@ -69,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:13 GMT", + "Date": "Fri, 07 May 2021 00:23:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ae888f8-7cb7-42d1-94f4-57637643196c", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "7ae888f8-7cb7-42d1-94f4-57637643196c", - "x-ms-routing-request-id": "WESTUS:20210330T180614Z:7ae888f8-7cb7-42d1-94f4-57637643196c" + "x-ms-correlation-request-id": "d42c4635-0178-492a-b01a-2ce400b18030", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "d42c4635-0178-492a-b01a-2ce400b18030", + "x-ms-routing-request-id": "WESTUS2:20210507T002303Z:d42c4635-0178-492a-b01a-2ce400b18030" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4683", @@ -96,11 +91,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ba1f6bde373cdb4a862ef20b12d0a162-3a67906d3fa8e347-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cbdfe453c71259281e5e11321ed0c830", "x-ms-return-client-request-id": "true" }, @@ -108,17 +99,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1239318", + "Content-Length": "1293230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:15 GMT", + "Date": "Fri, 07 May 2021 00:23:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08520c12-b60a-4d1b-baff-4783dd29a6bc", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "08520c12-b60a-4d1b-baff-4783dd29a6bc", - "x-ms-routing-request-id": "WESTUS:20210330T180616Z:08520c12-b60a-4d1b-baff-4783dd29a6bc" + "x-ms-correlation-request-id": "f58d20e0-3fbf-44ff-a1e9-b5967568ccad", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "f58d20e0-3fbf-44ff-a1e9-b5967568ccad", + "x-ms-routing-request-id": "WESTUS2:20210507T002305Z:f58d20e0-3fbf-44ff-a1e9-b5967568ccad" }, "ResponseBody": { "value": [ @@ -209,6 +200,7 @@ "Brazil South", "Switzerland North", "Norway East", + "Norway West", "Australia Southeast", "Australia Central 2", "Germany West Central", @@ -218,10 +210,14 @@ "Japan West", "Brazil Southeast", "UAE North", - "Australia Central" + "Australia Central", + "France South", + "South India", + "West Central US" ], "apiVersions": [ "2020-02-02-preview", + "2020-02-02", "2018-05-01-preview", "2015-05-01", "2014-12-01-preview", @@ -381,7 +377,8 @@ "Norway West" ], "apiVersions": [ - "2018-04-20" + "2018-04-20", + "2014-04-01" ], "capabilities": "None" }, @@ -438,6 +435,7 @@ "Brazil South", "Switzerland North", "Norway East", + "Norway West", "Australia Southeast", "Australia Central 2", "Germany West Central", @@ -447,7 +445,10 @@ "Brazil Southeast", "Japan West", "UAE North", - "Australia Central" + "Australia Central", + "France South", + "South India", + "West Central US" ], "apiVersions": [ "2018-05-01-preview", @@ -998,6 +999,8 @@ "West India", "North Europe", "West US 2", + "Jio India West", + "West US 3", "West Central US", "Korea South", "Korea Central", @@ -1110,6 +1113,8 @@ "West India", "North Europe", "West US 2", + "Jio India West", + "West US 3", "West Central US", "Korea South", "Korea Central", @@ -1175,6 +1180,8 @@ "West India", "North Europe", "West US 2", + "Jio India West", + "West US 3", "West Central US", "Korea South", "Korea Central", @@ -1189,7 +1196,6 @@ "Norway East" ], "apiVersions": [ - "2018-01-01", "2017-12-01-preview" ], "capabilities": "SupportsExtension" @@ -1356,9 +1362,22 @@ "Brazil South", "Switzerland North", "Norway East", - "Australia Southeast" + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West Central US" ], "apiVersions": [ + "2021-03-08", "2020-10-20", "2020-02-12", "2018-06-17-preview", @@ -1397,7 +1416,19 @@ "Brazil South", "Switzerland North", "Norway East", - "Australia Southeast" + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West Central US" ], "apiVersions": [ "2020-11-20", @@ -1430,9 +1461,11 @@ "Brazil South", "Switzerland North", "Norway East", + "Norway West", "Australia Southeast" ], "apiVersions": [ + "2021-03-08", "2020-10-20", "2020-02-12", "2018-06-17-preview", @@ -1860,7 +1893,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -1906,7 +1941,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview" @@ -1948,7 +1985,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview" @@ -1990,7 +2029,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2033,7 +2074,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2076,7 +2119,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2119,7 +2164,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2162,7 +2209,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2205,7 +2254,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2248,7 +2299,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2291,7 +2344,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2336,7 +2391,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2379,7 +2436,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2422,7 +2481,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2465,7 +2526,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2509,7 +2572,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2553,7 +2618,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2597,7 +2664,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview" @@ -2640,7 +2709,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview" @@ -2656,7 +2727,8 @@ "South Central US", "Canada Central", "Central US", - "East US 2" + "East US 2", + "North Europe" ], "apiVersions": [ "2019-06-01-preview" @@ -2713,7 +2785,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2757,7 +2831,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2801,7 +2877,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2846,7 +2924,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2890,7 +2970,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -2932,7 +3014,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -2974,7 +3058,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -3016,7 +3102,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -3058,7 +3146,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -3100,133 +3190,141 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" - ], - "apiVersions": [ - "2018-02-01-preview" - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "registries/buildTasks/listSourceRepositoryProperties", - "locations": [ - "East US", - "West Europe", - "West US 2", - "South Central US", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US 2", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Southeast Asia", - "South India", - "UK South", - "UK West", - "West US", - "West Central US", - "France Central", - "Korea Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Switzerland West", - "UAE Central", - "Brazil Southeast", - "Germany West Central", - "Norway East" - ], - "apiVersions": [ - "2018-02-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "registries/buildTasks/steps", - "locations": [ - "East US", - "West Europe", - "West US 2", - "South Central US", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US 2", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Southeast Asia", - "South India", - "UK South", - "UK West", - "West US", - "West Central US", - "France Central", - "Korea Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Switzerland West", - "UAE Central", - "Brazil Southeast", - "Germany West Central", - "Norway East" - ], - "apiVersions": [ - "2018-02-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "registries/buildTasks/steps/listBuildArguments", - "locations": [ - "East US", - "West Europe", - "West US 2", - "South Central US", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US 2", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Southeast Asia", - "South India", - "UK South", - "UK West", - "West US", - "West Central US", - "France Central", - "Korea Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Switzerland West", - "UAE Central", - "Brazil Southeast", - "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" + ], + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "registries/buildTasks/listSourceRepositoryProperties", + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3" + ], + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "registries/buildTasks/steps", + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3" + ], + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "registries/buildTasks/steps/listBuildArguments", + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -3268,7 +3366,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3313,7 +3413,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3358,7 +3460,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3403,7 +3507,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3448,7 +3554,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3493,7 +3601,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -3535,7 +3645,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -3577,7 +3689,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3623,7 +3737,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -3679,7 +3795,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3725,7 +3843,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3771,7 +3891,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3816,7 +3938,9 @@ "UAE Central", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2017-10-01" @@ -3858,7 +3982,9 @@ "UAE Central", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2017-10-01" @@ -3913,7 +4039,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -3957,7 +4085,8 @@ "Germany West Central", "Brazil Southeast", "Norway East", - "Korea South" + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -4006,7 +4135,8 @@ "Germany West Central", "Brazil Southeast", "Norway East", - "Korea South" + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -4054,7 +4184,8 @@ "Germany West Central", "Brazil Southeast", "Norway East", - "Korea South" + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -4232,25 +4363,15 @@ "locations": [ "East US", "East US 2", - "West US", "West US 2", - "South Central US", "Central US", "West Europe", "North Europe", "UK South", - "UK West", "France Central", "Canada East", - "Canada Central", - "Australia East", - "Australia Southeast", - "East Asia", "Southeast Asia", - "North Central US", - "Brazil South", - "Japan East", - "Central India" + "Japan East" ], "apiVersions": [ "2019-09-30-preview", @@ -4263,25 +4384,15 @@ "locations": [ "East US", "East US 2", - "West US", "West US 2", - "South Central US", "Central US", "West Europe", "North Europe", "France Central", - "UK West", "UK South", "Canada East", - "Canada Central", - "Australia East", - "Australia Southeast", - "East Asia", "Southeast Asia", - "North Central US", - "Brazil South", - "Japan East", - "Central India" + "Japan East" ], "apiVersions": [ "2019-09-30-preview", @@ -4359,7 +4470,6 @@ "East US", "West Europe", "Central US", - "Canada Central", "Canada East", "UK West", "UK South", @@ -4368,6 +4478,7 @@ "South India", "Central India", "West India", + "Canada Central", "Korea South", "Korea Central", "West US", @@ -4476,6 +4587,53 @@ "2017-09-30" ], "capabilities": "None" + }, + { + "resourceType": "locations/osOptions", + "locations": [ + "East US", + "West Europe", + "France Central", + "France South", + "Central US", + "Canada East", + "Canada Central", + "UK South", + "UK West", + "West Central US", + "West US", + "West US 2", + "Australia East", + "Australia Central", + "Australia Southeast", + "North Europe", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "East US 2", + "South Central US", + "North Central US", + "Southeast Asia", + "South India", + "Central India", + "East Asia", + "South Africa North", + "Brazil South", + "Brazil Southeast", + "Germany North", + "Germany West Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "Norway East", + "Norway West" + ], + "apiVersions": [ + "2021-03-01" + ], + "capabilities": "None" } ], "metadata": { @@ -4587,6 +4745,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4640,6 +4799,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4684,6 +4844,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4737,6 +4898,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4785,6 +4947,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4833,6 +4996,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4882,6 +5046,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4931,6 +5096,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4980,6 +5146,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5029,6 +5196,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5078,6 +5246,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5127,6 +5296,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5174,6 +5344,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5221,6 +5392,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5268,6 +5440,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5315,6 +5488,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5362,6 +5536,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5409,6 +5584,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5456,6 +5632,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5505,6 +5682,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5554,6 +5732,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5605,6 +5784,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5657,6 +5837,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5709,6 +5890,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5847,6 +6029,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5891,6 +6074,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5935,6 +6119,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5984,6 +6169,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6028,6 +6214,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6074,6 +6261,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6120,6 +6308,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6164,6 +6353,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6208,6 +6398,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6252,6 +6443,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6299,6 +6491,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6343,6 +6536,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6387,6 +6581,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6435,6 +6630,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6482,6 +6678,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6526,6 +6723,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6574,6 +6772,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6623,6 +6822,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6668,6 +6868,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6712,6 +6913,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6756,6 +6958,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6800,6 +7003,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6849,6 +7053,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6898,6 +7103,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6947,6 +7153,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6996,6 +7203,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7044,6 +7252,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7088,6 +7297,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7136,6 +7346,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7184,6 +7395,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7232,6 +7444,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7280,6 +7493,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7324,6 +7538,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7368,6 +7583,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7418,6 +7634,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7468,6 +7685,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7547,6 +7765,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7592,6 +7811,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7640,6 +7860,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7688,6 +7909,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7736,6 +7958,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7784,6 +8007,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7832,6 +8056,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7880,6 +8105,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7924,6 +8150,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7972,6 +8199,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8020,6 +8248,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8068,6 +8297,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8117,6 +8347,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8166,6 +8397,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8215,6 +8447,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8264,6 +8497,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8313,6 +8547,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8363,6 +8598,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8412,6 +8648,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8462,6 +8699,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8512,6 +8750,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8562,6 +8801,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8612,6 +8852,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8660,6 +8901,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8704,6 +8946,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8748,6 +8991,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8792,6 +9036,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8836,6 +9081,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8880,6 +9126,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8924,6 +9171,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8968,6 +9216,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9012,6 +9261,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9064,6 +9314,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9113,6 +9364,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9165,6 +9417,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9209,6 +9462,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9258,6 +9512,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9307,6 +9562,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9356,6 +9612,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9401,6 +9658,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9449,6 +9707,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9495,6 +9754,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9543,6 +9803,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9589,6 +9850,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9638,6 +9900,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9683,6 +9946,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9730,6 +9994,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9777,6 +10042,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9825,6 +10091,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9874,6 +10141,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9923,6 +10191,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9972,6 +10241,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10018,6 +10288,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10063,6 +10334,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10108,6 +10380,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10154,6 +10427,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10200,6 +10474,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10283,6 +10558,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10331,6 +10607,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10402,6 +10679,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10446,6 +10724,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10494,6 +10773,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10542,6 +10822,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10588,6 +10869,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10635,6 +10917,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10680,6 +10963,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10725,6 +11009,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10770,6 +11055,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10815,6 +11101,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10861,6 +11148,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10907,6 +11195,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10953,6 +11242,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10999,6 +11289,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11045,6 +11336,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11091,6 +11383,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11139,6 +11432,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11187,6 +11481,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11235,6 +11530,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11283,6 +11579,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11329,6 +11626,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11375,6 +11673,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11423,6 +11722,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11470,6 +11770,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11517,6 +11818,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11564,6 +11866,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11612,6 +11915,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11660,6 +11964,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11708,6 +12013,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11757,6 +12063,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11806,6 +12113,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11855,6 +12163,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11904,6 +12213,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11953,6 +12263,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12001,6 +12312,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12049,6 +12361,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12098,6 +12411,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12147,6 +12461,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12196,6 +12511,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12245,6 +12561,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12293,6 +12610,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12341,6 +12659,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12389,6 +12708,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12437,6 +12757,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12485,6 +12806,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12533,6 +12855,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12580,6 +12903,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12627,6 +12951,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12675,6 +13000,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12723,6 +13049,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12770,6 +13097,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12817,6 +13145,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12864,6 +13193,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12910,6 +13240,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12956,6 +13287,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -13002,6 +13334,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -13048,6 +13381,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -13097,6 +13431,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -13141,6 +13476,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -13185,6 +13521,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -13210,6 +13547,51 @@ "2020-02-02-preview" ], "capabilities": "None" + }, + { + "resourceType": "servers/connectionPolicies", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None" } ], "metadata": { @@ -14092,7 +14474,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview", @@ -14130,7 +14514,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview" @@ -14164,7 +14550,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview", @@ -14202,7 +14590,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview", @@ -14240,7 +14630,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview", @@ -14278,7 +14670,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview", @@ -14316,7 +14710,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview", @@ -14352,7 +14748,8 @@ { "serviceIdentity": "Microsoft.AppConfiguration", "onbehalfSupportedLogCategories": [ - "HttpRequest" + "HttpRequest", + "Audit" ] } ] @@ -14824,10 +15221,12 @@ "resourceType": "flexibleServers", "locations": [ "Australia East", + "Brazil South", "Canada Central", "Central US", "East US", "East US 2", + "France Central", "Japan East", "North Europe", "Southeast Asia", @@ -14865,6 +15264,14 @@ "3" ] }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Southeast Asia", "zones": [ @@ -14928,6 +15335,14 @@ "1", "3" ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] } ], "metadata": { @@ -14968,16 +15383,18 @@ "applicationId": "87bbf879-e67c-49da-a9e1-632ecff043f9" } }, - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" }, { "resourceType": "locations/capabilities", "locations": [ "Australia East", + "Brazil South", "Canada Central", "Central US", "East US", "East US 2", + "France Central", "Japan East", "North Europe", "Southeast Asia", @@ -14996,10 +15413,12 @@ "resourceType": "locations/checkNameAvailability", "locations": [ "Australia East", + "Brazil South", "Canada Central", "Central US", "East US", "East US 2", + "France Central", "Japan East", "North Europe", "Southeast Asia", @@ -15152,6 +15571,35 @@ ], "capabilities": "None" }, + { + "resourceType": "getPrivateDnsZoneSuffix", + "locations": [ + "East US 2", + "East US", + "North Europe", + "Southeast Asia", + "West Europe", + "West US 2", + "North Central US", + "Canada Central", + "Australia East", + "UK South", + "Japan East", + "Central US", + "Korea Central", + "Central India", + "East Asia", + "France Central", + "Switzerland North", + "Brazil South" + ], + "apiVersions": [ + "2021-03-31-privatepreview", + "2020-10-05-privatepreview", + "2018-03-29-privatepreview" + ], + "capabilities": "None" + }, { "resourceType": "locations", "locations": [ @@ -16759,7 +17207,7 @@ } ], "metadata": { - "build": "1.0.2988.0", + "build": "1.0.3119.0", "microsoft.insights": { "monitoringResourceProvider": { "version": "1.0", @@ -17712,7 +18160,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "UAE North" ], "apiVersions": [ "2021-04-01-preview", @@ -17721,7 +18170,40 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "WebPubSub", + "locations": [ + "East US", + "North Europe", + "Southeast Asia", + "West Europe", + "West US 2" + ], + "apiVersions": [ + "2021-04-01-preview", + "2020-05-01" + ], + "defaultApiVersion": "2021-04-01-preview", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "WebPubSub", + "onbehalfSupportedLogCategories": [ + "AllLogs" + ] + } + ] + } + } + } + }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { @@ -17734,7 +18216,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" }, { @@ -17760,7 +18242,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "UAE North" ], "apiVersions": [ "2021-04-01-preview", @@ -17769,7 +18252,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" }, { @@ -17795,7 +18278,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "UAE North" ], "apiVersions": [ "2021-04-01-preview", @@ -17804,7 +18288,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" }, { @@ -17825,7 +18309,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" }, { @@ -17851,7 +18335,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "UAE North" ], "apiVersions": [ "2021-04-01-preview", @@ -17860,7 +18345,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" }, { @@ -17886,7 +18371,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "UAE North" ], "apiVersions": [ "2021-04-01-preview", @@ -17895,7 +18381,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" }, { @@ -17921,7 +18407,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "UAE North" ], "apiVersions": [ "2021-04-01-preview", @@ -17930,7 +18417,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" } ], @@ -17939,7 +18426,8 @@ "monitoringResourceProvider": { "version": "1.0", "apiVersions": { - "default": "2018-10-01", + "SignalR": "2018-10-01", + "WebPubSub": "2021-04-01-preview", "operations": "2018-10-01" }, "metrics": { @@ -18095,6 +18583,7 @@ "East US 2", "West US 2", "Brazil South", + "France Central", "Southeast Asia", "North Europe", "AUSTRALIA EAST", @@ -18135,6 +18624,14 @@ "3" ] }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Southeast Asia", "zones": [ @@ -18242,7 +18739,7 @@ "applicationId": "cb43afba-eb6b-4cef-bf00-758b6c233beb" } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "servers/recoverableServers", @@ -18342,6 +18839,7 @@ "East US 2", "West US 2", "Brazil South", + "France Central", "Southeast Asia", "North Europe", "AUSTRALIA EAST", @@ -18413,6 +18911,7 @@ "East US 2", "West US 2", "Brazil South", + "France Central", "Southeast Asia", "North Europe", "AUSTRALIA EAST", @@ -19823,7 +20322,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -19977,6 +20478,10 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [] + }, { "location": "Norway East", "zones": [] @@ -20019,7 +20524,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20063,7 +20570,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20107,7 +20616,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20151,7 +20662,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20195,7 +20708,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20266,7 +20781,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20302,7 +20819,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20385,7 +20903,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20480,6 +20999,10 @@ "1", "3" ] + }, + { + "location": "Central India", + "zones": [] } ], "metadata": { @@ -20518,7 +21041,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20541,7 +21065,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20564,7 +21089,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20587,7 +21113,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20610,7 +21137,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20633,7 +21161,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20656,7 +21185,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20680,10 +21210,12 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", + "2021-02-01-preview", "2020-10-01-preview", "2020-04-01-preview" ], @@ -20732,7 +21264,9 @@ "Germany North", "Germany West Central", "Norway East", - "Norway West" + "Norway West", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20858,9 +21392,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -20977,9 +21514,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -21078,9 +21618,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -21293,9 +21836,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -21566,9 +22112,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -21782,9 +22331,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -21867,6 +22419,55 @@ }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, + { + "resourceType": "dscpConfigurations", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, { "resourceType": "privateEndpoints", "locations": [ @@ -21902,9 +22503,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -21976,9 +22580,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22031,9 +22638,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22161,9 +22771,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22291,9 +22904,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22373,9 +22989,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22443,9 +23062,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22509,9 +23131,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22610,9 +23235,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22811,9 +23439,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22872,9 +23503,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22916,7 +23550,10 @@ "2016-08-01", "2016-07-01", "2016-06-01", - "2016-03-30" + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" ], "defaultApiVersion": "2020-03-01", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -22956,9 +23593,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23044,9 +23684,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23116,9 +23759,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23204,9 +23850,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23340,9 +23989,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23441,9 +24093,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23562,9 +24217,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23818,9 +24476,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23846,6 +24507,8 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23943,9 +24606,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24043,9 +24709,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24143,9 +24812,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24229,9 +24901,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24275,9 +24950,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24375,9 +25053,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24449,9 +25130,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24514,9 +25198,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24571,9 +25258,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24628,9 +25318,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24681,9 +25374,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24737,9 +25433,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24793,9 +25492,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24841,9 +25543,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24889,9 +25594,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24954,9 +25662,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01" ], @@ -24997,9 +25708,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01" ], @@ -25040,9 +25754,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -25105,9 +25822,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -25170,9 +25890,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -25235,9 +25958,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -25300,9 +26026,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26001,9 +26730,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26122,9 +26854,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26208,9 +26943,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26283,9 +27021,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26356,9 +27097,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26415,9 +27159,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26474,9 +27221,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26533,9 +27283,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26570,7 +27323,17 @@ "2017-06-01", "2017-04-01", "2017-03-01", - "2016-12-01" + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" ], "defaultApiVersion": "2020-03-01", "capabilities": "SupportsTags, SupportsLocation" @@ -26610,9 +27373,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26686,9 +27452,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26758,9 +27527,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26828,9 +27600,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26882,9 +27657,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26954,9 +27732,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27059,9 +27840,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27153,9 +27937,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27200,6 +27987,37 @@ }, "capabilities": "SupportsTags, SupportsLocation" }, + { + "resourceType": "expressRoutePortsLocations", + "locations": [ + "France Central" + ], + "apiVersions": [ + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "capabilities": "None" + }, { "resourceType": "firewallPolicies", "locations": [ @@ -27225,6 +28043,7 @@ "Southeast Asia", "Korea Central", "Brazil South", + "Brazil Southeast", "Japan East", "UK West", "West US", @@ -27245,6 +28064,8 @@ "Central US" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27313,6 +28134,8 @@ "Central US" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27335,6 +28158,8 @@ "resourceType": "azureWebCategories", "locations": [], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01" ], @@ -27345,6 +28170,8 @@ "resourceType": "locations/nfvOperations", "locations": [], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27366,6 +28193,8 @@ "resourceType": "locations/nfvOperationResults", "locations": [], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27416,9 +28245,12 @@ "Australia Central", "South Africa North", "UAE North", - "Switzerland North" + "Switzerland North", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27466,9 +28298,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27705,9 +28540,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27766,198 +28604,210 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" - ], - "apiVersions": [ - "2020-11-01", - "2020-08-01", - "2020-07-01", - "2020-06-01", - "2020-05-01", - "2020-04-01", - "2020-03-01", - "2020-01-01", - "2019-12-01", - "2019-11-01", - "2019-09-01", - "2019-08-01", - "2019-07-01", - "2019-06-01", - "2019-04-01", - "2019-02-01", - "2018-12-01", - "2018-11-01", - "2018-10-01", - "2018-08-01" - ], - "defaultApiVersion": "2020-03-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "privateLinkServices", - "locations": [ - "West US", - "East US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "North Central US", - "South Central US", - "Central US", - "East US 2", - "Japan East", - "Japan West", - "Brazil South", - "Australia East", - "Australia Southeast", - "Central India", - "South India", - "West India", - "Canada Central", - "Canada East", - "West Central US", - "West US 2", - "UK West", - "UK South", - "Korea Central", - "Korea South", - "France Central", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East" - ], - "apiVersions": [ - "2020-11-01", - "2020-08-01", - "2020-07-01", - "2020-06-01", - "2020-05-01", - "2020-04-01", - "2020-03-01", - "2020-01-01", - "2019-12-01", - "2019-11-01", - "2019-09-01", - "2019-08-01", - "2019-07-01", - "2019-06-01", - "2019-04-01", - "2019-02-01", - "2018-12-01", - "2018-11-01", - "2018-10-01", - "2018-08-01" - ], - "defaultApiVersion": "2020-03-01", - "metadata": { - "microsoft.insights": { - "monitoringResourceProvider": { - "version": "1.0", - "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", - "metrics": { - "mdmInfo": [ - { - "enableRegionalMdmAccount": true, - "sourceMdmAccount": "VNetMDMShoebox", - "sourceMdmNamespace": "VNetAzureMonitoring" - } - ] - } - } - } - }, - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/privateLinkServices", - "locations": [ - "West US", - "East US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "North Central US", - "South Central US", - "Central US", - "East US 2", - "Japan East", - "Japan West", - "Brazil South", - "Australia East", - "Australia Southeast", - "Central India", - "South India", - "West India", - "Canada Central", - "Canada East", - "West Central US", - "West US 2", - "UK West", - "UK South", - "Korea Central", - "Korea South", - "France Central", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East" - ], - "apiVersions": [ - "2020-11-01", - "2020-08-01", - "2020-07-01", - "2020-06-01", - "2020-05-01", - "2020-04-01", - "2020-03-01" - ], - "capabilities": "None" - }, - { - "resourceType": "ddosProtectionPlans", - "locations": [ - "West US", - "East US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "North Central US", - "South Central US", - "Central US", - "East US 2", - "Japan East", - "Japan West", - "Brazil South", - "Australia East", - "Australia Southeast", - "Central India", - "South India", - "West India", - "Canada Central", - "Canada East", - "West Central US", - "West US 2", - "UK West", - "UK South", - "Korea Central", - "Korea South", - "France Central", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-03-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateLinkServices", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "VNetMDMShoebox", + "sourceMdmNamespace": "VNetAzureMonitoring" + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/privateLinkServices", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01" + ], + "capabilities": "None" + }, + { + "resourceType": "ddosProtectionPlans", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -28029,9 +28879,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -28365,9 +29218,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -28427,9 +29283,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -28463,7 +29322,7 @@ ], "mdmInfo": [ { - "enableRegionalMdmAccount": true, + "enableRegionalMdmAccount": false, "sourceMdmAccount": "BrkBastionHost", "sourceMdmNamespace": "BrkBastion" } @@ -28610,6 +29469,8 @@ "Central US" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -28678,9 +29539,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -28696,9 +29560,52 @@ { "resourceType": "locations/commitInternalAzureNetworkManagerConfiguration", "locations": [ - "West Central US" + "West Central US", + "North Central US", + "West US", + "West Europe", + "UAE Central", + "Germany North", + "East US", + "West India", + "East US 2", + "Australia Central", + "Australia Central 2", + "South Africa West", + "Brazil South", + "UK West", + "North Europe", + "Central US", + "UAE North", + "Germany West Central", + "Switzerland West", + "East Asia", + "Jio India West", + "South Africa North", + "UK South", + "South India", + "Australia Southeast", + "France South", + "West US 2", + "Japan West", + "Norway East", + "France Central", + "West US 3", + "Central India", + "Korea South", + "Brazil Southeast", + "Korea Central", + "Southeast Asia", + "South Central US", + "Norway West", + "Australia East", + "Japan East", + "Canada East", + "Canada Central", + "Switzerland North" ], "apiVersions": [ + "2021-02-01-preview", "2020-08-01", "2020-07-01", "2020-06-01", @@ -28710,10 +29617,65 @@ ], "capabilities": "None" }, + { + "resourceType": "locations/internalAzureVirtualNetworkManagerOperation", + "locations": [ + "West Central US", + "North Central US", + "West US", + "West Europe", + "UAE Central", + "Germany North", + "East US", + "West India", + "East US 2", + "Australia Central", + "Australia Central 2", + "South Africa West", + "Brazil South", + "UK West", + "North Europe", + "Central US", + "UAE North", + "Germany West Central", + "Switzerland West", + "East Asia", + "Jio India West", + "South Africa North", + "UK South", + "South India", + "Australia Southeast", + "France South", + "West US 2", + "Japan West", + "Norway East", + "France Central", + "West US 3", + "Central India", + "Korea South", + "Brazil Southeast", + "Korea Central", + "Southeast Asia", + "South Central US", + "Norway West", + "Australia East", + "Japan East", + "Canada East", + "Canada Central", + "Switzerland North" + ], + "apiVersions": [ + "2021-02-01-preview", + "2020-08-01" + ], + "capabilities": "None" + }, { "resourceType": "networkVirtualApplianceSkus", "locations": [], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -29373,6 +30335,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01" ], "capabilities": "None" @@ -29423,6 +30386,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01" ], "capabilities": "None" @@ -29473,6 +30437,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01" ], "capabilities": "None" @@ -29523,6 +30488,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01" ], "capabilities": "None" @@ -29586,6 +30552,56 @@ "defaultApiVersion": "2020-06-01", "capabilities": "None" }, + { + "resourceType": "staticSites/userProvidedFunctionApps", + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia" + ], + "apiVersions": [ + "2020-12-01" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" + }, + { + "resourceType": "staticSites/builds", + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "staticSites/builds/userProvidedFunctionApps", + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia" + ], + "apiVersions": [ + "2020-12-01" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" + }, { "resourceType": "listSitesAssignedToHostName", "locations": [ @@ -31132,144 +32148,6 @@ "apiVersion": "2018-02-01" } ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - } - ], "metadata": { "microsoft.insights": { "monitoringResourceProvider": { @@ -31513,7 +32391,8 @@ { "resourceType": "kubeEnvironments", "locations": [ - "North Central US (Stage)" + "North Central US (Stage)", + "West Central US" ], "apiVersions": [ "2020-12-01", @@ -33343,7 +34222,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -33415,7 +34295,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -33625,7 +34506,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -33697,7 +34579,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -33916,7 +34799,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -33989,7 +34873,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34062,7 +34947,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34134,7 +35020,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34208,7 +35095,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34282,7 +35170,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34367,7 +35256,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34439,7 +35329,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34510,7 +35401,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34572,7 +35464,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34643,7 +35536,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34707,7 +35601,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34771,7 +35666,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34843,7 +35739,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34907,7 +35804,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-01" @@ -34949,7 +35847,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35002,7 +35901,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35054,7 +35954,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35105,7 +36006,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35151,7 +36053,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -35193,7 +36096,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35238,7 +36142,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35283,7 +36188,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35468,7 +36374,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-09-30", @@ -35515,7 +36422,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-09-30", @@ -35562,7 +36470,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-09-30", @@ -35609,7 +36518,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-09-30", @@ -35656,7 +36566,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-09-30", @@ -35703,7 +36614,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-01", @@ -35905,37 +36817,394 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af" + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" + "2021-03-01", + "2020-10-01-preview" ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] }, { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.uniqueId" + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" }, { - "resourceType": "locations/diskoperations", + "resourceType": "cloudServices/roles", "locations": [ "Southeast Asia", "East US 2", @@ -35969,36 +37238,71 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" + "2021-03-01", + "2020-10-01-preview" ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" + "defaultApiVersion": "2021-03-01", + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.uniqueId" + } } + }, + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" ], + "defaultApiVersion": "2021-03-01", "capabilities": "None" }, { - "resourceType": "diskEncryptionSets", + "resourceType": "locations/csoperations", "locations": [ "Southeast Asia", "East US 2", @@ -36032,26 +37336,17 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" + "2021-03-01", + "2020-10-01-preview" ], - "defaultApiVersion": "2020-06-30", - "metadata": { - "Microsoft.ManagedIdentity": { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af" - } - }, - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "None" }, { - "resourceType": "diskAccesses", + "resourceType": "locations/cloudServiceOsVersions", "locations": [ "Southeast Asia", "East US 2", @@ -36085,16 +37380,190 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" + "2021-03-01" ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" }, { "resourceType": "images", @@ -36131,7 +37600,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -36196,7 +37666,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -36247,7 +37718,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Australia East" + "Australia East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -36434,7 +37906,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Australia East" + "Australia East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -37488,6 +38961,10 @@ { "applicationId": "3af5a1e8-2459-45cb-8683-bcd6cccbcc13", "roleDefinitionId": "b1309299-720d-4159-9897-6158a61aee41" + }, + { + "applicationId": "161a339d-b9f5-41c5-8856-6a6669acac64", + "roleDefinitionId": "b61a6c11-d848-4eec-8c37-fb13ab7d5729" } ], "resourceTypes": [ @@ -37545,6 +39022,7 @@ "global" ], "apiVersions": [ + "2021-04-01", "2019-06-01", "2019-03-01", "2018-02-01-privatepreview" @@ -38034,6 +39512,7 @@ "resourceType": "roleAssignments", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2020-08-01-preview", "2020-04-01-preview", "2020-03-01-preview", @@ -38439,7 +39918,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -38503,7 +39983,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -38561,7 +40042,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -38618,7 +40100,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -38705,7 +40188,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -38766,7 +40250,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -38825,7 +40310,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -41902,7 +43388,9 @@ "UAE North", "Switzerland North", "Switzerland West", - "Germany West Central" + "Germany West Central", + "West US 3", + "Norway East" ], "apiVersions": [ "2017-04-18", @@ -41976,7 +43464,9 @@ "UAE North", "Switzerland North", "Switzerland West", - "Germany West Central" + "Germany West Central", + "Norway East", + "West US 3" ], "apiVersions": [ "2017-04-18", @@ -42240,7 +43730,6 @@ { "resourceType": "databaseAccounts", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -42272,9 +43761,13 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42350,42 +43843,10 @@ }, { "resourceType": "databaseAccountNames", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2", - "UAE North", - "UK West", - "UK South", - "Brazil South", - "Korea South", - "Korea Central" - ], + "locations": [], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42440,42 +43901,10 @@ }, { "resourceType": "operations", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2", - "UAE North", - "UK West", - "UK South", - "Brazil South", - "Korea South", - "Korea Central" - ], + "locations": [], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42530,42 +43959,68 @@ }, { "resourceType": "operationResults", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2", - "UAE North", - "UK West", - "UK South", - "Brazil South", - "Korea South", - "Korea Central" + "locations": [], + "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", + "2021-03-15", + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + } + }, + "capabilities": "None" + }, + { + "resourceType": "operationsStatus", + "locations": [], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42621,7 +44076,6 @@ { "resourceType": "locations/operationsStatus", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -42653,9 +44107,13 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42711,7 +44169,6 @@ { "resourceType": "locations/operationResults", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -42743,9 +44200,13 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42800,42 +44261,10 @@ }, { "resourceType": "locations", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2", - "UAE North", - "UK West", - "UK South", - "Brazil South", - "Korea South", - "Korea Central" - ], + "locations": [], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42857,7 +44286,6 @@ { "resourceType": "locations/deleteVirtualNetworkOrSubnets", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -42889,9 +44317,13 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42913,7 +44345,6 @@ { "resourceType": "locations/restorableDatabaseAccounts", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -42945,9 +44376,13 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2021-03-01-preview", "2020-06-01-preview" ], "capabilities": "None" @@ -42955,7 +44390,6 @@ { "resourceType": "restorableDatabaseAccounts", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -42987,9 +44421,13 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2021-03-01-preview", "2020-06-01-preview" ], "capabilities": "None" @@ -42997,7 +44435,6 @@ { "resourceType": "cassandraClusters", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -43029,9 +44466,12 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", "2021-03-01-preview" ], "defaultApiVersion": "2021-03-01-preview", @@ -44077,6 +45517,8 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-03-03-preview", + "2021-02-01-preview", "2020-08-31-preview", "2020-08-31", "2020-08-01", @@ -44122,6 +45564,8 @@ "resourceType": "usages", "locations": [], "apiVersions": [ + "2021-03-03-preview", + "2021-02-01-preview", "2020-08-31-preview", "2020-08-31", "2020-08-01", @@ -44154,6 +45598,8 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-03-preview", + "2021-02-01-preview", "2020-08-31-preview", "2020-08-31", "2020-08-01", @@ -44186,6 +45632,8 @@ "resourceType": "operationResults", "locations": [], "apiVersions": [ + "2021-03-03-preview", + "2021-02-01-preview", "2020-08-31-preview", "2020-08-31", "2020-08-01", @@ -44260,6 +45708,8 @@ "UAE North" ], "apiVersions": [ + "2021-03-03-preview", + "2021-02-01-preview", "2020-08-31-preview", "2020-08-31", "2020-08-01", @@ -44372,6 +45822,7 @@ "UAE North" ], "apiVersions": [ + "2021-02-01-preview", "2018-07-31", "2018-01-15-preview" ], @@ -44984,7 +46435,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-01-01-preview", @@ -45034,9 +46486,11 @@ "France Central", "South Africa North", "Australia Central", + "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-01-01-preview" @@ -45074,6 +46528,14 @@ ], "capabilities": "None" }, + { + "resourceType": "namespaces/privateEndpointConnections", + "locations": [], + "apiVersions": [ + "2018-01-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "namespaces/eventhubs", "locations": [], @@ -45363,6 +46825,144 @@ "2015-03-01-preview" ], "defaultApiVersion": "2015-03-01-preview", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "Norway East", + "zones": [] + } + ], "metadata": { "microsoft.insights": { "monitoringResourceProvider": { @@ -45430,6 +47030,144 @@ "2015-03-01-preview" ], "defaultApiVersion": "2015-03-01-preview", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "Norway East", + "zones": [] + } + ], "capabilities": "None" }, { @@ -46635,6 +48373,7 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", "2020-05-01", "2018-07-01", "2018-06-01-preview", @@ -47398,6 +49137,8 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2020-05-01", "2018-07-01", "2018-06-01-preview", @@ -47406,7 +49147,7 @@ "2015-10-01", "2015-04-01" ], - "defaultApiVersion": "2018-07-01", + "defaultApiVersion": "2020-05-01", "capabilities": "None" }, { @@ -47423,6 +49164,8 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2020-05-01", "2018-07-01", "2018-06-01-preview", @@ -47473,12 +49216,14 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2020-05-01", "2018-07-01", "2018-06-01-preview", "2018-03-30-preview" ], - "defaultApiVersion": "2018-07-01", + "defaultApiVersion": "2020-05-01", "capabilities": "None" } ], @@ -47952,9 +49697,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -47998,9 +49745,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48044,9 +49793,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48270,9 +50021,11 @@ "South Africa North", "UAE North", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48346,9 +50099,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48414,9 +50169,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48475,9 +50232,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48536,9 +50295,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48597,9 +50358,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48658,9 +50421,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48719,9 +50484,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48743,6 +50510,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48810,9 +50578,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48874,9 +50644,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48898,6 +50670,7 @@ "resourceType": "usages", "locations": [], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48970,9 +50743,11 @@ "South Africa North", "UAE North", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -49046,9 +50821,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -49099,7 +50876,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -49141,7 +50919,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -49484,6 +51263,9 @@ }, { "applicationId": "8ee8fdad-f234-4243-8f3b-15c294843740" + }, + { + "applicationId": "04687a56-4fc2-4e36-b274-b862fb649733" } ], "resourceTypes": [ @@ -50915,7 +52697,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-01-01-preview", @@ -50964,6 +52747,14 @@ ], "capabilities": "None" }, + { + "resourceType": "namespaces/privateEndpointConnections", + "locations": [], + "apiVersions": [ + "2018-01-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "namespaces/queues", "locations": [], @@ -51180,7 +52971,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2017-04-01", @@ -51571,24 +53363,16 @@ "registrationPolicy": "RegistrationRequired" }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/LiveArena.Broadcast", - "namespace": "LiveArena.Broadcast", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Crypteron.DataSecurity", + "namespace": "Crypteron.DataSecurity", "resourceTypes": [ { - "resourceType": "services", + "resourceType": "apps", "locations": [ - "West US", - "North Europe", - "Japan West", - "Japan East", - "East Asia", - "West Europe", - "East US", - "Southeast Asia", - "Central US" + "West US" ], "apiVersions": [ - "2016-06-15" + "2016-08-12" ], "capabilities": "SupportsTags, SupportsLocation" }, @@ -51596,7 +53380,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ - "2016-06-15" + "2016-08-12" ], "capabilities": "None" }, @@ -51604,7 +53388,7 @@ "resourceType": "listCommunicationPreference", "locations": [], "apiVersions": [ - "2016-06-15" + "2016-08-12" ], "capabilities": "None" }, @@ -51612,7 +53396,7 @@ "resourceType": "updateCommunicationPreference", "locations": [], "apiVersions": [ - "2016-06-15" + "2016-08-12" ], "capabilities": "None" } @@ -51621,18 +53405,24 @@ "registrationPolicy": "RegistrationRequired" }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Mailjet.Email", - "namespace": "Mailjet.Email", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/LiveArena.Broadcast", + "namespace": "LiveArena.Broadcast", "resourceTypes": [ { "resourceType": "services", "locations": [ "West US", - "West Europe" + "North Europe", + "Japan West", + "Japan East", + "East Asia", + "West Europe", + "East US", + "Southeast Asia", + "Central US" ], "apiVersions": [ - "2017-10-01", - "2017-02-03" + "2016-06-15" ], "capabilities": "SupportsTags, SupportsLocation" }, @@ -51640,12 +53430,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ - "2018-07-01", - "2017-10-01", - "2017-05-29", - "2017-02-03", - "2016-11-01", - "2016-07-01" + "2016-06-15" ], "capabilities": "None" }, @@ -51653,9 +53438,7 @@ "resourceType": "listCommunicationPreference", "locations": [], "apiVersions": [ - "2017-10-01", - "2017-02-03", - "2016-11-01" + "2016-06-15" ], "capabilities": "None" }, @@ -51663,9 +53446,7 @@ "resourceType": "updateCommunicationPreference", "locations": [], "apiVersions": [ - "2017-10-01", - "2017-02-03", - "2016-11-01" + "2016-06-15" ], "capabilities": "None" } @@ -51722,7 +53503,9 @@ "South Africa North", "Switzerland North", "UAE North", - "Germany West Central" + "Germany West Central", + "West US 3", + "Norway East" ], "apiVersions": [ "2021-03-01", @@ -51764,7 +53547,9 @@ "South Africa North", "Switzerland North", "UAE North", - "Germany West Central" + "Germany West Central", + "West US 3", + "Norway East" ], "apiVersions": [ "2021-03-01", @@ -51805,7 +53590,9 @@ "South Africa North", "Switzerland North", "UAE North", - "Germany West Central" + "Germany West Central", + "West US 3", + "Norway East" ], "apiVersions": [ "2021-03-01", @@ -51847,7 +53634,9 @@ "South Africa North", "Switzerland North", "UAE North", - "Germany West Central" + "Germany West Central", + "West US 3", + "Norway East" ], "apiVersions": [ "2021-03-01", @@ -51889,7 +53678,9 @@ "South Africa North", "Switzerland North", "UAE North", - "Germany West Central" + "Germany West Central", + "West US 3", + "Norway East" ], "apiVersions": [ "2021-03-01", @@ -52855,6 +54646,11 @@ "apiVersions": [ "2020-08-26" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -52879,6 +54675,11 @@ "apiVersions": [ "2020-08-26" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, { @@ -52912,6 +54713,11 @@ "apiVersions": [ "2020-09-01-privatepreview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -52932,6 +54738,17 @@ "2020-09-01-privatepreview" ], "capabilities": "None" + }, + { + "resourceType": "Locations/osVersions", + "locations": [ + "East US 2 EUAP", + "West Central US" + ], + "apiVersions": [ + "2020-09-01-privatepreview" + ], + "capabilities": "None" } ], "metadata": { @@ -52982,7 +54799,9 @@ "UAE North", "Central India", "Korea Central", - "East Asia" + "East Asia", + "Japan East", + "South Africa North" ], "apiVersions": [ "2020-11-01-preview", @@ -53011,7 +54830,9 @@ "UAE North", "Central India", "Korea Central", - "East Asia" + "East Asia", + "Japan East", + "South Africa North" ], "apiVersions": [ "2020-11-01-preview", @@ -53040,7 +54861,9 @@ "UAE North", "Central India", "Korea Central", - "East Asia" + "East Asia", + "Japan East", + "South Africa North" ], "apiVersions": [ "2020-11-01-preview", @@ -53069,7 +54892,9 @@ "UAE North", "Central India", "Korea Central", - "East Asia" + "East Asia", + "Japan East", + "South Africa North" ], "apiVersions": [ "2020-11-01-preview", @@ -53120,7 +54945,9 @@ "UAE North", "Central India", "Korea Central", - "East Asia" + "East Asia", + "Japan East", + "South Africa North" ], "apiVersions": [ "2020-11-01-preview", @@ -53149,7 +54976,9 @@ "UAE North", "Central India", "Korea Central", - "East Asia" + "East Asia", + "Japan East", + "South Africa North" ], "apiVersions": [ "2020-11-01-preview", @@ -53231,13 +55060,38 @@ "Japan East", "UK South", "Australia Southeast", - "Australia East" + "Australia East", + "Southeast Asia" ], "apiVersions": [ "2020-06-30-preview" ], "capabilities": "SupportsExtension" }, + { + "resourceType": "configurationProfileAssignmentIntents", + "locations": [ + "Central US", + "East US", + "East US 2", + "South Central US", + "West US", + "West US 2", + "West Central US", + "North Europe", + "West Europe", + "Canada Central", + "Japan East", + "UK South", + "Australia Southeast", + "Australia East", + "Southeast Asia" + ], + "apiVersions": [ + "2021-03-30-preview" + ], + "capabilities": "SupportsExtension" + }, { "resourceType": "accounts", "locations": [ @@ -53255,7 +55109,8 @@ "Japan East", "UK South", "Australia Southeast", - "Australia East" + "Australia East", + "Southeast Asia" ], "apiVersions": [ "2020-06-30-preview" @@ -53280,7 +55135,8 @@ "Japan East", "UK South", "Australia Southeast", - "Australia East" + "Australia East", + "Southeast Asia" ], "apiVersions": [ "2020-06-30-preview" @@ -53368,6 +55224,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53419,6 +55276,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53471,6 +55329,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53491,6 +55350,7 @@ "Central US EUAP" ], "apiVersions": [ + "2020-01-13-preview", "2019-06-01", "2018-06-30", "2018-01-15", @@ -53519,6 +55379,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53583,6 +55444,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53631,6 +55493,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53681,6 +55544,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53725,6 +55589,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53769,6 +55634,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53857,6 +55723,11 @@ "2021-02-01-preview", "2020-07-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -53866,6 +55737,11 @@ "2021-02-01-preview", "2020-07-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -54001,7 +55877,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-03-20" @@ -54021,7 +55900,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-03-20" @@ -54041,7 +55923,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2021-01-01-preview", @@ -54069,7 +55954,7 @@ } } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "privateClouds/clusters", @@ -54084,7 +55969,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2021-01-01-preview", @@ -54105,7 +55993,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-03-20" @@ -54125,7 +56016,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-03-20" @@ -54145,7 +56039,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54165,7 +56062,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54185,7 +56085,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54205,7 +56108,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54225,7 +56131,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54245,7 +56154,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54265,7 +56177,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54285,7 +56200,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54305,7 +56223,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54325,7 +56246,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54345,7 +56269,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54376,6 +56303,9 @@ ] } } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "608f9929-9737-432e-860f-4e1c1821052f" } }, "registrationState": "NotRegistered", @@ -54410,6 +56340,7 @@ "Australia" ], "apiVersions": [ + "2021-04-01-preview", "2020-05-01-preview", "2019-01-01-privatepreview", "2019-01-01-preview", @@ -54430,6 +56361,7 @@ "Australia" ], "apiVersions": [ + "2021-04-01-preview", "2020-05-01-preview", "2019-01-01-privatepreview", "2019-01-01-preview" @@ -54446,6 +56378,7 @@ "Australia" ], "apiVersions": [ + "2021-04-01-preview", "2020-05-01-preview", "2019-01-01-privatepreview", "2019-01-01-preview", @@ -54466,6 +56399,7 @@ "Australia" ], "apiVersions": [ + "2021-04-01-preview", "2020-05-01-preview", "2016-02-10-privatepreview" ], @@ -54523,6 +56457,7 @@ "West Europe" ], "apiVersions": [ + "2021-03-02-preview", "2019-10-01" ], "capabilities": "None" @@ -54544,6 +56479,7 @@ "West Europe" ], "apiVersions": [ + "2021-03-02-preview", "2020-12-08-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -54565,6 +56501,7 @@ "West Europe" ], "apiVersions": [ + "2021-03-02-preview", "2020-12-08-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -54586,6 +56523,7 @@ "West Europe" ], "apiVersions": [ + "2021-03-02-preview", "2020-12-08-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -54765,6 +56703,55 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureSphere", + "namespace": "Microsoft.AzureSphere", + "authorizations": [ + { + "applicationId": "e7d5afaf-5e93-4aad-b546-878812ff572c", + "roleDefinitionId": "0bf1834f-602f-4692-b93c-814d655198fd" + } + ], + "resourceTypes": [ + { + "resourceType": "catalogs", + "locations": [ + "East US 2 EUAP", + "Central US EUAP", + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "catalogs/products", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureStack", "namespace": "Microsoft.AzureStack", @@ -54846,35 +56833,24 @@ "authorizations": [ { "applicationId": "1412d89f-b8a8-4111-b4fd-e82905cbd85d", - "roleDefinitionId": "90ffa33f-4875-44d8-b86f-d41c3aa6050e" + "roleDefinitionId": "90ffa33f-4875-44d8-b86f-d41c3aa6050e", + "managedByRoleDefinitionId": "5ece1ad5-ab30-4099-b16c-3aa7c8f5acb9" }, { "applicationId": "1322e676-dee7-41ee-a874-ac923822781c", "roleDefinitionId": "e91a9804-9f4d-4501-bf85-03bd4ea78451" + }, + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "12580382-2aec-4b61-ae1c-ecbdb4a0a25f" } ], "resourceTypes": [ { - "resourceType": "clusters", - "locations": [ - "East US", - "West Europe", - "Southeast Asia" - ], - "apiVersions": [ - "2020-10-01" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "operations", + "resourceType": "Operations", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2020-11-01-preview", "2020-10-01", "2020-03-01-preview" @@ -54907,6 +56883,23 @@ "2020-10-01" ], "capabilities": "None" + }, + { + "resourceType": "clusters", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-10-01" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" } ], "metadata": { @@ -55427,6 +57420,7 @@ "resourceType": "billingAccounts/customers/transactions", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2019-10-01-preview" ], "capabilities": "None" @@ -55737,6 +57731,7 @@ "resourceType": "billingAccounts/billingProfiles/invoiceSections/transactions", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2019-10-01-preview" ], "capabilities": "None" @@ -56121,11 +58116,20 @@ "resourceType": "billingAccounts/paymentMethods", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2019-10-01-preview", "2018-11-01-preview" ], "capabilities": "None" }, + { + "resourceType": "paymentMethods", + "locations": [], + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None" + }, { "resourceType": "billingAccounts/payableOverage", "locations": [], @@ -57432,6 +59436,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-04-02-preview", "2021-03-05-preview", "2021-02-12-preview", "2021-01-21-preview", @@ -57727,6 +59732,65 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConfidentialLedger", + "namespace": "Microsoft.ConfidentialLedger", + "authorizations": [ + { + "applicationId": "4353526e-1c33-4fcf-9e82-9683edf52848" + }, + { + "applicationId": "c9e0b461-3515-4a03-b576-ede91ed4336d" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/operationstatuses", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Ledgers", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Confluent", "namespace": "Microsoft.Confluent", @@ -57839,6 +59903,11 @@ "apiVersions": [ "2019-12-04-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" } ], @@ -57877,6 +59946,8 @@ { "resourceType": "Locations/OperationStatuses", "locations": [ + "Central US EUAP", + "East US 2 EUAP", "West US 2", "West Europe", "East US" @@ -58369,6 +60440,7 @@ "resourceType": "OperationStatus", "locations": [], "apiVersions": [ + "2021-01-01", "2019-11-01", "2019-10-01", "2019-05-01-preview", @@ -58385,6 +60457,7 @@ "resourceType": "OperationResults", "locations": [], "apiVersions": [ + "2021-01-01", "2019-11-01", "2019-10-01", "2019-05-01-preview", @@ -58435,12 +60508,14 @@ "resourceType": "containerGroups", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58448,12 +60523,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58479,12 +60556,14 @@ "resourceType": "serviceAssociationLinks", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58492,12 +60571,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58542,12 +60623,14 @@ "resourceType": "locations/capabilities", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58555,12 +60638,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58586,12 +60671,14 @@ "resourceType": "locations/usages", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58599,12 +60686,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58630,12 +60719,14 @@ "resourceType": "locations/operations", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58643,12 +60734,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58674,12 +60767,14 @@ "resourceType": "locations/operationresults", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58687,12 +60782,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58737,12 +60834,14 @@ "resourceType": "locations/cachedImages", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58750,12 +60849,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58781,12 +60882,14 @@ "resourceType": "locations/deleteVirtualNetworkOrSubnets", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58794,12 +60897,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58879,14 +60984,15 @@ ], "vnetSupportRegions": [ "australiaeast", + "australiasoutheast", "brazilsouth", "canadacentral", "canadaeast", "centralindia", "centralus", "centraluseuap", - "eastus", "eastasia", + "eastus", "eastus2", "eastus2euap", "francecentral", @@ -58895,12 +61001,14 @@ "koreacentral", "northcentralus", "northeurope", + "norwayeast", "southcentralus", "southeastasia", "southindia", "switzerlandnorth", "uaenorth", "uksouth", + "ukwest", "westcentralus", "westeurope", "westus", @@ -59206,6 +61314,7 @@ "resourceType": "Exports", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01-preview", "2020-06-01", "2020-05-01-preview", @@ -59320,6 +61429,7 @@ "resourceType": "GenerateDetailedCostReport", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01-preview" ], "capabilities": "SupportsExtension" @@ -59328,6 +61438,7 @@ "resourceType": "OperationStatus", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01-preview" ], "capabilities": "SupportsExtension" @@ -59336,6 +61447,7 @@ "resourceType": "OperationResults", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01-preview" ], "capabilities": "SupportsExtension" @@ -59819,6 +61931,7 @@ ], "apiVersions": [ "2021-02-01-preview", + "2021-02-01", "2020-12-01", "2020-09-01-preview", "2020-09-01", @@ -59833,7 +61946,7 @@ "2018-07-01", "2017-09-01" ], - "defaultApiVersion": "2020-12-01", + "defaultApiVersion": "2021-02-01", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { @@ -59845,6 +61958,7 @@ ], "apiVersions": [ "2021-02-01-preview", + "2021-02-01", "2020-12-01", "2020-09-01-preview", "2020-09-01", @@ -59866,6 +61980,7 @@ "locations": [], "apiVersions": [ "2021-02-01-preview", + "2021-02-01", "2020-12-01", "2020-09-01-preview", "2020-09-01", @@ -59970,8 +62085,6 @@ "South India", "West India", "Korea Central", - "Korea South", - "South Africa West", "South Africa North", "Brazil South", "Switzerland North", @@ -60018,7 +62131,15 @@ "secrets", "sqlPermissions", "tables", - "instancePools" + "instancePools", + "sqlanalytics", + "genie", + "globalInitScripts", + "iamRole", + "mlflowExperiment", + "featureStore", + "RemoteHistoryService", + "mlflowAcledArtifact" ] } ] @@ -60026,7 +62147,7 @@ } } }, - "capabilities": "SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "workspaces/virtualNetworkPeerings", @@ -60056,9 +62177,7 @@ "South India", "West India", "Korea Central", - "Korea South", "South Africa North", - "South Africa West", "UAE North", "Brazil South", "France Central", @@ -60098,9 +62217,7 @@ "South India", "West India", "Korea Central", - "Korea South", "South Africa North", - "South Africa West", "UAE North", "Brazil South", "France Central", @@ -60116,40 +62233,39 @@ "resourceType": "operations", "locations": [ "West US", - "East US 2", "West Europe", - "North Europe", + "Japan East", "East US", + "Korea Central", + "Central US", + "East US 2", + "North Europe", "Southeast Asia", "East Asia", "South Central US", "North Central US", - "Korea South", - "Korea Central", - "South Africa North", - "South Africa West", - "Switzerland North", "West US 2", - "Central US", "UK West", "UK South", "Australia East", "Australia Southeast", "Australia Central", "Australia Central 2", - "Japan East", "Japan West", "Canada Central", "Canada East", "Central India", "South India", "West India", + "South Africa North", "UAE North", "Brazil South", "France Central", + "Switzerland North", "Norway East" ], "apiVersions": [ + "2021-04-01-preview", "2018-04-01" ], "capabilities": "None" @@ -60182,9 +62298,7 @@ "South India", "West India", "Korea Central", - "Korea South", "South Africa North", - "South Africa West", "UAE North", "Brazil South", "France Central", @@ -60192,12 +62306,10 @@ "Norway East" ], "apiVersions": [ + "2021-04-01-preview", "2018-04-01", "2018-03-15", - "2018-03-01", - "2017-09-01-preview", - "2017-08-01-preview", - "2016-09-01-preview" + "2018-03-01" ], "capabilities": "None" }, @@ -60229,8 +62341,6 @@ "South India", "West India", "Korea Central", - "Korea South", - "South Africa West", "South Africa North", "Brazil South", "Switzerland North", @@ -60271,8 +62381,6 @@ "South India", "West India", "Korea Central", - "Korea South", - "South Africa West", "South Africa North", "Brazil South", "Switzerland North", @@ -60544,6 +62652,253 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Datadog", + "namespace": "Microsoft.Datadog", + "authorizations": [ + { + "applicationId": "ae11f5fb-c627-4eec-b4a0-f7b5969426e5", + "roleDefinitionId": "904f1136-432f-44da-adc4-d3bdf27b156d" + }, + { + "applicationId": "055caf97-1b4f-4730-9f5d-acc24b707b06", + "roleDefinitionId": "4ac7c055-417e-47eb-9a38-137e6233a688" + }, + { + "applicationId": "0c6620df-7b29-44de-8ba4-688a56a20f9f", + "roleDefinitionId": "e2116b11-5fb7-4f68-b0e9-9d4173a5dfdb" + } + ], + "resourceTypes": [ + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "West US 2", + "East US 2 EUAP" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "055caf97-1b4f-4730-9f5d-acc24b707b06" + }, + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "monitors/tagRules", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/listMonitoredResources", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/listApiKeys", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/getDefaultKey", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/setDefaultKey", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/singleSignOnConfigurations", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/listHosts", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/listLinkedResources", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/refreshSetPasswordLink", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "agreements", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataFactory", "namespace": "Microsoft.DataFactory", @@ -61471,6 +63826,19 @@ ], "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, + { + "resourceType": "ResourceGuards", + "locations": [ + "East US 2", + "North Europe", + "Southeast Asia", + "West Central US" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, { "resourceType": "operations", "locations": [], @@ -63086,6 +65454,74 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DelegatedNetwork", + "namespace": "Microsoft.DelegatedNetwork", + "authorizations": [ + { + "applicationId": "a91b1853-4403-4f54-b5cb-d1ea19d90c37", + "roleDefinitionId": "ff3f8a59-97f9-442a-9d5f-e21908e36352" + }, + { + "applicationId": "1efe5bbf-d5b1-4fe9-99fa-f55ce1c88679" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-03-15", + "2020-08-08-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "a91b1853-4403-4f54-b5cb-d1ea19d90c37" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DeploymentManager", "namespace": "Microsoft.DeploymentManager", @@ -63601,7 +66037,6 @@ "resourceType": "controllers", "locations": [ "West Europe", - "Canada Central", "Central US", "East US 2" ], @@ -63614,7 +66049,6 @@ "resourceType": "controllers/listConnectionDetails", "locations": [ "West Europe", - "Canada Central", "Central US", "East US 2" ], @@ -63627,7 +66061,6 @@ "resourceType": "operations", "locations": [ "West Europe", - "Canada Central", "Central US", "East US 2" ], @@ -63641,7 +66074,6 @@ "resourceType": "locations", "locations": [ "West Europe", - "Canada Central", "Central US", "East US 2" ], @@ -63654,7 +66086,6 @@ "resourceType": "locations/operationresults", "locations": [ "West Europe", - "Canada Central", "Central US", "East US 2" ], @@ -63667,7 +66098,6 @@ "resourceType": "locations/checkContainerHostMapping", "locations": [ "West Europe", - "Canada Central", "Central US", "East US 2" ], @@ -63750,7 +66180,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2018-10-15-preview", @@ -63800,7 +66231,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2018-10-15-preview", @@ -63849,7 +66281,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2018-10-15-preview", @@ -63898,7 +66331,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2018-10-15-preview", @@ -63971,7 +66405,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2018-10-15-preview", @@ -64034,6 +66469,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-06-30-preview", "2020-12-01", "2020-10-31", "2020-03-01-preview" @@ -64223,6 +66659,79 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Elastic", + "namespace": "Microsoft.Elastic", + "authorizations": [ + { + "applicationId": "9d777fa9-b417-43b8-8991-12f8ee2161d2", + "roleDefinitionId": "727fce2f-45e6-4d8d-8a08-7302549a924f" + }, + { + "applicationId": "5b81a823-5f67-4fb3-8d0f-4c92b5044fe4", + "roleDefinitionId": "e0ad5282-27b3-4c62-a72f-ea7bef45503e" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "East US 2 EUAP", + "Central US EUAP", + "West US 2", + "UK South" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EnterpriseKnowledgeGraph", "namespace": "Microsoft.EnterpriseKnowledgeGraph", @@ -64448,6 +66957,78 @@ ], "capabilities": "None" }, + { + "resourceType": "customLocations", + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "West Central US" + ], + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "customLocations/enabledResourceTypes", + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "West Central US" + ], + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationsstatus", + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "West Central US" + ], + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "West Central US" + ], + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "None" + }, { "resourceType": "operations", "locations": [], @@ -64713,13 +67294,26 @@ "apiVersions": [ "2020-12-08" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { "resourceType": "Locations/OperationStatuses", "locations": [ "East US", - "West Europe" + "West Europe", + "East US 2", + "West US 2", + "South Central US", + "UK South", + "North Europe", + "Southeast Asia", + "Australia East", + "East US 2 EUAP" ], "apiVersions": [ "2020-12-08" @@ -64730,11 +67324,24 @@ "resourceType": "healthBots", "locations": [ "East US", - "West Europe" + "West Europe", + "East US 2", + "West US 2", + "South Central US", + "UK South", + "North Europe", + "Southeast Asia", + "Australia East", + "East US 2 EUAP" ], "apiVersions": [ "2020-12-08" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" } ], @@ -65107,9 +67714,11 @@ "East US 2", "North Europe", "France Central", + "Japan East", "UK South" ], "apiVersions": [ + "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", "2020-08-02", @@ -65135,9 +67744,11 @@ "East US 2", "North Europe", "France Central", + "Japan East", "UK South" ], "apiVersions": [ + "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", "2020-08-02", @@ -65155,6 +67766,7 @@ "West Europe" ], "apiVersions": [ + "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", "2020-08-02", @@ -65179,9 +67791,11 @@ "East US 2", "North Europe", "France Central", + "Japan East", "UK South" ], "apiVersions": [ + "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", "2020-08-02", @@ -65206,9 +67820,11 @@ "East US 2", "North Europe", "France Central", + "Japan East", "UK South" ], "apiVersions": [ + "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", "2020-08-02", @@ -65224,6 +67840,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", "2020-08-02", @@ -65599,6 +68216,18 @@ "defaultApiVersion": "2020-01-12-preview", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, + { + "resourceType": "dataConsumerCollaboratives", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "defaultApiVersion": "2020-01-12-preview", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, { "resourceType": "collaborativeInvitations", "locations": [ @@ -65710,6 +68339,9 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01-preview", + "2020-09-08-preview", "2020-01-12-preview" ], "defaultApiVersion": "2020-01-12-preview", @@ -65763,7 +68395,8 @@ "namespace": "Microsoft.IoTCentral", "authorizations": [ { - "applicationId": "9edfcdd9-0bc5-4bd4-b287-c3afc716aac7" + "applicationId": "9edfcdd9-0bc5-4bd4-b287-c3afc716aac7", + "roleDefinitionId": "913c14c1-35ac-45ee-b8f2-05524381b92c" } ], "resourceTypes": [ @@ -65884,6 +68517,118 @@ "2021-02-01-preview" ], "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/deviceGroups", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "sites", + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "sensors", + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "onPremiseSensors", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" } ], "metadata": { @@ -65926,7 +68671,8 @@ "East US 2", "West US 2", "Australia East", - "North Europe" + "North Europe", + "France Central" ], "apiVersions": [ "2021-04-01-preview", @@ -65936,6 +68682,9 @@ "metadata": { "Microsoft.ManagedIdentity": { "applicationId": "de742ffc-b441-4542-8646-7e805426b824" + }, + "providerHubMetadata": { + "providerExtendsPreflight": false } }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -65948,6 +68697,11 @@ "2021-03-01", "2020-01-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -65963,7 +68717,8 @@ "East US 2", "West US 2", "Australia East", - "North Europe" + "North Europe", + "France Central" ], "apiVersions": [ "2021-04-01-preview", @@ -65980,6 +68735,11 @@ "2021-03-01", "2020-01-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -65992,6 +68752,11 @@ "2019-11-01-preview", "2019-09-01-privatepreview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" } ], @@ -66034,7 +68799,8 @@ "North Europe", "UK South", "Southeast Asia", - "Australia East" + "Australia East", + "France Central" ], "apiVersions": [ "2021-03-01", @@ -66057,7 +68823,8 @@ "North Europe", "UK South", "Southeast Asia", - "Australia East" + "Australia East", + "France Central" ], "apiVersions": [ "2020-07-01-preview" @@ -66119,6 +68886,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66132,7 +68900,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66292,6 +69061,14 @@ "3" ] }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, { "location": "Norway East", "zones": [ @@ -66328,6 +69105,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66341,7 +69119,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66383,6 +69162,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66396,7 +69176,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66438,6 +69219,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66451,7 +69233,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66488,6 +69271,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66501,7 +69285,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66543,6 +69328,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66556,7 +69342,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66598,6 +69385,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66611,7 +69399,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66648,6 +69437,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66661,7 +69451,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66721,6 +69512,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66734,7 +69526,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66794,6 +69587,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66807,7 +69601,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01" @@ -66866,11 +69661,18 @@ { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.LabServices", "namespace": "Microsoft.LabServices", - "authorization": { - "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f", - "roleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525", - "managedByRoleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525" - }, + "authorizations": [ + { + "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f", + "roleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525", + "managedByRoleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525" + }, + { + "applicationId": "c7bb12bf-0b39-4f7f-9171-f418ff39b76a", + "roleDefinitionId": "4796d754-aa9c-4af1-be54-f17836325288", + "managedByRoleDefinitionId": "4796d754-aa9c-4af1-be54-f17836325288" + } + ], "resourceTypes": [ { "resourceType": "labaccounts", @@ -66962,8 +69764,15 @@ }, { "resourceType": "operations", - "locations": [], + "locations": [ + "West Central US", + "East US 2 EUAP", + "Central US EUAP", + "West US 2", + "East US 2" + ], "apiVersions": [ + "2020-05-01-preview", "2019-01-01-preview", "2018-10-15", "2017-12-01-preview" @@ -66988,6 +69797,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2020-05-01-preview", "2019-01-01-preview", "2018-10-15", "2017-12-01-preview" @@ -66997,8 +69807,71 @@ ], "metadata": { "Microsoft.ManagedIdentity": { - "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f" + "applicationId": "c7bb12bf-0b39-4f7f-9171-f418ff39b76a" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Logz", + "namespace": "Microsoft.Logz", + "authorizations": [ + { + "applicationId": "a5472e16-e1d2-4bbe-81b3-ecdcd459b536", + "roleDefinitionId": "bd91f1c6-cda0-4e9d-9982-18a494ec938e" + }, + { + "applicationId": "0ecb6dbc-7807-4951-9a69-b5d3dfa5a0b5", + "roleDefinitionId": "b15da9ae-5633-4997-8e2c-b0941fb54476" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "defaultApiVersion": "2020-10-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "West US 2" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" } + ], + "metadata": { + "onboardedVia": "ProviderHub" }, "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" @@ -67027,6 +69900,11 @@ "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90", "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25" }, + { + "applicationId": "bf283ae6-5efd-44a8-b56a-2a7939982d60", + "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90", + "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25" + }, { "applicationId": "6608bce8-e060-4e82-bfd2-67ed4f60262f", "roleDefinitionId": "344880d0-81ee-4377-b825-b8b79810e492", @@ -67059,6 +69937,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67106,13 +69986,105 @@ "South Central US" ], "apiVersions": [ - "2020-12-01-preview", + "2021-03-01-preview", + "2020-12-01-preview", + "2020-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/onlineEndpoints/deployments", + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US" + ], + "apiVersions": [ + "2021-03-01-preview", + "2020-12-01-preview", + "2020-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/batchEndpoints", + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US" + ], + "apiVersions": [ + "2021-03-01-preview", + "2020-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/batchEndpoints/deployments", + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US" + ], + "apiVersions": [ + "2021-03-01-preview", "2020-09-01-preview" ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, { - "resourceType": "workspaces/onlineEndpoints/deployments", + "resourceType": "workspaces/batchEndpoints/jobs", "locations": [ "North Central US", "Canada Central", @@ -67136,13 +70108,12 @@ "South Central US" ], "apiVersions": [ - "2020-12-01-preview", "2020-09-01-preview" ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "None" }, { - "resourceType": "workspaces/batchEndpoints", + "resourceType": "workspaces/batchEndpoints/deployments/jobs", "locations": [ "North Central US", "Canada Central", @@ -67168,10 +70139,10 @@ "apiVersions": [ "2020-09-01-preview" ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "None" }, { - "resourceType": "workspaces/batchEndpoints/deployments", + "resourceType": "workspaces/computes", "locations": [ "North Central US", "Canada Central", @@ -67195,12 +70166,30 @@ "South Central US" ], "apiVersions": [ - "2020-09-01-preview" + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-06-01", + "2019-05-01", + "2018-11-19", + "2018-03-01-preview" ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity" }, { - "resourceType": "workspaces/batchEndpoints/jobs", + "resourceType": "workspaces/jobs", "locations": [ "North Central US", "Canada Central", @@ -67224,12 +70213,13 @@ "South Central US" ], "apiVersions": [ + "2021-03-01-preview", "2020-09-01-preview" ], "capabilities": "None" }, { - "resourceType": "workspaces/batchEndpoints/deployments/jobs", + "resourceType": "workspaces/codes", "locations": [ "North Central US", "Canada Central", @@ -67253,57 +70243,13 @@ "South Central US" ], "apiVersions": [ + "2021-03-01-preview", "2020-09-01-preview" ], "capabilities": "None" }, { - "resourceType": "workspaces/computes", - "locations": [ - "North Central US", - "Canada Central", - "Central India", - "UK South", - "West US", - "Central US", - "East Asia", - "Japan East", - "East US", - "North Europe", - "Korea Central", - "Brazil South", - "France Central", - "Australia East", - "East US 2", - "West US 2", - "West Central US", - "Southeast Asia", - "West Europe", - "South Central US" - ], - "apiVersions": [ - "2021-01-01", - "2020-09-01-preview", - "2020-08-01", - "2020-06-01", - "2020-05-15-preview", - "2020-05-01-preview", - "2020-04-01-preview", - "2020-04-01", - "2020-03-01", - "2020-02-18-preview", - "2020-02-02", - "2020-01-01", - "2019-11-01", - "2019-06-01", - "2019-05-01", - "2018-11-19", - "2018-03-01-preview" - ], - "capabilities": "SystemAssignedResourceIdentity" - }, - { - "resourceType": "workspaces/jobs", + "resourceType": "workspaces/codes/versions", "locations": [ "North Central US", "Canada Central", @@ -67333,7 +70279,7 @@ "capabilities": "None" }, { - "resourceType": "workspaces/codes", + "resourceType": "workspaces/components", "locations": [ "North Central US", "Canada Central", @@ -67357,13 +70303,12 @@ "South Central US" ], "apiVersions": [ - "2021-03-01-preview", "2020-09-01-preview" ], "capabilities": "None" }, { - "resourceType": "workspaces/codes/versions", + "resourceType": "workspaces/components/versions", "locations": [ "North Central US", "Canada Central", @@ -67387,7 +70332,6 @@ "South Central US" ], "apiVersions": [ - "2021-03-01-preview", "2020-09-01-preview" ], "capabilities": "None" @@ -67508,6 +70452,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67592,6 +70538,8 @@ "East US 2" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67618,6 +70566,8 @@ "East US 2" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67663,6 +70613,8 @@ "France Central" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67708,6 +70660,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-09-01", @@ -67755,6 +70709,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67799,6 +70755,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67843,6 +70801,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67885,6 +70845,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -68234,6 +71196,7 @@ "resourceType": "publicMaintenanceConfigurations", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview" ], "capabilities": "None" @@ -68524,16 +71487,20 @@ { "resourceType": "accounts", "locations": [ + "West Central US", "Global", "West US 2", "East US", - "West Europe" + "West Europe", + "North Europe" ], "apiVersions": [ + "2021-02-01", "2020-02-01-preview", "2018-05-01", "2017-01-01-preview" ], + "defaultApiVersion": "2021-02-01", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, { @@ -68547,19 +71514,38 @@ "defaultApiVersion": "2020-02-01-preview", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, + { + "resourceType": "accounts/creators", + "locations": [ + "North Europe", + "West Europe", + "East US 2", + "West US 2", + "Europe", + "United States" + ], + "apiVersions": [ + "2020-02-01-preview" + ], + "defaultApiVersion": "2020-02-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, { "resourceType": "accounts/eventGridFilters", "locations": [], "apiVersions": [ + "2021-02-01", "2020-02-01-preview", "2018-05-01" ], + "defaultApiVersion": "2018-05-01", "capabilities": "None" }, { "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-02-01", "2020-02-01-preview", "2018-05-01", "2017-01-01-preview" @@ -69042,7 +72028,7 @@ "2021-01-01", "2019-10-01-preview" ], - "defaultApiVersion": "2019-10-01-preview", + "defaultApiVersion": "2021-01-01", "metadata": { "Microsoft.ManagedIdentity": { "applicationId": "c1044a71-fd4a-42f0-9ba3-bd810cae7cb3" @@ -69123,7 +72109,7 @@ "2021-01-01", "2019-10-01-preview" ], - "defaultApiVersion": "2019-10-01-preview", + "defaultApiVersion": "2021-01-01", "capabilities": "None" } ], @@ -69402,6 +72388,7 @@ { "resourceType": "operations", "locations": [ + "Australia Central", "Australia East", "Australia Southeast", "Brazil South", @@ -69411,10 +72398,12 @@ "Central US", "East US", "East US 2", + "France Central", "Germany North", "Germany West Central", "Japan East", "Japan West", + "Korea Central", "North Europe", "Norway East", "Norway West", @@ -69433,6 +72422,7 @@ "South Central US (Stage)" ], "apiVersions": [ + "2021-02-01", "2020-12-01", "2020-11-01", "2020-10-01", @@ -69538,6 +72528,7 @@ "Australia East" ], "apiVersions": [ + "2020-09-09-preview", "2020-01-01-preview", "2020-01-01", "2019-06-06", @@ -69602,6 +72593,7 @@ "Australia East" ], "apiVersions": [ + "2020-09-09-preview", "2020-01-01-preview", "2019-05-01-preview" ], @@ -69739,6 +72731,11 @@ "apiVersions": [ "2020-06-23-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -69766,6 +72763,11 @@ "apiVersions": [ "2020-06-23-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -69778,6 +72780,17 @@ "2020-06-23-preview" ], "capabilities": "None" + }, + { + "resourceType": "applicationRegistrationInvites", + "locations": [ + "East US 2 EUAP", + "West Central US" + ], + "apiVersions": [ + "2020-06-23-preview" + ], + "capabilities": "None" } ], "metadata": { @@ -70568,6 +73581,7 @@ "resourceType": "providerRegistrations", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2020-11-20", "2020-10-01-preview", "2020-09-01-preview", @@ -70580,6 +73594,7 @@ "resourceType": "operationStatuses", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2020-11-20", "2020-06-01-preview", "2019-10-01", @@ -70591,6 +73606,7 @@ "resourceType": "providerRegistrations/resourceTypeRegistrations", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2020-11-20", "2020-10-01-preview", "2020-09-01-preview", @@ -70603,6 +73619,7 @@ "resourceType": "providerRegistrations/defaultRollouts", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2020-11-20", "2020-10-01-preview", "2020-09-01-preview", @@ -70615,6 +73632,7 @@ "resourceType": "providerRegistrations/customRollouts", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2020-11-20", "2020-10-01-preview", "2020-09-01-preview", @@ -70627,6 +73645,7 @@ "resourceType": "availableAccounts", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2020-06-01-preview", "2019-02-01-preview", "2018-11-01-preview" @@ -70658,6 +73677,8 @@ "South Central US", "Brazil South", "Central India", + "UK South", + "Australia East", "East US 2" ], "apiVersions": [ @@ -70763,6 +73784,8 @@ "Canada Central", "South Central US", "Central India", + "UK South", + "Australia East", "East US 2" ], "apiVersions": [ @@ -70956,9 +73979,14 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-03-01", + "2021-02-10", + "2021-02-01-preview", + "2021-02-01", "2021-01-01", "2020-12-01", "2020-10-01", @@ -71000,6 +74028,10 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-01", + "2021-02-10", + "2021-02-01-preview", + "2021-02-01", "2021-01-01", "2020-12-01", "2020-10-01", @@ -71085,7 +74117,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2017-07-01", @@ -71134,7 +74167,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-01-10" @@ -71182,7 +74216,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2016-06-01" @@ -71230,7 +74265,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2016-06-01" @@ -71278,7 +74314,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2017-07-01" @@ -71326,7 +74363,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2017-07-01" @@ -71374,7 +74412,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-12-20-preview", @@ -71423,7 +74462,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-12-20-preview", @@ -71472,7 +74512,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-12-20-preview", @@ -71521,7 +74562,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-12-20-preview", @@ -71570,7 +74612,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-12-20-preview", @@ -71619,7 +74662,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-12-20-preview", @@ -71668,7 +74712,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2017-07-01-preview" @@ -71716,9 +74761,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-10", "2018-07-10" ], "apiProfiles": [ @@ -71823,6 +74870,7 @@ "Norway East", "South Africa North", "South Central US", + "South India", "Southeast Asia", "Switzerland North", "Switzerland West", @@ -71861,6 +74909,7 @@ "Norway East", "South Africa North", "South Central US", + "South India", "Southeast Asia", "Switzerland North", "Switzerland West", @@ -71899,6 +74948,7 @@ "Norway East", "South Africa North", "South Central US", + "South India", "Southeast Asia", "Switzerland North", "Switzerland West", @@ -73052,6 +76102,7 @@ "Japan East", "Korea Central", "North Europe", + "Norway East", "UAE North", "West Central US", "West Europe", @@ -73086,6 +76137,7 @@ "Japan East", "Korea Central", "North Europe", + "Norway East", "UAE North", "West Central US", "West Europe", @@ -73120,6 +76172,7 @@ "Japan East", "Korea Central", "North Europe", + "Norway East", "UAE North", "West Central US", "West Europe", @@ -73172,6 +76225,8 @@ "South Africa North" ], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2019-06-01-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -73215,6 +76270,8 @@ "South Africa North" ], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2019-06-01-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -73253,6 +76310,9 @@ }, { "applicationId": "20e940b3-4c77-4b0b-9a53-9e16a1b010a7" + }, + { + "applicationId": "5b712e99-51a3-41ce-86ff-046e0081c5c0" } ], "resourceTypes": [ @@ -73276,16 +76336,6 @@ ], "capabilities": "None" }, - { - "resourceType": "checkModernEligibility", - "locations": [ - "global" - ], - "apiVersions": [ - "2018-03-01-beta" - ], - "capabilities": "None" - }, { "resourceType": "saasresources", "locations": [ @@ -73942,6 +76992,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01-preview", "2020-01-01", "2019-01-01-preview" ], @@ -74020,6 +77071,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01-preview", "2019-01-01-preview" ], "capabilities": "SupportsExtension" @@ -74039,6 +77091,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01-preview", "2019-01-01-preview" ], "capabilities": "SupportsExtension" @@ -74096,9 +77149,29 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01-preview", "2019-01-01-preview" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "onboardingStates", + "locations": [ + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "SupportsExtension" } ], "registrationState": "NotRegistered", @@ -74608,14 +77681,43 @@ { "resourceType": "managedclusters", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview", "2020-01-01-preview" ], @@ -74624,14 +77726,43 @@ { "resourceType": "managedclusters/nodetypes", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview", "2020-01-01-preview" ], @@ -74640,14 +77771,43 @@ { "resourceType": "managedclusters/applicationTypes", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview" ], "capabilities": "None" @@ -74655,14 +77815,43 @@ { "resourceType": "managedclusters/applicationTypes/versions", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview" ], "capabilities": "None" @@ -74670,29 +77859,87 @@ { "resourceType": "managedclusters/applications", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview" ], - "capabilities": "None" + "capabilities": "SystemAssignedResourceIdentity" }, { "resourceType": "managedclusters/applications/services", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview" ], "capabilities": "None" @@ -74700,14 +77947,43 @@ { "resourceType": "locations/managedClusterOperations", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview", "2020-01-01-preview" ], @@ -74716,14 +77992,133 @@ { "resourceType": "locations/managedClusterOperationResults", "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-05-01", + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/managedClusterVersions", + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-05-01", + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/environments/managedClusterVersions", + "locations": [ + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview", "2020-01-01-preview" ], @@ -74769,13 +78164,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -74829,13 +78227,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -74864,13 +78265,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -74899,13 +78303,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -74934,13 +78341,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -74978,13 +78388,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -75013,13 +78426,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -75048,13 +78464,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -75083,13 +78502,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -75118,13 +78540,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -75632,8 +79057,7 @@ "South Central US" ], "apiVersions": [ - "2020-12-01-preview", - "2020-03-01-preview" + "2020-12-01-preview" ], "capabilities": "None" } @@ -76633,6 +80057,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2020-03-15-preview" ], "capabilities": "None" @@ -76641,6 +80066,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2020-03-15-preview" ], "capabilities": "None" @@ -76656,6 +80082,10 @@ { "applicationId": "9469b9f5-6722-4481-a2b2-14ed560b706f", "roleDefinitionId": "4cd49d82-1f4d-43fc-af0c-1c1203668e5a" + }, + { + "applicationId": "1fcdfafe-959b-4b32-afff-84f850974e84", + "roleDefinitionId": "18c76bf0-ff35-48d1-8a74-bcd770c71a1f" } ], "resourceTypes": [ @@ -76696,7 +80126,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -76750,7 +80182,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -76804,7 +80238,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -76858,7 +80294,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -76912,7 +80350,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -76966,7 +80406,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -77093,7 +80535,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -77145,7 +80589,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -77197,7 +80643,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01" @@ -77242,7 +80690,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01" @@ -77309,7 +80759,10 @@ "West US 2", "Korea Central", "France Central", - "South India" + "South India", + "Norway East", + "Germany West Central", + "Uae North" ], "apiVersions": [ "2019-06-01", @@ -77354,7 +80807,10 @@ "West US 2", "Korea Central", "France Central", - "South India" + "South India", + "Norway East", + "Germany West Central", + "Uae North" ], "apiVersions": [ "2020-03-01-preview", @@ -77389,7 +80845,10 @@ "West US 2", "Korea Central", "France Central", - "South India" + "South India", + "Norway East", + "Germany West Central", + "Uae North" ], "apiVersions": [ "2020-03-01-preview", @@ -77424,7 +80883,10 @@ "Canada East", "Korea Central", "France Central", - "South India" + "South India", + "Norway East", + "Germany West Central", + "UAE North" ], "apiVersions": [ "2019-06-01", @@ -77498,13 +80960,16 @@ "Central India", "West Central US", "UK South", + "Germany West Central", "UK West", "Canada Central", "Canada East", "West US 2", "Korea Central", "France Central", - "South India" + "South India", + "Norway East", + "Uae North" ], "apiVersions": [ "2019-06-01", @@ -78686,6 +82151,69 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.TestBase", + "namespace": "Microsoft.TestBase", + "authorizations": [ + { + "applicationId": "f3625a3e-6360-4580-968d-fae4cabc75a0", + "roleDefinitionId": "97af1d96-7c92-442d-8117-11e604996ca4" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationstatuses", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "skus", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.TimeSeriesInsights", "namespace": "Microsoft.TimeSeriesInsights", @@ -78699,6 +82227,7 @@ { "resourceType": "environments", "locations": [ + "Canada Central", "France Central", "South Central Us", "East US 2", @@ -78761,6 +82290,7 @@ { "resourceType": "environments/eventsources", "locations": [ + "Canada Central", "France Central", "South Central Us", "East US 2", @@ -78823,6 +82353,7 @@ { "resourceType": "environments/referenceDataSets", "locations": [ + "Canada Central", "France Central", "South Central Us", "East US 2", @@ -78850,6 +82381,7 @@ { "resourceType": "environments/accessPolicies", "locations": [ + "Canada Central", "France Central", "South Central Us", "East US 2", @@ -79000,7 +82532,12 @@ "West US 2", "North Europe", "West Europe", - "South Central US" + "South Central US", + "UK South", + "UK West", + "Southeast Asia", + "Australia East", + "Australia Southeast" ], "apiVersions": [ "2020-02-14", @@ -79804,48 +83341,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Sparkpost.Basic", - "namespace": "Sparkpost.Basic", - "resourceTypes": [ - { - "resourceType": "services", - "locations": [ - "West US" - ], - "apiVersions": [ - "2016-08-01" - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2016-08-01" - ], - "capabilities": "None" - }, - { - "resourceType": "listCommunicationPreference", - "locations": [], - "apiVersions": [ - "2016-08-01" - ], - "capabilities": "None" - }, - { - "resourceType": "updateCommunicationPreference", - "locations": [], - "apiVersions": [ - "2016-08-01" - ], - "capabilities": "None" - } - ], - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Wandisco.Fusion", "namespace": "Wandisco.Fusion", @@ -79869,6 +83364,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -79892,6 +83388,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -79915,6 +83412,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -79938,6 +83436,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -79954,6 +83453,7 @@ "East US" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -79967,9 +83467,11 @@ { "resourceType": "Locations/operationStatuses", "locations": [ + "Canada Central", "East Asia", "East US", "East US 2 EUAP", + "Korea Central", "North Europe", "Southeast Asia", "West Europe", @@ -79978,6 +83480,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -79987,6 +83490,7 @@ "resourceType": "fusionGroups/replicationRules/migrations", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80001,6 +83505,7 @@ "resourceType": "registeredSubscriptions", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80024,6 +83529,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80047,6 +83553,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80061,6 +83568,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80069,7 +83577,9 @@ { "resourceType": "migrators", "locations": [ + "Canada Central", "East US", + "Korea Central", "East Asia", "North Europe", "Southeast Asia", @@ -80079,6 +83589,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80092,16 +83603,19 @@ { "resourceType": "migrators/targets", "locations": [ + "Canada Central", "East US", "West US", "West US 2", "West Central US", + "Korea Central", "West Europe", "North Europe", "East Asia", "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80115,16 +83629,45 @@ { "resourceType": "migrators/liveDataMigrations", "locations": [ + "Canada Central", "East US", "West US", "West US 2", "West Central US", + "Korea Central", "West Europe", "North Europe", "East Asia", "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrators/exclusionTemplates", + "locations": [ + "Canada Central", + "East US", + "West US", + "West US 2", + "West Central US", + "Korea Central", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json index aa485dbba304..77c4b204aaa1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json @@ -6,10 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f40b5f47cb829046a5b2234b71c297e3-70f81eb98633ab4b-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8ea69f816f2f18ccce65ca21918d7337", "x-ms-return-client-request-id": "true" }, @@ -19,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:12 GMT", + "Date": "Fri, 07 May 2021 00:23:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38ea935b-003c-46ed-adf8-8637313b73c3", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "38ea935b-003c-46ed-adf8-8637313b73c3", - "x-ms-routing-request-id": "WESTUS:20210330T180613Z:38ea935b-003c-46ed-adf8-8637313b73c3" + "x-ms-correlation-request-id": "a620845b-cece-4cb3-8d4c-81bb0815e4d5", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "a620845b-cece-4cb3-8d4c-81bb0815e4d5", + "x-ms-routing-request-id": "WESTUS2:20210507T002302Z:a620845b-cece-4cb3-8d4c-81bb0815e4d5" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -52,11 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-eb26010106b29647bd6930de10db4200-7c409d00e861f343-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-348a0e2597c631439ec9408608dd763c-e1f349f19159a44b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22bcabeba86cfa7cc2b3b13c9ce6eda2", "x-ms-return-client-request-id": "true" }, @@ -69,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:13 GMT", + "Date": "Fri, 07 May 2021 00:23:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1559e27c-2ae6-4ea1-868a-f4ddba035cc5", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "1559e27c-2ae6-4ea1-868a-f4ddba035cc5", - "x-ms-routing-request-id": "WESTUS:20210330T180614Z:1559e27c-2ae6-4ea1-868a-f4ddba035cc5" + "x-ms-correlation-request-id": "e6e6e65b-c977-447f-8eb9-77a6d9826458", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "e6e6e65b-c977-447f-8eb9-77a6d9826458", + "x-ms-routing-request-id": "WESTUS2:20210507T002303Z:e6e6e65b-c977-447f-8eb9-77a6d9826458" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3699", @@ -96,11 +91,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b8c112202f0f2e47afd107841765b48b-05b6f4110531a34c-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-4d43aaa1a99ee44b9a3befb2eec679bf-2ef0d8954cfebb4c-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "528e1efe62ef073f41b442f10cdf8fa8", "x-ms-return-client-request-id": "true" }, @@ -108,17 +100,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1239318", + "Content-Length": "1293230", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:15 GMT", + "Date": "Fri, 07 May 2021 00:23:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06fa0b2a-d556-4b5f-8f56-fc37b8147713", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "06fa0b2a-d556-4b5f-8f56-fc37b8147713", - "x-ms-routing-request-id": "WESTUS:20210330T180616Z:06fa0b2a-d556-4b5f-8f56-fc37b8147713" + "x-ms-correlation-request-id": "2cf0df21-912a-44ca-b2dc-43aca5f59fb7", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "2cf0df21-912a-44ca-b2dc-43aca5f59fb7", + "x-ms-routing-request-id": "WESTUS2:20210507T002305Z:2cf0df21-912a-44ca-b2dc-43aca5f59fb7" }, "ResponseBody": { "value": [ @@ -209,6 +201,7 @@ "Brazil South", "Switzerland North", "Norway East", + "Norway West", "Australia Southeast", "Australia Central 2", "Germany West Central", @@ -218,10 +211,14 @@ "Japan West", "Brazil Southeast", "UAE North", - "Australia Central" + "Australia Central", + "France South", + "South India", + "West Central US" ], "apiVersions": [ "2020-02-02-preview", + "2020-02-02", "2018-05-01-preview", "2015-05-01", "2014-12-01-preview", @@ -381,7 +378,8 @@ "Norway West" ], "apiVersions": [ - "2018-04-20" + "2018-04-20", + "2014-04-01" ], "capabilities": "None" }, @@ -438,6 +436,7 @@ "Brazil South", "Switzerland North", "Norway East", + "Norway West", "Australia Southeast", "Australia Central 2", "Germany West Central", @@ -447,7 +446,10 @@ "Brazil Southeast", "Japan West", "UAE North", - "Australia Central" + "Australia Central", + "France South", + "South India", + "West Central US" ], "apiVersions": [ "2018-05-01-preview", @@ -998,6 +1000,8 @@ "West India", "North Europe", "West US 2", + "Jio India West", + "West US 3", "West Central US", "Korea South", "Korea Central", @@ -1110,6 +1114,8 @@ "West India", "North Europe", "West US 2", + "Jio India West", + "West US 3", "West Central US", "Korea South", "Korea Central", @@ -1175,6 +1181,8 @@ "West India", "North Europe", "West US 2", + "Jio India West", + "West US 3", "West Central US", "Korea South", "Korea Central", @@ -1189,7 +1197,6 @@ "Norway East" ], "apiVersions": [ - "2018-01-01", "2017-12-01-preview" ], "capabilities": "SupportsExtension" @@ -1356,9 +1363,22 @@ "Brazil South", "Switzerland North", "Norway East", - "Australia Southeast" + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West Central US" ], "apiVersions": [ + "2021-03-08", "2020-10-20", "2020-02-12", "2018-06-17-preview", @@ -1397,7 +1417,19 @@ "Brazil South", "Switzerland North", "Norway East", - "Australia Southeast" + "Norway West", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "Japan West", + "Brazil Southeast", + "UAE North", + "Australia Central", + "France South", + "South India", + "West Central US" ], "apiVersions": [ "2020-11-20", @@ -1430,9 +1462,11 @@ "Brazil South", "Switzerland North", "Norway East", + "Norway West", "Australia Southeast" ], "apiVersions": [ + "2021-03-08", "2020-10-20", "2020-02-12", "2018-06-17-preview", @@ -1860,7 +1894,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -1906,7 +1942,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview" @@ -1948,7 +1986,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview" @@ -1990,7 +2030,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2033,7 +2075,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2076,7 +2120,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2119,7 +2165,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2162,7 +2210,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2205,7 +2255,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2248,7 +2300,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2291,7 +2345,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2336,7 +2392,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2379,7 +2437,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2422,7 +2482,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -2465,7 +2527,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2509,7 +2573,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2553,7 +2619,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2597,7 +2665,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview" @@ -2640,7 +2710,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview" @@ -2656,7 +2728,8 @@ "South Central US", "Canada Central", "Central US", - "East US 2" + "East US 2", + "North Europe" ], "apiVersions": [ "2019-06-01-preview" @@ -2713,7 +2786,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2757,7 +2832,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2801,7 +2878,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2846,7 +2925,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -2890,7 +2971,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -2932,7 +3015,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -2974,7 +3059,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -3016,7 +3103,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -3058,7 +3147,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -3100,133 +3191,141 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" - ], - "apiVersions": [ - "2018-02-01-preview" - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "registries/buildTasks/listSourceRepositoryProperties", - "locations": [ - "East US", - "West Europe", - "West US 2", - "South Central US", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US 2", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Southeast Asia", - "South India", - "UK South", - "UK West", - "West US", - "West Central US", - "France Central", - "Korea Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Switzerland West", - "UAE Central", - "Brazil Southeast", - "Germany West Central", - "Norway East" - ], - "apiVersions": [ - "2018-02-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "registries/buildTasks/steps", - "locations": [ - "East US", - "West Europe", - "West US 2", - "South Central US", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US 2", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Southeast Asia", - "South India", - "UK South", - "UK West", - "West US", - "West Central US", - "France Central", - "Korea Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Switzerland West", - "UAE Central", - "Brazil Southeast", - "Germany West Central", - "Norway East" - ], - "apiVersions": [ - "2018-02-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "registries/buildTasks/steps/listBuildArguments", - "locations": [ - "East US", - "West Europe", - "West US 2", - "South Central US", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US 2", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Southeast Asia", - "South India", - "UK South", - "UK West", - "West US", - "West Central US", - "France Central", - "Korea Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Switzerland West", - "UAE Central", - "Brazil Southeast", - "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" + ], + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "registries/buildTasks/listSourceRepositoryProperties", + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3" + ], + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "registries/buildTasks/steps", + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3" + ], + "apiVersions": [ + "2018-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "registries/buildTasks/steps/listBuildArguments", + "locations": [ + "East US", + "West Europe", + "West US 2", + "South Central US", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "Japan East", + "Japan West", + "North Central US", + "North Europe", + "Southeast Asia", + "South India", + "UK South", + "UK West", + "West US", + "West Central US", + "France Central", + "Korea Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "UAE Central", + "Brazil Southeast", + "Germany West Central", + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -3268,7 +3367,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3313,7 +3414,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3358,7 +3461,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3403,7 +3508,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3448,7 +3555,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3493,7 +3602,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -3535,7 +3646,9 @@ "UAE Central", "Brazil Southeast", "Germany West Central", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2018-02-01-preview" @@ -3577,7 +3690,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3623,7 +3738,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -3679,7 +3796,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3725,7 +3844,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3771,7 +3892,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -3816,7 +3939,9 @@ "UAE Central", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2017-10-01" @@ -3858,7 +3983,9 @@ "UAE Central", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2017-10-01" @@ -3913,7 +4040,9 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -3957,7 +4086,8 @@ "Germany West Central", "Brazil Southeast", "Norway East", - "Korea South" + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -4006,7 +4136,8 @@ "Germany West Central", "Brazil Southeast", "Norway East", - "Korea South" + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -4054,7 +4185,8 @@ "Germany West Central", "Brazil Southeast", "Norway East", - "Korea South" + "Korea South", + "West US 3" ], "apiVersions": [ "2020-11-01-preview", @@ -4232,25 +4364,15 @@ "locations": [ "East US", "East US 2", - "West US", "West US 2", - "South Central US", "Central US", "West Europe", "North Europe", "UK South", - "UK West", "France Central", "Canada East", - "Canada Central", - "Australia East", - "Australia Southeast", - "East Asia", "Southeast Asia", - "North Central US", - "Brazil South", - "Japan East", - "Central India" + "Japan East" ], "apiVersions": [ "2019-09-30-preview", @@ -4263,25 +4385,15 @@ "locations": [ "East US", "East US 2", - "West US", "West US 2", - "South Central US", "Central US", "West Europe", "North Europe", "France Central", - "UK West", "UK South", "Canada East", - "Canada Central", - "Australia East", - "Australia Southeast", - "East Asia", "Southeast Asia", - "North Central US", - "Brazil South", - "Japan East", - "Central India" + "Japan East" ], "apiVersions": [ "2019-09-30-preview", @@ -4359,7 +4471,6 @@ "East US", "West Europe", "Central US", - "Canada Central", "Canada East", "UK West", "UK South", @@ -4368,6 +4479,7 @@ "South India", "Central India", "West India", + "Canada Central", "Korea South", "Korea Central", "West US", @@ -4476,6 +4588,53 @@ "2017-09-30" ], "capabilities": "None" + }, + { + "resourceType": "locations/osOptions", + "locations": [ + "East US", + "West Europe", + "France Central", + "France South", + "Central US", + "Canada East", + "Canada Central", + "UK South", + "UK West", + "West Central US", + "West US", + "West US 2", + "Australia East", + "Australia Central", + "Australia Southeast", + "North Europe", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "East US 2", + "South Central US", + "North Central US", + "Southeast Asia", + "South India", + "Central India", + "East Asia", + "South Africa North", + "Brazil South", + "Brazil Southeast", + "Germany North", + "Germany West Central", + "Switzerland North", + "Switzerland West", + "UAE North", + "UAE Central", + "Norway East", + "Norway West" + ], + "apiVersions": [ + "2021-03-01" + ], + "capabilities": "None" } ], "metadata": { @@ -4587,6 +4746,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4640,6 +4800,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4684,6 +4845,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4737,6 +4899,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4785,6 +4948,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4833,6 +4997,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4882,6 +5047,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4931,6 +5097,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -4980,6 +5147,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5029,6 +5197,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5078,6 +5247,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5127,6 +5297,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5174,6 +5345,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5221,6 +5393,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5268,6 +5441,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5315,6 +5489,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5362,6 +5537,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5409,6 +5585,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5456,6 +5633,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5505,6 +5683,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5554,6 +5733,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5605,6 +5785,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5657,6 +5838,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5709,6 +5891,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5847,6 +6030,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5891,6 +6075,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5935,6 +6120,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -5984,6 +6170,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6028,6 +6215,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6074,6 +6262,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6120,6 +6309,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6164,6 +6354,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6208,6 +6399,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6252,6 +6444,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6299,6 +6492,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6343,6 +6537,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6387,6 +6582,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6435,6 +6631,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6482,6 +6679,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6526,6 +6724,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6574,6 +6773,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6623,6 +6823,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6668,6 +6869,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6712,6 +6914,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6756,6 +6959,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6800,6 +7004,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6849,6 +7054,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6898,6 +7104,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6947,6 +7154,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -6996,6 +7204,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7044,6 +7253,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7088,6 +7298,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7136,6 +7347,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7184,6 +7396,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7232,6 +7445,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7280,6 +7494,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7324,6 +7539,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7368,6 +7584,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7418,6 +7635,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7468,6 +7686,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7547,6 +7766,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7592,6 +7812,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7640,6 +7861,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7688,6 +7910,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7736,6 +7959,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7784,6 +8008,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7832,6 +8057,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7880,6 +8106,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7924,6 +8151,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -7972,6 +8200,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8020,6 +8249,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8068,6 +8298,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8117,6 +8348,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8166,6 +8398,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8215,6 +8448,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8264,6 +8498,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8313,6 +8548,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8363,6 +8599,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8412,6 +8649,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8462,6 +8700,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8512,6 +8751,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8562,6 +8802,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8612,6 +8853,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8660,6 +8902,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8704,6 +8947,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8748,6 +8992,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8792,6 +9037,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8836,6 +9082,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8880,6 +9127,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8924,6 +9172,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -8968,6 +9217,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9012,6 +9262,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9064,6 +9315,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9113,6 +9365,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9165,6 +9418,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9209,6 +9463,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9258,6 +9513,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9307,6 +9563,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9356,6 +9613,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9401,6 +9659,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9449,6 +9708,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9495,6 +9755,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9543,6 +9804,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9589,6 +9851,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9638,6 +9901,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9683,6 +9947,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9730,6 +9995,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9777,6 +10043,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9825,6 +10092,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9874,6 +10142,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9923,6 +10192,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -9972,6 +10242,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10018,6 +10289,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10063,6 +10335,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10108,6 +10381,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10154,6 +10428,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10200,6 +10475,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10283,6 +10559,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10331,6 +10608,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10402,6 +10680,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10446,6 +10725,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10494,6 +10774,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10542,6 +10823,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10588,6 +10870,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10635,6 +10918,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10680,6 +10964,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10725,6 +11010,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10770,6 +11056,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10815,6 +11102,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10861,6 +11149,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10907,6 +11196,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10953,6 +11243,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -10999,6 +11290,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11045,6 +11337,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11091,6 +11384,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11139,6 +11433,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11187,6 +11482,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11235,6 +11531,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11283,6 +11580,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11329,6 +11627,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11375,6 +11674,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11423,6 +11723,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11470,6 +11771,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11517,6 +11819,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11564,6 +11867,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11612,6 +11916,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11660,6 +11965,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11708,6 +12014,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11757,6 +12064,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11806,6 +12114,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11855,6 +12164,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11904,6 +12214,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -11953,6 +12264,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12001,6 +12313,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12049,6 +12362,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12098,6 +12412,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12147,6 +12462,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12196,6 +12512,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12245,6 +12562,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12293,6 +12611,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12341,6 +12660,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12389,6 +12709,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12437,6 +12758,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12485,6 +12807,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12533,6 +12856,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12580,6 +12904,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12627,6 +12952,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12675,6 +13001,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12723,6 +13050,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12770,6 +13098,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12817,6 +13146,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12864,6 +13194,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12910,6 +13241,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -12956,6 +13288,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -13002,6 +13335,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -13048,6 +13382,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -13097,6 +13432,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -13141,6 +13477,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -13185,6 +13522,7 @@ "Germany West Central", "Japan East", "Japan West", + "Jio India West", "Korea Central", "Korea South", "North Central US", @@ -13210,6 +13548,51 @@ "2020-02-02-preview" ], "capabilities": "None" + }, + { + "resourceType": "servers/connectionPolicies", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2014-04-01-preview", + "2014-04-01", + "2014-01-01" + ], + "capabilities": "None" } ], "metadata": { @@ -14092,7 +14475,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview", @@ -14130,7 +14515,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview" @@ -14164,7 +14551,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview", @@ -14202,7 +14591,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview", @@ -14240,7 +14631,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview", @@ -14278,7 +14671,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview", @@ -14316,7 +14711,9 @@ "Switzerland North", "Germany West Central", "UAE North", - "Norway East" + "Norway East", + "South Africa North", + "UK West" ], "apiVersions": [ "2020-07-01-preview", @@ -14352,7 +14749,8 @@ { "serviceIdentity": "Microsoft.AppConfiguration", "onbehalfSupportedLogCategories": [ - "HttpRequest" + "HttpRequest", + "Audit" ] } ] @@ -14824,10 +15222,12 @@ "resourceType": "flexibleServers", "locations": [ "Australia East", + "Brazil South", "Canada Central", "Central US", "East US", "East US 2", + "France Central", "Japan East", "North Europe", "Southeast Asia", @@ -14865,6 +15265,14 @@ "3" ] }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Southeast Asia", "zones": [ @@ -14928,6 +15336,14 @@ "1", "3" ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] } ], "metadata": { @@ -14968,16 +15384,18 @@ "applicationId": "87bbf879-e67c-49da-a9e1-632ecff043f9" } }, - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" }, { "resourceType": "locations/capabilities", "locations": [ "Australia East", + "Brazil South", "Canada Central", "Central US", "East US", "East US 2", + "France Central", "Japan East", "North Europe", "Southeast Asia", @@ -14996,10 +15414,12 @@ "resourceType": "locations/checkNameAvailability", "locations": [ "Australia East", + "Brazil South", "Canada Central", "Central US", "East US", "East US 2", + "France Central", "Japan East", "North Europe", "Southeast Asia", @@ -15152,6 +15572,35 @@ ], "capabilities": "None" }, + { + "resourceType": "getPrivateDnsZoneSuffix", + "locations": [ + "East US 2", + "East US", + "North Europe", + "Southeast Asia", + "West Europe", + "West US 2", + "North Central US", + "Canada Central", + "Australia East", + "UK South", + "Japan East", + "Central US", + "Korea Central", + "Central India", + "East Asia", + "France Central", + "Switzerland North", + "Brazil South" + ], + "apiVersions": [ + "2021-03-31-privatepreview", + "2020-10-05-privatepreview", + "2018-03-29-privatepreview" + ], + "capabilities": "None" + }, { "resourceType": "locations", "locations": [ @@ -16759,7 +17208,7 @@ } ], "metadata": { - "build": "1.0.2988.0", + "build": "1.0.3119.0", "microsoft.insights": { "monitoringResourceProvider": { "version": "1.0", @@ -17712,7 +18161,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "UAE North" ], "apiVersions": [ "2021-04-01-preview", @@ -17721,7 +18171,40 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "WebPubSub", + "locations": [ + "East US", + "North Europe", + "Southeast Asia", + "West Europe", + "West US 2" + ], + "apiVersions": [ + "2021-04-01-preview", + "2020-05-01" + ], + "defaultApiVersion": "2021-04-01-preview", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "logs": { + "mdsInfo": [ + { + "serviceIdentity": "WebPubSub", + "onbehalfSupportedLogCategories": [ + "AllLogs" + ] + } + ] + } + } + } + }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { @@ -17734,7 +18217,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" }, { @@ -17760,7 +18243,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "UAE North" ], "apiVersions": [ "2021-04-01-preview", @@ -17769,7 +18253,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" }, { @@ -17795,7 +18279,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "UAE North" ], "apiVersions": [ "2021-04-01-preview", @@ -17804,7 +18289,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" }, { @@ -17825,7 +18310,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" }, { @@ -17851,7 +18336,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "UAE North" ], "apiVersions": [ "2021-04-01-preview", @@ -17860,7 +18346,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" }, { @@ -17886,7 +18372,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "UAE North" ], "apiVersions": [ "2021-04-01-preview", @@ -17895,7 +18382,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" }, { @@ -17921,7 +18408,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "UAE North" ], "apiVersions": [ "2021-04-01-preview", @@ -17930,7 +18418,7 @@ "2018-10-01", "2018-03-01-preview" ], - "defaultApiVersion": "2020-07-01-preview", + "defaultApiVersion": "2021-04-01-preview", "capabilities": "None" } ], @@ -17939,7 +18427,8 @@ "monitoringResourceProvider": { "version": "1.0", "apiVersions": { - "default": "2018-10-01", + "SignalR": "2018-10-01", + "WebPubSub": "2021-04-01-preview", "operations": "2018-10-01" }, "metrics": { @@ -18095,6 +18584,7 @@ "East US 2", "West US 2", "Brazil South", + "France Central", "Southeast Asia", "North Europe", "AUSTRALIA EAST", @@ -18135,6 +18625,14 @@ "3" ] }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Southeast Asia", "zones": [ @@ -18242,7 +18740,7 @@ "applicationId": "cb43afba-eb6b-4cef-bf00-758b6c233beb" } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "servers/recoverableServers", @@ -18342,6 +18840,7 @@ "East US 2", "West US 2", "Brazil South", + "France Central", "Southeast Asia", "North Europe", "AUSTRALIA EAST", @@ -18413,6 +18912,7 @@ "East US 2", "West US 2", "Brazil South", + "France Central", "Southeast Asia", "North Europe", "AUSTRALIA EAST", @@ -19823,7 +20323,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -19977,6 +20479,10 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [] + }, { "location": "Norway East", "zones": [] @@ -20019,7 +20525,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20063,7 +20571,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20107,7 +20617,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20151,7 +20663,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20195,7 +20709,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20266,7 +20782,9 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20302,7 +20820,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20385,7 +20904,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20480,6 +21000,10 @@ "1", "3" ] + }, + { + "location": "Central India", + "zones": [] } ], "metadata": { @@ -20518,7 +21042,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20541,7 +21066,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20564,7 +21090,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20587,7 +21114,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20610,7 +21138,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20633,7 +21162,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20656,7 +21186,8 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", @@ -20680,10 +21211,12 @@ "Southeast Asia", "Australia East", "North Europe", - "Central US" + "Central US", + "Central India" ], "apiVersions": [ "2021-03-01", + "2021-02-01-preview", "2020-10-01-preview", "2020-04-01-preview" ], @@ -20732,7 +21265,9 @@ "Germany North", "Germany West Central", "Norway East", - "Norway West" + "Norway West", + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01", @@ -20858,9 +21393,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -20977,9 +21515,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -21078,9 +21619,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -21293,9 +21837,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -21566,9 +22113,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -21782,9 +22332,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -21867,6 +22420,55 @@ }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, + { + "resourceType": "dscpConfigurations", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, { "resourceType": "privateEndpoints", "locations": [ @@ -21902,9 +22504,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -21976,9 +22581,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22031,9 +22639,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22161,9 +22772,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22291,9 +22905,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22373,9 +22990,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22443,9 +23063,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22509,9 +23132,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22610,9 +23236,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22811,9 +23440,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22872,9 +23504,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -22916,7 +23551,10 @@ "2016-08-01", "2016-07-01", "2016-06-01", - "2016-03-30" + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" ], "defaultApiVersion": "2020-03-01", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -22956,9 +23594,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23044,9 +23685,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23116,9 +23760,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23204,9 +23851,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23340,9 +23990,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23441,9 +24094,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23562,9 +24218,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23818,9 +24477,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23846,6 +24508,8 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -23943,9 +24607,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24043,9 +24710,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24143,9 +24813,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24229,9 +24902,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24275,9 +24951,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24375,9 +25054,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24449,9 +25131,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24514,9 +25199,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24571,9 +25259,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24628,9 +25319,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24681,9 +25375,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24737,9 +25434,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24793,9 +25493,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24841,9 +25544,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24889,9 +25595,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -24954,9 +25663,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01" ], @@ -24997,9 +25709,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01" ], @@ -25040,9 +25755,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -25105,9 +25823,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -25170,9 +25891,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -25235,9 +25959,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -25300,9 +26027,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26001,9 +26731,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26122,9 +26855,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26208,9 +26944,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26283,9 +27022,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26356,9 +27098,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26415,9 +27160,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26474,9 +27222,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26533,9 +27284,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26570,7 +27324,17 @@ "2017-06-01", "2017-04-01", "2017-03-01", - "2016-12-01" + "2016-12-01", + "2016-11-01", + "2016-10-01", + "2016-09-01", + "2016-08-01", + "2016-07-01", + "2016-06-01", + "2016-03-30", + "2015-06-15", + "2015-05-01-preview", + "2014-12-01-preview" ], "defaultApiVersion": "2020-03-01", "capabilities": "SupportsTags, SupportsLocation" @@ -26610,9 +27374,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26686,9 +27453,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26758,9 +27528,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26828,9 +27601,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26882,9 +27658,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -26954,9 +27733,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27059,9 +27841,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27153,9 +27938,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27200,6 +27988,37 @@ }, "capabilities": "SupportsTags, SupportsLocation" }, + { + "resourceType": "expressRoutePortsLocations", + "locations": [ + "France Central" + ], + "apiVersions": [ + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "capabilities": "None" + }, { "resourceType": "firewallPolicies", "locations": [ @@ -27225,6 +28044,7 @@ "Southeast Asia", "Korea Central", "Brazil South", + "Brazil Southeast", "Japan East", "UK West", "West US", @@ -27245,6 +28065,8 @@ "Central US" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27313,6 +28135,8 @@ "Central US" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27335,6 +28159,8 @@ "resourceType": "azureWebCategories", "locations": [], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01" ], @@ -27345,6 +28171,8 @@ "resourceType": "locations/nfvOperations", "locations": [], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27366,6 +28194,8 @@ "resourceType": "locations/nfvOperationResults", "locations": [], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27416,9 +28246,12 @@ "Australia Central", "South Africa North", "UAE North", - "Switzerland North" + "Switzerland North", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27466,9 +28299,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27705,9 +28541,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -27766,198 +28605,210 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" - ], - "apiVersions": [ - "2020-11-01", - "2020-08-01", - "2020-07-01", - "2020-06-01", - "2020-05-01", - "2020-04-01", - "2020-03-01", - "2020-01-01", - "2019-12-01", - "2019-11-01", - "2019-09-01", - "2019-08-01", - "2019-07-01", - "2019-06-01", - "2019-04-01", - "2019-02-01", - "2018-12-01", - "2018-11-01", - "2018-10-01", - "2018-08-01" - ], - "defaultApiVersion": "2020-03-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "privateLinkServices", - "locations": [ - "West US", - "East US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "North Central US", - "South Central US", - "Central US", - "East US 2", - "Japan East", - "Japan West", - "Brazil South", - "Australia East", - "Australia Southeast", - "Central India", - "South India", - "West India", - "Canada Central", - "Canada East", - "West Central US", - "West US 2", - "UK West", - "UK South", - "Korea Central", - "Korea South", - "France Central", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East" - ], - "apiVersions": [ - "2020-11-01", - "2020-08-01", - "2020-07-01", - "2020-06-01", - "2020-05-01", - "2020-04-01", - "2020-03-01", - "2020-01-01", - "2019-12-01", - "2019-11-01", - "2019-09-01", - "2019-08-01", - "2019-07-01", - "2019-06-01", - "2019-04-01", - "2019-02-01", - "2018-12-01", - "2018-11-01", - "2018-10-01", - "2018-08-01" - ], - "defaultApiVersion": "2020-03-01", - "metadata": { - "microsoft.insights": { - "monitoringResourceProvider": { - "version": "1.0", - "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", - "metrics": { - "mdmInfo": [ - { - "enableRegionalMdmAccount": true, - "sourceMdmAccount": "VNetMDMShoebox", - "sourceMdmNamespace": "VNetAzureMonitoring" - } - ] - } - } - } - }, - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/privateLinkServices", - "locations": [ - "West US", - "East US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "North Central US", - "South Central US", - "Central US", - "East US 2", - "Japan East", - "Japan West", - "Brazil South", - "Australia East", - "Australia Southeast", - "Central India", - "South India", - "West India", - "Canada Central", - "Canada East", - "West Central US", - "West US 2", - "UK West", - "UK South", - "Korea Central", - "Korea South", - "France Central", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East" - ], - "apiVersions": [ - "2020-11-01", - "2020-08-01", - "2020-07-01", - "2020-06-01", - "2020-05-01", - "2020-04-01", - "2020-03-01" - ], - "capabilities": "None" - }, - { - "resourceType": "ddosProtectionPlans", - "locations": [ - "West US", - "East US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "North Central US", - "South Central US", - "Central US", - "East US 2", - "Japan East", - "Japan West", - "Brazil South", - "Australia East", - "Australia Southeast", - "Central India", - "South India", - "West India", - "Canada Central", - "Canada East", - "West Central US", - "West US 2", - "UK West", - "UK South", - "Korea Central", - "Korea South", - "France Central", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-03-01", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateLinkServices", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01", + "2020-01-01", + "2019-12-01", + "2019-11-01", + "2019-09-01", + "2019-08-01", + "2019-07-01", + "2019-06-01", + "2019-04-01", + "2019-02-01", + "2018-12-01", + "2018-11-01", + "2018-10-01", + "2018-08-01" + ], + "defaultApiVersion": "2020-03-01", + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.resourceGuid", + "metrics": { + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "VNetMDMShoebox", + "sourceMdmNamespace": "VNetAzureMonitoring" + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/privateLinkServices", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-02-01", + "2021-01-01", + "2020-11-01", + "2020-08-01", + "2020-07-01", + "2020-06-01", + "2020-05-01", + "2020-04-01", + "2020-03-01" + ], + "capabilities": "None" + }, + { + "resourceType": "ddosProtectionPlans", + "locations": [ + "West US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "North Central US", + "South Central US", + "Central US", + "East US 2", + "Japan East", + "Japan West", + "Brazil South", + "Australia East", + "Australia Southeast", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "UK West", + "UK South", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -28029,9 +28880,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -28365,9 +29219,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -28427,9 +29284,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -28463,7 +29323,7 @@ ], "mdmInfo": [ { - "enableRegionalMdmAccount": true, + "enableRegionalMdmAccount": false, "sourceMdmAccount": "BrkBastionHost", "sourceMdmNamespace": "BrkBastion" } @@ -28610,6 +29470,8 @@ "Central US" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -28678,9 +29540,12 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -28696,9 +29561,52 @@ { "resourceType": "locations/commitInternalAzureNetworkManagerConfiguration", "locations": [ - "West Central US" + "West Central US", + "North Central US", + "West US", + "West Europe", + "UAE Central", + "Germany North", + "East US", + "West India", + "East US 2", + "Australia Central", + "Australia Central 2", + "South Africa West", + "Brazil South", + "UK West", + "North Europe", + "Central US", + "UAE North", + "Germany West Central", + "Switzerland West", + "East Asia", + "Jio India West", + "South Africa North", + "UK South", + "South India", + "Australia Southeast", + "France South", + "West US 2", + "Japan West", + "Norway East", + "France Central", + "West US 3", + "Central India", + "Korea South", + "Brazil Southeast", + "Korea Central", + "Southeast Asia", + "South Central US", + "Norway West", + "Australia East", + "Japan East", + "Canada East", + "Canada Central", + "Switzerland North" ], "apiVersions": [ + "2021-02-01-preview", "2020-08-01", "2020-07-01", "2020-06-01", @@ -28710,10 +29618,65 @@ ], "capabilities": "None" }, + { + "resourceType": "locations/internalAzureVirtualNetworkManagerOperation", + "locations": [ + "West Central US", + "North Central US", + "West US", + "West Europe", + "UAE Central", + "Germany North", + "East US", + "West India", + "East US 2", + "Australia Central", + "Australia Central 2", + "South Africa West", + "Brazil South", + "UK West", + "North Europe", + "Central US", + "UAE North", + "Germany West Central", + "Switzerland West", + "East Asia", + "Jio India West", + "South Africa North", + "UK South", + "South India", + "Australia Southeast", + "France South", + "West US 2", + "Japan West", + "Norway East", + "France Central", + "West US 3", + "Central India", + "Korea South", + "Brazil Southeast", + "Korea Central", + "Southeast Asia", + "South Central US", + "Norway West", + "Australia East", + "Japan East", + "Canada East", + "Canada Central", + "Switzerland North" + ], + "apiVersions": [ + "2021-02-01-preview", + "2020-08-01" + ], + "capabilities": "None" + }, { "resourceType": "networkVirtualApplianceSkus", "locations": [], "apiVersions": [ + "2021-02-01", + "2021-01-01", "2020-11-01", "2020-08-01", "2020-07-01", @@ -29373,6 +30336,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01" ], "capabilities": "None" @@ -29423,6 +30387,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01" ], "capabilities": "None" @@ -29473,6 +30438,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01" ], "capabilities": "None" @@ -29523,6 +30489,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01" ], "capabilities": "None" @@ -29586,6 +30553,56 @@ "defaultApiVersion": "2020-06-01", "capabilities": "None" }, + { + "resourceType": "staticSites/userProvidedFunctionApps", + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia" + ], + "apiVersions": [ + "2020-12-01" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" + }, + { + "resourceType": "staticSites/builds", + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia" + ], + "apiVersions": [ + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01" + ], + "defaultApiVersion": "2020-06-01", + "capabilities": "None" + }, + { + "resourceType": "staticSites/builds/userProvidedFunctionApps", + "locations": [ + "West US 2", + "Central US", + "East US 2", + "West Europe", + "East Asia" + ], + "apiVersions": [ + "2020-12-01" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" + }, { "resourceType": "listSitesAssignedToHostName", "locations": [ @@ -31132,144 +32149,6 @@ "apiVersion": "2018-02-01" } ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - } - ], "metadata": { "microsoft.insights": { "monitoringResourceProvider": { @@ -31513,7 +32392,8 @@ { "resourceType": "kubeEnvironments", "locations": [ - "North Central US (Stage)" + "North Central US (Stage)", + "West Central US" ], "apiVersions": [ "2020-12-01", @@ -33343,7 +34223,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -33415,7 +34296,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -33625,7 +34507,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -33697,7 +34580,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -33916,7 +34800,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -33989,7 +34874,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34062,7 +34948,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34134,7 +35021,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34208,7 +35096,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34282,7 +35171,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34367,7 +35257,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34439,7 +35330,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34510,7 +35402,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34572,7 +35465,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34643,7 +35537,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34707,7 +35602,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34771,7 +35667,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34843,7 +35740,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -34907,7 +35805,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-01" @@ -34949,7 +35848,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35002,7 +35902,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35054,7 +35955,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35105,7 +36007,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35151,7 +36054,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -35193,7 +36097,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35238,7 +36143,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35283,7 +36189,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -35468,7 +36375,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-09-30", @@ -35515,7 +36423,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-09-30", @@ -35562,7 +36471,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-09-30", @@ -35609,7 +36519,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-09-30", @@ -35656,7 +36567,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-09-30", @@ -35703,7 +36615,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-01", @@ -35905,37 +36818,394 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "defaultApiVersion": "2020-06-30", + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/diskoperations", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01", + "2019-03-01", + "2018-09-30", + "2018-06-01", + "2018-04-01", + "2017-03-30", + "2016-04-30-preview" + ], + "apiProfiles": [ + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2017-03-30" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-04-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "diskEncryptionSets", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01", + "2019-11-01", + "2019-07-01" + ], + "defaultApiVersion": "2020-06-30", + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af" + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "diskAccesses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2020-12-01", + "2020-09-30", + "2020-06-30", + "2020-05-01" + ], + "defaultApiVersion": "2020-06-30", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "cloudServices", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" + "2021-03-01", + "2020-10-01-preview" ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ + "defaultApiVersion": "2021-03-01", + "zoneMappings": [ { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] }, { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.uniqueId" + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" }, { - "resourceType": "locations/diskoperations", + "resourceType": "cloudServices/roles", "locations": [ "Southeast Asia", "East US 2", @@ -35969,36 +37239,71 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" + "2021-03-01", + "2020-10-01-preview" ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" + "defaultApiVersion": "2021-03-01", + "metadata": { + "Microsoft.Insights": { + "monitoringResourceProvider": { + "version": "1.0", + "mdsMappingResourceIdOverridePathSelector": "properties.uniqueId" + } } + }, + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" ], + "defaultApiVersion": "2021-03-01", "capabilities": "None" }, { - "resourceType": "diskEncryptionSets", + "resourceType": "locations/csoperations", "locations": [ "Southeast Asia", "East US 2", @@ -36032,26 +37337,17 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" + "2021-03-01", + "2020-10-01-preview" ], - "defaultApiVersion": "2020-06-30", - "metadata": { - "Microsoft.ManagedIdentity": { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af" - } - }, - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "None" }, { - "resourceType": "diskAccesses", + "resourceType": "locations/cloudServiceOsVersions", "locations": [ "Southeast Asia", "East US 2", @@ -36085,16 +37381,190 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" + "2021-03-01" ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations/cloudServiceOsFamilies", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "cloudServices/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/roleInstances/networkInterfaces", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "cloudServices/publicIPAddresses", + "locations": [ + "Southeast Asia", + "East US 2", + "Central US", + "West Europe", + "East US", + "North Central US", + "South Central US", + "West US", + "North Europe", + "East Asia", + "Brazil South", + "West US 2", + "West Central US", + "UK West", + "UK South", + "Japan East", + "Japan West", + "Canada Central", + "Canada East", + "Central India", + "South India", + "Australia East", + "Australia Southeast", + "Korea Central", + "Korea South", + "West India", + "France Central", + "South Africa North", + "UAE North", + "Australia Central", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-03-01", + "2020-10-01-preview" + ], + "capabilities": "None" }, { "resourceType": "images", @@ -36131,7 +37601,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -36196,7 +37667,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -36247,7 +37719,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Australia East" + "Australia East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -36434,7 +37907,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Australia East" + "Australia East", + "Jio India West" ], "apiVersions": [ "2021-03-01", @@ -37488,6 +38962,10 @@ { "applicationId": "3af5a1e8-2459-45cb-8683-bcd6cccbcc13", "roleDefinitionId": "b1309299-720d-4159-9897-6158a61aee41" + }, + { + "applicationId": "161a339d-b9f5-41c5-8856-6a6669acac64", + "roleDefinitionId": "b61a6c11-d848-4eec-8c37-fb13ab7d5729" } ], "resourceTypes": [ @@ -37545,6 +39023,7 @@ "global" ], "apiVersions": [ + "2021-04-01", "2019-06-01", "2019-03-01", "2018-02-01-privatepreview" @@ -38034,6 +39513,7 @@ "resourceType": "roleAssignments", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2020-08-01-preview", "2020-04-01-preview", "2020-03-01-preview", @@ -38439,7 +39919,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -38503,7 +39984,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -38561,7 +40043,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -38618,7 +40101,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -38705,7 +40189,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -38766,7 +40251,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -38825,7 +40311,8 @@ "Germany West Central", "Switzerland North", "Norway East", - "Brazil Southeast" + "Brazil Southeast", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -41902,7 +43389,9 @@ "UAE North", "Switzerland North", "Switzerland West", - "Germany West Central" + "Germany West Central", + "West US 3", + "Norway East" ], "apiVersions": [ "2017-04-18", @@ -41976,7 +43465,9 @@ "UAE North", "Switzerland North", "Switzerland West", - "Germany West Central" + "Germany West Central", + "Norway East", + "West US 3" ], "apiVersions": [ "2017-04-18", @@ -42240,7 +43731,6 @@ { "resourceType": "databaseAccounts", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -42272,9 +43762,13 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42350,42 +43844,10 @@ }, { "resourceType": "databaseAccountNames", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2", - "UAE North", - "UK West", - "UK South", - "Brazil South", - "Korea South", - "Korea Central" - ], + "locations": [], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42440,42 +43902,10 @@ }, { "resourceType": "operations", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2", - "UAE North", - "UK West", - "UK South", - "Brazil South", - "Korea South", - "Korea Central" - ], + "locations": [], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42530,42 +43960,68 @@ }, { "resourceType": "operationResults", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2", - "UAE North", - "UK West", - "UK South", - "Brazil South", - "Korea South", - "Korea Central" + "locations": [], + "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", + "2021-03-15", + "2021-03-01-preview", + "2021-01-15", + "2020-09-01", + "2020-06-01-preview", + "2020-04-01", + "2020-03-01", + "2019-12-12", + "2019-08-01-preview", + "2019-08-01", + "2016-03-31", + "2016-03-19", + "2015-11-06", + "2015-04-08", + "2014-04-01" + ], + "apiProfiles": [ + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2015-04-08" + } ], + "metadata": { + "portal": { + "icon": "\u003Csvg version=\u00271.1\u0027 id=\u0027Layer_1\u0027 xmlns=\u0027http://www.w3.org/2000/svg\u0027 xmlns:xlink=\u0027http://www.w3.org/1999/xlink\u0027 x=\u00270px\u0027 y=\u00270px\u0027 viewBox=\u00270 0 39.7 50\u0027 enable-background=\u0027new 0 0 39.7 50\u0027 xml:space=\u0027preserve\u0027\u003E\u003Cg\u003E\u003Cpath fill=\u0027#59b4d9\u0027 d=\u0027M0,41.7V8.3C0,3.7,8.8,0,19.6,0H20c10.9,0,19.6,3.7,19.6,8.3v33.4c0,4.6-8.8,8.3-19.6,8.3h-0.4C8.8,50,0,46.3,0,41.7z M19.8,2.5c-8.3,0-15,2.2-15,5s6.7,5,15,5s15-2.2,15-5S28.2,2.5,19.8,2.5z\u0027/\u003E\u003Cpath fill=\u0027#FFFFFF\u0027 d=\u0027M13.5,42.1c-2,0-3.4-0.4-4.3-1.1C8.4,40.3,8,39,8,37.2V34c0-1.6-0.7-2.5-2-2.5v-2.5c1.4,0,2-0.9,2-2.6v-3c0-1.8,0.4-3.1,1.3-3.9c0.9-0.8,2.3-1.1,4.3-1.1V21c-1.4,0-2.1,0.8-2.1,2.3v2.9c0,2.1-0.7,3.5-2.1,4.1v0.1c1.4,0.5,2.1,1.9,2.1,4.1v2.8c0,0.9,0.2,1.5,0.5,1.9c0.3,0.4,0.9,0.6,1.6,0.6V42.1z M33.9,31.5c-1.4,0-2.1,0.8-2.1,2.5v3.1c0,1.8-0.4,3.1-1.2,3.9c-0.8,0.7-2.3,1.1-4.3,1.1v-2.5c0.8,0,1.3-0.2,1.7-0.6s0.5-1,0.5-1.8v-2.9c0-2.1,0.7-3.5,2.1-4v-0.1c-1.4-0.6-2.1-2-2.1-4.2v-2.8c0-1.6-0.7-2.3-2.1-2.3v-2.5c2,0,3.4,0.4,4.3,1.2c0.8,0.8,1.3,2,1.3,3.8v3.1c0,1.7,0.7,2.5,2.1,2.5V31.5z\u0027/\u003E\u003C/g\u003E\u003C/svg\u003E", + "kinds": [ + { + "kind": "Parse", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "MongoDB", + "blade": { + "name": "NonDocumentDBAccountBlade", + "extension": "Microsoft_Azure_DocumentDB" + } + }, + { + "kind": "GlobalDocumentDB", + "blade": { + "name": "DatabaseAccountBladeForGlobalDb", + "extension": "Microsoft_Azure_DocumentDB" + } + } + ] + } + }, + "capabilities": "None" + }, + { + "resourceType": "operationsStatus", + "locations": [], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42621,7 +44077,6 @@ { "resourceType": "locations/operationsStatus", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -42653,9 +44108,13 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42711,7 +44170,6 @@ { "resourceType": "locations/operationResults", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -42743,9 +44201,13 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42800,42 +44262,10 @@ }, { "resourceType": "locations", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2", - "UAE North", - "UK West", - "UK South", - "Brazil South", - "Korea South", - "Korea Central" - ], + "locations": [], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42857,7 +44287,6 @@ { "resourceType": "locations/deleteVirtualNetworkOrSubnets", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -42889,9 +44318,13 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-15", + "2021-04-01-preview", "2021-03-15", "2021-03-01-preview", "2021-01-15", @@ -42913,7 +44346,6 @@ { "resourceType": "locations/restorableDatabaseAccounts", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -42945,9 +44377,13 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2021-03-01-preview", "2020-06-01-preview" ], "capabilities": "None" @@ -42955,7 +44391,6 @@ { "resourceType": "restorableDatabaseAccounts", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -42987,9 +44422,13 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2021-03-01-preview", "2020-06-01-preview" ], "capabilities": "None" @@ -42997,7 +44436,6 @@ { "resourceType": "cassandraClusters", "locations": [ - "East US", "West Central US", "North Central US", "Central US", @@ -43029,9 +44467,12 @@ "South India", "West India", "West US", - "South Central US" + "South Central US", + "East US", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", "2021-03-01-preview" ], "defaultApiVersion": "2021-03-01-preview", @@ -44077,6 +45518,8 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-03-03-preview", + "2021-02-01-preview", "2020-08-31-preview", "2020-08-31", "2020-08-01", @@ -44122,6 +45565,8 @@ "resourceType": "usages", "locations": [], "apiVersions": [ + "2021-03-03-preview", + "2021-02-01-preview", "2020-08-31-preview", "2020-08-31", "2020-08-01", @@ -44154,6 +45599,8 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-03-preview", + "2021-02-01-preview", "2020-08-31-preview", "2020-08-31", "2020-08-01", @@ -44186,6 +45633,8 @@ "resourceType": "operationResults", "locations": [], "apiVersions": [ + "2021-03-03-preview", + "2021-02-01-preview", "2020-08-31-preview", "2020-08-31", "2020-08-01", @@ -44260,6 +45709,8 @@ "UAE North" ], "apiVersions": [ + "2021-03-03-preview", + "2021-02-01-preview", "2020-08-31-preview", "2020-08-31", "2020-08-01", @@ -44372,6 +45823,7 @@ "UAE North" ], "apiVersions": [ + "2021-02-01-preview", "2018-07-31", "2018-01-15-preview" ], @@ -44984,7 +46436,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-01-01-preview", @@ -45034,9 +46487,11 @@ "France Central", "South Africa North", "Australia Central", + "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-01-01-preview" @@ -45074,6 +46529,14 @@ ], "capabilities": "None" }, + { + "resourceType": "namespaces/privateEndpointConnections", + "locations": [], + "apiVersions": [ + "2018-01-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "namespaces/eventhubs", "locations": [], @@ -45363,6 +46826,144 @@ "2015-03-01-preview" ], "defaultApiVersion": "2015-03-01-preview", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "Norway East", + "zones": [] + } + ], "metadata": { "microsoft.insights": { "monitoringResourceProvider": { @@ -45430,6 +47031,144 @@ "2015-03-01-preview" ], "defaultApiVersion": "2015-03-01-preview", + "zoneMappings": [ + { + "location": "East US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "France Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Southeast Asia", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "West US 2", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "North Europe", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "East US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "UK South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Japan East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "South Africa North", + "zones": [] + }, + { + "location": "South Central US", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Germany West Central", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Brazil South", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Central India", + "zones": [] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "Norway East", + "zones": [] + } + ], "capabilities": "None" }, { @@ -46635,6 +48374,7 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", "2020-05-01", "2018-07-01", "2018-06-01-preview", @@ -47398,6 +49138,8 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2020-05-01", "2018-07-01", "2018-06-01-preview", @@ -47406,7 +49148,7 @@ "2015-10-01", "2015-04-01" ], - "defaultApiVersion": "2018-07-01", + "defaultApiVersion": "2020-05-01", "capabilities": "None" }, { @@ -47423,6 +49165,8 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2020-05-01", "2018-07-01", "2018-06-01-preview", @@ -47473,12 +49217,14 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2020-05-01", "2018-07-01", "2018-06-01-preview", "2018-03-30-preview" ], - "defaultApiVersion": "2018-07-01", + "defaultApiVersion": "2020-05-01", "capabilities": "None" } ], @@ -47952,9 +49698,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -47998,9 +49746,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48044,9 +49794,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48270,9 +50022,11 @@ "South Africa North", "UAE North", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48346,9 +50100,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48414,9 +50170,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48475,9 +50233,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48536,9 +50296,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48597,9 +50359,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48658,9 +50422,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48719,9 +50485,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48743,6 +50511,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48810,9 +50579,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48874,9 +50645,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48898,6 +50671,7 @@ "resourceType": "usages", "locations": [], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -48970,9 +50744,11 @@ "South Africa North", "UAE North", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -49046,9 +50822,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2021-01-01", "2020-08-01-preview", @@ -49099,7 +50877,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -49141,7 +50920,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -49484,6 +51264,9 @@ }, { "applicationId": "8ee8fdad-f234-4243-8f3b-15c294843740" + }, + { + "applicationId": "04687a56-4fc2-4e36-b274-b862fb649733" } ], "resourceTypes": [ @@ -50915,7 +52698,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-01-01-preview", @@ -50964,6 +52748,14 @@ ], "capabilities": "None" }, + { + "resourceType": "namespaces/privateEndpointConnections", + "locations": [], + "apiVersions": [ + "2018-01-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "namespaces/queues", "locations": [], @@ -51180,7 +52972,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2017-04-01", @@ -51571,24 +53364,16 @@ "registrationPolicy": "RegistrationRequired" }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/LiveArena.Broadcast", - "namespace": "LiveArena.Broadcast", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Crypteron.DataSecurity", + "namespace": "Crypteron.DataSecurity", "resourceTypes": [ { - "resourceType": "services", + "resourceType": "apps", "locations": [ - "West US", - "North Europe", - "Japan West", - "Japan East", - "East Asia", - "West Europe", - "East US", - "Southeast Asia", - "Central US" + "West US" ], "apiVersions": [ - "2016-06-15" + "2016-08-12" ], "capabilities": "SupportsTags, SupportsLocation" }, @@ -51596,7 +53381,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ - "2016-06-15" + "2016-08-12" ], "capabilities": "None" }, @@ -51604,7 +53389,7 @@ "resourceType": "listCommunicationPreference", "locations": [], "apiVersions": [ - "2016-06-15" + "2016-08-12" ], "capabilities": "None" }, @@ -51612,7 +53397,7 @@ "resourceType": "updateCommunicationPreference", "locations": [], "apiVersions": [ - "2016-06-15" + "2016-08-12" ], "capabilities": "None" } @@ -51621,18 +53406,24 @@ "registrationPolicy": "RegistrationRequired" }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Mailjet.Email", - "namespace": "Mailjet.Email", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/LiveArena.Broadcast", + "namespace": "LiveArena.Broadcast", "resourceTypes": [ { "resourceType": "services", "locations": [ "West US", - "West Europe" + "North Europe", + "Japan West", + "Japan East", + "East Asia", + "West Europe", + "East US", + "Southeast Asia", + "Central US" ], "apiVersions": [ - "2017-10-01", - "2017-02-03" + "2016-06-15" ], "capabilities": "SupportsTags, SupportsLocation" }, @@ -51640,12 +53431,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ - "2018-07-01", - "2017-10-01", - "2017-05-29", - "2017-02-03", - "2016-11-01", - "2016-07-01" + "2016-06-15" ], "capabilities": "None" }, @@ -51653,9 +53439,7 @@ "resourceType": "listCommunicationPreference", "locations": [], "apiVersions": [ - "2017-10-01", - "2017-02-03", - "2016-11-01" + "2016-06-15" ], "capabilities": "None" }, @@ -51663,9 +53447,7 @@ "resourceType": "updateCommunicationPreference", "locations": [], "apiVersions": [ - "2017-10-01", - "2017-02-03", - "2016-11-01" + "2016-06-15" ], "capabilities": "None" } @@ -51722,7 +53504,9 @@ "South Africa North", "Switzerland North", "UAE North", - "Germany West Central" + "Germany West Central", + "West US 3", + "Norway East" ], "apiVersions": [ "2021-03-01", @@ -51764,7 +53548,9 @@ "South Africa North", "Switzerland North", "UAE North", - "Germany West Central" + "Germany West Central", + "West US 3", + "Norway East" ], "apiVersions": [ "2021-03-01", @@ -51805,7 +53591,9 @@ "South Africa North", "Switzerland North", "UAE North", - "Germany West Central" + "Germany West Central", + "West US 3", + "Norway East" ], "apiVersions": [ "2021-03-01", @@ -51847,7 +53635,9 @@ "South Africa North", "Switzerland North", "UAE North", - "Germany West Central" + "Germany West Central", + "West US 3", + "Norway East" ], "apiVersions": [ "2021-03-01", @@ -51889,7 +53679,9 @@ "South Africa North", "Switzerland North", "UAE North", - "Germany West Central" + "Germany West Central", + "West US 3", + "Norway East" ], "apiVersions": [ "2021-03-01", @@ -52855,6 +54647,11 @@ "apiVersions": [ "2020-08-26" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -52879,6 +54676,11 @@ "apiVersions": [ "2020-08-26" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, { @@ -52912,6 +54714,11 @@ "apiVersions": [ "2020-09-01-privatepreview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -52932,6 +54739,17 @@ "2020-09-01-privatepreview" ], "capabilities": "None" + }, + { + "resourceType": "Locations/osVersions", + "locations": [ + "East US 2 EUAP", + "West Central US" + ], + "apiVersions": [ + "2020-09-01-privatepreview" + ], + "capabilities": "None" } ], "metadata": { @@ -52982,7 +54800,9 @@ "UAE North", "Central India", "Korea Central", - "East Asia" + "East Asia", + "Japan East", + "South Africa North" ], "apiVersions": [ "2020-11-01-preview", @@ -53011,7 +54831,9 @@ "UAE North", "Central India", "Korea Central", - "East Asia" + "East Asia", + "Japan East", + "South Africa North" ], "apiVersions": [ "2020-11-01-preview", @@ -53040,7 +54862,9 @@ "UAE North", "Central India", "Korea Central", - "East Asia" + "East Asia", + "Japan East", + "South Africa North" ], "apiVersions": [ "2020-11-01-preview", @@ -53069,7 +54893,9 @@ "UAE North", "Central India", "Korea Central", - "East Asia" + "East Asia", + "Japan East", + "South Africa North" ], "apiVersions": [ "2020-11-01-preview", @@ -53120,7 +54946,9 @@ "UAE North", "Central India", "Korea Central", - "East Asia" + "East Asia", + "Japan East", + "South Africa North" ], "apiVersions": [ "2020-11-01-preview", @@ -53149,7 +54977,9 @@ "UAE North", "Central India", "Korea Central", - "East Asia" + "East Asia", + "Japan East", + "South Africa North" ], "apiVersions": [ "2020-11-01-preview", @@ -53231,13 +55061,38 @@ "Japan East", "UK South", "Australia Southeast", - "Australia East" + "Australia East", + "Southeast Asia" ], "apiVersions": [ "2020-06-30-preview" ], "capabilities": "SupportsExtension" }, + { + "resourceType": "configurationProfileAssignmentIntents", + "locations": [ + "Central US", + "East US", + "East US 2", + "South Central US", + "West US", + "West US 2", + "West Central US", + "North Europe", + "West Europe", + "Canada Central", + "Japan East", + "UK South", + "Australia Southeast", + "Australia East", + "Southeast Asia" + ], + "apiVersions": [ + "2021-03-30-preview" + ], + "capabilities": "SupportsExtension" + }, { "resourceType": "accounts", "locations": [ @@ -53255,7 +55110,8 @@ "Japan East", "UK South", "Australia Southeast", - "Australia East" + "Australia East", + "Southeast Asia" ], "apiVersions": [ "2020-06-30-preview" @@ -53280,7 +55136,8 @@ "Japan East", "UK South", "Australia Southeast", - "Australia East" + "Australia East", + "Southeast Asia" ], "apiVersions": [ "2020-06-30-preview" @@ -53368,6 +55225,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53419,6 +55277,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53471,6 +55330,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53491,6 +55351,7 @@ "Central US EUAP" ], "apiVersions": [ + "2020-01-13-preview", "2019-06-01", "2018-06-30", "2018-01-15", @@ -53519,6 +55380,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53583,6 +55445,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53631,6 +55494,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53681,6 +55545,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53725,6 +55590,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53769,6 +55635,7 @@ "Australia Central 2", "South India", "France South", + "Norway West", "Southeast Asia", "South Central US", "North Central US", @@ -53857,6 +55724,11 @@ "2021-02-01-preview", "2020-07-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -53866,6 +55738,11 @@ "2021-02-01-preview", "2020-07-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -54001,7 +55878,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-03-20" @@ -54021,7 +55901,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-03-20" @@ -54041,7 +55924,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2021-01-01-preview", @@ -54069,7 +55955,7 @@ } } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "privateClouds/clusters", @@ -54084,7 +55970,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2021-01-01-preview", @@ -54105,7 +55994,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-03-20" @@ -54125,7 +56017,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-03-20" @@ -54145,7 +56040,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54165,7 +56063,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54185,7 +56086,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54205,7 +56109,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54225,7 +56132,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54245,7 +56155,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54265,7 +56178,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54285,7 +56201,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54305,7 +56224,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54325,7 +56247,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54345,7 +56270,10 @@ "UK South", "Canada Central", "North Europe", - "Southeast Asia" + "Southeast Asia", + "UK West", + "East US 2", + "Central US" ], "apiVersions": [ "2020-07-17-preview" @@ -54376,6 +56304,9 @@ ] } } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "608f9929-9737-432e-860f-4e1c1821052f" } }, "registrationState": "NotRegistered", @@ -54410,6 +56341,7 @@ "Australia" ], "apiVersions": [ + "2021-04-01-preview", "2020-05-01-preview", "2019-01-01-privatepreview", "2019-01-01-preview", @@ -54430,6 +56362,7 @@ "Australia" ], "apiVersions": [ + "2021-04-01-preview", "2020-05-01-preview", "2019-01-01-privatepreview", "2019-01-01-preview" @@ -54446,6 +56379,7 @@ "Australia" ], "apiVersions": [ + "2021-04-01-preview", "2020-05-01-preview", "2019-01-01-privatepreview", "2019-01-01-preview", @@ -54466,6 +56400,7 @@ "Australia" ], "apiVersions": [ + "2021-04-01-preview", "2020-05-01-preview", "2016-02-10-privatepreview" ], @@ -54523,6 +56458,7 @@ "West Europe" ], "apiVersions": [ + "2021-03-02-preview", "2019-10-01" ], "capabilities": "None" @@ -54544,6 +56480,7 @@ "West Europe" ], "apiVersions": [ + "2021-03-02-preview", "2020-12-08-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -54565,6 +56502,7 @@ "West Europe" ], "apiVersions": [ + "2021-03-02-preview", "2020-12-08-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -54586,6 +56524,7 @@ "West Europe" ], "apiVersions": [ + "2021-03-02-preview", "2020-12-08-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -54765,6 +56704,55 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureSphere", + "namespace": "Microsoft.AzureSphere", + "authorizations": [ + { + "applicationId": "e7d5afaf-5e93-4aad-b546-878812ff572c", + "roleDefinitionId": "0bf1834f-602f-4692-b93c-814d655198fd" + } + ], + "resourceTypes": [ + { + "resourceType": "catalogs", + "locations": [ + "East US 2 EUAP", + "Central US EUAP", + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "catalogs/products", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureStack", "namespace": "Microsoft.AzureStack", @@ -54846,35 +56834,24 @@ "authorizations": [ { "applicationId": "1412d89f-b8a8-4111-b4fd-e82905cbd85d", - "roleDefinitionId": "90ffa33f-4875-44d8-b86f-d41c3aa6050e" + "roleDefinitionId": "90ffa33f-4875-44d8-b86f-d41c3aa6050e", + "managedByRoleDefinitionId": "5ece1ad5-ab30-4099-b16c-3aa7c8f5acb9" }, { "applicationId": "1322e676-dee7-41ee-a874-ac923822781c", "roleDefinitionId": "e91a9804-9f4d-4501-bf85-03bd4ea78451" + }, + { + "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", + "roleDefinitionId": "12580382-2aec-4b61-ae1c-ecbdb4a0a25f" } ], "resourceTypes": [ { - "resourceType": "clusters", - "locations": [ - "East US", - "West Europe", - "Southeast Asia" - ], - "apiVersions": [ - "2020-10-01" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "operations", + "resourceType": "Operations", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2020-11-01-preview", "2020-10-01", "2020-03-01-preview" @@ -54907,6 +56884,23 @@ "2020-10-01" ], "capabilities": "None" + }, + { + "resourceType": "clusters", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2020-10-01" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" } ], "metadata": { @@ -55427,6 +57421,7 @@ "resourceType": "billingAccounts/customers/transactions", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2019-10-01-preview" ], "capabilities": "None" @@ -55737,6 +57732,7 @@ "resourceType": "billingAccounts/billingProfiles/invoiceSections/transactions", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2019-10-01-preview" ], "capabilities": "None" @@ -56121,11 +58117,20 @@ "resourceType": "billingAccounts/paymentMethods", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2019-10-01-preview", "2018-11-01-preview" ], "capabilities": "None" }, + { + "resourceType": "paymentMethods", + "locations": [], + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None" + }, { "resourceType": "billingAccounts/payableOverage", "locations": [], @@ -57432,6 +59437,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-04-02-preview", "2021-03-05-preview", "2021-02-12-preview", "2021-01-21-preview", @@ -57727,6 +59733,65 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConfidentialLedger", + "namespace": "Microsoft.ConfidentialLedger", + "authorizations": [ + { + "applicationId": "4353526e-1c33-4fcf-9e82-9683edf52848" + }, + { + "applicationId": "c9e0b461-3515-4a03-b576-ede91ed4336d" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/operationstatuses", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Ledgers", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Confluent", "namespace": "Microsoft.Confluent", @@ -57839,6 +59904,11 @@ "apiVersions": [ "2019-12-04-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" } ], @@ -57877,6 +59947,8 @@ { "resourceType": "Locations/OperationStatuses", "locations": [ + "Central US EUAP", + "East US 2 EUAP", "West US 2", "West Europe", "East US" @@ -58369,6 +60441,7 @@ "resourceType": "OperationStatus", "locations": [], "apiVersions": [ + "2021-01-01", "2019-11-01", "2019-10-01", "2019-05-01-preview", @@ -58385,6 +60458,7 @@ "resourceType": "OperationResults", "locations": [], "apiVersions": [ + "2021-01-01", "2019-11-01", "2019-10-01", "2019-05-01-preview", @@ -58435,12 +60509,14 @@ "resourceType": "containerGroups", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58448,12 +60524,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58479,12 +60557,14 @@ "resourceType": "serviceAssociationLinks", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58492,12 +60572,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58542,12 +60624,14 @@ "resourceType": "locations/capabilities", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58555,12 +60639,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58586,12 +60672,14 @@ "resourceType": "locations/usages", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58599,12 +60687,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58630,12 +60720,14 @@ "resourceType": "locations/operations", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58643,12 +60735,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58674,12 +60768,14 @@ "resourceType": "locations/operationresults", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58687,12 +60783,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58737,12 +60835,14 @@ "resourceType": "locations/cachedImages", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58750,12 +60850,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58781,12 +60883,14 @@ "resourceType": "locations/deleteVirtualNetworkOrSubnets", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", - "East US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -58794,12 +60898,14 @@ "Korea Central", "North Central US", "North Europe", + "Norway East", "South Central US", "Southeast Asia", "South India", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West US", @@ -58879,14 +60985,15 @@ ], "vnetSupportRegions": [ "australiaeast", + "australiasoutheast", "brazilsouth", "canadacentral", "canadaeast", "centralindia", "centralus", "centraluseuap", - "eastus", "eastasia", + "eastus", "eastus2", "eastus2euap", "francecentral", @@ -58895,12 +61002,14 @@ "koreacentral", "northcentralus", "northeurope", + "norwayeast", "southcentralus", "southeastasia", "southindia", "switzerlandnorth", "uaenorth", "uksouth", + "ukwest", "westcentralus", "westeurope", "westus", @@ -59206,6 +61315,7 @@ "resourceType": "Exports", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01-preview", "2020-06-01", "2020-05-01-preview", @@ -59320,6 +61430,7 @@ "resourceType": "GenerateDetailedCostReport", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01-preview" ], "capabilities": "SupportsExtension" @@ -59328,6 +61439,7 @@ "resourceType": "OperationStatus", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01-preview" ], "capabilities": "SupportsExtension" @@ -59336,6 +61448,7 @@ "resourceType": "OperationResults", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01-preview" ], "capabilities": "SupportsExtension" @@ -59819,6 +61932,7 @@ ], "apiVersions": [ "2021-02-01-preview", + "2021-02-01", "2020-12-01", "2020-09-01-preview", "2020-09-01", @@ -59833,7 +61947,7 @@ "2018-07-01", "2017-09-01" ], - "defaultApiVersion": "2020-12-01", + "defaultApiVersion": "2021-02-01", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { @@ -59845,6 +61959,7 @@ ], "apiVersions": [ "2021-02-01-preview", + "2021-02-01", "2020-12-01", "2020-09-01-preview", "2020-09-01", @@ -59866,6 +61981,7 @@ "locations": [], "apiVersions": [ "2021-02-01-preview", + "2021-02-01", "2020-12-01", "2020-09-01-preview", "2020-09-01", @@ -59970,8 +62086,6 @@ "South India", "West India", "Korea Central", - "Korea South", - "South Africa West", "South Africa North", "Brazil South", "Switzerland North", @@ -60018,7 +62132,15 @@ "secrets", "sqlPermissions", "tables", - "instancePools" + "instancePools", + "sqlanalytics", + "genie", + "globalInitScripts", + "iamRole", + "mlflowExperiment", + "featureStore", + "RemoteHistoryService", + "mlflowAcledArtifact" ] } ] @@ -60026,7 +62148,7 @@ } } }, - "capabilities": "SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "workspaces/virtualNetworkPeerings", @@ -60056,9 +62178,7 @@ "South India", "West India", "Korea Central", - "Korea South", "South Africa North", - "South Africa West", "UAE North", "Brazil South", "France Central", @@ -60098,9 +62218,7 @@ "South India", "West India", "Korea Central", - "Korea South", "South Africa North", - "South Africa West", "UAE North", "Brazil South", "France Central", @@ -60116,40 +62234,39 @@ "resourceType": "operations", "locations": [ "West US", - "East US 2", "West Europe", - "North Europe", + "Japan East", "East US", + "Korea Central", + "Central US", + "East US 2", + "North Europe", "Southeast Asia", "East Asia", "South Central US", "North Central US", - "Korea South", - "Korea Central", - "South Africa North", - "South Africa West", - "Switzerland North", "West US 2", - "Central US", "UK West", "UK South", "Australia East", "Australia Southeast", "Australia Central", "Australia Central 2", - "Japan East", "Japan West", "Canada Central", "Canada East", "Central India", "South India", "West India", + "South Africa North", "UAE North", "Brazil South", "France Central", + "Switzerland North", "Norway East" ], "apiVersions": [ + "2021-04-01-preview", "2018-04-01" ], "capabilities": "None" @@ -60182,9 +62299,7 @@ "South India", "West India", "Korea Central", - "Korea South", "South Africa North", - "South Africa West", "UAE North", "Brazil South", "France Central", @@ -60192,12 +62307,10 @@ "Norway East" ], "apiVersions": [ + "2021-04-01-preview", "2018-04-01", "2018-03-15", - "2018-03-01", - "2017-09-01-preview", - "2017-08-01-preview", - "2016-09-01-preview" + "2018-03-01" ], "capabilities": "None" }, @@ -60229,8 +62342,6 @@ "South India", "West India", "Korea Central", - "Korea South", - "South Africa West", "South Africa North", "Brazil South", "Switzerland North", @@ -60271,8 +62382,6 @@ "South India", "West India", "Korea Central", - "Korea South", - "South Africa West", "South Africa North", "Brazil South", "Switzerland North", @@ -60544,6 +62653,253 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Datadog", + "namespace": "Microsoft.Datadog", + "authorizations": [ + { + "applicationId": "ae11f5fb-c627-4eec-b4a0-f7b5969426e5", + "roleDefinitionId": "904f1136-432f-44da-adc4-d3bdf27b156d" + }, + { + "applicationId": "055caf97-1b4f-4730-9f5d-acc24b707b06", + "roleDefinitionId": "4ac7c055-417e-47eb-9a38-137e6233a688" + }, + { + "applicationId": "0c6620df-7b29-44de-8ba4-688a56a20f9f", + "roleDefinitionId": "e2116b11-5fb7-4f68-b0e9-9d4173a5dfdb" + } + ], + "resourceTypes": [ + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "West US 2", + "East US 2 EUAP" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "055caf97-1b4f-4730-9f5d-acc24b707b06" + }, + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "monitors/tagRules", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/listMonitoredResources", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/listApiKeys", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/getDefaultKey", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/setDefaultKey", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/singleSignOnConfigurations", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/listHosts", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/listLinkedResources", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "monitors/refreshSetPasswordLink", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "agreements", + "locations": [], + "apiVersions": [ + "2021-03-01", + "2020-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataFactory", "namespace": "Microsoft.DataFactory", @@ -61471,6 +63827,19 @@ ], "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, + { + "resourceType": "ResourceGuards", + "locations": [ + "East US 2", + "North Europe", + "Southeast Asia", + "West Central US" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, { "resourceType": "operations", "locations": [], @@ -63086,6 +65455,74 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DelegatedNetwork", + "namespace": "Microsoft.DelegatedNetwork", + "authorizations": [ + { + "applicationId": "a91b1853-4403-4f54-b5cb-d1ea19d90c37", + "roleDefinitionId": "ff3f8a59-97f9-442a-9d5f-e21908e36352" + }, + { + "applicationId": "1efe5bbf-d5b1-4fe9-99fa-f55ce1c88679" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-03-15", + "2020-08-08-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "a91b1853-4403-4f54-b5cb-d1ea19d90c37" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DeploymentManager", "namespace": "Microsoft.DeploymentManager", @@ -63601,7 +66038,6 @@ "resourceType": "controllers", "locations": [ "West Europe", - "Canada Central", "Central US", "East US 2" ], @@ -63614,7 +66050,6 @@ "resourceType": "controllers/listConnectionDetails", "locations": [ "West Europe", - "Canada Central", "Central US", "East US 2" ], @@ -63627,7 +66062,6 @@ "resourceType": "operations", "locations": [ "West Europe", - "Canada Central", "Central US", "East US 2" ], @@ -63641,7 +66075,6 @@ "resourceType": "locations", "locations": [ "West Europe", - "Canada Central", "Central US", "East US 2" ], @@ -63654,7 +66087,6 @@ "resourceType": "locations/operationresults", "locations": [ "West Europe", - "Canada Central", "Central US", "East US 2" ], @@ -63667,7 +66099,6 @@ "resourceType": "locations/checkContainerHostMapping", "locations": [ "West Europe", - "Canada Central", "Central US", "East US 2" ], @@ -63750,7 +66181,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2018-10-15-preview", @@ -63800,7 +66232,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2018-10-15-preview", @@ -63849,7 +66282,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2018-10-15-preview", @@ -63898,7 +66332,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2018-10-15-preview", @@ -63971,7 +66406,8 @@ "UK South", "West Europe", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2018-10-15-preview", @@ -64034,6 +66470,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-06-30-preview", "2020-12-01", "2020-10-31", "2020-03-01-preview" @@ -64223,6 +66660,79 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Elastic", + "namespace": "Microsoft.Elastic", + "authorizations": [ + { + "applicationId": "9d777fa9-b417-43b8-8991-12f8ee2161d2", + "roleDefinitionId": "727fce2f-45e6-4d8d-8a08-7302549a924f" + }, + { + "applicationId": "5b81a823-5f67-4fb3-8d0f-4c92b5044fe4", + "roleDefinitionId": "e0ad5282-27b3-4c62-a72f-ea7bef45503e" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "East US 2 EUAP", + "Central US EUAP", + "West US 2", + "UK South" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-07-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.EnterpriseKnowledgeGraph", "namespace": "Microsoft.EnterpriseKnowledgeGraph", @@ -64448,6 +66958,78 @@ ], "capabilities": "None" }, + { + "resourceType": "customLocations", + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "West Central US" + ], + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "customLocations/enabledResourceTypes", + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "West Central US" + ], + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationsstatus", + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "West Central US" + ], + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationresults", + "locations": [ + "East US", + "West Europe", + "North Europe", + "France Central", + "Southeast Asia", + "Australia East", + "East US 2", + "West US 2", + "West Central US" + ], + "apiVersions": [ + "2021-03-15-preview" + ], + "capabilities": "None" + }, { "resourceType": "operations", "locations": [], @@ -64713,13 +67295,26 @@ "apiVersions": [ "2020-12-08" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { "resourceType": "Locations/OperationStatuses", "locations": [ "East US", - "West Europe" + "West Europe", + "East US 2", + "West US 2", + "South Central US", + "UK South", + "North Europe", + "Southeast Asia", + "Australia East", + "East US 2 EUAP" ], "apiVersions": [ "2020-12-08" @@ -64730,11 +67325,24 @@ "resourceType": "healthBots", "locations": [ "East US", - "West Europe" + "West Europe", + "East US 2", + "West US 2", + "South Central US", + "UK South", + "North Europe", + "Southeast Asia", + "Australia East", + "East US 2 EUAP" ], "apiVersions": [ "2020-12-08" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" } ], @@ -65107,9 +67715,11 @@ "East US 2", "North Europe", "France Central", + "Japan East", "UK South" ], "apiVersions": [ + "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", "2020-08-02", @@ -65135,9 +67745,11 @@ "East US 2", "North Europe", "France Central", + "Japan East", "UK South" ], "apiVersions": [ + "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", "2020-08-02", @@ -65155,6 +67767,7 @@ "West Europe" ], "apiVersions": [ + "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", "2020-08-02", @@ -65179,9 +67792,11 @@ "East US 2", "North Europe", "France Central", + "Japan East", "UK South" ], "apiVersions": [ + "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", "2020-08-02", @@ -65206,9 +67821,11 @@ "East US 2", "North Europe", "France Central", + "Japan East", "UK South" ], "apiVersions": [ + "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", "2020-08-02", @@ -65224,6 +67841,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", "2020-08-02", @@ -65599,6 +68217,18 @@ "defaultApiVersion": "2020-01-12-preview", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, + { + "resourceType": "dataConsumerCollaboratives", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "defaultApiVersion": "2020-01-12-preview", + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, { "resourceType": "collaborativeInvitations", "locations": [ @@ -65710,6 +68340,9 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01-preview", + "2020-09-08-preview", "2020-01-12-preview" ], "defaultApiVersion": "2020-01-12-preview", @@ -65763,7 +68396,8 @@ "namespace": "Microsoft.IoTCentral", "authorizations": [ { - "applicationId": "9edfcdd9-0bc5-4bd4-b287-c3afc716aac7" + "applicationId": "9edfcdd9-0bc5-4bd4-b287-c3afc716aac7", + "roleDefinitionId": "913c14c1-35ac-45ee-b8f2-05524381b92c" } ], "resourceTypes": [ @@ -65884,6 +68518,118 @@ "2021-02-01-preview" ], "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/deviceGroups", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "sites", + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "sensors", + "locations": [ + "East Asia", + "Southeast Asia", + "Central US", + "East US", + "East US 2", + "West US", + "North Central US", + "South Central US", + "Japan West", + "Japan East", + "Brazil South", + "Australia East", + "Australia Southeast", + "South India", + "Central India", + "West India", + "Canada Central", + "Canada East", + "West US 2", + "Korea Central", + "Korea South", + "Australia Central", + "Australia Central 2", + "UAE Central", + "UAE North", + "South Africa North", + "South Africa West", + "North Europe", + "West Europe", + "UK South", + "UK West", + "France Central", + "France South" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "onPremiseSensors", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" } ], "metadata": { @@ -65926,7 +68672,8 @@ "East US 2", "West US 2", "Australia East", - "North Europe" + "North Europe", + "France Central" ], "apiVersions": [ "2021-04-01-preview", @@ -65936,6 +68683,9 @@ "metadata": { "Microsoft.ManagedIdentity": { "applicationId": "de742ffc-b441-4542-8646-7e805426b824" + }, + "providerHubMetadata": { + "providerExtendsPreflight": false } }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -65948,6 +68698,11 @@ "2021-03-01", "2020-01-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -65963,7 +68718,8 @@ "East US 2", "West US 2", "Australia East", - "North Europe" + "North Europe", + "France Central" ], "apiVersions": [ "2021-04-01-preview", @@ -65980,6 +68736,11 @@ "2021-03-01", "2020-01-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -65992,6 +68753,11 @@ "2019-11-01-preview", "2019-09-01-privatepreview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" } ], @@ -66034,7 +68800,8 @@ "North Europe", "UK South", "Southeast Asia", - "Australia East" + "Australia East", + "France Central" ], "apiVersions": [ "2021-03-01", @@ -66057,7 +68824,8 @@ "North Europe", "UK South", "Southeast Asia", - "Australia East" + "Australia East", + "France Central" ], "apiVersions": [ "2020-07-01-preview" @@ -66119,6 +68887,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66132,7 +68901,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66292,6 +69062,14 @@ "3" ] }, + { + "location": "West US 3", + "zones": [ + "1", + "2", + "3" + ] + }, { "location": "Norway East", "zones": [ @@ -66328,6 +69106,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66341,7 +69120,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66383,6 +69163,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66396,7 +69177,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66438,6 +69220,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66451,7 +69234,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66488,6 +69272,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66501,7 +69286,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66543,6 +69329,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66556,7 +69343,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66598,6 +69386,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66611,7 +69400,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66648,6 +69438,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66661,7 +69452,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66721,6 +69513,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66734,7 +69527,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01", @@ -66794,6 +69588,7 @@ "North Central US", "North Europe", "Norway East", + "Norway West", "South Africa North", "South Africa West", "South Central US", @@ -66807,7 +69602,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-01-01" @@ -66866,11 +69662,18 @@ { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.LabServices", "namespace": "Microsoft.LabServices", - "authorization": { - "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f", - "roleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525", - "managedByRoleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525" - }, + "authorizations": [ + { + "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f", + "roleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525", + "managedByRoleDefinitionId": "8f2de81a-b9aa-49d8-b24c-11814d3ab525" + }, + { + "applicationId": "c7bb12bf-0b39-4f7f-9171-f418ff39b76a", + "roleDefinitionId": "4796d754-aa9c-4af1-be54-f17836325288", + "managedByRoleDefinitionId": "4796d754-aa9c-4af1-be54-f17836325288" + } + ], "resourceTypes": [ { "resourceType": "labaccounts", @@ -66962,8 +69765,15 @@ }, { "resourceType": "operations", - "locations": [], + "locations": [ + "West Central US", + "East US 2 EUAP", + "Central US EUAP", + "West US 2", + "East US 2" + ], "apiVersions": [ + "2020-05-01-preview", "2019-01-01-preview", "2018-10-15", "2017-12-01-preview" @@ -66988,6 +69798,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2020-05-01-preview", "2019-01-01-preview", "2018-10-15", "2017-12-01-preview" @@ -66997,8 +69808,71 @@ ], "metadata": { "Microsoft.ManagedIdentity": { - "applicationId": "1a14be2a-e903-4cec-99cf-b2e209259a0f" + "applicationId": "c7bb12bf-0b39-4f7f-9171-f418ff39b76a" + } + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Logz", + "namespace": "Microsoft.Logz", + "authorizations": [ + { + "applicationId": "a5472e16-e1d2-4bbe-81b3-ecdcd459b536", + "roleDefinitionId": "bd91f1c6-cda0-4e9d-9982-18a494ec938e" + }, + { + "applicationId": "0ecb6dbc-7807-4951-9a69-b5d3dfa5a0b5", + "roleDefinitionId": "b15da9ae-5633-4997-8e2c-b0941fb54476" + } + ], + "resourceTypes": [ + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-10-01-preview" + ], + "defaultApiVersion": "2020-10-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "West US 2" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "capabilities": "None" } + ], + "metadata": { + "onboardedVia": "ProviderHub" }, "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" @@ -67027,6 +69901,11 @@ "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90", "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25" }, + { + "applicationId": "bf283ae6-5efd-44a8-b56a-2a7939982d60", + "roleDefinitionId": "8b910db7-60f9-4c04-af30-71aab18eda90", + "managedByRoleDefinitionId": "91d00862-cf55-46a5-9dce-260bbd92ce25" + }, { "applicationId": "6608bce8-e060-4e82-bfd2-67ed4f60262f", "roleDefinitionId": "344880d0-81ee-4377-b825-b8b79810e492", @@ -67059,6 +69938,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67106,13 +69987,105 @@ "South Central US" ], "apiVersions": [ - "2020-12-01-preview", + "2021-03-01-preview", + "2020-12-01-preview", + "2020-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/onlineEndpoints/deployments", + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US" + ], + "apiVersions": [ + "2021-03-01-preview", + "2020-12-01-preview", + "2020-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/batchEndpoints", + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US" + ], + "apiVersions": [ + "2021-03-01-preview", + "2020-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/batchEndpoints/deployments", + "locations": [ + "North Central US", + "Canada Central", + "Central India", + "UK South", + "West US", + "Central US", + "East Asia", + "Japan East", + "East US", + "North Europe", + "Korea Central", + "Brazil South", + "France Central", + "Australia East", + "East US 2", + "West US 2", + "West Central US", + "Southeast Asia", + "West Europe", + "South Central US" + ], + "apiVersions": [ + "2021-03-01-preview", "2020-09-01-preview" ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, { - "resourceType": "workspaces/onlineEndpoints/deployments", + "resourceType": "workspaces/batchEndpoints/jobs", "locations": [ "North Central US", "Canada Central", @@ -67136,13 +70109,12 @@ "South Central US" ], "apiVersions": [ - "2020-12-01-preview", "2020-09-01-preview" ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "None" }, { - "resourceType": "workspaces/batchEndpoints", + "resourceType": "workspaces/batchEndpoints/deployments/jobs", "locations": [ "North Central US", "Canada Central", @@ -67168,10 +70140,10 @@ "apiVersions": [ "2020-09-01-preview" ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "None" }, { - "resourceType": "workspaces/batchEndpoints/deployments", + "resourceType": "workspaces/computes", "locations": [ "North Central US", "Canada Central", @@ -67195,12 +70167,30 @@ "South Central US" ], "apiVersions": [ - "2020-09-01-preview" + "2021-04-01", + "2021-03-01-preview", + "2021-01-01", + "2020-09-01-preview", + "2020-08-01", + "2020-06-01", + "2020-05-15-preview", + "2020-05-01-preview", + "2020-04-01-preview", + "2020-04-01", + "2020-03-01", + "2020-02-18-preview", + "2020-02-02", + "2020-01-01", + "2019-11-01", + "2019-06-01", + "2019-05-01", + "2018-11-19", + "2018-03-01-preview" ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity" }, { - "resourceType": "workspaces/batchEndpoints/jobs", + "resourceType": "workspaces/jobs", "locations": [ "North Central US", "Canada Central", @@ -67224,12 +70214,13 @@ "South Central US" ], "apiVersions": [ + "2021-03-01-preview", "2020-09-01-preview" ], "capabilities": "None" }, { - "resourceType": "workspaces/batchEndpoints/deployments/jobs", + "resourceType": "workspaces/codes", "locations": [ "North Central US", "Canada Central", @@ -67253,57 +70244,13 @@ "South Central US" ], "apiVersions": [ + "2021-03-01-preview", "2020-09-01-preview" ], "capabilities": "None" }, { - "resourceType": "workspaces/computes", - "locations": [ - "North Central US", - "Canada Central", - "Central India", - "UK South", - "West US", - "Central US", - "East Asia", - "Japan East", - "East US", - "North Europe", - "Korea Central", - "Brazil South", - "France Central", - "Australia East", - "East US 2", - "West US 2", - "West Central US", - "Southeast Asia", - "West Europe", - "South Central US" - ], - "apiVersions": [ - "2021-01-01", - "2020-09-01-preview", - "2020-08-01", - "2020-06-01", - "2020-05-15-preview", - "2020-05-01-preview", - "2020-04-01-preview", - "2020-04-01", - "2020-03-01", - "2020-02-18-preview", - "2020-02-02", - "2020-01-01", - "2019-11-01", - "2019-06-01", - "2019-05-01", - "2018-11-19", - "2018-03-01-preview" - ], - "capabilities": "SystemAssignedResourceIdentity" - }, - { - "resourceType": "workspaces/jobs", + "resourceType": "workspaces/codes/versions", "locations": [ "North Central US", "Canada Central", @@ -67333,7 +70280,7 @@ "capabilities": "None" }, { - "resourceType": "workspaces/codes", + "resourceType": "workspaces/components", "locations": [ "North Central US", "Canada Central", @@ -67357,13 +70304,12 @@ "South Central US" ], "apiVersions": [ - "2021-03-01-preview", "2020-09-01-preview" ], "capabilities": "None" }, { - "resourceType": "workspaces/codes/versions", + "resourceType": "workspaces/components/versions", "locations": [ "North Central US", "Canada Central", @@ -67387,7 +70333,6 @@ "South Central US" ], "apiVersions": [ - "2021-03-01-preview", "2020-09-01-preview" ], "capabilities": "None" @@ -67508,6 +70453,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67592,6 +70539,8 @@ "East US 2" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67618,6 +70567,8 @@ "East US 2" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67663,6 +70614,8 @@ "France Central" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67708,6 +70661,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-09-01", @@ -67755,6 +70710,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67799,6 +70756,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67843,6 +70802,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -67885,6 +70846,8 @@ "South Central US" ], "apiVersions": [ + "2021-04-01", + "2021-03-01-preview", "2021-01-01", "2020-09-01-preview", "2020-08-01", @@ -68234,6 +71197,7 @@ "resourceType": "publicMaintenanceConfigurations", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview" ], "capabilities": "None" @@ -68524,16 +71488,20 @@ { "resourceType": "accounts", "locations": [ + "West Central US", "Global", "West US 2", "East US", - "West Europe" + "West Europe", + "North Europe" ], "apiVersions": [ + "2021-02-01", "2020-02-01-preview", "2018-05-01", "2017-01-01-preview" ], + "defaultApiVersion": "2021-02-01", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, { @@ -68547,19 +71515,38 @@ "defaultApiVersion": "2020-02-01-preview", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, + { + "resourceType": "accounts/creators", + "locations": [ + "North Europe", + "West Europe", + "East US 2", + "West US 2", + "Europe", + "United States" + ], + "apiVersions": [ + "2020-02-01-preview" + ], + "defaultApiVersion": "2020-02-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, { "resourceType": "accounts/eventGridFilters", "locations": [], "apiVersions": [ + "2021-02-01", "2020-02-01-preview", "2018-05-01" ], + "defaultApiVersion": "2018-05-01", "capabilities": "None" }, { "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-02-01", "2020-02-01-preview", "2018-05-01", "2017-01-01-preview" @@ -69042,7 +72029,7 @@ "2021-01-01", "2019-10-01-preview" ], - "defaultApiVersion": "2019-10-01-preview", + "defaultApiVersion": "2021-01-01", "metadata": { "Microsoft.ManagedIdentity": { "applicationId": "c1044a71-fd4a-42f0-9ba3-bd810cae7cb3" @@ -69123,7 +72110,7 @@ "2021-01-01", "2019-10-01-preview" ], - "defaultApiVersion": "2019-10-01-preview", + "defaultApiVersion": "2021-01-01", "capabilities": "None" } ], @@ -69402,6 +72389,7 @@ { "resourceType": "operations", "locations": [ + "Australia Central", "Australia East", "Australia Southeast", "Brazil South", @@ -69411,10 +72399,12 @@ "Central US", "East US", "East US 2", + "France Central", "Germany North", "Germany West Central", "Japan East", "Japan West", + "Korea Central", "North Europe", "Norway East", "Norway West", @@ -69433,6 +72423,7 @@ "South Central US (Stage)" ], "apiVersions": [ + "2021-02-01", "2020-12-01", "2020-11-01", "2020-10-01", @@ -69538,6 +72529,7 @@ "Australia East" ], "apiVersions": [ + "2020-09-09-preview", "2020-01-01-preview", "2020-01-01", "2019-06-06", @@ -69602,6 +72594,7 @@ "Australia East" ], "apiVersions": [ + "2020-09-09-preview", "2020-01-01-preview", "2019-05-01-preview" ], @@ -69739,6 +72732,11 @@ "apiVersions": [ "2020-06-23-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -69766,6 +72764,11 @@ "apiVersions": [ "2020-06-23-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -69778,6 +72781,17 @@ "2020-06-23-preview" ], "capabilities": "None" + }, + { + "resourceType": "applicationRegistrationInvites", + "locations": [ + "East US 2 EUAP", + "West Central US" + ], + "apiVersions": [ + "2020-06-23-preview" + ], + "capabilities": "None" } ], "metadata": { @@ -70568,6 +73582,7 @@ "resourceType": "providerRegistrations", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2020-11-20", "2020-10-01-preview", "2020-09-01-preview", @@ -70580,6 +73595,7 @@ "resourceType": "operationStatuses", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2020-11-20", "2020-06-01-preview", "2019-10-01", @@ -70591,6 +73607,7 @@ "resourceType": "providerRegistrations/resourceTypeRegistrations", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2020-11-20", "2020-10-01-preview", "2020-09-01-preview", @@ -70603,6 +73620,7 @@ "resourceType": "providerRegistrations/defaultRollouts", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2020-11-20", "2020-10-01-preview", "2020-09-01-preview", @@ -70615,6 +73633,7 @@ "resourceType": "providerRegistrations/customRollouts", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2020-11-20", "2020-10-01-preview", "2020-09-01-preview", @@ -70627,6 +73646,7 @@ "resourceType": "availableAccounts", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2020-06-01-preview", "2019-02-01-preview", "2018-11-01-preview" @@ -70658,6 +73678,8 @@ "South Central US", "Brazil South", "Central India", + "UK South", + "Australia East", "East US 2" ], "apiVersions": [ @@ -70763,6 +73785,8 @@ "Canada Central", "South Central US", "Central India", + "UK South", + "Australia East", "East US 2" ], "apiVersions": [ @@ -70956,9 +73980,14 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-03-01", + "2021-02-10", + "2021-02-01-preview", + "2021-02-01", "2021-01-01", "2020-12-01", "2020-10-01", @@ -71000,6 +74029,10 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-01", + "2021-02-10", + "2021-02-01-preview", + "2021-02-01", "2021-01-01", "2020-12-01", "2020-10-01", @@ -71085,7 +74118,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2017-07-01", @@ -71134,7 +74168,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-01-10" @@ -71182,7 +74217,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2016-06-01" @@ -71230,7 +74266,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2016-06-01" @@ -71278,7 +74315,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2017-07-01" @@ -71326,7 +74364,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2017-07-01" @@ -71374,7 +74413,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-12-20-preview", @@ -71423,7 +74463,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-12-20-preview", @@ -71472,7 +74513,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-12-20-preview", @@ -71521,7 +74563,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-12-20-preview", @@ -71570,7 +74613,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-12-20-preview", @@ -71619,7 +74663,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-12-20-preview", @@ -71668,7 +74713,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2017-07-01-preview" @@ -71716,9 +74762,11 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-02-10", "2018-07-10" ], "apiProfiles": [ @@ -71823,6 +74871,7 @@ "Norway East", "South Africa North", "South Central US", + "South India", "Southeast Asia", "Switzerland North", "Switzerland West", @@ -71861,6 +74910,7 @@ "Norway East", "South Africa North", "South Central US", + "South India", "Southeast Asia", "Switzerland North", "Switzerland West", @@ -71899,6 +74949,7 @@ "Norway East", "South Africa North", "South Central US", + "South India", "Southeast Asia", "Switzerland North", "Switzerland West", @@ -73052,6 +76103,7 @@ "Japan East", "Korea Central", "North Europe", + "Norway East", "UAE North", "West Central US", "West Europe", @@ -73086,6 +76138,7 @@ "Japan East", "Korea Central", "North Europe", + "Norway East", "UAE North", "West Central US", "West Europe", @@ -73120,6 +76173,7 @@ "Japan East", "Korea Central", "North Europe", + "Norway East", "UAE North", "West Central US", "West Europe", @@ -73172,6 +76226,8 @@ "South Africa North" ], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2019-06-01-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -73215,6 +76271,8 @@ "South Africa North" ], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2019-06-01-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -73253,6 +76311,9 @@ }, { "applicationId": "20e940b3-4c77-4b0b-9a53-9e16a1b010a7" + }, + { + "applicationId": "5b712e99-51a3-41ce-86ff-046e0081c5c0" } ], "resourceTypes": [ @@ -73276,16 +76337,6 @@ ], "capabilities": "None" }, - { - "resourceType": "checkModernEligibility", - "locations": [ - "global" - ], - "apiVersions": [ - "2018-03-01-beta" - ], - "capabilities": "None" - }, { "resourceType": "saasresources", "locations": [ @@ -73942,6 +76993,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01-preview", "2020-01-01", "2019-01-01-preview" ], @@ -74020,6 +77072,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01-preview", "2019-01-01-preview" ], "capabilities": "SupportsExtension" @@ -74039,6 +77092,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01-preview", "2019-01-01-preview" ], "capabilities": "SupportsExtension" @@ -74096,9 +77150,29 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01-preview", "2019-01-01-preview" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "onboardingStates", + "locations": [ + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "SupportsExtension" } ], "registrationState": "NotRegistered", @@ -74608,14 +77682,43 @@ { "resourceType": "managedclusters", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview", "2020-01-01-preview" ], @@ -74624,14 +77727,43 @@ { "resourceType": "managedclusters/nodetypes", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview", "2020-01-01-preview" ], @@ -74640,14 +77772,43 @@ { "resourceType": "managedclusters/applicationTypes", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview" ], "capabilities": "None" @@ -74655,14 +77816,43 @@ { "resourceType": "managedclusters/applicationTypes/versions", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview" ], "capabilities": "None" @@ -74670,29 +77860,87 @@ { "resourceType": "managedclusters/applications", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview" ], - "capabilities": "None" + "capabilities": "SystemAssignedResourceIdentity" }, { "resourceType": "managedclusters/applications/services", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview" ], "capabilities": "None" @@ -74700,14 +77948,43 @@ { "resourceType": "locations/managedClusterOperations", "locations": [ - "East Asia", - "North Europe", + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview", "2020-01-01-preview" ], @@ -74716,14 +77993,133 @@ { "resourceType": "locations/managedClusterOperationResults", "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-05-01", + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/managedClusterVersions", + "locations": [ + "West US", + "West US 2", + "West Central US", + "East US", + "East US 2", + "Central US", + "West Europe", "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", + "Southeast Asia", + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-05-01", + "2021-01-01-preview", + "2020-01-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/environments/managedClusterVersions", + "locations": [ + "West US", + "West US 2", "West Central US", + "East US", "East US 2", + "Central US", + "West Europe", + "North Europe", + "UK West", + "UK South", + "Australia East", + "Australia Southeast", + "North Central US", + "East Asia", "Southeast Asia", - "West Europe" + "Japan West", + "Japan East", + "South India", + "West India", + "Central India", + "Brazil South", + "South Central US", + "Korea Central", + "Korea South", + "Canada Central", + "Canada East", + "France Central", + "Australia Central", + "South Africa North", + "UAE North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-05-01", "2021-01-01-preview", "2020-01-01-preview" ], @@ -74769,13 +78165,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -74829,13 +78228,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -74864,13 +78266,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -74899,13 +78304,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -74934,13 +78342,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -74978,13 +78389,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -75013,13 +78427,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -75048,13 +78465,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -75083,13 +78503,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -75118,13 +78541,16 @@ "West India", "Brazil South", "Japan East", - "Norway East", + "Germany West Central", "South Africa North", "Switzerland North", + "North Central US", + "Switzerland West", + "Canada East", + "Australia Southeast", "Central India", - "UAE North", - "Germany West Central", - "North Central US" + "Norway East", + "UAE North" ], "apiVersions": [ "2018-09-01-preview", @@ -75632,8 +79058,7 @@ "South Central US" ], "apiVersions": [ - "2020-12-01-preview", - "2020-03-01-preview" + "2020-12-01-preview" ], "capabilities": "None" } @@ -76633,6 +80058,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2020-03-15-preview" ], "capabilities": "None" @@ -76641,6 +80067,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2020-03-15-preview" ], "capabilities": "None" @@ -76656,6 +80083,10 @@ { "applicationId": "9469b9f5-6722-4481-a2b2-14ed560b706f", "roleDefinitionId": "4cd49d82-1f4d-43fc-af0c-1c1203668e5a" + }, + { + "applicationId": "1fcdfafe-959b-4b32-afff-84f850974e84", + "roleDefinitionId": "18c76bf0-ff35-48d1-8a74-bcd770c71a1f" } ], "resourceTypes": [ @@ -76696,7 +80127,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -76750,7 +80183,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -76804,7 +80239,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -76858,7 +80295,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -76912,7 +80351,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -76966,7 +80407,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -77093,7 +80536,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -77145,7 +80590,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01", @@ -77197,7 +80644,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01" @@ -77242,7 +80691,9 @@ "Germany West Central", "Germany North", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Norway West" ], "apiVersions": [ "2020-03-01" @@ -77309,7 +80760,10 @@ "West US 2", "Korea Central", "France Central", - "South India" + "South India", + "Norway East", + "Germany West Central", + "Uae North" ], "apiVersions": [ "2019-06-01", @@ -77354,7 +80808,10 @@ "West US 2", "Korea Central", "France Central", - "South India" + "South India", + "Norway East", + "Germany West Central", + "Uae North" ], "apiVersions": [ "2020-03-01-preview", @@ -77389,7 +80846,10 @@ "West US 2", "Korea Central", "France Central", - "South India" + "South India", + "Norway East", + "Germany West Central", + "Uae North" ], "apiVersions": [ "2020-03-01-preview", @@ -77424,7 +80884,10 @@ "Canada East", "Korea Central", "France Central", - "South India" + "South India", + "Norway East", + "Germany West Central", + "UAE North" ], "apiVersions": [ "2019-06-01", @@ -77498,13 +80961,16 @@ "Central India", "West Central US", "UK South", + "Germany West Central", "UK West", "Canada Central", "Canada East", "West US 2", "Korea Central", "France Central", - "South India" + "South India", + "Norway East", + "Uae North" ], "apiVersions": [ "2019-06-01", @@ -78686,6 +82152,69 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.TestBase", + "namespace": "Microsoft.TestBase", + "authorizations": [ + { + "applicationId": "f3625a3e-6360-4580-968d-fae4cabc75a0", + "roleDefinitionId": "97af1d96-7c92-442d-8117-11e604996ca4" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationstatuses", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "skus", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-12-16-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.TimeSeriesInsights", "namespace": "Microsoft.TimeSeriesInsights", @@ -78699,6 +82228,7 @@ { "resourceType": "environments", "locations": [ + "Canada Central", "France Central", "South Central Us", "East US 2", @@ -78761,6 +82291,7 @@ { "resourceType": "environments/eventsources", "locations": [ + "Canada Central", "France Central", "South Central Us", "East US 2", @@ -78823,6 +82354,7 @@ { "resourceType": "environments/referenceDataSets", "locations": [ + "Canada Central", "France Central", "South Central Us", "East US 2", @@ -78850,6 +82382,7 @@ { "resourceType": "environments/accessPolicies", "locations": [ + "Canada Central", "France Central", "South Central Us", "East US 2", @@ -79000,7 +82533,12 @@ "West US 2", "North Europe", "West Europe", - "South Central US" + "South Central US", + "UK South", + "UK West", + "Southeast Asia", + "Australia East", + "Australia Southeast" ], "apiVersions": [ "2020-02-14", @@ -79804,48 +83342,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Sparkpost.Basic", - "namespace": "Sparkpost.Basic", - "resourceTypes": [ - { - "resourceType": "services", - "locations": [ - "West US" - ], - "apiVersions": [ - "2016-08-01" - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2016-08-01" - ], - "capabilities": "None" - }, - { - "resourceType": "listCommunicationPreference", - "locations": [], - "apiVersions": [ - "2016-08-01" - ], - "capabilities": "None" - }, - { - "resourceType": "updateCommunicationPreference", - "locations": [], - "apiVersions": [ - "2016-08-01" - ], - "capabilities": "None" - } - ], - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Wandisco.Fusion", "namespace": "Wandisco.Fusion", @@ -79869,6 +83365,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -79892,6 +83389,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -79915,6 +83413,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -79938,6 +83437,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -79954,6 +83454,7 @@ "East US" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -79967,9 +83468,11 @@ { "resourceType": "Locations/operationStatuses", "locations": [ + "Canada Central", "East Asia", "East US", "East US 2 EUAP", + "Korea Central", "North Europe", "Southeast Asia", "West Europe", @@ -79978,6 +83481,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -79987,6 +83491,7 @@ "resourceType": "fusionGroups/replicationRules/migrations", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80001,6 +83506,7 @@ "resourceType": "registeredSubscriptions", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80024,6 +83530,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80047,6 +83554,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80061,6 +83569,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80069,7 +83578,9 @@ { "resourceType": "migrators", "locations": [ + "Canada Central", "East US", + "Korea Central", "East Asia", "North Europe", "Southeast Asia", @@ -80079,6 +83590,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80092,16 +83604,19 @@ { "resourceType": "migrators/targets", "locations": [ + "Canada Central", "East US", "West US", "West US 2", "West Central US", + "Korea Central", "West Europe", "North Europe", "East Asia", "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], @@ -80115,16 +83630,45 @@ { "resourceType": "migrators/liveDataMigrations", "locations": [ + "Canada Central", "East US", "West US", "West US 2", "West Central US", + "Korea Central", "West Europe", "North Europe", "East Asia", "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrators/exclusionTemplates", + "locations": [ + "Canada Central", + "East US", + "West US", + "West US 2", + "West Central US", + "Korea Central", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag().json new file mode 100644 index 000000000000..509ecebdebed --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag().json @@ -0,0 +1,186 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f6ffc846aeb359d2d4029b3b201599d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9bea3923-6bd3-4e86-a02b-7c220f65cb39", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "9bea3923-6bd3-4e86-a02b-7c220f65cb39", + "x-ms-routing-request-id": "WESTUS2:20210507T002309Z:9bea3923-6bd3-4e86-a02b-7c220f65cb39" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9790?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-27ad75fe3335b8468c2fed08d697d2c6-6bc03447ddb7dd41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6ae685874b4fa1ded043fd3fec017466", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "91d96e54-7909-427a-bc32-2ca8ae0a1017", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "91d96e54-7909-427a-bc32-2ca8ae0a1017", + "x-ms-routing-request-id": "WESTUS2:20210507T002310Z:91d96e54-7909-427a-bc32-2ca8ae0a1017" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9790", + "name": "testrg9790", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9790?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "30", + "Content-Type": "application/json", + "traceparent": "00-2af41ae566ebc649b455bb888652d962-651c88dd51f50747-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7ee5a98cdfdc93bf65c292f4014dbfd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "k1": "v1", + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "247", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fc2e3151-3882-428f-93fd-2084784b0c0c", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "fc2e3151-3882-428f-93fd-2084784b0c0c", + "x-ms-routing-request-id": "WESTUS2:20210507T002310Z:fc2e3151-3882-428f-93fd-2084784b0c0c" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9790", + "name": "testrg9790", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "k1": "v1", + "k2": "v2" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9790?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "20", + "Content-Type": "application/json", + "traceparent": "00-67973e3342e580438529e44bfdb8903f-aab531587a048149-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a58c0fdfe0ad7cf72054e36bd41ae801", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "237", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5173c3cd-dc6f-45fd-ac55-6265b18858e4", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "5173c3cd-dc6f-45fd-ac55-6265b18858e4", + "x-ms-routing-request-id": "WESTUS2:20210507T002310Z:5173c3cd-dc6f-45fd-ac55-6265b18858e4" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9790", + "name": "testrg9790", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "k2": "v2" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "145958214", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag()Async.json new file mode 100644 index 000000000000..19055fd8017e --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag()Async.json @@ -0,0 +1,184 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "517c7f119e063fc978ff7963cbcca1ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e584063e-5cb2-4934-8992-6ad1dc336c18", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "e584063e-5cb2-4934-8992-6ad1dc336c18", + "x-ms-routing-request-id": "WESTUS2:20210507T002306Z:e584063e-5cb2-4934-8992-6ad1dc336c18" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3485?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-82c64f6fc978de4ea43f42c5b8db73cd-17f46164ab37a743-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "70a60d763441813b3a1352c2e4d4c5d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "919a2611-e96e-434d-80ae-6fec22c036ec", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "919a2611-e96e-434d-80ae-6fec22c036ec", + "x-ms-routing-request-id": "WESTUS2:20210507T002307Z:919a2611-e96e-434d-80ae-6fec22c036ec" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3485", + "name": "testrg3485", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3485?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "30", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0345283fa353f83460591dfed7bc2e6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "k1": "v1", + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "247", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "064384a4-f1df-4256-9c8c-c6a2a018736e", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "064384a4-f1df-4256-9c8c-c6a2a018736e", + "x-ms-routing-request-id": "WESTUS2:20210507T002307Z:064384a4-f1df-4256-9c8c-c6a2a018736e" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3485", + "name": "testrg3485", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "k1": "v1", + "k2": "v2" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3485?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "20", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cf89515e39cd4ad040d0cb8a767d932a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "237", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c04d323c-6cb5-4a0a-a3a6-9d7447a2a6d5", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "c04d323c-6cb5-4a0a-a3a6-9d7447a2a6d5", + "x-ms-routing-request-id": "WESTUS2:20210507T002307Z:c04d323c-6cb5-4a0a-a3a6-9d7447a2a6d5" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3485", + "name": "testrg3485", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "k2": "v2" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "238053951", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags().json new file mode 100644 index 000000000000..394aa3c48cff --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags().json @@ -0,0 +1,138 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "108869ad96c06c2bdb0886fbae9de40e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1421e8ba-8156-4114-9af0-d4250f4be4f4", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "1421e8ba-8156-4114-9af0-d4250f4be4f4", + "x-ms-routing-request-id": "WESTUS2:20210507T002311Z:1421e8ba-8156-4114-9af0-d4250f4be4f4" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3012?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-660fc39fe0e5a44b8266a7af7add7ab6-c0f3a77efffc3f45-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b2d52f2d95f5bed589c19fc232d5cdbd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6012a780-c3dc-4027-aeb3-9ff76b9fa39d", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "6012a780-c3dc-4027-aeb3-9ff76b9fa39d", + "x-ms-routing-request-id": "WESTUS2:20210507T002312Z:6012a780-c3dc-4027-aeb3-9ff76b9fa39d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3012", + "name": "testrg3012", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3012?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "24", + "Content-Type": "application/json", + "traceparent": "00-e962bbbf8df1684ea379af18ea2910e1-1a76721b9f3c5246-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5a56870f0dc79c820c2c237b1a6f0af0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "241", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cb92b8a8-cf9e-407d-9f01-84a758b3145f", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "cb92b8a8-cf9e-407d-9f01-84a758b3145f", + "x-ms-routing-request-id": "WESTUS2:20210507T002312Z:cb92b8a8-cf9e-407d-9f01-84a758b3145f" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3012", + "name": "testrg3012", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "key": "value" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "1257131198", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags()Async.json new file mode 100644 index 000000000000..b82aedab7ba1 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags()Async.json @@ -0,0 +1,137 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7d8e4bf2fbb2c517db2bcb3a532889d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2ad8073f-4c02-4b0e-88ba-70345e2d0629", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "2ad8073f-4c02-4b0e-88ba-70345e2d0629", + "x-ms-routing-request-id": "WESTUS2:20210507T002308Z:2ad8073f-4c02-4b0e-88ba-70345e2d0629" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg844?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-0de720ec566a6245aefc9d7f8c25d35f-1d77cb9a0706844c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ed49031a4ea60df2c3ad9483acaff1e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4c33ae0f-2bb5-4cf2-b55d-e2197b7e4a77", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "4c33ae0f-2bb5-4cf2-b55d-e2197b7e4a77", + "x-ms-routing-request-id": "WESTUS2:20210507T002308Z:4c33ae0f-2bb5-4cf2-b55d-e2197b7e4a77" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg844", + "name": "testrg844", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg844?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "24", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4e46d9d60aed241c1f536821f1922e93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "239", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "46a71f59-5147-4c8e-bc76-6a2841369965", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "46a71f59-5147-4c8e-bc76-6a2841369965", + "x-ms-routing-request-id": "WESTUS2:20210507T002309Z:46a71f59-5147-4c8e-bc76-6a2841369965" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg844", + "name": "testrg844", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "key": "value" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "1062352272", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag().json new file mode 100644 index 000000000000..c9b454cd83ad --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag().json @@ -0,0 +1,139 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|ad80da2c-4d0c713138b5070e.", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e2e2980aa5db3bb6186f13aeb46a6b1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d3dde388-6051-4db7-b794-4f162997ec9d", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "d3dde388-6051-4db7-b794-4f162997ec9d", + "x-ms-routing-request-id": "WESTUS2:20210507T002312Z:d3dde388-6051-4db7-b794-4f162997ec9d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3562?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-1b0a338cce35f744866c10aec3001cb9-edfc2eb5818e9842-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e31e8ad546bc8035dec983139602b517", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "17907476-97e8-4f29-afc0-977a64769f12", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "17907476-97e8-4f29-afc0-977a64769f12", + "x-ms-routing-request-id": "WESTUS2:20210507T002313Z:17907476-97e8-4f29-afc0-977a64769f12" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3562", + "name": "testrg3562", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3562?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "24", + "Content-Type": "application/json", + "traceparent": "00-d1bfb6e1a2bf3b48803382cdcd01ac78-6ea2a65835a6d345-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "747dbaa8b242fa489077270d4590a8c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "241", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6dbf56e4-0756-4e84-959e-463b5704548a", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "6dbf56e4-0756-4e84-959e-463b5704548a", + "x-ms-routing-request-id": "WESTUS2:20210507T002313Z:6dbf56e4-0756-4e84-959e-463b5704548a" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3562", + "name": "testrg3562", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "key": "value" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "831377768", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag()Async.json new file mode 100644 index 000000000000..811a646193a4 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag()Async.json @@ -0,0 +1,139 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|ad80da2a-4d0c713138b5070e.", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "419b0507b48c89952eb8bc9ebc8fdf26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e8337c72-1868-4c47-89dd-16686c483cb2", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "e8337c72-1868-4c47-89dd-16686c483cb2", + "x-ms-routing-request-id": "WESTUS2:20210507T002309Z:e8337c72-1868-4c47-89dd-16686c483cb2" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg325?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-03cdde7b61ebe444961afa10c2ce87b8-f689903ba523cb4a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "04e7864d2a4d3a9c15f6443d32990891", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a94dd329-40e4-441d-9332-f3af6f42b045", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "a94dd329-40e4-441d-9332-f3af6f42b045", + "x-ms-routing-request-id": "WESTUS2:20210507T002310Z:a94dd329-40e4-441d-9332-f3af6f42b045" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg325", + "name": "testrg325", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg325?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "24", + "Content-Type": "application/json", + "traceparent": "00-6a7904e8dcf5ba47ba42bbb352d1210a-e93561b6ded60a47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8b4c68b5040bc1aa29beea545e73cfa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "239", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4215de4c-78f0-451a-b548-1da1a8ac6e4c", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "4215de4c-78f0-451a-b548-1da1a8ac6e4c", + "x-ms-routing-request-id": "WESTUS2:20210507T002310Z:4215de4c-78f0-451a-b548-1da1a8ac6e4c" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg325", + "name": "testrg325", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "key": "value" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "1781344851", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg().json index 18e3e8e494c6..95882ddb89a5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg().json @@ -6,7 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-bbe4ff6078e39e46911a7e539c1ad972-b794793c6a33da4c-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f0f7c418531f7e23129990a1ce22438d", "x-ms-return-client-request-id": "true" }, @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 13 Apr 2021 03:20:59 GMT", + "Date": "Fri, 07 May 2021 00:23:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c6b7813-defa-4f41-9d9b-a6a5fccb0b8c", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "7c6b7813-defa-4f41-9d9b-a6a5fccb0b8c", - "x-ms-routing-request-id": "WESTUS2:20210413T032059Z:7c6b7813-defa-4f41-9d9b-a6a5fccb0b8c" + "x-ms-correlation-request-id": "94a906bd-519e-417b-b523-84410ce75b32", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "94a906bd-519e-417b-b523-84410ce75b32", + "x-ms-routing-request-id": "WESTUS2:20210507T002314Z:94a906bd-519e-417b-b523-84410ce75b32" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,8 +48,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-725366f2c1131a4d9932ead3fc84d357-0907cb6abc183d43-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-9d1a5d2dc6d9bd47bbb4c434954b1a6d-d26d63b4a9c7da49-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7b606c2e942c259d07bfe5e290c76be0", "x-ms-return-client-request-id": "true" }, @@ -58,16 +59,16 @@ "Cache-Control": "no-cache", "Content-Length": "96", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 13 Apr 2021 03:20:59 GMT", + "Date": "Fri, 07 May 2021 00:23:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1dc03e60-bac2-4ca6-82a0-d341f3157180", + "x-ms-correlation-request-id": "aeefff14-3185-44a2-a4a7-a31738966a55", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "1dc03e60-bac2-4ca6-82a0-d341f3157180", - "x-ms-routing-request-id": "WESTUS2:20210413T032059Z:1dc03e60-bac2-4ca6-82a0-d341f3157180" + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-request-id": "aeefff14-3185-44a2-a4a7-a31738966a55", + "x-ms-routing-request-id": "WESTUS2:20210507T002314Z:aeefff14-3185-44a2-a4a7-a31738966a55" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg()Async.json index f906271158df..3d5172a22f71 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a59e3ba18f02fb41c9f7e14a75be1692", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 13 Apr 2021 03:20:58 GMT", + "Date": "Fri, 07 May 2021 00:23:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b51dab9c-7941-44e2-b54e-d2ed76875651", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "b51dab9c-7941-44e2-b54e-d2ed76875651", - "x-ms-routing-request-id": "WESTUS2:20210413T032059Z:b51dab9c-7941-44e2-b54e-d2ed76875651" + "x-ms-correlation-request-id": "bbd12905-e8bd-4a9c-9699-e031806ada15", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "bbd12905-e8bd-4a9c-9699-e031806ada15", + "x-ms-routing-request-id": "WESTUS2:20210507T002311Z:bbd12905-e8bd-4a9c-9699-e031806ada15" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,8 +47,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-35b58b3e5da5af4ea3cc241ebdfe5d1c-7331142426c65843-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d70a760fe5144248b0b0f246085b44e0-13f015cd23a02b42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "59da4c8c96951def4aed1446f27b5729", "x-ms-return-client-request-id": "true" }, @@ -58,16 +58,16 @@ "Cache-Control": "no-cache", "Content-Length": "96", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 13 Apr 2021 03:20:59 GMT", + "Date": "Fri, 07 May 2021 00:23:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4a572ac-7171-4dc6-8487-5aa94349ef8d", + "x-ms-correlation-request-id": "5e1b1a53-94dd-4592-a912-cc3531268cee", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "c4a572ac-7171-4dc6-8487-5aa94349ef8d", - "x-ms-routing-request-id": "WESTUS2:20210413T032059Z:c4a572ac-7171-4dc6-8487-5aa94349ef8d" + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "5e1b1a53-94dd-4592-a912-cc3531268cee", + "x-ms-routing-request-id": "WESTUS2:20210507T002311Z:5e1b1a53-94dd-4592-a912-cc3531268cee" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json index d9f324633776..2a3673c4d2cf 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json @@ -6,11 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-418090c610340146b50582f7bfc76e08-49cd61fcd311054d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "Request-Id": "|ad80da2d-4d0c713138b5070e.", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fde1e93a0695fe71bc13502d3827c8af", "x-ms-return-client-request-id": "true" }, @@ -20,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:17 GMT", + "Date": "Fri, 07 May 2021 00:23:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d5d26a1-629f-41ea-b357-e4e40691442c", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "3d5d26a1-629f-41ea-b357-e4e40691442c", - "x-ms-routing-request-id": "WESTUS:20210330T180618Z:3d5d26a1-629f-41ea-b357-e4e40691442c" + "x-ms-correlation-request-id": "cc29565e-546b-4ef8-ba5f-22384dadb5f7", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "cc29565e-546b-4ef8-ba5f-22384dadb5f7", + "x-ms-routing-request-id": "WESTUS2:20210507T002314Z:cc29565e-546b-4ef8-ba5f-22384dadb5f7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,11 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-dd53fad68e2aea438a55618e70967cf1-1a1765bf1fb9304a-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-77745467c00c584ca3e47ca193aade9e-ee61d692a44bc742-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3d726b1de7729904587642ebee69403a", "x-ms-return-client-request-id": "true" }, @@ -70,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:18 GMT", + "Date": "Fri, 07 May 2021 00:23:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c8a40ff-f8f4-42c7-aac3-c918877b8d5c", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "1c8a40ff-f8f4-42c7-aac3-c918877b8d5c", - "x-ms-routing-request-id": "WESTUS:20210330T180619Z:1c8a40ff-f8f4-42c7-aac3-c918877b8d5c" + "x-ms-correlation-request-id": "fa81d19b-fa12-439f-a75b-9b7f96456c57", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "fa81d19b-fa12-439f-a75b-9b7f96456c57", + "x-ms-routing-request-id": "WESTUS2:20210507T002315Z:fa81d19b-fa12-439f-a75b-9b7f96456c57" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3809", @@ -97,11 +91,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-444b8c81f1308a45aa6ac29c0f7d6485-6c58de77211e6d4d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-7eb927ff8fd25c4e9fc1e8231862ce01-d64d832f1be2b247-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea3c4c7f24a73ca66dc276a5d00cfc3d", "x-ms-return-client-request-id": "true" }, @@ -110,11237 +101,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:18 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e08f16cd-bd2f-453d-9465-3b1fa0162422", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-request-id": "e08f16cd-bd2f-453d-9465-3b1fa0162422", - "x-ms-routing-request-id": "WESTUS:20210330T180619Z:e08f16cd-bd2f-453d-9465-3b1fa0162422" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "dbb9f30fc48cf8f9c535d0b0705ec84b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ea9e54e-24d4-41eb-98e9-41e6b99c716e", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "4ea9e54e-24d4-41eb-98e9-41e6b99c716e", - "x-ms-routing-request-id": "WESTUS:20210330T180619Z:4ea9e54e-24d4-41eb-98e9-41e6b99c716e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a65b0479605b9a2d84390d42e7160d5a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1b39c33-f221-49fd-91c0-00999bfb5832", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "a1b39c33-f221-49fd-91c0-00999bfb5832", - "x-ms-routing-request-id": "WESTUS:20210330T180619Z:a1b39c33-f221-49fd-91c0-00999bfb5832" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "dd95ccf42053cbb14f151ad71416917e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f8c182b-c09a-44ff-894a-ce9200b23f7c", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "0f8c182b-c09a-44ff-894a-ce9200b23f7c", - "x-ms-routing-request-id": "WESTUS:20210330T180619Z:0f8c182b-c09a-44ff-894a-ce9200b23f7c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2b16f19b27b7af4ec61f5652b7b611af", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8182a7d-8a95-41ad-8155-39bb8599fb63", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "f8182a7d-8a95-41ad-8155-39bb8599fb63", - "x-ms-routing-request-id": "WESTUS:20210330T180620Z:f8182a7d-8a95-41ad-8155-39bb8599fb63" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a4bc7628eac958f8528f57454655856e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8051668f-68b0-40eb-8377-dbd235aea713", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "8051668f-68b0-40eb-8377-dbd235aea713", - "x-ms-routing-request-id": "WESTUS:20210330T180620Z:8051668f-68b0-40eb-8377-dbd235aea713" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f5a78ea8e1ffcda27ee61734c95e1498", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d79a39cb-89c1-41f9-80e2-02e8d5ad554f", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "d79a39cb-89c1-41f9-80e2-02e8d5ad554f", - "x-ms-routing-request-id": "WESTUS:20210330T180620Z:d79a39cb-89c1-41f9-80e2-02e8d5ad554f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9eae6a03ed5ab1b5f9bed828d0086870", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8035abc9-2733-4560-9e20-7e72bd30b71d", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "8035abc9-2733-4560-9e20-7e72bd30b71d", - "x-ms-routing-request-id": "WESTUS:20210330T180620Z:8035abc9-2733-4560-9e20-7e72bd30b71d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "28aae8991b0f46b0d3ef25e2d3c38ef3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c1a303f-25b8-41e9-b13d-596e701537d7", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "3c1a303f-25b8-41e9-b13d-596e701537d7", - "x-ms-routing-request-id": "WESTUS:20210330T180620Z:3c1a303f-25b8-41e9-b13d-596e701537d7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "dc41be7be6a7ba14d9f5fc41097afd75", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9cf6c9ac-f28f-4a5b-b00a-7a40d41ddc25", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "9cf6c9ac-f28f-4a5b-b00a-7a40d41ddc25", - "x-ms-routing-request-id": "WESTUS:20210330T180620Z:9cf6c9ac-f28f-4a5b-b00a-7a40d41ddc25" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e19aa67eebb4e789ba67cb6bc7d2de35", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c7af825-db88-43a6-991d-3cc78b1f40fc", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "8c7af825-db88-43a6-991d-3cc78b1f40fc", - "x-ms-routing-request-id": "WESTUS:20210330T180620Z:8c7af825-db88-43a6-991d-3cc78b1f40fc" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "11ace42f8cc6b2c9d4ef4e191f6f3d59", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "361b6fd2-aaf6-4eb7-ba0c-ef746b17f9e2", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "361b6fd2-aaf6-4eb7-ba0c-ef746b17f9e2", - "x-ms-routing-request-id": "WESTUS:20210330T180620Z:361b6fd2-aaf6-4eb7-ba0c-ef746b17f9e2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2c63b0f1ad288f3f3559213f1ba8f206", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:20 GMT", + "Date": "Fri, 07 May 2021 00:23:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f43b0780-84fb-41ba-958c-040b14ab789e", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "f43b0780-84fb-41ba-958c-040b14ab789e", - "x-ms-routing-request-id": "WESTUS:20210330T180620Z:f43b0780-84fb-41ba-958c-040b14ab789e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2411c617ebcdf2aedde80cc49c6fc84b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34a91fdd-4c90-43c3-aa57-c71e7b0dddeb", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "34a91fdd-4c90-43c3-aa57-c71e7b0dddeb", - "x-ms-routing-request-id": "WESTUS:20210330T180620Z:34a91fdd-4c90-43c3-aa57-c71e7b0dddeb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "17797129b16e810ca51cdb6d6a89962b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c2376b1-cf50-4fc6-88f8-918c0bc67dcb", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "5c2376b1-cf50-4fc6-88f8-918c0bc67dcb", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:5c2376b1-cf50-4fc6-88f8-918c0bc67dcb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "580148fc195d068b01714e40a07af3c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8ee5873-4f14-40b3-9cda-8072aa4fe3bb", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "e8ee5873-4f14-40b3-9cda-8072aa4fe3bb", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:e8ee5873-4f14-40b3-9cda-8072aa4fe3bb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a915d691db2f6597ba907fb00f418854", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98d728cf-1fbc-4de3-a489-eeea6c681ff8", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "98d728cf-1fbc-4de3-a489-eeea6c681ff8", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:98d728cf-1fbc-4de3-a489-eeea6c681ff8" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "54c7e0516f6d10ede67315fd63cce02a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efa27d5f-d368-4cc3-a641-e28173514fd4", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "efa27d5f-d368-4cc3-a641-e28173514fd4", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:efa27d5f-d368-4cc3-a641-e28173514fd4" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "93db1629ec7321fcb09c9ecd9adbf6c0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33b28c39-19f6-457d-955a-b68bcd8ccfb3", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "33b28c39-19f6-457d-955a-b68bcd8ccfb3", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:33b28c39-19f6-457d-955a-b68bcd8ccfb3" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c0eefae99eb22157e805c3bbc69a02ed", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7c8e1d6-f76c-443e-8984-5bcd878bdcae", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "e7c8e1d6-f76c-443e-8984-5bcd878bdcae", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:e7c8e1d6-f76c-443e-8984-5bcd878bdcae" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f98754aff46565e0e4a6a4d1d120750a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63a70462-d284-4d7a-9851-5e988b1e00c2", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "63a70462-d284-4d7a-9851-5e988b1e00c2", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:63a70462-d284-4d7a-9851-5e988b1e00c2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6914547d20dd8b77bebaab6e28405b15", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15260685-8942-4cc6-9453-99307084d6c9", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "15260685-8942-4cc6-9453-99307084d6c9", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:15260685-8942-4cc6-9453-99307084d6c9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "461eb099fc54f55b1989dc0cfa854fc8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e635af28-6277-4b4f-91ca-982bff1e9749", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "e635af28-6277-4b4f-91ca-982bff1e9749", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:e635af28-6277-4b4f-91ca-982bff1e9749" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "713eb88f99868e0fdcfb3aab48723ca3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79eae4e0-52a7-41b9-8061-d3e0493962e7", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "79eae4e0-52a7-41b9-8061-d3e0493962e7", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:79eae4e0-52a7-41b9-8061-d3e0493962e7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "20378e4b2f0280b6f91e4f54446b9038", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b65b6012-45d9-4e4c-b561-6fcbf0c4aabf", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "b65b6012-45d9-4e4c-b561-6fcbf0c4aabf", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:b65b6012-45d9-4e4c-b561-6fcbf0c4aabf" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6fdee36ae901008fa18f6958c2b0aca7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9ff4292-5fc8-4830-b9fb-7fb29f363f71", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "a9ff4292-5fc8-4830-b9fb-7fb29f363f71", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:a9ff4292-5fc8-4830-b9fb-7fb29f363f71" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6cc1384d2f4d60c502be786749bb4a71", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d3aaaad-35fd-48cb-888e-57b1ad75d4a7", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "5d3aaaad-35fd-48cb-888e-57b1ad75d4a7", - "x-ms-routing-request-id": "WESTUS:20210330T180622Z:5d3aaaad-35fd-48cb-888e-57b1ad75d4a7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6540016bcc9461a1fe377f72c55ebd49", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f140f848-74d3-40c0-b127-8e1bfe54ed86", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "f140f848-74d3-40c0-b127-8e1bfe54ed86", - "x-ms-routing-request-id": "WESTUS:20210330T180622Z:f140f848-74d3-40c0-b127-8e1bfe54ed86" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0b07a87224a93bea1d7d6d437128b6e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61618f0d-de84-470a-b6b5-06d891b880fe", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "61618f0d-de84-470a-b6b5-06d891b880fe", - "x-ms-routing-request-id": "WESTUS:20210330T180622Z:61618f0d-de84-470a-b6b5-06d891b880fe" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c0edf844466f801397606d16af529aa3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e56eb850-7969-4979-87ef-09f2a56524eb", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "e56eb850-7969-4979-87ef-09f2a56524eb", - "x-ms-routing-request-id": "WESTUS:20210330T180622Z:e56eb850-7969-4979-87ef-09f2a56524eb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a1f42e003eb346c7160548165e5eefd6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9a42849-9b5e-4748-a387-7fe9773bf087", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "a9a42849-9b5e-4748-a387-7fe9773bf087", - "x-ms-routing-request-id": "WESTUS:20210330T180622Z:a9a42849-9b5e-4748-a387-7fe9773bf087" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "cd2d9980fd712cd995867449b6d48bca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e2a2697-c1f3-4f19-bf44-6c4831e9e7dc", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "1e2a2697-c1f3-4f19-bf44-6c4831e9e7dc", - "x-ms-routing-request-id": "WESTUS:20210330T180622Z:1e2a2697-c1f3-4f19-bf44-6c4831e9e7dc" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4242cae31533063230a6a96afefd2139", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aee7b989-8314-4cb7-997f-0e39c702bdc9", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "aee7b989-8314-4cb7-997f-0e39c702bdc9", - "x-ms-routing-request-id": "WESTUS:20210330T180622Z:aee7b989-8314-4cb7-997f-0e39c702bdc9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "15959670cc24033155c80c2dca7e8f42", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab5b5cb8-b1da-45ff-b5bf-7f78f2229e24", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "ab5b5cb8-b1da-45ff-b5bf-7f78f2229e24", - "x-ms-routing-request-id": "WESTUS:20210330T180622Z:ab5b5cb8-b1da-45ff-b5bf-7f78f2229e24" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "94327d79ac1c6ba367279dcb536f2e97", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0934a288-9b77-46fb-8b63-ce2b5fc60361", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "0934a288-9b77-46fb-8b63-ce2b5fc60361", - "x-ms-routing-request-id": "WESTUS:20210330T180622Z:0934a288-9b77-46fb-8b63-ce2b5fc60361" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "20d83a64763e16a5983eed6b08053bb1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81bfadee-0788-451e-a585-b193c44074cc", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "81bfadee-0788-451e-a585-b193c44074cc", - "x-ms-routing-request-id": "WESTUS:20210330T180622Z:81bfadee-0788-451e-a585-b193c44074cc" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "80f167168dcac31cf32aaefd2f66afe6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d49c132-b0bf-4b82-be61-20f2b07f2e3b", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "3d49c132-b0bf-4b82-be61-20f2b07f2e3b", - "x-ms-routing-request-id": "WESTUS:20210330T180622Z:3d49c132-b0bf-4b82-be61-20f2b07f2e3b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8fc8749a6fa50303d71bfbddbe376262", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cb7d9db-2452-4d30-a366-1975bc1202c9", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "7cb7d9db-2452-4d30-a366-1975bc1202c9", - "x-ms-routing-request-id": "WESTUS:20210330T180623Z:7cb7d9db-2452-4d30-a366-1975bc1202c9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ecb4ebecad7dd6cd1e142c14c7a8e732", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ec45cdf-d34a-4f5a-97f7-33d0883da842", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "9ec45cdf-d34a-4f5a-97f7-33d0883da842", - "x-ms-routing-request-id": "WESTUS:20210330T180623Z:9ec45cdf-d34a-4f5a-97f7-33d0883da842" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "94d1078eab3ca60b63eea9ae923f05bb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50e90c65-f19d-470f-be51-f1bc7d3c5e24", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "50e90c65-f19d-470f-be51-f1bc7d3c5e24", - "x-ms-routing-request-id": "WESTUS:20210330T180623Z:50e90c65-f19d-470f-be51-f1bc7d3c5e24" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "43104bc7c3b1ec68a7f1719043ef3b2e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3d62ffe-d5ec-433a-a7ff-76e07a5632e5", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "c3d62ffe-d5ec-433a-a7ff-76e07a5632e5", - "x-ms-routing-request-id": "WESTUS:20210330T180623Z:c3d62ffe-d5ec-433a-a7ff-76e07a5632e5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b74fc834ce664125df0e898f031e44df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f8adc2c-33d1-49c0-b449-a2cadc3ab84d", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "2f8adc2c-33d1-49c0-b449-a2cadc3ab84d", - "x-ms-routing-request-id": "WESTUS:20210330T180623Z:2f8adc2c-33d1-49c0-b449-a2cadc3ab84d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7c4d700fa398cb819fe4ec4b397b6374", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b953c65-00e8-4646-88dc-640392bcf751", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "9b953c65-00e8-4646-88dc-640392bcf751", - "x-ms-routing-request-id": "WESTUS:20210330T180623Z:9b953c65-00e8-4646-88dc-640392bcf751" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c97a7ab24deff85526cf63a239d8e989", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01dd5630-2ed3-4ba8-9e42-5aec896f2536", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "01dd5630-2ed3-4ba8-9e42-5aec896f2536", - "x-ms-routing-request-id": "WESTUS:20210330T180623Z:01dd5630-2ed3-4ba8-9e42-5aec896f2536" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d38092acbfa1909647841782e2da0764", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c3e7531-7256-4a62-9151-412aa0b0c8e5", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "6c3e7531-7256-4a62-9151-412aa0b0c8e5", - "x-ms-routing-request-id": "WESTUS:20210330T180623Z:6c3e7531-7256-4a62-9151-412aa0b0c8e5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "88dc15aa7ba3c1ef1b5555c93fde91c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2754604d-c767-4b9a-9c76-f967c0d0f7bd", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "2754604d-c767-4b9a-9c76-f967c0d0f7bd", - "x-ms-routing-request-id": "WESTUS:20210330T180623Z:2754604d-c767-4b9a-9c76-f967c0d0f7bd" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a69e63fb90faf3d2e4ea826b36d2164b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea68ea87-6a24-4511-8848-bb9366b59131", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "ea68ea87-6a24-4511-8848-bb9366b59131", - "x-ms-routing-request-id": "WESTUS:20210330T180623Z:ea68ea87-6a24-4511-8848-bb9366b59131" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "24f7ffc760fb31e5a3bfb74c69cc5068", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f23a864-82f5-4250-9dde-8ea17f05174e", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "8f23a864-82f5-4250-9dde-8ea17f05174e", - "x-ms-routing-request-id": "WESTUS:20210330T180623Z:8f23a864-82f5-4250-9dde-8ea17f05174e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7e8750f3613c1a6a42e9a4b9f9848b48", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5759e753-0ad3-4539-a495-8e96f79fa67c", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "5759e753-0ad3-4539-a495-8e96f79fa67c", - "x-ms-routing-request-id": "WESTUS:20210330T180624Z:5759e753-0ad3-4539-a495-8e96f79fa67c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "40010a3e6ce69acb7e6c033bd8868a17", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ebd16e3-e58a-426d-8ab0-cf883cf2f3eb", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "4ebd16e3-e58a-426d-8ab0-cf883cf2f3eb", - "x-ms-routing-request-id": "WESTUS:20210330T180624Z:4ebd16e3-e58a-426d-8ab0-cf883cf2f3eb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e5781999974b660e94dde112bc2b381f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5296f0a-b1b2-4a59-aded-d57151a090b9", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "b5296f0a-b1b2-4a59-aded-d57151a090b9", - "x-ms-routing-request-id": "WESTUS:20210330T180624Z:b5296f0a-b1b2-4a59-aded-d57151a090b9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5e0d6f3310cb868285ec00cf5d2f42bc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0b5c771-9cf6-4282-9ee3-5bc2bbdb72b9", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "f0b5c771-9cf6-4282-9ee3-5bc2bbdb72b9", - "x-ms-routing-request-id": "WESTUS:20210330T180624Z:f0b5c771-9cf6-4282-9ee3-5bc2bbdb72b9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "df208c5ea50ba7fcfb9bab098ab8de52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "043bc985-5248-4b8a-9254-e0a010ab7f45", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "043bc985-5248-4b8a-9254-e0a010ab7f45", - "x-ms-routing-request-id": "WESTUS:20210330T180624Z:043bc985-5248-4b8a-9254-e0a010ab7f45" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6807e3342b79894c96f1605e973f0865", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72682945-4864-42b5-b8fa-cad8a86baf69", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "72682945-4864-42b5-b8fa-cad8a86baf69", - "x-ms-routing-request-id": "WESTUS:20210330T180624Z:72682945-4864-42b5-b8fa-cad8a86baf69" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2fb3259a580b8e137265622f6478fbcc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea4bbb22-dba7-43c6-8b82-deff7ce29061", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "ea4bbb22-dba7-43c6-8b82-deff7ce29061", - "x-ms-routing-request-id": "WESTUS:20210330T180624Z:ea4bbb22-dba7-43c6-8b82-deff7ce29061" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "799bae0eda2733423f96481a449e10bc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cee39a1d-61bc-4509-aceb-12e82d21280b", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "cee39a1d-61bc-4509-aceb-12e82d21280b", - "x-ms-routing-request-id": "WESTUS:20210330T180624Z:cee39a1d-61bc-4509-aceb-12e82d21280b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "646f4692ae04db46d079f613c81c241e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "303203fb-9984-4d49-b75b-11dda55588b0", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "303203fb-9984-4d49-b75b-11dda55588b0", - "x-ms-routing-request-id": "WESTUS:20210330T180624Z:303203fb-9984-4d49-b75b-11dda55588b0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e85093f68ea4c03de380ef740ff949d4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8904f0e5-a5e2-4871-96fe-4a4087f41339", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "8904f0e5-a5e2-4871-96fe-4a4087f41339", - "x-ms-routing-request-id": "WESTUS:20210330T180624Z:8904f0e5-a5e2-4871-96fe-4a4087f41339" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1e9ca65596095fc868bfa9aee32f6a23", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc7ba538-8f13-4201-aecd-6981eda03dc0", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "bc7ba538-8f13-4201-aecd-6981eda03dc0", - "x-ms-routing-request-id": "WESTUS:20210330T180624Z:bc7ba538-8f13-4201-aecd-6981eda03dc0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b1242a72274d041808ae8183bed1cbd7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8be8489a-d03c-40c2-a8d3-90ce719a2e6d", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "8be8489a-d03c-40c2-a8d3-90ce719a2e6d", - "x-ms-routing-request-id": "WESTUS:20210330T180624Z:8be8489a-d03c-40c2-a8d3-90ce719a2e6d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "22bd2130067f5f14cbf080e4e58fdcb3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "084643e3-0429-4edc-840a-7aac3ddc960b", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "084643e3-0429-4edc-840a-7aac3ddc960b", - "x-ms-routing-request-id": "WESTUS:20210330T180625Z:084643e3-0429-4edc-840a-7aac3ddc960b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e502cc1697d52e868e98155b1445a197", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a14577c-f1bd-44f0-867f-6152911b5a76", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "2a14577c-f1bd-44f0-867f-6152911b5a76", - "x-ms-routing-request-id": "WESTUS:20210330T180625Z:2a14577c-f1bd-44f0-867f-6152911b5a76" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c17dd1f447726ca316c4e65da7341e79", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3be8e309-ccfa-4fc1-8366-56770be288aa", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "3be8e309-ccfa-4fc1-8366-56770be288aa", - "x-ms-routing-request-id": "WESTUS:20210330T180625Z:3be8e309-ccfa-4fc1-8366-56770be288aa" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f16cced2e6ce98029b8f94e7f0b84a86", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c681bd4-47cf-41cc-b423-4f7f20169a06", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "2c681bd4-47cf-41cc-b423-4f7f20169a06", - "x-ms-routing-request-id": "WESTUS:20210330T180625Z:2c681bd4-47cf-41cc-b423-4f7f20169a06" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "14f0e84f1a11ce412996ce10b1298659", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f3b57c3-8bcf-4437-92f9-714365ca36ab", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "5f3b57c3-8bcf-4437-92f9-714365ca36ab", - "x-ms-routing-request-id": "WESTUS:20210330T180625Z:5f3b57c3-8bcf-4437-92f9-714365ca36ab" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "46899b79afd80dc8cee526e2b3bc7b5d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "423a9c1a-1c5f-44be-92c4-5b5adb872483", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "423a9c1a-1c5f-44be-92c4-5b5adb872483", - "x-ms-routing-request-id": "WESTUS:20210330T180625Z:423a9c1a-1c5f-44be-92c4-5b5adb872483" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "be0d607a0a43b7688c9dc83717f2e672", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7117babc-e1a4-4e9d-8d05-a7b74a2d826d", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "7117babc-e1a4-4e9d-8d05-a7b74a2d826d", - "x-ms-routing-request-id": "WESTUS:20210330T180625Z:7117babc-e1a4-4e9d-8d05-a7b74a2d826d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "546d3a08032fa0ad20e2452bf45e1b6d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2be4152d-4421-4bd1-88bc-738c9c5ba5b9", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "2be4152d-4421-4bd1-88bc-738c9c5ba5b9", - "x-ms-routing-request-id": "WESTUS:20210330T180625Z:2be4152d-4421-4bd1-88bc-738c9c5ba5b9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5196701ac81c6f1533d1b93ae790f6dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b61018ff-6364-4b9f-a4fa-a3585c7c4887", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "b61018ff-6364-4b9f-a4fa-a3585c7c4887", - "x-ms-routing-request-id": "WESTUS:20210330T180625Z:b61018ff-6364-4b9f-a4fa-a3585c7c4887" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "79d9b4fe264e762db26c9e61c53cc32e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca905b4d-22cc-407e-9fbe-40d9b3b0c749", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "ca905b4d-22cc-407e-9fbe-40d9b3b0c749", - "x-ms-routing-request-id": "WESTUS:20210330T180625Z:ca905b4d-22cc-407e-9fbe-40d9b3b0c749" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a61c5a82955c405624fe215e4a73b98f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db2c7082-ab95-4d67-b7c7-ef7808f3c9ce", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "db2c7082-ab95-4d67-b7c7-ef7808f3c9ce", - "x-ms-routing-request-id": "WESTUS:20210330T180625Z:db2c7082-ab95-4d67-b7c7-ef7808f3c9ce" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "402d68eca284f41f421f9faf29b4a9f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a6d78e3-634a-4991-8b85-dc4f8d666817", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "4a6d78e3-634a-4991-8b85-dc4f8d666817", - "x-ms-routing-request-id": "WESTUS:20210330T180626Z:4a6d78e3-634a-4991-8b85-dc4f8d666817" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8cb88b0d4f7369805d99545005cf2c3f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e86519df-d260-4cd7-b85d-34efa3d09f8e", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-request-id": "e86519df-d260-4cd7-b85d-34efa3d09f8e", - "x-ms-routing-request-id": "WESTUS:20210330T180626Z:e86519df-d260-4cd7-b85d-34efa3d09f8e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5c750eb3830fe0a93b28633cf6a6176f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d31c60b7-5043-4d4c-a1b1-e1ad9a05e132", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "d31c60b7-5043-4d4c-a1b1-e1ad9a05e132", - "x-ms-routing-request-id": "WESTUS:20210330T180626Z:d31c60b7-5043-4d4c-a1b1-e1ad9a05e132" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "be502a542cbb9d1be8c4e2eb4dceee73", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1da2f61d-d26f-4f0a-af4c-b18a3ba5c1b5", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "1da2f61d-d26f-4f0a-af4c-b18a3ba5c1b5", - "x-ms-routing-request-id": "WESTUS:20210330T180626Z:1da2f61d-d26f-4f0a-af4c-b18a3ba5c1b5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1afb60f34d3f8ae7e1d8514aeb4372b6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b73b29a-37c9-405a-9b99-da161a6d495b", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "4b73b29a-37c9-405a-9b99-da161a6d495b", - "x-ms-routing-request-id": "WESTUS:20210330T180626Z:4b73b29a-37c9-405a-9b99-da161a6d495b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "dbfbe4826d7e8684f3d8744aa1bd926c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5291120c-008c-40b1-adff-eed4f4b6fbca", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "5291120c-008c-40b1-adff-eed4f4b6fbca", - "x-ms-routing-request-id": "WESTUS:20210330T180626Z:5291120c-008c-40b1-adff-eed4f4b6fbca" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9548f03afcab073043c6dde2dbd1b1a4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63d3509d-5327-4ad3-b6b0-844d0ec53988", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "63d3509d-5327-4ad3-b6b0-844d0ec53988", - "x-ms-routing-request-id": "WESTUS:20210330T180626Z:63d3509d-5327-4ad3-b6b0-844d0ec53988" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "69692b5113d386f4dc752767d99ce923", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d30b691-d267-4c62-9c9d-f7a730b07342", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "6d30b691-d267-4c62-9c9d-f7a730b07342", - "x-ms-routing-request-id": "WESTUS:20210330T180626Z:6d30b691-d267-4c62-9c9d-f7a730b07342" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fb10e445ddfa850bb4f397b890a1aa22", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:26 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3de4fe30-2c4c-4d75-92c9-03422f2ded68", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "3de4fe30-2c4c-4d75-92c9-03422f2ded68", - "x-ms-routing-request-id": "WESTUS:20210330T180626Z:3de4fe30-2c4c-4d75-92c9-03422f2ded68" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "76f9cf2629542799fbc2b936d4c92ea6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:26 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee0ed682-bdbc-4b30-86e3-1b8ed4878696", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "ee0ed682-bdbc-4b30-86e3-1b8ed4878696", - "x-ms-routing-request-id": "WESTUS:20210330T180627Z:ee0ed682-bdbc-4b30-86e3-1b8ed4878696" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f79db9ddb6c074a91fe3b5df7b3cf53a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:26 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "905c92eb-71ba-4965-bb90-75339aa22888", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "905c92eb-71ba-4965-bb90-75339aa22888", - "x-ms-routing-request-id": "WESTUS:20210330T180627Z:905c92eb-71ba-4965-bb90-75339aa22888" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "094105ca72a31ccf4be9ff3823d5b1eb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:26 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77b716d7-62c4-42e3-954a-d1c3e79f6231", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "77b716d7-62c4-42e3-954a-d1c3e79f6231", - "x-ms-routing-request-id": "WESTUS:20210330T180627Z:77b716d7-62c4-42e3-954a-d1c3e79f6231" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d7daf1c4b3046f612584567174b9abbe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:26 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9a8b288-88b2-45cb-b469-315f22c3257a", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "d9a8b288-88b2-45cb-b469-315f22c3257a", - "x-ms-routing-request-id": "WESTUS:20210330T180627Z:d9a8b288-88b2-45cb-b469-315f22c3257a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ce6b7fcc25886a03ea80abd7b7715149", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:26 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c12e9d35-54c6-4c1f-9aef-7ab352cf7e0e", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "c12e9d35-54c6-4c1f-9aef-7ab352cf7e0e", - "x-ms-routing-request-id": "WESTUS:20210330T180627Z:c12e9d35-54c6-4c1f-9aef-7ab352cf7e0e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8a1bc9311e611636a4d1e41e1c5da892", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:26 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8347525-f208-476d-8662-599efe298d8d", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "e8347525-f208-476d-8662-599efe298d8d", - "x-ms-routing-request-id": "WESTUS:20210330T180627Z:e8347525-f208-476d-8662-599efe298d8d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a36b403de2699f63ee70ec830789b8b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:27 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4015dc62-bffa-4fe9-a354-79b48dc2acfc", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "4015dc62-bffa-4fe9-a354-79b48dc2acfc", - "x-ms-routing-request-id": "WESTUS:20210330T180627Z:4015dc62-bffa-4fe9-a354-79b48dc2acfc" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "aa3f0c33219ead5d48542ab640e44e8c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:27 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f31e53f-64c6-4428-9e5d-2af33856aa71", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "7f31e53f-64c6-4428-9e5d-2af33856aa71", - "x-ms-routing-request-id": "WESTUS:20210330T180628Z:7f31e53f-64c6-4428-9e5d-2af33856aa71" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "769919d7ad064edf667b9cf131b20f1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:27 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1964b191-048a-431a-9fd4-04b1ab02099b", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "1964b191-048a-431a-9fd4-04b1ab02099b", - "x-ms-routing-request-id": "WESTUS:20210330T180628Z:1964b191-048a-431a-9fd4-04b1ab02099b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0feb3018fe1e1cf4e3bd5b14b8ac5f09", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:27 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86197f92-9b36-4247-bc9e-a51fc4462a6c", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "86197f92-9b36-4247-bc9e-a51fc4462a6c", - "x-ms-routing-request-id": "WESTUS:20210330T180628Z:86197f92-9b36-4247-bc9e-a51fc4462a6c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "edac602242ef85ac2cf04322856c7c95", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:27 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82cfdf7e-0abf-49f2-abc3-7198bf733652", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "82cfdf7e-0abf-49f2-abc3-7198bf733652", - "x-ms-routing-request-id": "WESTUS:20210330T180628Z:82cfdf7e-0abf-49f2-abc3-7198bf733652" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0f9d0f453ef9d86d257d934951cb96ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:27 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ebf59a1-f7b6-4926-95f5-bbad91a46e1c", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "4ebf59a1-f7b6-4926-95f5-bbad91a46e1c", - "x-ms-routing-request-id": "WESTUS:20210330T180628Z:4ebf59a1-f7b6-4926-95f5-bbad91a46e1c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d0ce921c2106d62a8465e22dbbd19677", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:27 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d5b2a4c-1528-43ed-857c-c1593675fd87", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "4d5b2a4c-1528-43ed-857c-c1593675fd87", - "x-ms-routing-request-id": "WESTUS:20210330T180628Z:4d5b2a4c-1528-43ed-857c-c1593675fd87" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a8cfc6414f0ee310f3d3c872af633361", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:27 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6e1a82e-6fe6-4916-b376-8b00eade16ae", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "d6e1a82e-6fe6-4916-b376-8b00eade16ae", - "x-ms-routing-request-id": "WESTUS:20210330T180628Z:d6e1a82e-6fe6-4916-b376-8b00eade16ae" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f206885aab9d248ee4c78b935c3f1d53", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:27 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04d454b0-6953-4e2a-99c6-c0b81675dcd1", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "04d454b0-6953-4e2a-99c6-c0b81675dcd1", - "x-ms-routing-request-id": "WESTUS:20210330T180628Z:04d454b0-6953-4e2a-99c6-c0b81675dcd1" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8b081ce6edfbccac82ebdd3358b82721", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:27 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfa039cd-e281-4408-a56e-72d73155abfa", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "dfa039cd-e281-4408-a56e-72d73155abfa", - "x-ms-routing-request-id": "WESTUS:20210330T180628Z:dfa039cd-e281-4408-a56e-72d73155abfa" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "32d38031a4cb96d937aac447c47d87b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ea8a3dd-bcad-4474-b7e2-baddeac12652", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "5ea8a3dd-bcad-4474-b7e2-baddeac12652", - "x-ms-routing-request-id": "WESTUS:20210330T180628Z:5ea8a3dd-bcad-4474-b7e2-baddeac12652" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "938b74b5a85a6d65dc3970b2cd5bcb2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4e60d96-b909-456f-b753-eb0fd04c5c34", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "b4e60d96-b909-456f-b753-eb0fd04c5c34", - "x-ms-routing-request-id": "WESTUS:20210330T180628Z:b4e60d96-b909-456f-b753-eb0fd04c5c34" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "db616a9fea6c42884272545129640805", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6469c336-aa23-4124-b141-581b30cef5c6", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "6469c336-aa23-4124-b141-581b30cef5c6", - "x-ms-routing-request-id": "WESTUS:20210330T180629Z:6469c336-aa23-4124-b141-581b30cef5c6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e47d2963942d89c61a6656913327c8dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa6cc302-7a07-4b60-b5a0-7caed015a632", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "fa6cc302-7a07-4b60-b5a0-7caed015a632", - "x-ms-routing-request-id": "WESTUS:20210330T180629Z:fa6cc302-7a07-4b60-b5a0-7caed015a632" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "59a797deac1bca47eb4950e854144377", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e94b5869-8689-4ded-97f1-c67885a5d8a6", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "e94b5869-8689-4ded-97f1-c67885a5d8a6", - "x-ms-routing-request-id": "WESTUS:20210330T180629Z:e94b5869-8689-4ded-97f1-c67885a5d8a6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a34e6b30e7dd0bffa3d8c00594f60e1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4daeff90-0b18-4711-b724-c7fb687f466e", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "4daeff90-0b18-4711-b724-c7fb687f466e", - "x-ms-routing-request-id": "WESTUS:20210330T180629Z:4daeff90-0b18-4711-b724-c7fb687f466e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "917278a9afbdb7e9e1b2f8e343dd3506", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20c338ed-4c91-4e1b-b20b-4da0c0678947", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "20c338ed-4c91-4e1b-b20b-4da0c0678947", - "x-ms-routing-request-id": "WESTUS:20210330T180629Z:20c338ed-4c91-4e1b-b20b-4da0c0678947" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c861de2224d9f7fe989bb542eb4235f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34d5f18d-48fa-4bc2-8373-9afbef80ffeb", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "34d5f18d-48fa-4bc2-8373-9afbef80ffeb", - "x-ms-routing-request-id": "WESTUS:20210330T180629Z:34d5f18d-48fa-4bc2-8373-9afbef80ffeb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "dc3e353ab2a181b98196c22aef1bc7c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7619a6d2-2668-42e7-85f5-96f6c0ef0865", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "7619a6d2-2668-42e7-85f5-96f6c0ef0865", - "x-ms-routing-request-id": "WESTUS:20210330T180629Z:7619a6d2-2668-42e7-85f5-96f6c0ef0865" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b6e2baa346958541797bf922f9a6cc9f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d620792-ec7f-44ed-b21d-080a6131133a", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "0d620792-ec7f-44ed-b21d-080a6131133a", - "x-ms-routing-request-id": "WESTUS:20210330T180629Z:0d620792-ec7f-44ed-b21d-080a6131133a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0da9027c599f706424df464262d3087c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9fb5e855-260e-4ed8-827b-2d0f9e08e33b", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "9fb5e855-260e-4ed8-827b-2d0f9e08e33b", - "x-ms-routing-request-id": "WESTUS:20210330T180629Z:9fb5e855-260e-4ed8-827b-2d0f9e08e33b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "319fefd37f5ff460f4b96226b89788da", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c106bc9a-4577-4aeb-a735-80052615abf9", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "c106bc9a-4577-4aeb-a735-80052615abf9", - "x-ms-routing-request-id": "WESTUS:20210330T180629Z:c106bc9a-4577-4aeb-a735-80052615abf9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ecae22caba724a26557291b5ffff22a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7925f365-88f5-498c-b6ec-c5ccece8d9d0", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "7925f365-88f5-498c-b6ec-c5ccece8d9d0", - "x-ms-routing-request-id": "WESTUS:20210330T180629Z:7925f365-88f5-498c-b6ec-c5ccece8d9d0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "094e7d739a07fd40a2b519e5f63eb88d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01cbb4f0-c93a-4a1d-bf1d-855f359aa684", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "01cbb4f0-c93a-4a1d-bf1d-855f359aa684", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:01cbb4f0-c93a-4a1d-bf1d-855f359aa684" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "40786b571c25190ac955dcededaaf4f4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac8ef007-d5fc-4f84-8eb3-899dd55b489d", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "ac8ef007-d5fc-4f84-8eb3-899dd55b489d", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:ac8ef007-d5fc-4f84-8eb3-899dd55b489d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3bb3bc977e482fd3e2b049bca0405316", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7179584-daf1-4cb4-b5cc-4fcb99f9257a", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "d7179584-daf1-4cb4-b5cc-4fcb99f9257a", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:d7179584-daf1-4cb4-b5cc-4fcb99f9257a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "945d04bae2875780723540b1be530ff8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d123a746-41fa-448e-a494-25ceac26a699", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "d123a746-41fa-448e-a494-25ceac26a699", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:d123a746-41fa-448e-a494-25ceac26a699" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3a4e24c17c8bd94498485d74d24d7988", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82137cf6-4d87-4ea6-97cb-88a465a716a5", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "82137cf6-4d87-4ea6-97cb-88a465a716a5", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:82137cf6-4d87-4ea6-97cb-88a465a716a5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e932c502604db46d3b5cc8133e21708f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "120c6f3b-c62a-4c31-9de5-b86f44f09087", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "120c6f3b-c62a-4c31-9de5-b86f44f09087", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:120c6f3b-c62a-4c31-9de5-b86f44f09087" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7bfb51a019f23d8bc084fb3e840b8424", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fabdb161-e71e-465d-9e59-5ea37d5b4bd5", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "fabdb161-e71e-465d-9e59-5ea37d5b4bd5", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:fabdb161-e71e-465d-9e59-5ea37d5b4bd5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f9afb8bb262061aab699fe2eb4309b76", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4d9ff9f-30b3-489d-a4aa-395882901494", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "f4d9ff9f-30b3-489d-a4aa-395882901494", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:f4d9ff9f-30b3-489d-a4aa-395882901494" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "81d3ced8fd52e89539f529c9642f302f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d109a8e3-4661-4979-8608-52cb2edb5108", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "d109a8e3-4661-4979-8608-52cb2edb5108", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:d109a8e3-4661-4979-8608-52cb2edb5108" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8557a3d876727a6ea69ac4581a5c898f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50bf21f4-533e-4ab5-bca3-60fce811c4b9", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "50bf21f4-533e-4ab5-bca3-60fce811c4b9", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:50bf21f4-533e-4ab5-bca3-60fce811c4b9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b66585e80238bed222c6c02bfde1fc87", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39ae3282-28cc-4931-8ab9-96802422d54d", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "39ae3282-28cc-4931-8ab9-96802422d54d", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:39ae3282-28cc-4931-8ab9-96802422d54d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1056cf6915d961045f59dbb8383dcedc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e70ae55f-cdcd-49c0-a25d-3934f2a44aa1", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "e70ae55f-cdcd-49c0-a25d-3934f2a44aa1", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:e70ae55f-cdcd-49c0-a25d-3934f2a44aa1" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "dfe09a6c7ac9d5f7d19963abb6437cc4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "874a631c-d87d-4ccd-b0f1-1fcfa3c6ad43", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "874a631c-d87d-4ccd-b0f1-1fcfa3c6ad43", - "x-ms-routing-request-id": "WESTUS:20210330T180631Z:874a631c-d87d-4ccd-b0f1-1fcfa3c6ad43" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4bee3d9d7806d3b5800456de261a85e4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f794056-fde9-46cb-8cdd-6930417dc46f", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "8f794056-fde9-46cb-8cdd-6930417dc46f", - "x-ms-routing-request-id": "WESTUS:20210330T180631Z:8f794056-fde9-46cb-8cdd-6930417dc46f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "63bfe3f81d00efbdd7813f3fb159ab1c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a05f035-ed1f-43d8-97dd-45532f1e04ed", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "5a05f035-ed1f-43d8-97dd-45532f1e04ed", - "x-ms-routing-request-id": "WESTUS:20210330T180631Z:5a05f035-ed1f-43d8-97dd-45532f1e04ed" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fb1a17dc824ff3d6e40d5ec52318afb6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27d8b199-121d-45b2-b235-1aa1f92a58dc", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "27d8b199-121d-45b2-b235-1aa1f92a58dc", - "x-ms-routing-request-id": "WESTUS:20210330T180631Z:27d8b199-121d-45b2-b235-1aa1f92a58dc" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d2b27f13198480c380fe738438752127", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91067cd0-35b2-4c99-9b27-32d3cc7e6b1a", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "91067cd0-35b2-4c99-9b27-32d3cc7e6b1a", - "x-ms-routing-request-id": "WESTUS:20210330T180631Z:91067cd0-35b2-4c99-9b27-32d3cc7e6b1a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0f013a598aff76950dcb7ff3bef7ccbe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b597299-2703-4da9-8630-85c8d927c8c6", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "1b597299-2703-4da9-8630-85c8d927c8c6", - "x-ms-routing-request-id": "WESTUS:20210330T180631Z:1b597299-2703-4da9-8630-85c8d927c8c6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "322c88d2d8a6c397539a7a500f51bb6e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3e26fe6-8b56-4ff8-94a5-b25cc84b50f6", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "d3e26fe6-8b56-4ff8-94a5-b25cc84b50f6", - "x-ms-routing-request-id": "WESTUS:20210330T180631Z:d3e26fe6-8b56-4ff8-94a5-b25cc84b50f6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e96c37ec9f1789b7e93cc4b99ad0c288", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79fe8735-0e51-4a62-8b39-760ed2e2942d", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "79fe8735-0e51-4a62-8b39-760ed2e2942d", - "x-ms-routing-request-id": "WESTUS:20210330T180631Z:79fe8735-0e51-4a62-8b39-760ed2e2942d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "afb2b432ee498080a23ebc640f4467bb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88dfad6a-b0ec-495d-b731-e030efabcf36", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "88dfad6a-b0ec-495d-b731-e030efabcf36", - "x-ms-routing-request-id": "WESTUS:20210330T180631Z:88dfad6a-b0ec-495d-b731-e030efabcf36" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "86061010e28a32a7d0a2496a13dd2983", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:31 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c97d3d0-2176-47f1-a837-8ce4fc520a9f", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-request-id": "7c97d3d0-2176-47f1-a837-8ce4fc520a9f", - "x-ms-routing-request-id": "WESTUS:20210330T180631Z:7c97d3d0-2176-47f1-a837-8ce4fc520a9f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5a1ef2d80b9efe24b7ec46d8e3527aa5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:31 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92212e50-f81b-47d6-99b7-63aa03b6f676", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "92212e50-f81b-47d6-99b7-63aa03b6f676", - "x-ms-routing-request-id": "WESTUS:20210330T180632Z:92212e50-f81b-47d6-99b7-63aa03b6f676" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "89a908d53bc94ffe0d80dea7a5156cc5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:31 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d4b3fa4-aec5-4ae7-8f72-a440f5a6aaa5", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "9d4b3fa4-aec5-4ae7-8f72-a440f5a6aaa5", - "x-ms-routing-request-id": "WESTUS:20210330T180632Z:9d4b3fa4-aec5-4ae7-8f72-a440f5a6aaa5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1d8c39150c25041deb08cf9e9cce4f7e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:31 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d352705-8c4f-4d22-bb66-bcc038fe9833", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "2d352705-8c4f-4d22-bb66-bcc038fe9833", - "x-ms-routing-request-id": "WESTUS:20210330T180632Z:2d352705-8c4f-4d22-bb66-bcc038fe9833" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0a95a3279f349cb9f3cf4c1e2c7d59a1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:31 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41dab542-ec19-4bb3-aa5a-85cb6b638a5c", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-request-id": "41dab542-ec19-4bb3-aa5a-85cb6b638a5c", - "x-ms-routing-request-id": "WESTUS:20210330T180632Z:41dab542-ec19-4bb3-aa5a-85cb6b638a5c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "aac381805dc6c880eba49dc16c60b33e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:31 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a19df1bd-d060-458b-b8c7-b5f29b0f129f", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-request-id": "a19df1bd-d060-458b-b8c7-b5f29b0f129f", - "x-ms-routing-request-id": "WESTUS:20210330T180632Z:a19df1bd-d060-458b-b8c7-b5f29b0f129f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "017f6031618076907fef2956c0fed86e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:31 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a25e30cb-b115-44ea-9939-dfda93a844b4", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-request-id": "a25e30cb-b115-44ea-9939-dfda93a844b4", - "x-ms-routing-request-id": "WESTUS:20210330T180632Z:a25e30cb-b115-44ea-9939-dfda93a844b4" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1b1e2dafa50bcab722cc1f9001f83093", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:31 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c844ba6-c0cf-4b55-90a0-75f7c6507418", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-request-id": "8c844ba6-c0cf-4b55-90a0-75f7c6507418", - "x-ms-routing-request-id": "WESTUS:20210330T180632Z:8c844ba6-c0cf-4b55-90a0-75f7c6507418" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "cbed0d1c57fe1e20f04d2ad6332a07ec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:31 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09579f57-d7f6-44e7-b9a7-ba532e73ec47", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-request-id": "09579f57-d7f6-44e7-b9a7-ba532e73ec47", - "x-ms-routing-request-id": "WESTUS:20210330T180632Z:09579f57-d7f6-44e7-b9a7-ba532e73ec47" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3e112fcb97428c32a9b5deb342007487", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:31 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b703ad8-8539-4318-bd74-acdfcb5c5daa", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "2b703ad8-8539-4318-bd74-acdfcb5c5daa", - "x-ms-routing-request-id": "WESTUS:20210330T180632Z:2b703ad8-8539-4318-bd74-acdfcb5c5daa" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b23996bf0d1157700dff2abe7ae096f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:32 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4aed95b-85b7-4297-a9fa-d3e165765985", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-request-id": "d4aed95b-85b7-4297-a9fa-d3e165765985", - "x-ms-routing-request-id": "WESTUS:20210330T180632Z:d4aed95b-85b7-4297-a9fa-d3e165765985" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d1c432c4f2e68451db612148786cdcf0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:32 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1a1c4b4-075c-4ac9-b0c5-55a8a46841f1", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-request-id": "b1a1c4b4-075c-4ac9-b0c5-55a8a46841f1", - "x-ms-routing-request-id": "WESTUS:20210330T180633Z:b1a1c4b4-075c-4ac9-b0c5-55a8a46841f1" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9d17a3d855f0bedbbfb931426d7411c9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:32 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0b54126-dad1-4c26-b2c7-5cd20d3bda7e", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-request-id": "b0b54126-dad1-4c26-b2c7-5cd20d3bda7e", - "x-ms-routing-request-id": "WESTUS:20210330T180633Z:b0b54126-dad1-4c26-b2c7-5cd20d3bda7e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "10efe51ea23bcda044b5d7b0eb27dfa0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:32 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ec29df1-341a-43e1-a5c4-d4aa196b50da", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-request-id": "1ec29df1-341a-43e1-a5c4-d4aa196b50da", - "x-ms-routing-request-id": "WESTUS:20210330T180633Z:1ec29df1-341a-43e1-a5c4-d4aa196b50da" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d7e53923f8c86f085605122cc00e1666", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:32 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35d08a25-f9e0-4f41-9822-67b7ac6abf1e", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-request-id": "35d08a25-f9e0-4f41-9822-67b7ac6abf1e", - "x-ms-routing-request-id": "WESTUS:20210330T180633Z:35d08a25-f9e0-4f41-9822-67b7ac6abf1e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9229584fcc7d36b4024a593a7e2bd298", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:32 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46f938f2-12c8-4602-8058-59c1d6d53178", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-request-id": "46f938f2-12c8-4602-8058-59c1d6d53178", - "x-ms-routing-request-id": "WESTUS:20210330T180633Z:46f938f2-12c8-4602-8058-59c1d6d53178" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "341f90da3a8e2600dd7fb93690730c35", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:32 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44e64284-a4fe-4d7b-b37d-e20795309feb", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-request-id": "44e64284-a4fe-4d7b-b37d-e20795309feb", - "x-ms-routing-request-id": "WESTUS:20210330T180633Z:44e64284-a4fe-4d7b-b37d-e20795309feb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9260709f4cfd572384afd47d9fcef12b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:32 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b235cd1-0637-4a9c-b704-0abb7e641881", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "0b235cd1-0637-4a9c-b704-0abb7e641881", - "x-ms-routing-request-id": "WESTUS:20210330T180633Z:0b235cd1-0637-4a9c-b704-0abb7e641881" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "30527a33e1ef15d75803b5fd137ea58f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:32 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cdaa399f-9294-4322-ad5c-94d7279a3ae7", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-request-id": "cdaa399f-9294-4322-ad5c-94d7279a3ae7", - "x-ms-routing-request-id": "WESTUS:20210330T180633Z:cdaa399f-9294-4322-ad5c-94d7279a3ae7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0d9a233e40cb8d9a6dc8b0df6682870e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:32 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0bfdd415-5e8f-48a3-8c14-fe7ddf5df5dd", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-request-id": "0bfdd415-5e8f-48a3-8c14-fe7ddf5df5dd", - "x-ms-routing-request-id": "WESTUS:20210330T180633Z:0bfdd415-5e8f-48a3-8c14-fe7ddf5df5dd" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "16038d8edb21bd46994a3af997254405", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:32 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6eddcf6f-30c0-4907-8f71-c1d9fb6e2966", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-request-id": "6eddcf6f-30c0-4907-8f71-c1d9fb6e2966", - "x-ms-routing-request-id": "WESTUS:20210330T180633Z:6eddcf6f-30c0-4907-8f71-c1d9fb6e2966" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7b3f4409e333f360dfc4c32731f8afd5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:32 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5af95b17-5147-48ab-99b5-72c2974bc53f", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-request-id": "5af95b17-5147-48ab-99b5-72c2974bc53f", - "x-ms-routing-request-id": "WESTUS:20210330T180633Z:5af95b17-5147-48ab-99b5-72c2974bc53f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "856fa67c8f7b636edcdd738005a0f547", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:33 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "def1db18-87fc-4d27-a4a1-7bdb6d37761b", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-request-id": "def1db18-87fc-4d27-a4a1-7bdb6d37761b", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:def1db18-87fc-4d27-a4a1-7bdb6d37761b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "21d5aa840b43aadb2d0f365c171f8ca1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:33 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15a45849-c8af-449b-8023-2e228d3d3b7b", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "15a45849-c8af-449b-8023-2e228d3d3b7b", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:15a45849-c8af-449b-8023-2e228d3d3b7b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f07d649abeb67a8ad6dc9f5670dfed3e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:33 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f66a1d4-3e81-4b4c-8b16-b7895f8b5eba", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-request-id": "0f66a1d4-3e81-4b4c-8b16-b7895f8b5eba", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:0f66a1d4-3e81-4b4c-8b16-b7895f8b5eba" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "87a37bcf8e227192cbc4586b58124bbd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:33 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d2be56a-4ed9-40e2-9c9e-0d23678e49de", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-request-id": "9d2be56a-4ed9-40e2-9c9e-0d23678e49de", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:9d2be56a-4ed9-40e2-9c9e-0d23678e49de" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a0e5d2500423c591205a4b666c843a4d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:33 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5135681-83c7-4ea4-a80c-1e311c4eff18", - "x-ms-ratelimit-remaining-subscription-reads": "11864", - "x-ms-request-id": "d5135681-83c7-4ea4-a80c-1e311c4eff18", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:d5135681-83c7-4ea4-a80c-1e311c4eff18" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9c8df822047c0c7ed20c25f1661e21c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:33 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3219b338-ced4-4e05-b624-2205d88dc7b8", - "x-ms-ratelimit-remaining-subscription-reads": "11863", - "x-ms-request-id": "3219b338-ced4-4e05-b624-2205d88dc7b8", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:3219b338-ced4-4e05-b624-2205d88dc7b8" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9e05e2914cfaca1beadd67c7432b0446", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:33 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2cf8f80-90b6-463d-947d-0ace66d59bb3", - "x-ms-ratelimit-remaining-subscription-reads": "11862", - "x-ms-request-id": "c2cf8f80-90b6-463d-947d-0ace66d59bb3", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:c2cf8f80-90b6-463d-947d-0ace66d59bb3" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "60490a8aaf854c4053d9ce17df9f5e01", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:33 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10e0d29a-910d-44d6-a66f-a1a018a4d573", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-request-id": "10e0d29a-910d-44d6-a66f-a1a018a4d573", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:10e0d29a-910d-44d6-a66f-a1a018a4d573" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8ad587399b7fd553dcc2b19e9db7c9a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:33 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "042f5dc2-5f5c-4eee-8acc-6f7e049c7e46", - "x-ms-ratelimit-remaining-subscription-reads": "11860", - "x-ms-request-id": "042f5dc2-5f5c-4eee-8acc-6f7e049c7e46", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:042f5dc2-5f5c-4eee-8acc-6f7e049c7e46" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5b67df07c1d5e13ea1b94b207e04ea4a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:33 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02b6970e-a436-436f-98d0-8f6c54aaeb6a", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-request-id": "02b6970e-a436-436f-98d0-8f6c54aaeb6a", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:02b6970e-a436-436f-98d0-8f6c54aaeb6a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bb8e657e7a56eec6b77383c2fda1ae9b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:33 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75bc1c8a-669e-46df-b9f0-2d7220c9686a", - "x-ms-ratelimit-remaining-subscription-reads": "11858", - "x-ms-request-id": "75bc1c8a-669e-46df-b9f0-2d7220c9686a", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:75bc1c8a-669e-46df-b9f0-2d7220c9686a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "000f280f0238782c48f3e8c6503257d8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f68c619-b0f9-4f9d-a33d-ddf2f677a521", - "x-ms-ratelimit-remaining-subscription-reads": "11857", - "x-ms-request-id": "1f68c619-b0f9-4f9d-a33d-ddf2f677a521", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:1f68c619-b0f9-4f9d-a33d-ddf2f677a521" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "381f66d80d288c501879a4613d7ce4ff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "471f06c2-b0d5-40d4-bc06-35e6be693c62", - "x-ms-ratelimit-remaining-subscription-reads": "11856", - "x-ms-request-id": "471f06c2-b0d5-40d4-bc06-35e6be693c62", - "x-ms-routing-request-id": "WESTUS:20210330T180635Z:471f06c2-b0d5-40d4-bc06-35e6be693c62" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5511af0beaf47b123816736292009d85", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e51dadd-458a-42f5-ba2f-8ec38469ddcc", - "x-ms-ratelimit-remaining-subscription-reads": "11855", - "x-ms-request-id": "9e51dadd-458a-42f5-ba2f-8ec38469ddcc", - "x-ms-routing-request-id": "WESTUS:20210330T180635Z:9e51dadd-458a-42f5-ba2f-8ec38469ddcc" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "96eaab1c75820273d883e8bf5ecb3bcc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d2fae38-4ebd-4ef5-85a2-1189ce566f0e", - "x-ms-ratelimit-remaining-subscription-reads": "11854", - "x-ms-request-id": "0d2fae38-4ebd-4ef5-85a2-1189ce566f0e", - "x-ms-routing-request-id": "WESTUS:20210330T180635Z:0d2fae38-4ebd-4ef5-85a2-1189ce566f0e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a1bbe90f0121ede454a300129aedfa17", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3eacec30-7c54-4937-b3f6-26913f4e80a1", - "x-ms-ratelimit-remaining-subscription-reads": "11853", - "x-ms-request-id": "3eacec30-7c54-4937-b3f6-26913f4e80a1", - "x-ms-routing-request-id": "WESTUS:20210330T180635Z:3eacec30-7c54-4937-b3f6-26913f4e80a1" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "91441fdb4e91957d3b0e7d7102531d6c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df926d71-7c4d-4999-b109-a21446179d39", - "x-ms-ratelimit-remaining-subscription-reads": "11852", - "x-ms-request-id": "df926d71-7c4d-4999-b109-a21446179d39", - "x-ms-routing-request-id": "WESTUS:20210330T180635Z:df926d71-7c4d-4999-b109-a21446179d39" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a853a6dbfc451b63c7fc42de756168ea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b396187-6dd1-46e0-b434-79b9c0ce7841", - "x-ms-ratelimit-remaining-subscription-reads": "11851", - "x-ms-request-id": "7b396187-6dd1-46e0-b434-79b9c0ce7841", - "x-ms-routing-request-id": "WESTUS:20210330T180635Z:7b396187-6dd1-46e0-b434-79b9c0ce7841" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3fe3d088a987c13a6c2565128372ea01", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68557ecc-4bb8-4858-86ce-788346683cb5", - "x-ms-ratelimit-remaining-subscription-reads": "11850", - "x-ms-request-id": "68557ecc-4bb8-4858-86ce-788346683cb5", - "x-ms-routing-request-id": "WESTUS:20210330T180635Z:68557ecc-4bb8-4858-86ce-788346683cb5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f3369386519adfd1bb29ca940b9f20da", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cff12097-4a90-4fa5-aaa7-b6d41af79f46", - "x-ms-ratelimit-remaining-subscription-reads": "11849", - "x-ms-request-id": "cff12097-4a90-4fa5-aaa7-b6d41af79f46", - "x-ms-routing-request-id": "WESTUS:20210330T180635Z:cff12097-4a90-4fa5-aaa7-b6d41af79f46" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "32e893a6dd6f32e56b923c1f96519754", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f16887f1-37b9-4c81-b8ff-d3a7dcb07834", - "x-ms-ratelimit-remaining-subscription-reads": "11848", - "x-ms-request-id": "f16887f1-37b9-4c81-b8ff-d3a7dcb07834", - "x-ms-routing-request-id": "WESTUS:20210330T180635Z:f16887f1-37b9-4c81-b8ff-d3a7dcb07834" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e2574111742a3650fe04845edea6b5cd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a32c7604-a580-43ba-90ac-b78fdc21a79e", - "x-ms-ratelimit-remaining-subscription-reads": "11847", - "x-ms-request-id": "a32c7604-a580-43ba-90ac-b78fdc21a79e", - "x-ms-routing-request-id": "WESTUS:20210330T180635Z:a32c7604-a580-43ba-90ac-b78fdc21a79e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f06b8a05b889a991ad04880815b24869", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a234efd4-a784-4b07-b6fc-d46e046e897c", - "x-ms-ratelimit-remaining-subscription-reads": "11846", - "x-ms-request-id": "a234efd4-a784-4b07-b6fc-d46e046e897c", - "x-ms-routing-request-id": "WESTUS:20210330T180635Z:a234efd4-a784-4b07-b6fc-d46e046e897c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ca8375913e4732b042b2336b598753c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a99b20f-52dc-4c38-9db3-2c6df4ae3615", - "x-ms-ratelimit-remaining-subscription-reads": "11845", - "x-ms-request-id": "2a99b20f-52dc-4c38-9db3-2c6df4ae3615", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:2a99b20f-52dc-4c38-9db3-2c6df4ae3615" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0b1a6fdca7e558caafae3425ec47214c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0af86545-7fd0-490f-85cf-1072d8d9b82c", - "x-ms-ratelimit-remaining-subscription-reads": "11844", - "x-ms-request-id": "0af86545-7fd0-490f-85cf-1072d8d9b82c", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:0af86545-7fd0-490f-85cf-1072d8d9b82c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "68cc1abcea23c785da39add785264f26", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "261ea2d6-6e58-4097-aef7-de12de921ef3", - "x-ms-ratelimit-remaining-subscription-reads": "11843", - "x-ms-request-id": "261ea2d6-6e58-4097-aef7-de12de921ef3", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:261ea2d6-6e58-4097-aef7-de12de921ef3" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a62bc2b13c97e983ab2a1b99098a45fa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73d85c8b-693e-4275-b9ea-5c059d852796", - "x-ms-ratelimit-remaining-subscription-reads": "11842", - "x-ms-request-id": "73d85c8b-693e-4275-b9ea-5c059d852796", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:73d85c8b-693e-4275-b9ea-5c059d852796" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3eafe790eabaf2a2e95331acf9f3d389", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e77784a2-c347-4454-856c-b064cd2a11e4", - "x-ms-ratelimit-remaining-subscription-reads": "11841", - "x-ms-request-id": "e77784a2-c347-4454-856c-b064cd2a11e4", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:e77784a2-c347-4454-856c-b064cd2a11e4" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "29740e5e7b1c7fb497e3bdf9cfecbd4f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9a18ff4-da13-47e3-883d-c2f0f4847821", - "x-ms-ratelimit-remaining-subscription-reads": "11840", - "x-ms-request-id": "c9a18ff4-da13-47e3-883d-c2f0f4847821", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:c9a18ff4-da13-47e3-883d-c2f0f4847821" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9e47b2f31177c66b2039bc440ad7efb8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2639be46-463e-42a3-9ccc-18487c3e7919", - "x-ms-ratelimit-remaining-subscription-reads": "11839", - "x-ms-request-id": "2639be46-463e-42a3-9ccc-18487c3e7919", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:2639be46-463e-42a3-9ccc-18487c3e7919" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fb3a91561c1615de322fa7d72ca923fc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a4c5ca4-5d1c-4ce2-a4d2-b5f2db53be54", - "x-ms-ratelimit-remaining-subscription-reads": "11838", - "x-ms-request-id": "0a4c5ca4-5d1c-4ce2-a4d2-b5f2db53be54", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:0a4c5ca4-5d1c-4ce2-a4d2-b5f2db53be54" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "46b8e29535ac4d12a2ad09e2be7074bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "277faa3d-d405-4ef4-adc4-a495ec8e631a", - "x-ms-ratelimit-remaining-subscription-reads": "11837", - "x-ms-request-id": "277faa3d-d405-4ef4-adc4-a495ec8e631a", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:277faa3d-d405-4ef4-adc4-a495ec8e631a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3da205f3c1b2d738d3316b476a949977", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6dc15c76-60ed-4663-b8aa-3745ef0b0c82", - "x-ms-ratelimit-remaining-subscription-reads": "11836", - "x-ms-request-id": "6dc15c76-60ed-4663-b8aa-3745ef0b0c82", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:6dc15c76-60ed-4663-b8aa-3745ef0b0c82" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "28afbf16a81e200c7eed596913fc56c1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3193022-00ac-48dd-bd9f-a4affc849706", - "x-ms-ratelimit-remaining-subscription-reads": "11835", - "x-ms-request-id": "d3193022-00ac-48dd-bd9f-a4affc849706", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:d3193022-00ac-48dd-bd9f-a4affc849706" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "27e3e7bae506d34aa9e1737ac9cae30e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b945385-86d3-4beb-ae23-91fe50e38b35", - "x-ms-ratelimit-remaining-subscription-reads": "11834", - "x-ms-request-id": "2b945385-86d3-4beb-ae23-91fe50e38b35", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:2b945385-86d3-4beb-ae23-91fe50e38b35" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ffcc92134cc14aa0f981bec568cfc4d7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "983c18e0-39a9-4526-b3fe-f591b59d0b20", - "x-ms-ratelimit-remaining-subscription-reads": "11833", - "x-ms-request-id": "983c18e0-39a9-4526-b3fe-f591b59d0b20", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:983c18e0-39a9-4526-b3fe-f591b59d0b20" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "828daadb72b0307074db7e3d359156b4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1df1b976-fa33-4b28-9299-627d0b9c6b0d", - "x-ms-ratelimit-remaining-subscription-reads": "11832", - "x-ms-request-id": "1df1b976-fa33-4b28-9299-627d0b9c6b0d", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:1df1b976-fa33-4b28-9299-627d0b9c6b0d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "80554a09562f6d0047992d8426856ad9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c61c4922-96de-44b3-bf92-8847b974e1f0", - "x-ms-ratelimit-remaining-subscription-reads": "11831", - "x-ms-request-id": "c61c4922-96de-44b3-bf92-8847b974e1f0", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:c61c4922-96de-44b3-bf92-8847b974e1f0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1f9e9b1d613da05d219b8ae5cd631467", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba8bc525-ff9b-45eb-8e66-1bf156b84a30", - "x-ms-ratelimit-remaining-subscription-reads": "11830", - "x-ms-request-id": "ba8bc525-ff9b-45eb-8e66-1bf156b84a30", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:ba8bc525-ff9b-45eb-8e66-1bf156b84a30" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1ebb0a2a437984a8a91f3a1744eb0aef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ba8e145-271a-483b-a0cc-c289a461fc03", - "x-ms-ratelimit-remaining-subscription-reads": "11829", - "x-ms-request-id": "9ba8e145-271a-483b-a0cc-c289a461fc03", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:9ba8e145-271a-483b-a0cc-c289a461fc03" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9a20a57137f2a876edb55f93cc1aa0e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6cd44c34-e9e5-46cf-8c92-f36e378324f2", - "x-ms-ratelimit-remaining-subscription-reads": "11828", - "x-ms-request-id": "6cd44c34-e9e5-46cf-8c92-f36e378324f2", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:6cd44c34-e9e5-46cf-8c92-f36e378324f2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1b59c6844ccad960f21a761e26465c36", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9fa9ac4-2220-458f-8fec-35b6af30af84", - "x-ms-ratelimit-remaining-subscription-reads": "11827", - "x-ms-request-id": "b9fa9ac4-2220-458f-8fec-35b6af30af84", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:b9fa9ac4-2220-458f-8fec-35b6af30af84" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "28749b917942f375941230c4e415b88e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1c1bfef-2840-4c70-b994-c1cb958182b1", - "x-ms-ratelimit-remaining-subscription-reads": "11826", - "x-ms-request-id": "b1c1bfef-2840-4c70-b994-c1cb958182b1", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:b1c1bfef-2840-4c70-b994-c1cb958182b1" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7e93577eee9124244446a8d8c15782a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea95a097-ab31-4423-95b6-46918abdd205", - "x-ms-ratelimit-remaining-subscription-reads": "11825", - "x-ms-request-id": "ea95a097-ab31-4423-95b6-46918abdd205", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:ea95a097-ab31-4423-95b6-46918abdd205" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3002285877a60aa0506687b81b9bf5dd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f8e84c6-a0b2-4370-99f8-2e50ceee6c30", - "x-ms-ratelimit-remaining-subscription-reads": "11824", - "x-ms-request-id": "3f8e84c6-a0b2-4370-99f8-2e50ceee6c30", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:3f8e84c6-a0b2-4370-99f8-2e50ceee6c30" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ce9fe761ddb3a2a4764fe3fcd19c323c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7620b5fc-ffd0-4c23-9ad6-909ce1ea019b", - "x-ms-ratelimit-remaining-subscription-reads": "11823", - "x-ms-request-id": "7620b5fc-ffd0-4c23-9ad6-909ce1ea019b", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:7620b5fc-ffd0-4c23-9ad6-909ce1ea019b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bb6b898f871206e7b6882d2b676c08a9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d4e99c2-4e4d-46af-8ecd-4366ef0da4c2", - "x-ms-ratelimit-remaining-subscription-reads": "11822", - "x-ms-request-id": "7d4e99c2-4e4d-46af-8ecd-4366ef0da4c2", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:7d4e99c2-4e4d-46af-8ecd-4366ef0da4c2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d976ca50b3b87bf4845fb95694a439b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00da368c-e69a-4d87-b88a-c723bd721646", - "x-ms-ratelimit-remaining-subscription-reads": "11821", - "x-ms-request-id": "00da368c-e69a-4d87-b88a-c723bd721646", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:00da368c-e69a-4d87-b88a-c723bd721646" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "92284a333a2fd9caff98182ab0783a0a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf48e38b-8999-4216-b246-b7f948cd04cf", - "x-ms-ratelimit-remaining-subscription-reads": "11820", - "x-ms-request-id": "bf48e38b-8999-4216-b246-b7f948cd04cf", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:bf48e38b-8999-4216-b246-b7f948cd04cf" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "06ac3a475926db8495f036b3ce917211", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78fb2e8b-b0aa-4b55-9bc2-15311dd703dd", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "78fb2e8b-b0aa-4b55-9bc2-15311dd703dd", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:78fb2e8b-b0aa-4b55-9bc2-15311dd703dd" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1df8794f76431679009cd91f9bc9cb0c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a841aa4a-aeed-4622-af29-3494dcb06414", - "x-ms-ratelimit-remaining-subscription-reads": "11818", - "x-ms-request-id": "a841aa4a-aeed-4622-af29-3494dcb06414", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:a841aa4a-aeed-4622-af29-3494dcb06414" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "590faf2432f8da8dc54dfc3f03170b6e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "582e727b-9f16-46ce-ac9c-0908215c0d26", - "x-ms-ratelimit-remaining-subscription-reads": "11817", - "x-ms-request-id": "582e727b-9f16-46ce-ac9c-0908215c0d26", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:582e727b-9f16-46ce-ac9c-0908215c0d26" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "36db06261d7fd0c7c195068a7f6540cc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27297aed-4be0-4f7c-a83f-400353adaa03", - "x-ms-ratelimit-remaining-subscription-reads": "11816", - "x-ms-request-id": "27297aed-4be0-4f7c-a83f-400353adaa03", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:27297aed-4be0-4f7c-a83f-400353adaa03" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1f8e2a2518811d19ec1e57f67a3912e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fc88a5d-764e-4064-8507-aae19fd3eae2", - "x-ms-ratelimit-remaining-subscription-reads": "11815", - "x-ms-request-id": "0fc88a5d-764e-4064-8507-aae19fd3eae2", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:0fc88a5d-764e-4064-8507-aae19fd3eae2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "94f86a9094ee078ce83f98622b035a60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2bd1b46-6030-44ed-a761-6af0335e3d44", - "x-ms-ratelimit-remaining-subscription-reads": "11814", - "x-ms-request-id": "d2bd1b46-6030-44ed-a761-6af0335e3d44", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:d2bd1b46-6030-44ed-a761-6af0335e3d44" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d91a300cec880decedbe4a60c5d05587", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e220df42-f09a-4052-a9a5-aba83fb6f8f7", - "x-ms-ratelimit-remaining-subscription-reads": "11813", - "x-ms-request-id": "e220df42-f09a-4052-a9a5-aba83fb6f8f7", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:e220df42-f09a-4052-a9a5-aba83fb6f8f7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "14f91d82ac6c90de9d86374280b7f1e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94b90205-d0a2-40e2-b324-191ac9a8e5ce", - "x-ms-ratelimit-remaining-subscription-reads": "11812", - "x-ms-request-id": "94b90205-d0a2-40e2-b324-191ac9a8e5ce", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:94b90205-d0a2-40e2-b324-191ac9a8e5ce" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4ae9f7c4391fa4607eeba72f4a2b4117", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "167cda71-ffe6-477d-a7d8-b1affee06ed0", - "x-ms-ratelimit-remaining-subscription-reads": "11811", - "x-ms-request-id": "167cda71-ffe6-477d-a7d8-b1affee06ed0", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:167cda71-ffe6-477d-a7d8-b1affee06ed0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0edf10e9450960f351893b02b4aa8c35", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd8bcbb7-1f64-4dcb-9175-0724a160947a", - "x-ms-ratelimit-remaining-subscription-reads": "11810", - "x-ms-request-id": "dd8bcbb7-1f64-4dcb-9175-0724a160947a", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:dd8bcbb7-1f64-4dcb-9175-0724a160947a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ce9c61cd0be74968bd54968104ae4671", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef812fd3-887f-403a-b683-873892b04a79", - "x-ms-ratelimit-remaining-subscription-reads": "11809", - "x-ms-request-id": "ef812fd3-887f-403a-b683-873892b04a79", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:ef812fd3-887f-403a-b683-873892b04a79" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "70592044e2d77fdf0488f895fd5eefd3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "780e2dea-35de-451d-9965-146ae1ec5130", - "x-ms-ratelimit-remaining-subscription-reads": "11808", - "x-ms-request-id": "780e2dea-35de-451d-9965-146ae1ec5130", - "x-ms-routing-request-id": "WESTUS:20210330T180639Z:780e2dea-35de-451d-9965-146ae1ec5130" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e962715e738fdd2fa79651b4ae715ba3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0b6b749-6393-472e-bb5c-993ed2f7201a", - "x-ms-ratelimit-remaining-subscription-reads": "11807", - "x-ms-request-id": "b0b6b749-6393-472e-bb5c-993ed2f7201a", - "x-ms-routing-request-id": "WESTUS:20210330T180639Z:b0b6b749-6393-472e-bb5c-993ed2f7201a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "94bdca431b51ea5e811dca5f13d24c5f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4cb9115-8198-4321-b0da-8a51af8e0f97", - "x-ms-ratelimit-remaining-subscription-reads": "11806", - "x-ms-request-id": "f4cb9115-8198-4321-b0da-8a51af8e0f97", - "x-ms-routing-request-id": "WESTUS:20210330T180639Z:f4cb9115-8198-4321-b0da-8a51af8e0f97" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9322c2655d4cd1e2f07bc941912bd092", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63f7241a-f536-4aad-bdeb-fe9b4e7bc64b", - "x-ms-ratelimit-remaining-subscription-reads": "11805", - "x-ms-request-id": "63f7241a-f536-4aad-bdeb-fe9b4e7bc64b", - "x-ms-routing-request-id": "WESTUS:20210330T180639Z:63f7241a-f536-4aad-bdeb-fe9b4e7bc64b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3252542c5aa1438213776772a9d0c9d4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6679324-a185-43c5-9048-b20cc0ec1231", - "x-ms-ratelimit-remaining-subscription-reads": "11804", - "x-ms-request-id": "c6679324-a185-43c5-9048-b20cc0ec1231", - "x-ms-routing-request-id": "WESTUS:20210330T180639Z:c6679324-a185-43c5-9048-b20cc0ec1231" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "eb4ff24ac84fe557e8eba4d5521c5956", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8800dc3b-e605-47c6-821a-9f21a0f872ec", - "x-ms-ratelimit-remaining-subscription-reads": "11803", - "x-ms-request-id": "8800dc3b-e605-47c6-821a-9f21a0f872ec", - "x-ms-routing-request-id": "WESTUS:20210330T180639Z:8800dc3b-e605-47c6-821a-9f21a0f872ec" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "be32384c197f0abe3fdf80d4f56f2720", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e1ee9e3-2a90-4fac-90db-52ead916ca39", - "x-ms-ratelimit-remaining-subscription-reads": "11802", - "x-ms-request-id": "4e1ee9e3-2a90-4fac-90db-52ead916ca39", - "x-ms-routing-request-id": "WESTUS:20210330T180639Z:4e1ee9e3-2a90-4fac-90db-52ead916ca39" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9ff7f4b1e5db6342fd6c4ab5b6adf0f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c3d80a0-1b3e-43bc-952f-4c3344a32b53", - "x-ms-ratelimit-remaining-subscription-reads": "11801", - "x-ms-request-id": "8c3d80a0-1b3e-43bc-952f-4c3344a32b53", - "x-ms-routing-request-id": "WESTUS:20210330T180639Z:8c3d80a0-1b3e-43bc-952f-4c3344a32b53" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7126111e0b9d30553344ab6f4783f078", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8eca86e3-548b-4ea3-9eee-b15eab880393", - "x-ms-ratelimit-remaining-subscription-reads": "11800", - "x-ms-request-id": "8eca86e3-548b-4ea3-9eee-b15eab880393", - "x-ms-routing-request-id": "WESTUS:20210330T180639Z:8eca86e3-548b-4ea3-9eee-b15eab880393" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5e2483c3ba25677af5cec112ce085392", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d805185-3e6e-4076-abaf-b3e7bdaa8e55", - "x-ms-ratelimit-remaining-subscription-reads": "11799", - "x-ms-request-id": "7d805185-3e6e-4076-abaf-b3e7bdaa8e55", - "x-ms-routing-request-id": "WESTUS:20210330T180639Z:7d805185-3e6e-4076-abaf-b3e7bdaa8e55" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e3b58aefb649a6839fc66b9639d31c7a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ffdc056-6335-4249-ac74-9b4c54f49d8f", - "x-ms-ratelimit-remaining-subscription-reads": "11798", - "x-ms-request-id": "1ffdc056-6335-4249-ac74-9b4c54f49d8f", - "x-ms-routing-request-id": "WESTUS:20210330T180639Z:1ffdc056-6335-4249-ac74-9b4c54f49d8f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "33f1d27c928963d097be7bce4a42622a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da6cb8e0-8389-4dd4-99ba-9630b65326b5", - "x-ms-ratelimit-remaining-subscription-reads": "11797", - "x-ms-request-id": "da6cb8e0-8389-4dd4-99ba-9630b65326b5", - "x-ms-routing-request-id": "WESTUS:20210330T180640Z:da6cb8e0-8389-4dd4-99ba-9630b65326b5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bd8019f00dcd0d2e007dbf5e4fe32d22", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "444185cd-5d84-4f78-9c35-61e0ea43c735", - "x-ms-ratelimit-remaining-subscription-reads": "11796", - "x-ms-request-id": "444185cd-5d84-4f78-9c35-61e0ea43c735", - "x-ms-routing-request-id": "WESTUS:20210330T180640Z:444185cd-5d84-4f78-9c35-61e0ea43c735" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fc9646b220175d09b9524c8a3ab55b5c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e34a51a9-9de1-4a1d-beba-b399b621aa63", - "x-ms-ratelimit-remaining-subscription-reads": "11795", - "x-ms-request-id": "e34a51a9-9de1-4a1d-beba-b399b621aa63", - "x-ms-routing-request-id": "WESTUS:20210330T180640Z:e34a51a9-9de1-4a1d-beba-b399b621aa63" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "20a640645e526eada3e4320bd27114b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a3de4b4-55c4-4052-8a52-b54f0a0a03fa", - "x-ms-ratelimit-remaining-subscription-reads": "11794", - "x-ms-request-id": "2a3de4b4-55c4-4052-8a52-b54f0a0a03fa", - "x-ms-routing-request-id": "WESTUS:20210330T180640Z:2a3de4b4-55c4-4052-8a52-b54f0a0a03fa" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "031b599166abd0130f23037ac1a3d24a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e90f14b1-774e-42a0-ab19-8682dd501641", - "x-ms-ratelimit-remaining-subscription-reads": "11793", - "x-ms-request-id": "e90f14b1-774e-42a0-ab19-8682dd501641", - "x-ms-routing-request-id": "WESTUS:20210330T180640Z:e90f14b1-774e-42a0-ab19-8682dd501641" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0efa62210d3d54d098285832edfe8a48", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5f3dfab-d8ee-412a-8021-eb9a164b051c", - "x-ms-ratelimit-remaining-subscription-reads": "11792", - "x-ms-request-id": "b5f3dfab-d8ee-412a-8021-eb9a164b051c", - "x-ms-routing-request-id": "WESTUS:20210330T180640Z:b5f3dfab-d8ee-412a-8021-eb9a164b051c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e1f9983d5899fdb12cd5102e5a32adff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "867d88e9-261f-4187-b51c-df2e76e51012", - "x-ms-ratelimit-remaining-subscription-reads": "11791", - "x-ms-request-id": "867d88e9-261f-4187-b51c-df2e76e51012", - "x-ms-routing-request-id": "WESTUS:20210330T180640Z:867d88e9-261f-4187-b51c-df2e76e51012" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "70e9e8120576837689c66a830de0e211", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8eccd42b-181f-4c21-8117-534ebe900351", - "x-ms-ratelimit-remaining-subscription-reads": "11790", - "x-ms-request-id": "8eccd42b-181f-4c21-8117-534ebe900351", - "x-ms-routing-request-id": "WESTUS:20210330T180640Z:8eccd42b-181f-4c21-8117-534ebe900351" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "283dbb99f0aac9b0b0fde267fda1f966", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58fb5844-078f-4d38-b307-72dd979aefa0", - "x-ms-ratelimit-remaining-subscription-reads": "11789", - "x-ms-request-id": "58fb5844-078f-4d38-b307-72dd979aefa0", - "x-ms-routing-request-id": "WESTUS:20210330T180640Z:58fb5844-078f-4d38-b307-72dd979aefa0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0520587a1a1437d1227658d3ed2ef04c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06f528dd-1a21-4313-ac08-e778550bbd80", - "x-ms-ratelimit-remaining-subscription-reads": "11788", - "x-ms-request-id": "06f528dd-1a21-4313-ac08-e778550bbd80", - "x-ms-routing-request-id": "WESTUS:20210330T180640Z:06f528dd-1a21-4313-ac08-e778550bbd80" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9f95fef384f42155371fbf79230e86e8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8cbec4a3-3f50-425b-8a64-66c613f6c8ba", - "x-ms-ratelimit-remaining-subscription-reads": "11787", - "x-ms-request-id": "8cbec4a3-3f50-425b-8a64-66c613f6c8ba", - "x-ms-routing-request-id": "WESTUS:20210330T180640Z:8cbec4a3-3f50-425b-8a64-66c613f6c8ba" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b40804cddcbf7efde906063498dddc82", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a18e52f-9d8c-4b2b-b87a-0b4a7324eba6", - "x-ms-ratelimit-remaining-subscription-reads": "11786", - "x-ms-request-id": "9a18e52f-9d8c-4b2b-b87a-0b4a7324eba6", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:9a18e52f-9d8c-4b2b-b87a-0b4a7324eba6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fe73960d5a0bf57103fecef45a581313", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5181d896-9e6d-4ec5-9fc4-c5ddc52017ff", - "x-ms-ratelimit-remaining-subscription-reads": "11785", - "x-ms-request-id": "5181d896-9e6d-4ec5-9fc4-c5ddc52017ff", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:5181d896-9e6d-4ec5-9fc4-c5ddc52017ff" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e90570f03b26178c0117b5ee7e218959", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21652e62-2917-4f8f-a9e3-7d9d5ca43a63", - "x-ms-ratelimit-remaining-subscription-reads": "11784", - "x-ms-request-id": "21652e62-2917-4f8f-a9e3-7d9d5ca43a63", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:21652e62-2917-4f8f-a9e3-7d9d5ca43a63" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8d6c3c43879b73dc9212b1c10d082391", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70d91996-b64e-493b-91ae-578e9ab578d0", - "x-ms-ratelimit-remaining-subscription-reads": "11783", - "x-ms-request-id": "70d91996-b64e-493b-91ae-578e9ab578d0", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:70d91996-b64e-493b-91ae-578e9ab578d0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2743f3f2f3d8d25c095cfdf4a48377e1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c705bd2-6439-4252-acd3-5ae0e9f1212b", - "x-ms-ratelimit-remaining-subscription-reads": "11782", - "x-ms-request-id": "1c705bd2-6439-4252-acd3-5ae0e9f1212b", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:1c705bd2-6439-4252-acd3-5ae0e9f1212b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1db1757485eb68789392561389ca0af9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e286378-dfd1-4b77-a621-7970d90a371b", - "x-ms-ratelimit-remaining-subscription-reads": "11781", - "x-ms-request-id": "2e286378-dfd1-4b77-a621-7970d90a371b", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:2e286378-dfd1-4b77-a621-7970d90a371b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8afb24f361dd5080e09a833e89e8ce0f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2fe449f-a464-40bf-abca-e430011a452e", - "x-ms-ratelimit-remaining-subscription-reads": "11780", - "x-ms-request-id": "c2fe449f-a464-40bf-abca-e430011a452e", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:c2fe449f-a464-40bf-abca-e430011a452e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "974cd09a05576da57bda94459c48483e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60771b67-1203-4640-a279-ba6420a5bbf5", - "x-ms-ratelimit-remaining-subscription-reads": "11779", - "x-ms-request-id": "60771b67-1203-4640-a279-ba6420a5bbf5", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:60771b67-1203-4640-a279-ba6420a5bbf5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "80010352ed871304f4603d510139dfaa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "22c06186-d512-41cd-8513-b7876f6c11f1", - "x-ms-ratelimit-remaining-subscription-reads": "11778", - "x-ms-request-id": "22c06186-d512-41cd-8513-b7876f6c11f1", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:22c06186-d512-41cd-8513-b7876f6c11f1" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b97946c4727eeda27e8e0f02cd3bb398", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8a3b9eb-be38-41f5-ad92-05cf18945bbf", - "x-ms-ratelimit-remaining-subscription-reads": "11777", - "x-ms-request-id": "d8a3b9eb-be38-41f5-ad92-05cf18945bbf", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:d8a3b9eb-be38-41f5-ad92-05cf18945bbf" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "85ec45514de7ad88cc39a2f6c8536b41", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "118b9fd8-4a46-417c-9bff-d07e0fdff794", - "x-ms-ratelimit-remaining-subscription-reads": "11776", - "x-ms-request-id": "118b9fd8-4a46-417c-9bff-d07e0fdff794", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:118b9fd8-4a46-417c-9bff-d07e0fdff794" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5681e9fb8fcfdfc0611402f8dd0145b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc63ae39-7cfb-4b85-98a8-dad2439d179c", - "x-ms-ratelimit-remaining-subscription-reads": "11775", - "x-ms-request-id": "dc63ae39-7cfb-4b85-98a8-dad2439d179c", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:dc63ae39-7cfb-4b85-98a8-dad2439d179c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bc00a5ad594d76c3becbed45cfac242a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc6aa294-e4d2-4b64-a2d5-0a18ce1e8acf", - "x-ms-ratelimit-remaining-subscription-reads": "11774", - "x-ms-request-id": "fc6aa294-e4d2-4b64-a2d5-0a18ce1e8acf", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:fc6aa294-e4d2-4b64-a2d5-0a18ce1e8acf" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e306ce235dbac1c8840c24d34b8fd0ca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2dcf5040-b068-453f-b853-84fd336ae888", - "x-ms-ratelimit-remaining-subscription-reads": "11773", - "x-ms-request-id": "2dcf5040-b068-453f-b853-84fd336ae888", - "x-ms-routing-request-id": "WESTUS:20210330T180642Z:2dcf5040-b068-453f-b853-84fd336ae888" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2348e9f3ae53a2f4260a9804a27a10b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b76d09e5-7ff3-434c-b100-5bea7fedc260", - "x-ms-ratelimit-remaining-subscription-reads": "11772", - "x-ms-request-id": "b76d09e5-7ff3-434c-b100-5bea7fedc260", - "x-ms-routing-request-id": "WESTUS:20210330T180642Z:b76d09e5-7ff3-434c-b100-5bea7fedc260" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0fd5d7ef61fa4ffedc3e374034f02b2e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be0cd577-06bd-4216-9bc8-4a19bb922e91", - "x-ms-ratelimit-remaining-subscription-reads": "11771", - "x-ms-request-id": "be0cd577-06bd-4216-9bc8-4a19bb922e91", - "x-ms-routing-request-id": "WESTUS:20210330T180642Z:be0cd577-06bd-4216-9bc8-4a19bb922e91" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e55122fb006375d7d964bdafc5c41f0a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b2680bf-54a4-4eb3-ab17-afd80f9a4df2", - "x-ms-ratelimit-remaining-subscription-reads": "11770", - "x-ms-request-id": "5b2680bf-54a4-4eb3-ab17-afd80f9a4df2", - "x-ms-routing-request-id": "WESTUS:20210330T180642Z:5b2680bf-54a4-4eb3-ab17-afd80f9a4df2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "73e36efcc0ba91d0ebf8461476b36d36", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dee2efe6-2620-43cc-b341-f8cc1745606b", - "x-ms-ratelimit-remaining-subscription-reads": "11769", - "x-ms-request-id": "dee2efe6-2620-43cc-b341-f8cc1745606b", - "x-ms-routing-request-id": "WESTUS:20210330T180642Z:dee2efe6-2620-43cc-b341-f8cc1745606b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7f0869df2a28ee52005f3596a44e8a18", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cb8cf7b-eded-4fec-88d3-0f49d6b24ba1", - "x-ms-ratelimit-remaining-subscription-reads": "11768", - "x-ms-request-id": "7cb8cf7b-eded-4fec-88d3-0f49d6b24ba1", - "x-ms-routing-request-id": "WESTUS:20210330T180642Z:7cb8cf7b-eded-4fec-88d3-0f49d6b24ba1" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c6442d1eb70c3a7352c0fa6ab9c2fe26", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae244209-2e67-4099-879b-20cce80aa697", - "x-ms-ratelimit-remaining-subscription-reads": "11767", - "x-ms-request-id": "ae244209-2e67-4099-879b-20cce80aa697", - "x-ms-routing-request-id": "WESTUS:20210330T180642Z:ae244209-2e67-4099-879b-20cce80aa697" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5bd087f6a0bbd1e11cf5735a8b39ed9c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3af58447-1375-4727-b583-992cd7654028", - "x-ms-ratelimit-remaining-subscription-reads": "11766", - "x-ms-request-id": "3af58447-1375-4727-b583-992cd7654028", - "x-ms-routing-request-id": "WESTUS:20210330T180642Z:3af58447-1375-4727-b583-992cd7654028" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "48f62e6ea76f2829f6cd2d6830e7343d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a723052d-ef26-4725-9bb5-2633322158b4", - "x-ms-ratelimit-remaining-subscription-reads": "11765", - "x-ms-request-id": "a723052d-ef26-4725-9bb5-2633322158b4", - "x-ms-routing-request-id": "WESTUS:20210330T180642Z:a723052d-ef26-4725-9bb5-2633322158b4" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1da00f612e7e7e5c4c73a9174318af18", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a71cd6e-6594-42c6-a1c5-2b2fb1ec1401", - "x-ms-ratelimit-remaining-subscription-reads": "11764", - "x-ms-request-id": "5a71cd6e-6594-42c6-a1c5-2b2fb1ec1401", - "x-ms-routing-request-id": "WESTUS:20210330T180642Z:5a71cd6e-6594-42c6-a1c5-2b2fb1ec1401" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8bfc5ed3b5cc4eb65da865ed7378a034", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3a5e6bd-ebcb-45d2-b995-ef08a1124f13", - "x-ms-ratelimit-remaining-subscription-reads": "11763", - "x-ms-request-id": "e3a5e6bd-ebcb-45d2-b995-ef08a1124f13", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:e3a5e6bd-ebcb-45d2-b995-ef08a1124f13" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7bf935c0cf993f1ed278fbfbfe12e4dd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9936a79-a56b-4387-9778-512afa717dc4", - "x-ms-ratelimit-remaining-subscription-reads": "11762", - "x-ms-request-id": "f9936a79-a56b-4387-9778-512afa717dc4", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:f9936a79-a56b-4387-9778-512afa717dc4" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d295141ea9ebab715852bfd5c96e0bd4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1500736a-d8d1-4dec-9060-45dfbbf1481b", - "x-ms-ratelimit-remaining-subscription-reads": "11761", - "x-ms-request-id": "1500736a-d8d1-4dec-9060-45dfbbf1481b", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:1500736a-d8d1-4dec-9060-45dfbbf1481b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0d5674d2331f037f3fbcb853babb4f4b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "518fbc9a-4523-4484-820c-c9e3b3d9c897", - "x-ms-ratelimit-remaining-subscription-reads": "11760", - "x-ms-request-id": "518fbc9a-4523-4484-820c-c9e3b3d9c897", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:518fbc9a-4523-4484-820c-c9e3b3d9c897" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5ecf88c3cee31649c44e234710487664", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89ccbd86-d0ff-4044-9401-1372880a48b0", - "x-ms-ratelimit-remaining-subscription-reads": "11759", - "x-ms-request-id": "89ccbd86-d0ff-4044-9401-1372880a48b0", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:89ccbd86-d0ff-4044-9401-1372880a48b0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8928276dd7bbebbe9591922ef01df19d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ba3c8bc-548c-4aff-a875-f49dae662745", - "x-ms-ratelimit-remaining-subscription-reads": "11758", - "x-ms-request-id": "2ba3c8bc-548c-4aff-a875-f49dae662745", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:2ba3c8bc-548c-4aff-a875-f49dae662745" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "41127402ac9f04f02b4049d11038f3f7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ecf9b5b5-2792-46bc-85d6-fdef1b474d76", - "x-ms-ratelimit-remaining-subscription-reads": "11757", - "x-ms-request-id": "ecf9b5b5-2792-46bc-85d6-fdef1b474d76", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:ecf9b5b5-2792-46bc-85d6-fdef1b474d76" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "92e65446c592ec8fcae3c9513b1a26a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91fb046f-cb81-4f29-826e-e3b52a45abfa", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "91fb046f-cb81-4f29-826e-e3b52a45abfa", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:91fb046f-cb81-4f29-826e-e3b52a45abfa" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9b44855c3436c0c437245e7b8eecdb5d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "863f36b2-3f9a-4520-a278-234a53ada123", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-request-id": "863f36b2-3f9a-4520-a278-234a53ada123", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:863f36b2-3f9a-4520-a278-234a53ada123" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9ce89b9e5f363c0be52677bbe29fc911", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0360bdf-cf6e-42d6-86e5-8c8462961eeb", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "a0360bdf-cf6e-42d6-86e5-8c8462961eeb", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:a0360bdf-cf6e-42d6-86e5-8c8462961eeb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8a74a31957f311c08f265b6e67135edd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a559f197-f3a1-41e9-8dce-d8d8d1a31528", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "a559f197-f3a1-41e9-8dce-d8d8d1a31528", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:a559f197-f3a1-41e9-8dce-d8d8d1a31528" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a0b26c088a32fd6f7a08b610bd09de98", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ff4a6d2-db78-4878-a4fe-6f2d0ce6b67b", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "5ff4a6d2-db78-4878-a4fe-6f2d0ce6b67b", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:5ff4a6d2-db78-4878-a4fe-6f2d0ce6b67b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "eb614d5a50784769dad60c10039dd5d1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28085faf-2934-408e-b493-8b9b09073565", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "28085faf-2934-408e-b493-8b9b09073565", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:28085faf-2934-408e-b493-8b9b09073565" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "75b299c729ec8fdf33760feaa1b05385", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9592b02f-fa58-4585-a8ae-a7fbc99db5ab", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "9592b02f-fa58-4585-a8ae-a7fbc99db5ab", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:9592b02f-fa58-4585-a8ae-a7fbc99db5ab" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1a13c34773b2b764026bc55b7d5ef9dd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21178261-d556-4cf3-9701-a0e6c0a14cee", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "21178261-d556-4cf3-9701-a0e6c0a14cee", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:21178261-d556-4cf3-9701-a0e6c0a14cee" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2348e432685731ab6ed1b702417ea62a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "acc2d723-5a76-4c37-9373-122aa4e4b725", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "acc2d723-5a76-4c37-9373-122aa4e4b725", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:acc2d723-5a76-4c37-9373-122aa4e4b725" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "40c88682bb8a541f35fa7380638311d4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1e6a6a6-87e6-48e3-82e9-1239d4e57dc6", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "a1e6a6a6-87e6-48e3-82e9-1239d4e57dc6", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:a1e6a6a6-87e6-48e3-82e9-1239d4e57dc6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bcb8327c3067df2e17e1abe0bb627683", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "37b59660-31d0-42e5-a3cf-b8a0a727dc1e", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "37b59660-31d0-42e5-a3cf-b8a0a727dc1e", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:37b59660-31d0-42e5-a3cf-b8a0a727dc1e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f7d89bc5b9957753c5f3ee5cf52bcdea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96c8f3aa-501e-4653-a1b2-83210ff4515c", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "96c8f3aa-501e-4653-a1b2-83210ff4515c", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:96c8f3aa-501e-4653-a1b2-83210ff4515c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0e85e2c0e9c652c257e929a80f3f99d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1892ceb-127b-4ae6-ab23-5df31e302568", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "a1892ceb-127b-4ae6-ab23-5df31e302568", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:a1892ceb-127b-4ae6-ab23-5df31e302568" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c8baef831aaac33edf40f67441d1eaeb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "136d21c6-1600-4501-8884-a6238a599581", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "136d21c6-1600-4501-8884-a6238a599581", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:136d21c6-1600-4501-8884-a6238a599581" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d820c11368dcdbbcd8869fac8faa6886", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e92a8b9c-7b8d-4ba0-83f5-ad7687fe5bf0", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "e92a8b9c-7b8d-4ba0-83f5-ad7687fe5bf0", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:e92a8b9c-7b8d-4ba0-83f5-ad7687fe5bf0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "05d91a5a0571a53fa3c22e86f34d1086", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb06bfb3-21bc-4d90-aded-844724dd3019", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "fb06bfb3-21bc-4d90-aded-844724dd3019", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:fb06bfb3-21bc-4d90-aded-844724dd3019" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4e943effc01f1bf732deef247a923334", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23df96dc-5096-4f01-aa19-5aa65935a55e", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "23df96dc-5096-4f01-aa19-5aa65935a55e", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:23df96dc-5096-4f01-aa19-5aa65935a55e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "261a70d8e4f80e79817a35193936e88a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c715345c-7f94-44f7-a8cb-8197b3b9372d", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "c715345c-7f94-44f7-a8cb-8197b3b9372d", - "x-ms-routing-request-id": "WESTUS:20210330T180645Z:c715345c-7f94-44f7-a8cb-8197b3b9372d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "50ad19751a159a6623bed293151b2a11", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12cd7d26-99e0-46b2-9adc-76011be16130", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "12cd7d26-99e0-46b2-9adc-76011be16130", - "x-ms-routing-request-id": "WESTUS:20210330T180645Z:12cd7d26-99e0-46b2-9adc-76011be16130" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "82aef98ee9331a8ec486cca58bdde1fc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2dbd108c-0db0-44b6-9c3e-80b15bad2557", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "2dbd108c-0db0-44b6-9c3e-80b15bad2557", - "x-ms-routing-request-id": "WESTUS:20210330T180645Z:2dbd108c-0db0-44b6-9c3e-80b15bad2557" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "61ae64f5e3e5be1e0a80033a12e6f865", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a753a58b-8466-49d8-8da3-2faf61a0d77c", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "a753a58b-8466-49d8-8da3-2faf61a0d77c", - "x-ms-routing-request-id": "WESTUS:20210330T180645Z:a753a58b-8466-49d8-8da3-2faf61a0d77c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3f8b244f66878b578a928c8f4dc10e46", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a6a8994-d2a8-4966-b00e-d1c721a4f55d", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "3a6a8994-d2a8-4966-b00e-d1c721a4f55d", - "x-ms-routing-request-id": "WESTUS:20210330T180645Z:3a6a8994-d2a8-4966-b00e-d1c721a4f55d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b19dd5dcc96dab2bdbf078b3e65408dd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a7ffd00-e802-4348-b104-bc3172ebea2a", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "6a7ffd00-e802-4348-b104-bc3172ebea2a", - "x-ms-routing-request-id": "WESTUS:20210330T180645Z:6a7ffd00-e802-4348-b104-bc3172ebea2a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6655678da1518e750d22d653568f7048", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc631b25-f751-4027-9181-6399dc338694", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "fc631b25-f751-4027-9181-6399dc338694", - "x-ms-routing-request-id": "WESTUS:20210330T180645Z:fc631b25-f751-4027-9181-6399dc338694" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3c5dbc71474985f7f8e06497eea3a436", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84669783-fa24-49b9-830f-e87730608003", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "84669783-fa24-49b9-830f-e87730608003", - "x-ms-routing-request-id": "WESTUS:20210330T180645Z:84669783-fa24-49b9-830f-e87730608003" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e501ae89a86b3af5600ea34af2d8544b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0981db4-e122-4a24-ab7e-08d62a2b8713", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "e0981db4-e122-4a24-ab7e-08d62a2b8713", - "x-ms-routing-request-id": "WESTUS:20210330T180645Z:e0981db4-e122-4a24-ab7e-08d62a2b8713" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2a422f7fccf646946fcf6d713ddea06a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a429d69-0283-430d-a722-cf15aabed326", - "x-ms-ratelimit-remaining-subscription-reads": "11754", - "x-ms-request-id": "8a429d69-0283-430d-a722-cf15aabed326", - "x-ms-routing-request-id": "WESTUS:20210330T180645Z:8a429d69-0283-430d-a722-cf15aabed326" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a7c99f7d8b8dc8dcc723dc3aa3ad9220", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce43d6f9-462c-4e90-b7cd-1eca80595d86", - "x-ms-ratelimit-remaining-subscription-reads": "11753", - "x-ms-request-id": "ce43d6f9-462c-4e90-b7cd-1eca80595d86", - "x-ms-routing-request-id": "WESTUS:20210330T180645Z:ce43d6f9-462c-4e90-b7cd-1eca80595d86" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "be17188b7a60bd401aba769b3a83fd82", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04e680b7-1b58-434a-a9d3-204b5e255c9e", - "x-ms-ratelimit-remaining-subscription-reads": "11752", - "x-ms-request-id": "04e680b7-1b58-434a-a9d3-204b5e255c9e", - "x-ms-routing-request-id": "WESTUS:20210330T180646Z:04e680b7-1b58-434a-a9d3-204b5e255c9e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "53cc396eac0ff4bd527a63d3f059a2c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "280e048e-db61-4ff4-bf15-fa34bfa62788", - "x-ms-ratelimit-remaining-subscription-reads": "11751", - "x-ms-request-id": "280e048e-db61-4ff4-bf15-fa34bfa62788", - "x-ms-routing-request-id": "WESTUS:20210330T180646Z:280e048e-db61-4ff4-bf15-fa34bfa62788" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "24e54d3de1c6030a5f0b8dd315408e43", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee864a3d-1c57-4cb8-80ae-221f83a7bd82", - "x-ms-ratelimit-remaining-subscription-reads": "11750", - "x-ms-request-id": "ee864a3d-1c57-4cb8-80ae-221f83a7bd82", - "x-ms-routing-request-id": "WESTUS:20210330T180646Z:ee864a3d-1c57-4cb8-80ae-221f83a7bd82" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6acc5a253fe0de115a236ce6176dcdc0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04122f0d-dd77-4129-9c52-c0297f41c0c9", - "x-ms-ratelimit-remaining-subscription-reads": "11749", - "x-ms-request-id": "04122f0d-dd77-4129-9c52-c0297f41c0c9", - "x-ms-routing-request-id": "WESTUS:20210330T180646Z:04122f0d-dd77-4129-9c52-c0297f41c0c9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ec5eb318d89d8cbb2ec9f4031eeadf11", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e5a91c4-a28a-4f14-93e0-bda04be49df5", - "x-ms-ratelimit-remaining-subscription-reads": "11748", - "x-ms-request-id": "5e5a91c4-a28a-4f14-93e0-bda04be49df5", - "x-ms-routing-request-id": "WESTUS:20210330T180646Z:5e5a91c4-a28a-4f14-93e0-bda04be49df5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "96ad1feb388dfde13b07c9a37524ecf1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf6de398-3017-4bce-a082-b1ac537c7f19", - "x-ms-ratelimit-remaining-subscription-reads": "11747", - "x-ms-request-id": "bf6de398-3017-4bce-a082-b1ac537c7f19", - "x-ms-routing-request-id": "WESTUS:20210330T180646Z:bf6de398-3017-4bce-a082-b1ac537c7f19" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "61bacd3da1e24da69e3f3b174b0dbf6f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b236f225-2f5f-4d33-ae3e-0126822e6bbc", - "x-ms-ratelimit-remaining-subscription-reads": "11746", - "x-ms-request-id": "b236f225-2f5f-4d33-ae3e-0126822e6bbc", - "x-ms-routing-request-id": "WESTUS:20210330T180646Z:b236f225-2f5f-4d33-ae3e-0126822e6bbc" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f7fa5a4437bfdf32d261b0960e17170a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f028c180-1f50-4cc3-8cc1-6fcd92097a8b", - "x-ms-ratelimit-remaining-subscription-reads": "11745", - "x-ms-request-id": "f028c180-1f50-4cc3-8cc1-6fcd92097a8b", - "x-ms-routing-request-id": "WESTUS:20210330T180646Z:f028c180-1f50-4cc3-8cc1-6fcd92097a8b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "51c602dc7d2f492f7960f74efccab22e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bde6eba5-35f7-4ec3-a563-a84bc19014ef", - "x-ms-ratelimit-remaining-subscription-reads": "11744", - "x-ms-request-id": "bde6eba5-35f7-4ec3-a563-a84bc19014ef", - "x-ms-routing-request-id": "WESTUS:20210330T180646Z:bde6eba5-35f7-4ec3-a563-a84bc19014ef" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1b5f5a47f42905329adb8f80f00f3e87", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5190eb88-4dae-4879-ad41-51ed941c5b13", - "x-ms-ratelimit-remaining-subscription-reads": "11743", - "x-ms-request-id": "5190eb88-4dae-4879-ad41-51ed941c5b13", - "x-ms-routing-request-id": "WESTUS:20210330T180646Z:5190eb88-4dae-4879-ad41-51ed941c5b13" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "483a31286e47c63f2ab17e5f40e4e307", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a73d8f92-c498-4e95-a411-01638af95e1e", - "x-ms-ratelimit-remaining-subscription-reads": "11742", - "x-ms-request-id": "a73d8f92-c498-4e95-a411-01638af95e1e", - "x-ms-routing-request-id": "WESTUS:20210330T180646Z:a73d8f92-c498-4e95-a411-01638af95e1e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b44f82affbb8e8e1d0c0b754eeaf5869", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1be8202d-b325-4fbb-aeaf-4d6ce2043bd0", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "1be8202d-b325-4fbb-aeaf-4d6ce2043bd0", - "x-ms-routing-request-id": "WESTUS:20210330T180647Z:1be8202d-b325-4fbb-aeaf-4d6ce2043bd0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ca257022698fd9e61a98f17876d2c5b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c9d3126-bffb-4f17-8585-0c87aaf667fb", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "8c9d3126-bffb-4f17-8585-0c87aaf667fb", - "x-ms-routing-request-id": "WESTUS:20210330T180647Z:8c9d3126-bffb-4f17-8585-0c87aaf667fb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6ed187f789bf2cce4f527886b7ead77b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abfb8738-c08f-46ca-a068-0fc2f3bfd5a2", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "abfb8738-c08f-46ca-a068-0fc2f3bfd5a2", - "x-ms-routing-request-id": "WESTUS:20210330T180647Z:abfb8738-c08f-46ca-a068-0fc2f3bfd5a2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d03d145818be45789b769a1f0a6972fd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b1949e2-50dc-4484-b25f-4270a746687f", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "2b1949e2-50dc-4484-b25f-4270a746687f", - "x-ms-routing-request-id": "WESTUS:20210330T180647Z:2b1949e2-50dc-4484-b25f-4270a746687f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "675d01fbeadd98aaa1f97b3cf15f222f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ef1155f-394a-44f1-9cc2-162729de9216", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "3ef1155f-394a-44f1-9cc2-162729de9216", - "x-ms-routing-request-id": "WESTUS:20210330T180647Z:3ef1155f-394a-44f1-9cc2-162729de9216" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "611f75c1f595def70f8cd249efaf21e6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6aabfd79-da14-48d5-8330-227c0e3844d2", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "6aabfd79-da14-48d5-8330-227c0e3844d2", - "x-ms-routing-request-id": "WESTUS:20210330T180647Z:6aabfd79-da14-48d5-8330-227c0e3844d2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b58b7ae0708d6d9d6aa42ec59d3b543b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "843f9e7c-3c3a-48b7-9ea4-d3aebf357107", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "843f9e7c-3c3a-48b7-9ea4-d3aebf357107", - "x-ms-routing-request-id": "WESTUS:20210330T180647Z:843f9e7c-3c3a-48b7-9ea4-d3aebf357107" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "955e6a5410490567097f57511760a8f1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af0af957-5b7b-404c-8a93-921a819db1e9", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "af0af957-5b7b-404c-8a93-921a819db1e9", - "x-ms-routing-request-id": "WESTUS:20210330T180647Z:af0af957-5b7b-404c-8a93-921a819db1e9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "765c94d76cd450a2d8b1f6f0c63140d4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "259ac392-f333-48c4-b63e-34c473f46b12", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "259ac392-f333-48c4-b63e-34c473f46b12", - "x-ms-routing-request-id": "WESTUS:20210330T180647Z:259ac392-f333-48c4-b63e-34c473f46b12" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "84f596388c51d09c1386ab0e194c560a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d64c2ecc-dcf6-43c6-a8db-ceff6fb571e3", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-request-id": "d64c2ecc-dcf6-43c6-a8db-ceff6fb571e3", - "x-ms-routing-request-id": "WESTUS:20210330T180647Z:d64c2ecc-dcf6-43c6-a8db-ceff6fb571e3" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "08ed3cfcdddfe867c80dbc9819763fd8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7f78f05-d08e-4097-9092-63ff4fb67336", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "d7f78f05-d08e-4097-9092-63ff4fb67336", - "x-ms-routing-request-id": "WESTUS:20210330T180647Z:d7f78f05-d08e-4097-9092-63ff4fb67336" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8119833e236b4ba0f88c634ec094378b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3b2c3cb-b974-4240-8964-7267dc753afc", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "f3b2c3cb-b974-4240-8964-7267dc753afc", - "x-ms-routing-request-id": "WESTUS:20210330T180647Z:f3b2c3cb-b974-4240-8964-7267dc753afc" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "89f4ec5b38445af52f0cbc43cf04b69c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:48 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bfc9bd71-e1dc-4add-b720-18109dd4baa7", - "x-ms-ratelimit-remaining-subscription-reads": "11741", - "x-ms-request-id": "bfc9bd71-e1dc-4add-b720-18109dd4baa7", - "x-ms-routing-request-id": "WESTUS:20210330T180648Z:bfc9bd71-e1dc-4add-b720-18109dd4baa7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "95cfd346d433d89e9ca210527a192833", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5591fc65-87ca-451d-9752-3bd0451302f2", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-request-id": "5591fc65-87ca-451d-9752-3bd0451302f2", - "x-ms-routing-request-id": "WESTUS:20210330T180648Z:5591fc65-87ca-451d-9752-3bd0451302f2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2d3c30d6b68106938ebe525e665d7bf3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "332efea8-5cb2-4ed8-a0c5-11e96190ca55", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-request-id": "332efea8-5cb2-4ed8-a0c5-11e96190ca55", - "x-ms-routing-request-id": "WESTUS:20210330T180648Z:332efea8-5cb2-4ed8-a0c5-11e96190ca55" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ec07c6d5a1c486584e1ceda127a2e015", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc482c78-3f54-4c81-b4b7-0b60dccb2aeb", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-request-id": "dc482c78-3f54-4c81-b4b7-0b60dccb2aeb", - "x-ms-routing-request-id": "WESTUS:20210330T180648Z:dc482c78-3f54-4c81-b4b7-0b60dccb2aeb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9e6c88e488c7901a3fc90774823f713f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0de882cc-e1aa-4ff3-8002-b78cfefbd643", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-request-id": "0de882cc-e1aa-4ff3-8002-b78cfefbd643", - "x-ms-routing-request-id": "WESTUS:20210330T180648Z:0de882cc-e1aa-4ff3-8002-b78cfefbd643" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b37d1c273b12356fd8b5df65c9f2deec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dcc178d3-eeaf-4113-a160-fc02a190159f", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-request-id": "dcc178d3-eeaf-4113-a160-fc02a190159f", - "x-ms-routing-request-id": "WESTUS:20210330T180648Z:dcc178d3-eeaf-4113-a160-fc02a190159f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "de793cdedcf04d2bab76acfa9ae4040e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f0034af-3be1-43bf-aca2-ce12e05e1dd0", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "4f0034af-3be1-43bf-aca2-ce12e05e1dd0", - "x-ms-routing-request-id": "WESTUS:20210330T180648Z:4f0034af-3be1-43bf-aca2-ce12e05e1dd0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0b7aadab2c25a9031937c612a9b5c74d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e317a7e-6304-44bb-9ed5-2205b0755b46", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-request-id": "3e317a7e-6304-44bb-9ed5-2205b0755b46", - "x-ms-routing-request-id": "WESTUS:20210330T180648Z:3e317a7e-6304-44bb-9ed5-2205b0755b46" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "46951aeb93c64a4ff030079b8f749af3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da71dce4-4552-4d7c-b0f4-8f19381e6d92", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-request-id": "da71dce4-4552-4d7c-b0f4-8f19381e6d92", - "x-ms-routing-request-id": "WESTUS:20210330T180648Z:da71dce4-4552-4d7c-b0f4-8f19381e6d92" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1bb9d0b1d378b2c739d0c4b81519a3f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9f0d2db-4e1a-4ffd-8704-df599491ddca", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-request-id": "b9f0d2db-4e1a-4ffd-8704-df599491ddca", - "x-ms-routing-request-id": "WESTUS:20210330T180648Z:b9f0d2db-4e1a-4ffd-8704-df599491ddca" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7f0f5eafbe4e18485e2f1af5246719a5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:48 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "797eb7ae-aac0-4a9f-b86e-21a4782695f5", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-request-id": "797eb7ae-aac0-4a9f-b86e-21a4782695f5", - "x-ms-routing-request-id": "WESTUS:20210330T180648Z:797eb7ae-aac0-4a9f-b86e-21a4782695f5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d960d29dacfc18d553e30cf5ce9635d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:48 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06f12f66-b122-4a61-a659-962c243449eb", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-request-id": "06f12f66-b122-4a61-a659-962c243449eb", - "x-ms-routing-request-id": "WESTUS:20210330T180649Z:06f12f66-b122-4a61-a659-962c243449eb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "30ec118c1a65f3a588a1bc48b8d28dd1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:48 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c58210cb-d06c-425b-bfdb-9666908c0c61", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-request-id": "c58210cb-d06c-425b-bfdb-9666908c0c61", - "x-ms-routing-request-id": "WESTUS:20210330T180649Z:c58210cb-d06c-425b-bfdb-9666908c0c61" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "421b1fb6c9b903f989f72c6bb15249c7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfd23a06-e1d3-4afb-b428-be530f51d9b4", - "x-ms-ratelimit-remaining-subscription-reads": "11739", - "x-ms-request-id": "cfd23a06-e1d3-4afb-b428-be530f51d9b4", - "x-ms-routing-request-id": "WESTUS:20210330T180649Z:cfd23a06-e1d3-4afb-b428-be530f51d9b4" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "126843fae97b82402d6c505aef8c5f81", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e598db0-8d28-47ea-a6c6-ecc8009398d4", - "x-ms-ratelimit-remaining-subscription-reads": "11738", - "x-ms-request-id": "7e598db0-8d28-47ea-a6c6-ecc8009398d4", - "x-ms-routing-request-id": "WESTUS:20210330T180649Z:7e598db0-8d28-47ea-a6c6-ecc8009398d4" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "af3e3a55f27bc31d18e9a76dee3a4235", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "905cb5ab-673b-459c-949b-3484645d5764", - "x-ms-ratelimit-remaining-subscription-reads": "11737", - "x-ms-request-id": "905cb5ab-673b-459c-949b-3484645d5764", - "x-ms-routing-request-id": "WESTUS:20210330T180649Z:905cb5ab-673b-459c-949b-3484645d5764" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "744ef5577b6acd56df99154c799e13fc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "133acfda-4ebb-45ec-b9e2-b3258b1b1642", - "x-ms-ratelimit-remaining-subscription-reads": "11736", - "x-ms-request-id": "133acfda-4ebb-45ec-b9e2-b3258b1b1642", - "x-ms-routing-request-id": "WESTUS:20210330T180649Z:133acfda-4ebb-45ec-b9e2-b3258b1b1642" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7715ab979a13074c26a4fa9241d293f3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e92b604-2dfb-4908-bf39-810f39876586", - "x-ms-ratelimit-remaining-subscription-reads": "11735", - "x-ms-request-id": "4e92b604-2dfb-4908-bf39-810f39876586", - "x-ms-routing-request-id": "WESTUS:20210330T180649Z:4e92b604-2dfb-4908-bf39-810f39876586" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fa031a2aea3dd916e371cfe1dcd04a79", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56d39f54-692c-4319-a7da-88b03fb6f6e0", - "x-ms-ratelimit-remaining-subscription-reads": "11734", - "x-ms-request-id": "56d39f54-692c-4319-a7da-88b03fb6f6e0", - "x-ms-routing-request-id": "WESTUS:20210330T180649Z:56d39f54-692c-4319-a7da-88b03fb6f6e0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "43d5abd5ca24bd22a8464dc581c48c0d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98dea11f-b81d-46ab-87df-c4129e6354b3", - "x-ms-ratelimit-remaining-subscription-reads": "11733", - "x-ms-request-id": "98dea11f-b81d-46ab-87df-c4129e6354b3", - "x-ms-routing-request-id": "WESTUS:20210330T180649Z:98dea11f-b81d-46ab-87df-c4129e6354b3" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5e222206199bacbe943b93a2ca6a2b56", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25d85dd3-d6a3-4145-b39c-5c2b469f1e9f", - "x-ms-ratelimit-remaining-subscription-reads": "11732", - "x-ms-request-id": "25d85dd3-d6a3-4145-b39c-5c2b469f1e9f", - "x-ms-routing-request-id": "WESTUS:20210330T180649Z:25d85dd3-d6a3-4145-b39c-5c2b469f1e9f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "96bd805a4ffc5fcef84551f69c51581f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5ac4a15-3bec-43eb-a9d3-2cd802a462a3", - "x-ms-ratelimit-remaining-subscription-reads": "11731", - "x-ms-request-id": "a5ac4a15-3bec-43eb-a9d3-2cd802a462a3", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:a5ac4a15-3bec-43eb-a9d3-2cd802a462a3" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "badbc2e4ebadbbddec29afe8377ff23d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2b0f840-2668-4a7f-b03f-67b63e3316b6", - "x-ms-ratelimit-remaining-subscription-reads": "11730", - "x-ms-request-id": "f2b0f840-2668-4a7f-b03f-67b63e3316b6", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:f2b0f840-2668-4a7f-b03f-67b63e3316b6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "006af71bf607b61053c26555c8c71042", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "862f5abb-366d-4ba8-96dd-b3bc42257891", - "x-ms-ratelimit-remaining-subscription-reads": "11729", - "x-ms-request-id": "862f5abb-366d-4ba8-96dd-b3bc42257891", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:862f5abb-366d-4ba8-96dd-b3bc42257891" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "07bd73e2708f6ea8a201a9d3a0e52779", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9425bc69-8460-4b3e-b36c-f3195c41f6c7", - "x-ms-ratelimit-remaining-subscription-reads": "11728", - "x-ms-request-id": "9425bc69-8460-4b3e-b36c-f3195c41f6c7", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:9425bc69-8460-4b3e-b36c-f3195c41f6c7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a5db135358e6ee18b22567eb8688f324", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5352baa1-5b38-440b-bd59-2c9b00e284e2", - "x-ms-ratelimit-remaining-subscription-reads": "11727", - "x-ms-request-id": "5352baa1-5b38-440b-bd59-2c9b00e284e2", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:5352baa1-5b38-440b-bd59-2c9b00e284e2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c4056c18ebc1abae4efb5d054c3d156d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "786807d8-78f9-48da-9073-a0ed848de9c6", - "x-ms-ratelimit-remaining-subscription-reads": "11726", - "x-ms-request-id": "786807d8-78f9-48da-9073-a0ed848de9c6", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:786807d8-78f9-48da-9073-a0ed848de9c6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b402ec9a6aec8a5b5acf556a09bde81a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60b56c9c-9db4-459f-b567-edecf7ba56a6", - "x-ms-ratelimit-remaining-subscription-reads": "11725", - "x-ms-request-id": "60b56c9c-9db4-459f-b567-edecf7ba56a6", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:60b56c9c-9db4-459f-b567-edecf7ba56a6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "33ba850e63e067b7653056ebfa13a275", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77818dbf-1c21-40a9-adf6-e4cd564d6f07", - "x-ms-ratelimit-remaining-subscription-reads": "11724", - "x-ms-request-id": "77818dbf-1c21-40a9-adf6-e4cd564d6f07", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:77818dbf-1c21-40a9-adf6-e4cd564d6f07" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9950f90f3e85ae37107b69f29544a191", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "965f30b1-ffa3-4f61-8a08-b597658dbb25", - "x-ms-ratelimit-remaining-subscription-reads": "11723", - "x-ms-request-id": "965f30b1-ffa3-4f61-8a08-b597658dbb25", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:965f30b1-ffa3-4f61-8a08-b597658dbb25" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c6f74313e282378d359a4ebc14709047", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b58f2760-e712-4edc-a4a3-78e3d689d358", - "x-ms-ratelimit-remaining-subscription-reads": "11722", - "x-ms-request-id": "b58f2760-e712-4edc-a4a3-78e3d689d358", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:b58f2760-e712-4edc-a4a3-78e3d689d358" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "105ae02c4f6dcf944d0c2264f9c5d221", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "538a6c7f-81b8-4110-8a2c-fb05d07c4924", - "x-ms-ratelimit-remaining-subscription-reads": "11721", - "x-ms-request-id": "538a6c7f-81b8-4110-8a2c-fb05d07c4924", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:538a6c7f-81b8-4110-8a2c-fb05d07c4924" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b7d8c58edb1c2df26c1864ebf07a9aa0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "311db6f3-a92a-4b45-9a5a-6382edf05c29", - "x-ms-ratelimit-remaining-subscription-reads": "11720", - "x-ms-request-id": "311db6f3-a92a-4b45-9a5a-6382edf05c29", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:311db6f3-a92a-4b45-9a5a-6382edf05c29" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b5c522eb91e9c323ae277876bf283d6f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "374ef99c-13b4-43ac-9a5b-eb78db65119e", - "x-ms-ratelimit-remaining-subscription-reads": "11719", - "x-ms-request-id": "374ef99c-13b4-43ac-9a5b-eb78db65119e", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:374ef99c-13b4-43ac-9a5b-eb78db65119e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4e2e2dc8d898512aed2da454eaa8dfd2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:51 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5a968ec-626a-494c-9ba9-2f09920c09a1", - "x-ms-ratelimit-remaining-subscription-reads": "11718", - "x-ms-request-id": "f5a968ec-626a-494c-9ba9-2f09920c09a1", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:f5a968ec-626a-494c-9ba9-2f09920c09a1" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d77982721cfffd38a11408f4637c6d43", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:51 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "345dd5d6-09fd-4975-9994-951d765cdd9f", - "x-ms-ratelimit-remaining-subscription-reads": "11717", - "x-ms-request-id": "345dd5d6-09fd-4975-9994-951d765cdd9f", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:345dd5d6-09fd-4975-9994-951d765cdd9f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c223f4db4b4c1208f774c8bbedcfd905", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:51 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8dd4d75b-b4ec-4150-9068-bdde329d4b1e", - "x-ms-ratelimit-remaining-subscription-reads": "11716", - "x-ms-request-id": "8dd4d75b-b4ec-4150-9068-bdde329d4b1e", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:8dd4d75b-b4ec-4150-9068-bdde329d4b1e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3c04a54866aeab70f530ac83d035ee71", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:51 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53c7d5d4-e856-4377-8c1a-7520b47b4762", - "x-ms-ratelimit-remaining-subscription-reads": "11715", - "x-ms-request-id": "53c7d5d4-e856-4377-8c1a-7520b47b4762", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:53c7d5d4-e856-4377-8c1a-7520b47b4762" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f67860c01c8526867a67df8b547c10d2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87aa107d-22c9-49fa-964d-81549373cdaf", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "87aa107d-22c9-49fa-964d-81549373cdaf", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:87aa107d-22c9-49fa-964d-81549373cdaf" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bdac023a307875948477cd1c9e8442c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6a4fa3f-80fb-41e2-a386-667890bf8b1f", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-request-id": "a6a4fa3f-80fb-41e2-a386-667890bf8b1f", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:a6a4fa3f-80fb-41e2-a386-667890bf8b1f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8cfb5686e3562b801fddc24786e45778", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b5d2e4d-3744-4ade-8f92-6842198a78f3", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-request-id": "0b5d2e4d-3744-4ade-8f92-6842198a78f3", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:0b5d2e4d-3744-4ade-8f92-6842198a78f3" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "cd49da2030898ff9cb03710e4f6988f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc523a60-a7f2-42e3-ac2c-3622a0fb5f57", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-request-id": "dc523a60-a7f2-42e3-ac2c-3622a0fb5f57", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:dc523a60-a7f2-42e3-ac2c-3622a0fb5f57" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fd051d258381577c82819d9a6e4deea0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1f0523b-417f-4145-8e8b-2df7b222e7bd", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-request-id": "a1f0523b-417f-4145-8e8b-2df7b222e7bd", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:a1f0523b-417f-4145-8e8b-2df7b222e7bd" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c4fc5520743b55395d6cc0527171dcb6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df2edfd4-ad39-424b-a109-d5e4aabb8280", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-request-id": "df2edfd4-ad39-424b-a109-d5e4aabb8280", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:df2edfd4-ad39-424b-a109-d5e4aabb8280" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6922cc5559de9cf75df14b07935e207e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84737bc5-d0b9-45e5-a0aa-fcb03a6b9199", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "84737bc5-d0b9-45e5-a0aa-fcb03a6b9199", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:84737bc5-d0b9-45e5-a0aa-fcb03a6b9199" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f9eed114c36db0bae4b0a015c229e610", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:51 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "258559aa-5e9d-4ea9-8bc8-775d6dce8767", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-request-id": "258559aa-5e9d-4ea9-8bc8-775d6dce8767", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:258559aa-5e9d-4ea9-8bc8-775d6dce8767" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a145e7a5852ac6c15d6066492931c1fe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:51 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5a6b161-2d7b-4f58-a80c-fc461c68653b", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-request-id": "a5a6b161-2d7b-4f58-a80c-fc461c68653b", - "x-ms-routing-request-id": "WESTUS:20210330T180652Z:a5a6b161-2d7b-4f58-a80c-fc461c68653b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczODA5LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a03e424be28391481171852eb9e2d933", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:51 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6533f9b-ae98-41a7-88fd-b9158c7a8d4a", - "x-ms-ratelimit-remaining-subscription-reads": "11864", - "x-ms-request-id": "f6533f9b-ae98-41a7-88fd-b9158c7a8d4a", - "x-ms-routing-request-id": "WESTUS:20210330T180652Z:f6533f9b-ae98-41a7-88fd-b9158c7a8d4a" + "x-ms-correlation-request-id": "a79e06fa-cda6-424e-81cc-338924f17bef", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "a79e06fa-cda6-424e-81cc-338924f17bef", + "x-ms-routing-request-id": "WESTUS2:20210507T002315Z:a79e06fa-cda6-424e-81cc-338924f17bef" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json index e1468a3707c2..68c86fb86797 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json @@ -6,10 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "Request-Id": "|ad80da2b-4d0c713138b5070e.", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fa2ef457757d9b442c1db93ad69fe692", "x-ms-return-client-request-id": "true" }, @@ -19,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:17 GMT", + "Date": "Fri, 07 May 2021 00:23:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b38b4c8-7694-4ee6-8381-df63d2643000", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "8b38b4c8-7694-4ee6-8381-df63d2643000", - "x-ms-routing-request-id": "WESTUS:20210330T180618Z:8b38b4c8-7694-4ee6-8381-df63d2643000" + "x-ms-correlation-request-id": "fe33709d-8d17-4c94-a5ff-e93da0930fca", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "fe33709d-8d17-4c94-a5ff-e93da0930fca", + "x-ms-routing-request-id": "WESTUS2:20210507T002311Z:fe33709d-8d17-4c94-a5ff-e93da0930fca" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -52,11 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-173a26483eb1a2418ee764b7d215814d-dacd6b4a20b37d4d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-1bcc7ab9ef49e149a1efa63f598761d7-a8f3e0828383f54a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5186692cac050d7d79a4b9d1fe39028a", "x-ms-return-client-request-id": "true" }, @@ -69,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:06:18 GMT", + "Date": "Fri, 07 May 2021 00:23:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a07449d0-4eb1-4615-9b50-c08d697ccb00", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "a07449d0-4eb1-4615-9b50-c08d697ccb00", - "x-ms-routing-request-id": "WESTUS:20210330T180619Z:a07449d0-4eb1-4615-9b50-c08d697ccb00" + "x-ms-correlation-request-id": "44418ee9-daf2-475c-8104-1f5bc4e13095", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "44418ee9-daf2-475c-8104-1f5bc4e13095", + "x-ms-routing-request-id": "WESTUS2:20210507T002312Z:44418ee9-daf2-475c-8104-1f5bc4e13095" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9243", @@ -96,11 +91,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5f8cc70362634a4989191b5bbfccc62f-3cfd26a34f4d5545-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-54684f09b91b0242b3f7c1440aa189db-c4d297de3907ce48-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "42ec7da7387011849116b5a7432ed035", "x-ms-return-client-request-id": "true" }, @@ -109,977 +101,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:18 GMT", + "Date": "Fri, 07 May 2021 00:23:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3647448-60ad-44e6-a680-6a4be56e065f", - "x-ms-ratelimit-remaining-subscription-deletes": "14987", - "x-ms-request-id": "f3647448-60ad-44e6-a680-6a4be56e065f", - "x-ms-routing-request-id": "WESTUS:20210330T180619Z:f3647448-60ad-44e6-a680-6a4be56e065f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-1d666ae73e72ca4d995b614b8eaba135-e0151c92d972b543-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "222fb0b64ff9f45ce475c0eff7d5c94a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:18 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a64e3036-49f0-425c-96a7-7d878417273a", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "a64e3036-49f0-425c-96a7-7d878417273a", - "x-ms-routing-request-id": "WESTUS:20210330T180619Z:a64e3036-49f0-425c-96a7-7d878417273a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b51783d4b226eaef2ba5918333b487c8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97453bf8-ead2-43f3-9f64-f2005f6d37bf", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "97453bf8-ead2-43f3-9f64-f2005f6d37bf", - "x-ms-routing-request-id": "WESTUS:20210330T180620Z:97453bf8-ead2-43f3-9f64-f2005f6d37bf" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "93f1d1e8aeff6a3cec1e6c25fc6250dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b4c101f-8503-465f-9f7d-f8550447c1de", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "0b4c101f-8503-465f-9f7d-f8550447c1de", - "x-ms-routing-request-id": "WESTUS:20210330T180621Z:0b4c101f-8503-465f-9f7d-f8550447c1de" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "06fbb92378b104bdc044f654bed8c12f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6123bc33-c538-4e5d-9b25-3071b5660a68", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "6123bc33-c538-4e5d-9b25-3071b5660a68", - "x-ms-routing-request-id": "WESTUS:20210330T180622Z:6123bc33-c538-4e5d-9b25-3071b5660a68" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2506f7ed36e3264b47adc90845c9edc8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6dd3b89-1724-47cb-bbe5-e2b63c8406f7", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "e6dd3b89-1724-47cb-bbe5-e2b63c8406f7", - "x-ms-routing-request-id": "WESTUS:20210330T180623Z:e6dd3b89-1724-47cb-bbe5-e2b63c8406f7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "795fb45480b86f1613edd2bab7e8ab13", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93ddfbed-26e7-4c8e-b8fd-ddf3762488f9", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "93ddfbed-26e7-4c8e-b8fd-ddf3762488f9", - "x-ms-routing-request-id": "WESTUS:20210330T180625Z:93ddfbed-26e7-4c8e-b8fd-ddf3762488f9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "04373c5c2b5bedf96ed5be04aeb5bef6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c407b2c-fd41-4dc0-9ccb-871d5e72ad95", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "1c407b2c-fd41-4dc0-9ccb-871d5e72ad95", - "x-ms-routing-request-id": "WESTUS:20210330T180626Z:1c407b2c-fd41-4dc0-9ccb-871d5e72ad95" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0aff2d5647796c76e19611f663906e5f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:26 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5936e716-eb07-4e31-995a-6d4a1e85b119", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "5936e716-eb07-4e31-995a-6d4a1e85b119", - "x-ms-routing-request-id": "WESTUS:20210330T180627Z:5936e716-eb07-4e31-995a-6d4a1e85b119" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "09abb602e892296dbb720ae3c212c05e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:27 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d13deb0-89b8-49de-b446-71e7c2cd5a7a", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "6d13deb0-89b8-49de-b446-71e7c2cd5a7a", - "x-ms-routing-request-id": "WESTUS:20210330T180628Z:6d13deb0-89b8-49de-b446-71e7c2cd5a7a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8963db2ea1e8159ac5ca23c5190289de", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bd13672-f85e-4bab-a55a-33977c944b11", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "1bd13672-f85e-4bab-a55a-33977c944b11", - "x-ms-routing-request-id": "WESTUS:20210330T180629Z:1bd13672-f85e-4bab-a55a-33977c944b11" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f8015f66b5096e64c0d64e063c93aacf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ea32d50-3be8-4c99-b7d5-5ef96daeb966", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "2ea32d50-3be8-4c99-b7d5-5ef96daeb966", - "x-ms-routing-request-id": "WESTUS:20210330T180630Z:2ea32d50-3be8-4c99-b7d5-5ef96daeb966" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "88c7b2d5e52c61761b9643c7c5a70fb8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0571853f-0c9e-4f27-92d6-74b0d3518b32", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "0571853f-0c9e-4f27-92d6-74b0d3518b32", - "x-ms-routing-request-id": "WESTUS:20210330T180631Z:0571853f-0c9e-4f27-92d6-74b0d3518b32" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "627c2ce8c810795476f5c9125293d831", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:31 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "892b8a2c-b652-4930-8fa3-75e40e8b0b23", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "892b8a2c-b652-4930-8fa3-75e40e8b0b23", - "x-ms-routing-request-id": "WESTUS:20210330T180632Z:892b8a2c-b652-4930-8fa3-75e40e8b0b23" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "67ef5320013b81b1e8a0dc73729da818", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:33 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa12227c-e679-4050-ba4d-c30ebee3316a", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "fa12227c-e679-4050-ba4d-c30ebee3316a", - "x-ms-routing-request-id": "WESTUS:20210330T180633Z:fa12227c-e679-4050-ba4d-c30ebee3316a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "101d95c648170dbe5d4e11361b640e88", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:34 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b20539d9-f272-4a3a-98ff-7ade877d511c", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "b20539d9-f272-4a3a-98ff-7ade877d511c", - "x-ms-routing-request-id": "WESTUS:20210330T180634Z:b20539d9-f272-4a3a-98ff-7ade877d511c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "71a711bda8b8e77d7afa7a6febe107d9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:35 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "041aebba-025d-4bc4-9901-d96ca4e0583d", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "041aebba-025d-4bc4-9901-d96ca4e0583d", - "x-ms-routing-request-id": "WESTUS:20210330T180636Z:041aebba-025d-4bc4-9901-d96ca4e0583d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bc4cb04dc875d81a94e109edf07b6583", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:36 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3986d53f-e14a-438d-b9a3-c8ebd6566ae9", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "3986d53f-e14a-438d-b9a3-c8ebd6566ae9", - "x-ms-routing-request-id": "WESTUS:20210330T180637Z:3986d53f-e14a-438d-b9a3-c8ebd6566ae9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "60b6549136f61d601836951dcd4f227c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0005b53-3420-4902-a320-f2127807f962", - "x-ms-ratelimit-remaining-subscription-reads": "11819", - "x-ms-request-id": "e0005b53-3420-4902-a320-f2127807f962", - "x-ms-routing-request-id": "WESTUS:20210330T180638Z:e0005b53-3420-4902-a320-f2127807f962" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6be937465218f513f7cfdcd69f90f6ff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:38 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc6dc76f-4abc-4d6b-8044-6134557c0e37", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "cc6dc76f-4abc-4d6b-8044-6134557c0e37", - "x-ms-routing-request-id": "WESTUS:20210330T180639Z:cc6dc76f-4abc-4d6b-8044-6134557c0e37" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "96ddf694a62b16e3502ea43e33fd0a45", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:39 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2132988-09f9-46a8-bd55-f849c54cc198", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "c2132988-09f9-46a8-bd55-f849c54cc198", - "x-ms-routing-request-id": "WESTUS:20210330T180640Z:c2132988-09f9-46a8-bd55-f849c54cc198" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b8a68cbffa923f6b41c069265a897d87", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:40 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2837e166-0c52-4d57-a3d8-68d1a174c8b7", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "2837e166-0c52-4d57-a3d8-68d1a174c8b7", - "x-ms-routing-request-id": "WESTUS:20210330T180641Z:2837e166-0c52-4d57-a3d8-68d1a174c8b7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d78895408b719f5154d21ae9add4c2fa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f0d98d7-878e-4f32-83cb-66505e6a0233", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "4f0d98d7-878e-4f32-83cb-66505e6a0233", - "x-ms-routing-request-id": "WESTUS:20210330T180642Z:4f0d98d7-878e-4f32-83cb-66505e6a0233" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "121797c53de99a6d8a9e556a3dbcbcc7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:42 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cc09baf-754c-48bf-813f-a233589fbbd7", - "x-ms-ratelimit-remaining-subscription-reads": "11756", - "x-ms-request-id": "7cc09baf-754c-48bf-813f-a233589fbbd7", - "x-ms-routing-request-id": "WESTUS:20210330T180643Z:7cc09baf-754c-48bf-813f-a233589fbbd7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9dfe1cb0327433d43b0664bfdf81916c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:43 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b172abc-02f2-4359-a48b-ab7eeec914a0", - "x-ms-ratelimit-remaining-subscription-reads": "11755", - "x-ms-request-id": "8b172abc-02f2-4359-a48b-ab7eeec914a0", - "x-ms-routing-request-id": "WESTUS:20210330T180644Z:8b172abc-02f2-4359-a48b-ab7eeec914a0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c3616efe6b71029d27ee4cd336e76298", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f117553-e630-4294-a076-63de2ddf646f", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "9f117553-e630-4294-a076-63de2ddf646f", - "x-ms-routing-request-id": "WESTUS:20210330T180645Z:9f117553-e630-4294-a076-63de2ddf646f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9139531524d59285c2e4d7e3d9adba09", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d5a0a2e-6e6f-4451-8271-2f8115e0ecdc", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "1d5a0a2e-6e6f-4451-8271-2f8115e0ecdc", - "x-ms-routing-request-id": "WESTUS:20210330T180646Z:1d5a0a2e-6e6f-4451-8271-2f8115e0ecdc" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ce6be80cf95a45567efc7586e601fd54", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:47 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05aa5e77-1f70-48b9-a4ec-f683651a19e9", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "05aa5e77-1f70-48b9-a4ec-f683651a19e9", - "x-ms-routing-request-id": "WESTUS:20210330T180648Z:05aa5e77-1f70-48b9-a4ec-f683651a19e9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8ca9cba40048da97e9cf008d93ba2879", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc66b364-5685-4278-b4e3-859273d44b88", - "x-ms-ratelimit-remaining-subscription-reads": "11740", - "x-ms-request-id": "dc66b364-5685-4278-b4e3-859273d44b88", - "x-ms-routing-request-id": "WESTUS:20210330T180649Z:dc66b364-5685-4278-b4e3-859273d44b88" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4dc64234937b1c3dfdf312d9aeffabc0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c7696f4-8ffc-432a-8ae4-193b59ebb737", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-request-id": "5c7696f4-8ffc-432a-8ae4-193b59ebb737", - "x-ms-routing-request-id": "WESTUS:20210330T180650Z:5c7696f4-8ffc-432a-8ae4-193b59ebb737" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0d3e83e62d030bc15191e58af9c8b1c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:51 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e07b2c5-585f-4365-89e3-f4830e94bc4d", - "x-ms-ratelimit-remaining-subscription-reads": "11714", - "x-ms-request-id": "6e07b2c5-585f-4365-89e3-f4830e94bc4d", - "x-ms-routing-request-id": "WESTUS:20210330T180651Z:6e07b2c5-585f-4365-89e3-f4830e94bc4d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a352fbd4b03a10d88e8d8f54edbd2bea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 30 Mar 2021 18:06:52 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68e9f7e4-bb34-4954-9dd8-5303a4d2089c", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "68e9f7e4-bb34-4954-9dd8-5303a4d2089c", - "x-ms-routing-request-id": "WESTUS:20210330T180652Z:68e9f7e4-bb34-4954-9dd8-5303a4d2089c" + "x-ms-correlation-request-id": "e100fcc2-f048-4b81-ba28-7de6ac09a719", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "e100fcc2-f048-4b81-ba28-7de6ac09a719", + "x-ms-routing-request-id": "WESTUS2:20210507T002312Z:e100fcc2-f048-4b81-ba28-7de6ac09a719" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag().json new file mode 100644 index 000000000000..0c427a47af2d --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag().json @@ -0,0 +1,187 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-48cbc87f973ba94f8846f2fd05ff54b5-1a21417e03ac8245-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5e5feb5399cc0d53ed90c001f71c2e1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1900aa61-cef0-47be-96d5-cd6179a2e12a", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "1900aa61-cef0-47be-96d5-cd6179a2e12a", + "x-ms-routing-request-id": "WESTUS2:20210507T002315Z:1900aa61-cef0-47be-96d5-cd6179a2e12a" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9147?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-fbae2299ca5fe64d801fe3982fa145a5-d752d5808792454c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "664b5cc708737037afcbbbab9f76f099", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "09791617-926e-40f5-b3cd-48628dca1b4b", + "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-request-id": "09791617-926e-40f5-b3cd-48628dca1b4b", + "x-ms-routing-request-id": "WESTUS2:20210507T002316Z:09791617-926e-40f5-b3cd-48628dca1b4b" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9147", + "name": "testrg9147", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9147?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "30", + "Content-Type": "application/json", + "traceparent": "00-515f7f2dab765e44ab8c8c8ff46631e9-47bdf33c8074894a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0fb22512a483d6e42254ef8d6c681ff3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "k1": "v1", + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "247", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "49726c25-ab5c-4c73-bc96-03682f190ba4", + "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-request-id": "49726c25-ab5c-4c73-bc96-03682f190ba4", + "x-ms-routing-request-id": "WESTUS2:20210507T002316Z:49726c25-ab5c-4c73-bc96-03682f190ba4" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9147", + "name": "testrg9147", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "k1": "v1", + "k2": "v2" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9147?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "20", + "Content-Type": "application/json", + "traceparent": "00-ed589e01c60b9d4aa05988ef52237d56-a3695115964f3045-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7f4bd0125f06e3e027ee1cce98614e19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "237", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "88e8e5b4-5f25-425a-892a-010c08fc56bc", + "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-request-id": "88e8e5b4-5f25-425a-892a-010c08fc56bc", + "x-ms-routing-request-id": "WESTUS2:20210507T002316Z:88e8e5b4-5f25-425a-892a-010c08fc56bc" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9147", + "name": "testrg9147", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "k2": "v2" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "1716431635", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag()Async.json new file mode 100644 index 000000000000..e50194b24add --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag()Async.json @@ -0,0 +1,186 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "23ec2a97aa2daf0f84dc98668a466d3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "34c9e461-d56a-4cf1-93f8-45e0bd86bcd3", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "34c9e461-d56a-4cf1-93f8-45e0bd86bcd3", + "x-ms-routing-request-id": "WESTUS2:20210507T002312Z:34c9e461-d56a-4cf1-93f8-45e0bd86bcd3" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6323?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-b98d3fba2ddf8e49a2eab2ee9862f70c-596a4eaa0871a447-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f71698854715d925f7ef394c9033fc77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5ba89da7-c7d1-49bd-a453-0d9c416f31a9", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "5ba89da7-c7d1-49bd-a453-0d9c416f31a9", + "x-ms-routing-request-id": "WESTUS2:20210507T002313Z:5ba89da7-c7d1-49bd-a453-0d9c416f31a9" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6323", + "name": "testrg6323", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6323?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "30", + "Content-Type": "application/json", + "traceparent": "00-96eca2695b293a4bad2e8bbed1cc3bcc-ac45732ffbd6d040-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "aa1625b397b197d6b5c6d2016a2be3a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "k1": "v1", + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "247", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "80b8baa7-3a46-43d9-b722-fb9dce174fd0", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "80b8baa7-3a46-43d9-b722-fb9dce174fd0", + "x-ms-routing-request-id": "WESTUS2:20210507T002313Z:80b8baa7-3a46-43d9-b722-fb9dce174fd0" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6323", + "name": "testrg6323", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "k1": "v1", + "k2": "v2" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6323?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "20", + "Content-Type": "application/json", + "traceparent": "00-07abdfa84589fa4e922cfd7a73d7298c-5cb0dcc4229bbc45-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "69609e9d7b74e281c74936bbd562f3a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "k2": "v2" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "237", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "94a7c20a-8411-4916-a362-a1a42097711d", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "94a7c20a-8411-4916-a362-a1a42097711d", + "x-ms-routing-request-id": "WESTUS2:20210507T002314Z:94a7c20a-8411-4916-a362-a1a42097711d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6323", + "name": "testrg6323", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "k2": "v2" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "32080668", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags().json new file mode 100644 index 000000000000..d4670c05735a --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags().json @@ -0,0 +1,138 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "302c97a23183464d6f9500d0bd465799", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0e1ebef8-808e-4553-a718-f15c8ab9a24e", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "0e1ebef8-808e-4553-a718-f15c8ab9a24e", + "x-ms-routing-request-id": "WESTUS2:20210507T002317Z:0e1ebef8-808e-4553-a718-f15c8ab9a24e" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg8661?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-893cb71949fa8b49b0cdf3d314b7f505-76f9bfd9c5e6344a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "86b4681c3c4def3045b1c87641a3416b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b128d349-e312-43e7-b168-87a25f9ffb54", + "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-request-id": "b128d349-e312-43e7-b168-87a25f9ffb54", + "x-ms-routing-request-id": "WESTUS2:20210507T002318Z:b128d349-e312-43e7-b168-87a25f9ffb54" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8661", + "name": "testrg8661", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg8661?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "24", + "Content-Type": "application/json", + "traceparent": "00-8b100781a2bd4a48919881f9b1ca78ed-1cb3eec1351d1449-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dd69ae84298ff4e49bac24223c840cc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "241", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f3b3df0d-f0ef-4a09-89ae-f68afcd2941d", + "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-request-id": "f3b3df0d-f0ef-4a09-89ae-f68afcd2941d", + "x-ms-routing-request-id": "WESTUS2:20210507T002318Z:f3b3df0d-f0ef-4a09-89ae-f68afcd2941d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8661", + "name": "testrg8661", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "key": "value" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "434248703", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags()Async.json new file mode 100644 index 000000000000..cb4b8fa891f3 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags()Async.json @@ -0,0 +1,138 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "72342836e7375ffba1980cc764257df9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "60144644-2792-4912-ab60-cc51007e2ae2", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "60144644-2792-4912-ab60-cc51007e2ae2", + "x-ms-routing-request-id": "WESTUS2:20210507T002314Z:60144644-2792-4912-ab60-cc51007e2ae2" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9531?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-1c02b03c19ae1745b9d33f1026952b4f-d6c22451e1e8e94a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f2d0eea28a6a3efc8e850d4a9ca96ee5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6d66e64e-c3da-426a-9dc9-4bedf48f2ce6", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-request-id": "6d66e64e-c3da-426a-9dc9-4bedf48f2ce6", + "x-ms-routing-request-id": "WESTUS2:20210507T002315Z:6d66e64e-c3da-426a-9dc9-4bedf48f2ce6" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9531", + "name": "testrg9531", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9531?api-version=2019-10-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "24", + "Content-Type": "application/json", + "traceparent": "00-489da03e38abd24b8c16913f195cdcab-878ef5c36198ff45-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "afde8377006bef0be701424fd4081ce3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "tags": { + "key": "value" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "241", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 07 May 2021 00:23:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "63f73910-5978-47ee-9304-0b8ce94e9590", + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-request-id": "63f73910-5978-47ee-9304-0b8ce94e9590", + "x-ms-routing-request-id": "WESTUS2:20210507T002315Z:63f73910-5978-47ee-9304-0b8ce94e9590" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9531", + "name": "testrg9531", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "key": "value" + }, + "properties": { + "provisioningState": "Succeeded" + } + } + } + ], + "Variables": { + "RandomSeed": "1095354205", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file From 38053bb37aa624846362ca2ab30cd6929df546b0 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Fri, 7 May 2021 11:12:58 -0700 Subject: [PATCH 09/18] Fix the errors in Proto.Client scenario tests --- .../Scenarios/CheckResourceGroupContainerAsync.cs | 8 +++----- .../Proto.Client/src/Scenarios/NullDataValues.cs | 13 ++++--------- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/sdk/resourcemanager/Proto.Client/src/Scenarios/CheckResourceGroupContainerAsync.cs b/sdk/resourcemanager/Proto.Client/src/Scenarios/CheckResourceGroupContainerAsync.cs index 119b15c9064d..2b08cbc2a2f7 100644 --- a/sdk/resourcemanager/Proto.Client/src/Scenarios/CheckResourceGroupContainerAsync.cs +++ b/sdk/resourcemanager/Proto.Client/src/Scenarios/CheckResourceGroupContainerAsync.cs @@ -1,8 +1,7 @@ -using Azure.ResourceManager.Core; -using Proto.Compute; +using Azure.Identity; +using Azure.ResourceManager.Core; using System; using System.Threading.Tasks; -using Azure.Identity; namespace Proto.Client { @@ -28,8 +27,7 @@ private async System.Threading.Tasks.Task ExecuteAsync() CleanUp.Add(resourceGroup.Id); var rgOps = subscription.GetResourceGroups().Get(Context.RgName); var resourceGroupContainer = subscription.GetResourceGroups(); - var rg = new Azure.ResourceManager.Resources.Models.ResourceGroup("East US"); - var resourceGroupData = new ResourceGroupData(rg); + var resourceGroupData = new ResourceGroupData("East US"); ShouldThrow( () => resourceGroupContainer.Construct(null), diff --git a/sdk/resourcemanager/Proto.Client/src/Scenarios/NullDataValues.cs b/sdk/resourcemanager/Proto.Client/src/Scenarios/NullDataValues.cs index 474cfe26a009..f9f567e0025f 100644 --- a/sdk/resourcemanager/Proto.Client/src/Scenarios/NullDataValues.cs +++ b/sdk/resourcemanager/Proto.Client/src/Scenarios/NullDataValues.cs @@ -1,8 +1,6 @@ using Azure.ResourceManager.Core; -using System; -using Azure.ResourceManager.Resources.Models; -using Proto.Network; using Proto.Compute; +using Proto.Network; namespace Proto.Client { @@ -10,14 +8,11 @@ class NullDataValues : Scenario { public override void Execute() { - var rg = new Azure.ResourceManager.Resources.Models.ResourceGroup("East US"); - var resourceGroupData = new ResourceGroupData(rg); - var nic = new Azure.ResourceManager.Network.Models.NetworkInterface(); + var resourceGroupData = new ResourceGroupData("East US"); + var nic = new Azure.ResourceManager.Network.Models.NetworkInterface(); var networkInterfaceData = new NetworkInterfaceData(nic); var aset = new Azure.ResourceManager.Compute.Models.AvailabilitySet("East US"); - var availabilitySet = new AvailabilitySetData(aset); - - + var availabilitySet = new AvailabilitySetData(aset); } } } From 818ee01f5610af5ac42f0be9ce606be9850e36bf Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Fri, 7 May 2021 14:11:19 -0700 Subject: [PATCH 10/18] Move some files in Generated folder back --- .../Azure.ResourceManager.Core/src/{Generated => }/ApiVersions.cs | 0 .../src/{Generated => }/ApiVersionsBase.cs | 0 .../Azure.ResourceManager.Core/src/{Generated => }/ArmClient.cs | 0 .../src/{Generated => }/ArmClientOptions.cs | 0 .../src/{Generated => }/ContainerBase.cs | 0 .../src/{Generated => }/ExtensionResourceContainer.cs | 0 .../src/{Generated => }/ExtensionResourceOperationsBase.cs | 0 .../src/{Generated => }/OperationsBase.cs | 0 .../src/{Generated => }/ResourceContainerBase.cs | 0 .../src/{Generated => }/TenantOperations.cs | 0 10 files changed, 0 insertions(+), 0 deletions(-) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/ApiVersions.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/ApiVersionsBase.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/ArmClient.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/ArmClientOptions.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/ContainerBase.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/ExtensionResourceContainer.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/ExtensionResourceOperationsBase.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/OperationsBase.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/ResourceContainerBase.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/TenantOperations.cs (100%) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ApiVersions.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersions.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ApiVersions.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersions.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ApiVersionsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersionsBase.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ApiVersionsBase.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/ApiVersionsBase.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmClient.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmClientOptions.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClientOptions.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ArmClientOptions.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClientOptions.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ContainerBase.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ExtensionResourceContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceContainer.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ExtensionResourceContainer.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceContainer.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ExtensionResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ExtensionResourceOperationsBase.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/OperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/OperationsBase.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceContainerBase.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/TenantOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/TenantOperations.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs From 5a51e820dfa2d10253faa705230b01440b0e2666 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Fri, 7 May 2021 19:06:54 -0700 Subject: [PATCH 11/18] Address review comments --- .../ErrorAdditionalInfo.Serialization.cs | 40 +++++ .../Generated/Models/ErrorAdditionalInfo.cs | 32 ++++ .../Models/ErrorResponse.Serialization.cs | 74 ++++++++++ .../src/Generated/Models/ErrorResponse.cs | 49 +++++++ ...ResourceGroupExportResult.Serialization.cs | 45 ++++++ .../Models/ResourceGroupExportResult.cs | 32 ++++ .../src/Generated/ResourceGroupOperations.cs | 138 +++++++++++++++++- .../ResourceGroupsDeleteOperation.cs | 52 +++++++ .../ResourceGroupsExportTemplateOperation.cs | 70 +++++++++ .../Generated/UpdateResourceGroupOperation.cs | 4 +- .../Scenario/ResourceGroupOperationsTests.cs | 47 ++++++ 11 files changed, 575 insertions(+), 8 deletions(-) create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorAdditionalInfo.Serialization.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorAdditionalInfo.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorResponse.Serialization.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorResponse.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupExportResult.Serialization.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupExportResult.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsDeleteOperation.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsExportTemplateOperation.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorAdditionalInfo.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorAdditionalInfo.Serialization.cs new file mode 100644 index 000000000000..4356542b92ba --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorAdditionalInfo.Serialization.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + public partial class ErrorAdditionalInfo + { + internal static ErrorAdditionalInfo DeserializeErrorAdditionalInfo(JsonElement element) + { + Optional type = default; + Optional info = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } + if (property.NameEquals("info")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + info = property.Value.GetObject(); + continue; + } + } + return new ErrorAdditionalInfo(type.Value, info.Value); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorAdditionalInfo.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorAdditionalInfo.cs new file mode 100644 index 000000000000..67ae6be999d3 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorAdditionalInfo.cs @@ -0,0 +1,32 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.ResourceManager.Core +{ + /// The resource management error additional info. + public partial class ErrorAdditionalInfo + { + /// Initializes a new instance of ErrorAdditionalInfo. + internal ErrorAdditionalInfo() + { + } + + /// Initializes a new instance of ErrorAdditionalInfo. + /// The additional info type. + /// The additional info. + internal ErrorAdditionalInfo(string type, object info) + { + Type = type; + Info = info; + } + + /// The additional info type. + public string Type { get; } + /// The additional info. + public object Info { get; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorResponse.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorResponse.Serialization.cs new file mode 100644 index 000000000000..55e3ec9159a6 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorResponse.Serialization.cs @@ -0,0 +1,74 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + public partial class ErrorResponse + { + internal static ErrorResponse DeserializeErrorResponse(JsonElement element) + { + Optional code = default; + Optional message = default; + Optional target = default; + Optional> details = default; + Optional> additionalInfo = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("code")) + { + code = property.Value.GetString(); + continue; + } + if (property.NameEquals("message")) + { + message = property.Value.GetString(); + continue; + } + if (property.NameEquals("target")) + { + target = property.Value.GetString(); + continue; + } + if (property.NameEquals("details")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(DeserializeErrorResponse(item)); + } + details = array; + continue; + } + if (property.NameEquals("additionalInfo")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(ErrorAdditionalInfo.DeserializeErrorAdditionalInfo(item)); + } + additionalInfo = array; + continue; + } + } + return new ErrorResponse(code.Value, message.Value, target.Value, Optional.ToList(details), Optional.ToList(additionalInfo)); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorResponse.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorResponse.cs new file mode 100644 index 000000000000..ceafd045abf1 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ErrorResponse.cs @@ -0,0 +1,49 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + /// The resource management error response. + public partial class ErrorResponse + { + /// Initializes a new instance of ErrorResponse. + internal ErrorResponse() + { + Details = new ChangeTrackingList(); + AdditionalInfo = new ChangeTrackingList(); + } + + /// Initializes a new instance of ErrorResponse. + /// The error code. + /// The error message. + /// The error target. + /// The error details. + /// The error additional info. + internal ErrorResponse(string code, string message, string target, IReadOnlyList details, IReadOnlyList additionalInfo) + { + Code = code; + Message = message; + Target = target; + Details = details; + AdditionalInfo = additionalInfo; + } + + /// The error code. + public string Code { get; } + /// The error message. + public string Message { get; } + /// The error target. + public string Target { get; } + /// The error details. + public IReadOnlyList Details { get; } + /// The error additional info. + public IReadOnlyList AdditionalInfo { get; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupExportResult.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupExportResult.Serialization.cs new file mode 100644 index 000000000000..1c49e6360fc8 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupExportResult.Serialization.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + public partial class ResourceGroupExportResult + { + internal static ResourceGroupExportResult DeserializeResourceGroupExportResult(JsonElement element) + { + Optional template = default; + Optional error = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("template")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + template = property.Value.GetObject(); + continue; + } + if (property.NameEquals("error")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + error = ErrorResponse.DeserializeErrorResponse(property.Value); + continue; + } + } + return new ResourceGroupExportResult(template.Value, error.Value); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupExportResult.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupExportResult.cs new file mode 100644 index 000000000000..fc737f4d58a1 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Models/ResourceGroupExportResult.cs @@ -0,0 +1,32 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.ResourceManager.Core +{ + /// Resource group export result. + public partial class ResourceGroupExportResult + { + /// Initializes a new instance of ResourceGroupExportResult. + internal ResourceGroupExportResult() + { + } + + /// Initializes a new instance of ResourceGroupExportResult. + /// The template content. + /// The template export error. + internal ResourceGroupExportResult(object template, ErrorResponse error) + { + Template = template; + Error = error; + } + + /// The template content. + public object Template { get; } + /// The template export error. + public ErrorResponse Error { get; } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs index b39dd3089ae8..d4e319b772e7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs @@ -13,7 +13,7 @@ namespace Azure.ResourceManager.Core /// A class representing the operations that can be performed over a specific ResourceGroup. /// public class ResourceGroupOperations : ResourceOperationsBase, - ITaggableResource, IDeletableResource + ITaggableResource { /// /// Name of the CreateOrUpdate() method in [Resource]Container classes. @@ -73,6 +73,40 @@ protected ResourceGroupOperations(ResourceOperationsBase options, ResourceGroupR Id.SubscriptionId, BaseUri); + /// Checks whether a resource group exists. + /// The cancellation token to use. + public virtual Response CheckExistence(CancellationToken cancellationToken = default) + { + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.CheckExistence"); + scope.Start(); + try + { + return RestClient.CheckExistence(Id.Name, cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Checks whether a resource group exists. + /// The cancellation token to use. + public virtual async Task> CheckExistenceAsync(CancellationToken cancellationToken = default) + { + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.CheckExistence"); + scope.Start(); + try + { + return await RestClient.CheckExistenceAsync(Id.Name, cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + /// /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. /// @@ -123,14 +157,15 @@ public virtual async Task DeleteAsync(CancellationToken cancellatio /// /// Details on long running operation object. /// - public virtual ArmOperation StartDelete(CancellationToken cancellationToken = default) + public virtual ResourceGroupsDeleteOperation StartDelete(CancellationToken cancellationToken = default) { using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartDelete"); scope.Start(); try { - return new PhVoidArmOperation(RestClient.Delete(Id.Name, cancellationToken)); + var originalResponse = RestClient.Delete(Id.Name, cancellationToken); + return new ResourceGroupsDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, originalResponse); } catch (Exception e) { @@ -147,14 +182,63 @@ public virtual ArmOperation StartDelete(CancellationToken cancellationToken = de /// /// Details on long running operation object. /// - public virtual async Task StartDeleteAsync(CancellationToken cancellationToken = default) + public virtual async Task StartDeleteAsync(CancellationToken cancellationToken = default) { using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartDelete"); scope.Start(); try { - return new PhVoidArmOperation(await RestClient.DeleteAsync(Id.Name, cancellationToken).ConfigureAwait(false)); + var originalResponse = await RestClient.DeleteAsync(Id.Name, cancellationToken).ConfigureAwait(false); + return new ResourceGroupsDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Captures the specified resource group as a template. + /// Parameters for exporting the template. + /// The cancellation token to use. + public virtual ResourceGroupsExportTemplateOperation StartExportTemplate(ExportTemplateRequest parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartExportTemplate"); + scope.Start(); + try + { + var originalResponse = RestClient.ExportTemplate(Id.Name, parameters, cancellationToken); + return new ResourceGroupsExportTemplateOperation(Diagnostics, Pipeline, RestClient.CreateExportTemplateRequest(Id.Name, parameters).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Captures the specified resource group as a template. + /// Parameters for exporting the template. + /// The cancellation token to use. + public virtual async Task StartExportTemplateAsync(ExportTemplateRequest parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartExportTemplate"); + scope.Start(); + try + { + var originalResponse = await RestClient.ExportTemplateAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false); + return new ResourceGroupsExportTemplateOperation(Diagnostics, Pipeline, RestClient.CreateExportTemplateRequest(Id.Name, parameters).Request, originalResponse); } catch (Exception e) { @@ -205,6 +289,50 @@ await RestClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false), } } + /// Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is the same as that for creating a resource group. If a field is unspecified, the current value is retained. + /// Parameters supplied to update a resource group. + /// The cancellation token to use. + public virtual Response Update(ResourceGroupPatchable parameters, CancellationToken cancellationToken = default) + { + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.Update"); + scope.Start(); + try + { + return new PhArmResponse(RestClient.Update(Id.Name, parameters, cancellationToken), g => + { + return new ResourceGroup(this, g); + }); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is the same as that for creating a resource group. If a field is unspecified, the current value is retained. + /// Parameters supplied to update a resource group. + /// The cancellation token to use. + public virtual async Task> UpdateAsync(ResourceGroupPatchable parameters, CancellationToken cancellationToken = default) + { + using var scope = Diagnostics.CreateScope("ResourceGroupOperations.Update"); + scope.Start(); + try + { + return new PhArmResponse( + await RestClient.UpdateAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false), + g => + { + return new ResourceGroup(this, g); + }); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + /// public virtual ArmResponse AddTag(string key, string value, CancellationToken cancellationToken = default) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsDeleteOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsDeleteOperation.cs new file mode 100644 index 000000000000..0da849d75f30 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsDeleteOperation.cs @@ -0,0 +1,52 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.ResourceManager.Core +{ + /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. + public partial class ResourceGroupsDeleteOperation : Operation + { + private readonly OperationOrResponseInternals _operation; + + /// Initializes a new instance of ResourceGroupsDeleteOperation for mocking. + protected ResourceGroupsDeleteOperation() + { + } + + internal ResourceGroupsDeleteOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new OperationOrResponseInternals(clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "ResourceGroupsDeleteOperation"); + } + /// + public override string Id => _operation.Id; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask WaitForCompletionResponseAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionResponseAsync(cancellationToken); + + /// + public override ValueTask WaitForCompletionResponseAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionResponseAsync(pollingInterval, cancellationToken); + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsExportTemplateOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsExportTemplateOperation.cs new file mode 100644 index 000000000000..c1c1aa9ab55a --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsExportTemplateOperation.cs @@ -0,0 +1,70 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.ResourceManager.Core +{ + /// Captures the specified resource group as a template. + public partial class ResourceGroupsExportTemplateOperation : Operation, IOperationSource + { + private readonly OperationOrResponseInternals _operation; + + /// Initializes a new instance of ResourceGroupsExportTemplateOperation for mocking. + protected ResourceGroupsExportTemplateOperation() + { + } + + internal ResourceGroupsExportTemplateOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new OperationOrResponseInternals(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "ResourceGroupsExportTemplateOperation"); + } + /// + public override string Id => _operation.Id; + + /// + public override ResourceGroupExportResult Value => _operation.Value; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override bool HasValue => _operation.HasValue; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); + + ResourceGroupExportResult IOperationSource.CreateResult(Response response, CancellationToken cancellationToken) + { + using var document = JsonDocument.Parse(response.ContentStream); + return ResourceGroupExportResult.DeserializeResourceGroupExportResult(document.RootElement); + } + + async ValueTask IOperationSource.CreateResultAsync(Response response, CancellationToken cancellationToken) + { + using var document = await JsonDocument.ParseAsync(response.ContentStream, default, cancellationToken).ConfigureAwait(false); + return ResourceGroupExportResult.DeserializeResourceGroupExportResult(document.RootElement); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/UpdateResourceGroupOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/UpdateResourceGroupOperation.cs index 249211670e5d..c4c1bfd7afe3 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/UpdateResourceGroupOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/UpdateResourceGroupOperation.cs @@ -56,9 +56,7 @@ async ValueTask IOperationSource.CreateResultAsync private ResourceGroup GetResourceGrouop(JsonDocument document) { - var method = typeof(ResourceManager.Resources.Models.ResourceGroup).GetMethod("DeserializeResourceGroup", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Static); - var obj = method.Invoke(null, new object[] { document.RootElement }); - return new ResourceGroup(_operations, obj as ResourceGroupData); + return new ResourceGroup(_operations, ResourceGroupData.DeserializeResourceGroup(document.RootElement)); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs index 33255a715acb..38296ec1c759 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs @@ -58,6 +58,53 @@ public async Task Get() Assert.AreEqual(rg.Data.Tags, rg2.Data.Tags); } + [TestCase] + [RecordedTest] + public async Task Update() + { + var rgName = Recording.GenerateAssetName("testrg"); + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); + var parameters = new ResourceGroupPatchable + { + Name = rgName + }; + ResourceGroup rg2 = await rg.UpdateAsync(parameters); + Assert.AreEqual(rg.Data.Name, rg2.Data.Name); + Assert.AreEqual(rg.Data.Id, rg2.Data.Id); + Assert.AreEqual(rg.Data.Type, rg2.Data.Type); + Assert.AreEqual(rg.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); + Assert.AreEqual(rg.Data.Location, rg2.Data.Location); + Assert.AreEqual(rg.Data.ManagedBy, rg2.Data.ManagedBy); + Assert.AreEqual(rg.Data.Tags, rg2.Data.Tags); + } + + [TestCase] + [RecordedTest] + public async Task CheckExistence() + { + var rgName = Recording.GenerateAssetName("testrg"); + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); + bool existence = await rg.CheckExistenceAsync(); + Assert.IsTrue(existence); + var deleteOp = await rg.StartDeleteAsync(); + await deleteOp.WaitForCompletionResponseAsync(); + existence = await rg.CheckExistenceAsync(); + Assert.IsFalse(existence); + } + + [TestCase] + [RecordedTest] + public async Task StartExportTemplate() + { + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + var parameters = new ExportTemplateRequest + { + Options = "" + }; + var expOp = await rg.StartExportTemplateAsync(parameters); + await expOp.WaitForCompletionAsync(); + } + [TestCase] [RecordedTest] public async Task AddTag() From 06df72f4ba880ec4fa85965f72794e04f56a2d6f Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Wed, 12 May 2021 15:45:00 -0700 Subject: [PATCH 12/18] Add records --- .../StartDeleteRg().json | 439 ++++---- .../StartDeleteRg()Async.json | 959 +++++++++++++++++- 2 files changed, 1174 insertions(+), 224 deletions(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json index e3d76db9c9b8..bd12b2fe5a9c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:26:43 GMT", + "Date": "Wed, 12 May 2021 22:39:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f9c4d4f-169f-4c0c-a231-673a47d217bd", - "x-ms-ratelimit-remaining-subscription-reads": "11739", - "x-ms-request-id": "6f9c4d4f-169f-4c0c-a231-673a47d217bd", - "x-ms-routing-request-id": "WESTUS2:20210507T202643Z:6f9c4d4f-169f-4c0c-a231-673a47d217bd" + "x-ms-correlation-request-id": "a2f92c9a-e73f-481e-8db8-99cb64a4e01a", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "a2f92c9a-e73f-481e-8db8-99cb64a4e01a", + "x-ms-routing-request-id": "WESTUS2:20210512T223945Z:a2f92c9a-e73f-481e-8db8-99cb64a4e01a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-1e5ff4d1f2c3cd4f80f6d27acd50e909-276cad4300341d45-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-7646c3ebdf963542b791988b033d99c2-2125189c5658414a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8a57f07703ff96683d7c799dcc470c10", "x-ms-return-client-request-id": "true" }, @@ -63,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:26:44 GMT", + "Date": "Wed, 12 May 2021 22:39:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a98cb10b-7304-46d8-a691-9b3473d24ef1", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "a98cb10b-7304-46d8-a691-9b3473d24ef1", - "x-ms-routing-request-id": "WESTUS2:20210507T202644Z:a98cb10b-7304-46d8-a691-9b3473d24ef1" + "x-ms-correlation-request-id": "411f2159-3707-4dde-87c1-dfc7a1f336ca", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "411f2159-3707-4dde-87c1-dfc7a1f336ca", + "x-ms-routing-request-id": "WESTUS2:20210512T223947Z:411f2159-3707-4dde-87c1-dfc7a1f336ca" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1124", @@ -90,8 +90,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9c8f31e49eabcc4d8d6740a969a157c7-6b6484d6c09d454e-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-7b49467b9f04e641b92de6a56d8956c8-6437ec20ab3ec745-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dfad7924b0960026bc4d2b775987eb11", "x-ms-return-client-request-id": "true" }, @@ -100,17 +100,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:44 GMT", + "Date": "Wed, 12 May 2021 22:39:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec2784b6-96b7-4525-b0e3-4f6034c53346", - "x-ms-ratelimit-remaining-subscription-deletes": "14989", - "x-ms-request-id": "ec2784b6-96b7-4525-b0e3-4f6034c53346", - "x-ms-routing-request-id": "WESTUS2:20210507T202644Z:ec2784b6-96b7-4525-b0e3-4f6034c53346" + "x-ms-correlation-request-id": "efc25279-cb31-449b-af4a-161212f930fb", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "efc25279-cb31-449b-af4a-161212f930fb", + "x-ms-routing-request-id": "WESTUS2:20210512T223947Z:efc25279-cb31-449b-af4a-161212f930fb" }, "ResponseBody": [] }, @@ -119,7 +119,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d2992da3a02185439533d6a10558e48f-32b0db514765344c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4bdfea2303b8c681c957ceb2d7f13cb5", "x-ms-return-client-request-id": "true" }, @@ -128,17 +129,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:44 GMT", + "Date": "Wed, 12 May 2021 22:39:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8158a8f-4ba4-4026-bf5c-9911dac74aec", - "x-ms-ratelimit-remaining-subscription-reads": "11738", - "x-ms-request-id": "b8158a8f-4ba4-4026-bf5c-9911dac74aec", - "x-ms-routing-request-id": "WESTUS2:20210507T202644Z:b8158a8f-4ba4-4026-bf5c-9911dac74aec" + "x-ms-correlation-request-id": "288c73fe-8c00-488c-b144-35471895cc08", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "288c73fe-8c00-488c-b144-35471895cc08", + "x-ms-routing-request-id": "WESTUS2:20210512T223947Z:288c73fe-8c00-488c-b144-35471895cc08" }, "ResponseBody": [] }, @@ -147,7 +148,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ef168903acf3e8f8462e545b94dae34", "x-ms-return-client-request-id": "true" }, @@ -156,17 +157,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:45 GMT", + "Date": "Wed, 12 May 2021 22:39:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07f62cd7-f678-4207-b138-37bf17729b16", - "x-ms-ratelimit-remaining-subscription-reads": "11737", - "x-ms-request-id": "07f62cd7-f678-4207-b138-37bf17729b16", - "x-ms-routing-request-id": "WESTUS2:20210507T202645Z:07f62cd7-f678-4207-b138-37bf17729b16" + "x-ms-correlation-request-id": "f82f5a1d-63eb-4adf-85ab-cef07782b37a", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "f82f5a1d-63eb-4adf-85ab-cef07782b37a", + "x-ms-routing-request-id": "WESTUS2:20210512T223948Z:f82f5a1d-63eb-4adf-85ab-cef07782b37a" }, "ResponseBody": [] }, @@ -175,7 +176,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f5328189fa7a859dcb0082917427208", "x-ms-return-client-request-id": "true" }, @@ -184,17 +185,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:47 GMT", + "Date": "Wed, 12 May 2021 22:39:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8295c2c8-5600-4ffd-aa29-b489a90cd312", - "x-ms-ratelimit-remaining-subscription-reads": "11736", - "x-ms-request-id": "8295c2c8-5600-4ffd-aa29-b489a90cd312", - "x-ms-routing-request-id": "WESTUS2:20210507T202647Z:8295c2c8-5600-4ffd-aa29-b489a90cd312" + "x-ms-correlation-request-id": "26fcf848-ea47-40d2-b205-1f7ccb375672", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "26fcf848-ea47-40d2-b205-1f7ccb375672", + "x-ms-routing-request-id": "WESTUS2:20210512T223949Z:26fcf848-ea47-40d2-b205-1f7ccb375672" }, "ResponseBody": [] }, @@ -203,7 +204,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea484113c695e9335aa1c6551d3b0d7c", "x-ms-return-client-request-id": "true" }, @@ -212,17 +213,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:48 GMT", + "Date": "Wed, 12 May 2021 22:39:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2f5fb62-ffa9-4502-a922-8fd2707845c1", - "x-ms-ratelimit-remaining-subscription-reads": "11735", - "x-ms-request-id": "b2f5fb62-ffa9-4502-a922-8fd2707845c1", - "x-ms-routing-request-id": "WESTUS2:20210507T202648Z:b2f5fb62-ffa9-4502-a922-8fd2707845c1" + "x-ms-correlation-request-id": "d8cb5d36-8c4a-4153-97c4-434b48ac2852", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "d8cb5d36-8c4a-4153-97c4-434b48ac2852", + "x-ms-routing-request-id": "WESTUS2:20210512T223950Z:d8cb5d36-8c4a-4153-97c4-434b48ac2852" }, "ResponseBody": [] }, @@ -231,7 +232,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af9a99a9cd9df00d0e48911e32662642", "x-ms-return-client-request-id": "true" }, @@ -240,17 +241,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:49 GMT", + "Date": "Wed, 12 May 2021 22:39:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e6c6c76-c655-4184-9ef0-67c534301079", - "x-ms-ratelimit-remaining-subscription-reads": "11734", - "x-ms-request-id": "0e6c6c76-c655-4184-9ef0-67c534301079", - "x-ms-routing-request-id": "WESTUS2:20210507T202649Z:0e6c6c76-c655-4184-9ef0-67c534301079" + "x-ms-correlation-request-id": "279d6967-d134-4e9a-842f-bbb8725a41a8", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "279d6967-d134-4e9a-842f-bbb8725a41a8", + "x-ms-routing-request-id": "WESTUS2:20210512T223951Z:279d6967-d134-4e9a-842f-bbb8725a41a8" }, "ResponseBody": [] }, @@ -259,7 +260,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7732ddefc305519ef56a1506d8038aa0", "x-ms-return-client-request-id": "true" }, @@ -268,17 +269,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:50 GMT", + "Date": "Wed, 12 May 2021 22:39:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b509cab-91d7-4f67-8942-177186143624", - "x-ms-ratelimit-remaining-subscription-reads": "11733", - "x-ms-request-id": "2b509cab-91d7-4f67-8942-177186143624", - "x-ms-routing-request-id": "WESTUS2:20210507T202650Z:2b509cab-91d7-4f67-8942-177186143624" + "x-ms-correlation-request-id": "411e32a5-6c63-4c26-8e41-fd9cf017c2ea", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "411e32a5-6c63-4c26-8e41-fd9cf017c2ea", + "x-ms-routing-request-id": "WESTUS2:20210512T223952Z:411e32a5-6c63-4c26-8e41-fd9cf017c2ea" }, "ResponseBody": [] }, @@ -287,7 +288,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7e7f8ba3c3a8466b3357db4d3514b7f3", "x-ms-return-client-request-id": "true" }, @@ -296,17 +297,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:51 GMT", + "Date": "Wed, 12 May 2021 22:39:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6d2c3d8-6a22-4a44-ad1b-33de0bb88c4d", - "x-ms-ratelimit-remaining-subscription-reads": "11732", - "x-ms-request-id": "b6d2c3d8-6a22-4a44-ad1b-33de0bb88c4d", - "x-ms-routing-request-id": "WESTUS2:20210507T202651Z:b6d2c3d8-6a22-4a44-ad1b-33de0bb88c4d" + "x-ms-correlation-request-id": "4dc20e9b-f9b3-4bdc-9e77-3ebc663a4bb3", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "4dc20e9b-f9b3-4bdc-9e77-3ebc663a4bb3", + "x-ms-routing-request-id": "WESTUS2:20210512T223953Z:4dc20e9b-f9b3-4bdc-9e77-3ebc663a4bb3" }, "ResponseBody": [] }, @@ -315,7 +316,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4065847a9509e576fa48ba32b806180b", "x-ms-return-client-request-id": "true" }, @@ -324,17 +325,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:52 GMT", + "Date": "Wed, 12 May 2021 22:39:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea260975-4bfb-439a-a4c4-0ee1cc19abd2", - "x-ms-ratelimit-remaining-subscription-reads": "11731", - "x-ms-request-id": "ea260975-4bfb-439a-a4c4-0ee1cc19abd2", - "x-ms-routing-request-id": "WESTUS2:20210507T202652Z:ea260975-4bfb-439a-a4c4-0ee1cc19abd2" + "x-ms-correlation-request-id": "02c542b5-7273-42e9-ae2a-8b0761e76bfc", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "02c542b5-7273-42e9-ae2a-8b0761e76bfc", + "x-ms-routing-request-id": "WESTUS2:20210512T223954Z:02c542b5-7273-42e9-ae2a-8b0761e76bfc" }, "ResponseBody": [] }, @@ -343,7 +344,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a67bf0bea8e72c9971ec44aee8511ce0", "x-ms-return-client-request-id": "true" }, @@ -352,17 +353,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:53 GMT", + "Date": "Wed, 12 May 2021 22:39:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "667587e6-62cb-4308-a6ff-189a5a4d8045", - "x-ms-ratelimit-remaining-subscription-reads": "11730", - "x-ms-request-id": "667587e6-62cb-4308-a6ff-189a5a4d8045", - "x-ms-routing-request-id": "WESTUS2:20210507T202653Z:667587e6-62cb-4308-a6ff-189a5a4d8045" + "x-ms-correlation-request-id": "bdc48d5a-982e-4160-b32a-c0000d3fd97e", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "bdc48d5a-982e-4160-b32a-c0000d3fd97e", + "x-ms-routing-request-id": "WESTUS2:20210512T223955Z:bdc48d5a-982e-4160-b32a-c0000d3fd97e" }, "ResponseBody": [] }, @@ -371,7 +372,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "548c21b24a9e0e97159a835f09388d2c", "x-ms-return-client-request-id": "true" }, @@ -380,17 +381,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:54 GMT", + "Date": "Wed, 12 May 2021 22:39:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0073bc5-9785-4aae-8a88-e199332a6aec", - "x-ms-ratelimit-remaining-subscription-reads": "11729", - "x-ms-request-id": "c0073bc5-9785-4aae-8a88-e199332a6aec", - "x-ms-routing-request-id": "WESTUS2:20210507T202654Z:c0073bc5-9785-4aae-8a88-e199332a6aec" + "x-ms-correlation-request-id": "a726d154-e4c4-43b0-a7af-b60d7a78e043", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "a726d154-e4c4-43b0-a7af-b60d7a78e043", + "x-ms-routing-request-id": "WESTUS2:20210512T223956Z:a726d154-e4c4-43b0-a7af-b60d7a78e043" }, "ResponseBody": [] }, @@ -399,7 +400,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "448ed03f1199d10ceb39cf1d51c8fda9", "x-ms-return-client-request-id": "true" }, @@ -408,17 +409,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:55 GMT", + "Date": "Wed, 12 May 2021 22:39:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2db4ad32-f1ed-4b41-966d-acbeec7f62ca", - "x-ms-ratelimit-remaining-subscription-reads": "11728", - "x-ms-request-id": "2db4ad32-f1ed-4b41-966d-acbeec7f62ca", - "x-ms-routing-request-id": "WESTUS2:20210507T202655Z:2db4ad32-f1ed-4b41-966d-acbeec7f62ca" + "x-ms-correlation-request-id": "ff49ae60-cb7d-4f7b-8326-f9c69f806552", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "ff49ae60-cb7d-4f7b-8326-f9c69f806552", + "x-ms-routing-request-id": "WESTUS2:20210512T223957Z:ff49ae60-cb7d-4f7b-8326-f9c69f806552" }, "ResponseBody": [] }, @@ -427,7 +428,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "967fd92cc47a746d596c904c25392338", "x-ms-return-client-request-id": "true" }, @@ -436,17 +437,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:56 GMT", + "Date": "Wed, 12 May 2021 22:39:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c368bfda-0fdc-48d8-8f50-9bd2e50eaac5", - "x-ms-ratelimit-remaining-subscription-reads": "11727", - "x-ms-request-id": "c368bfda-0fdc-48d8-8f50-9bd2e50eaac5", - "x-ms-routing-request-id": "WESTUS2:20210507T202656Z:c368bfda-0fdc-48d8-8f50-9bd2e50eaac5" + "x-ms-correlation-request-id": "7ddec2ee-e78a-4d5e-8df8-61c9f9dcd43a", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "7ddec2ee-e78a-4d5e-8df8-61c9f9dcd43a", + "x-ms-routing-request-id": "WESTUS2:20210512T223958Z:7ddec2ee-e78a-4d5e-8df8-61c9f9dcd43a" }, "ResponseBody": [] }, @@ -455,7 +456,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "186e175ed7c2a14715bb68647a7abd4d", "x-ms-return-client-request-id": "true" }, @@ -464,17 +465,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:57 GMT", + "Date": "Wed, 12 May 2021 22:39:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9bcee19-b429-45d2-a7b8-f0342ed11bb7", - "x-ms-ratelimit-remaining-subscription-reads": "11726", - "x-ms-request-id": "c9bcee19-b429-45d2-a7b8-f0342ed11bb7", - "x-ms-routing-request-id": "WESTUS2:20210507T202657Z:c9bcee19-b429-45d2-a7b8-f0342ed11bb7" + "x-ms-correlation-request-id": "cefd0b83-2b94-4e6d-b90e-28ca7bd75d2f", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "cefd0b83-2b94-4e6d-b90e-28ca7bd75d2f", + "x-ms-routing-request-id": "WESTUS2:20210512T223959Z:cefd0b83-2b94-4e6d-b90e-28ca7bd75d2f" }, "ResponseBody": [] }, @@ -483,7 +484,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f33da9df6b87bb2621aeb2c80bfabb1", "x-ms-return-client-request-id": "true" }, @@ -492,17 +493,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:58 GMT", + "Date": "Wed, 12 May 2021 22:39:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5a00b1d-1932-49b2-b41f-37aa75982134", - "x-ms-ratelimit-remaining-subscription-reads": "11725", - "x-ms-request-id": "b5a00b1d-1932-49b2-b41f-37aa75982134", - "x-ms-routing-request-id": "WESTUS2:20210507T202658Z:b5a00b1d-1932-49b2-b41f-37aa75982134" + "x-ms-correlation-request-id": "30fe3514-1ce0-4469-83d6-9213b3279666", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "30fe3514-1ce0-4469-83d6-9213b3279666", + "x-ms-routing-request-id": "WESTUS2:20210512T224000Z:30fe3514-1ce0-4469-83d6-9213b3279666" }, "ResponseBody": [] }, @@ -511,7 +512,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "39be9615e45955e692de81be5b08f9de", "x-ms-return-client-request-id": "true" }, @@ -520,17 +521,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:59 GMT", + "Date": "Wed, 12 May 2021 22:40:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4d8570f-04c4-4889-b1de-befb308011fc", - "x-ms-ratelimit-remaining-subscription-reads": "11724", - "x-ms-request-id": "a4d8570f-04c4-4889-b1de-befb308011fc", - "x-ms-routing-request-id": "WESTUS2:20210507T202659Z:a4d8570f-04c4-4889-b1de-befb308011fc" + "x-ms-correlation-request-id": "d586e0e6-5954-4cac-995f-754d9d7a35a5", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "d586e0e6-5954-4cac-995f-754d9d7a35a5", + "x-ms-routing-request-id": "WESTUS2:20210512T224001Z:d586e0e6-5954-4cac-995f-754d9d7a35a5" }, "ResponseBody": [] }, @@ -539,7 +540,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4baf43aff406677f64f3b5a8eb1b2156", "x-ms-return-client-request-id": "true" }, @@ -548,17 +549,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:00 GMT", + "Date": "Wed, 12 May 2021 22:40:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39f6d6c0-8067-446d-ae30-1bba312ff14f", - "x-ms-ratelimit-remaining-subscription-reads": "11723", - "x-ms-request-id": "39f6d6c0-8067-446d-ae30-1bba312ff14f", - "x-ms-routing-request-id": "WESTUS2:20210507T202700Z:39f6d6c0-8067-446d-ae30-1bba312ff14f" + "x-ms-correlation-request-id": "f7dd6f0d-517b-4fb4-a101-fd1f4a67d0dc", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "f7dd6f0d-517b-4fb4-a101-fd1f4a67d0dc", + "x-ms-routing-request-id": "WESTUS2:20210512T224002Z:f7dd6f0d-517b-4fb4-a101-fd1f4a67d0dc" }, "ResponseBody": [] }, @@ -567,7 +568,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e44eb70f83bbb8f4f3dd9cda75f4205a", "x-ms-return-client-request-id": "true" }, @@ -576,17 +577,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:01 GMT", + "Date": "Wed, 12 May 2021 22:40:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "147bdb27-68f3-481a-a843-731210743e5c", - "x-ms-ratelimit-remaining-subscription-reads": "11722", - "x-ms-request-id": "147bdb27-68f3-481a-a843-731210743e5c", - "x-ms-routing-request-id": "WESTUS2:20210507T202701Z:147bdb27-68f3-481a-a843-731210743e5c" + "x-ms-correlation-request-id": "dbb05be1-945e-4a95-833f-0461a16f19be", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "dbb05be1-945e-4a95-833f-0461a16f19be", + "x-ms-routing-request-id": "WESTUS2:20210512T224003Z:dbb05be1-945e-4a95-833f-0461a16f19be" }, "ResponseBody": [] }, @@ -595,7 +596,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3d7c0d21600f21aa1656d4652f3e6977", "x-ms-return-client-request-id": "true" }, @@ -604,17 +605,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:02 GMT", + "Date": "Wed, 12 May 2021 22:40:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e623f509-b81a-4a3a-9552-66db1daf22fc", - "x-ms-ratelimit-remaining-subscription-reads": "11721", - "x-ms-request-id": "e623f509-b81a-4a3a-9552-66db1daf22fc", - "x-ms-routing-request-id": "WESTUS2:20210507T202702Z:e623f509-b81a-4a3a-9552-66db1daf22fc" + "x-ms-correlation-request-id": "f6e16261-6dde-42dd-ba9e-385e05545ccf", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "f6e16261-6dde-42dd-ba9e-385e05545ccf", + "x-ms-routing-request-id": "WESTUS2:20210512T224004Z:f6e16261-6dde-42dd-ba9e-385e05545ccf" }, "ResponseBody": [] }, @@ -623,7 +624,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3ae2abc15b92b224ff7572957a5f170", "x-ms-return-client-request-id": "true" }, @@ -632,17 +633,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:03 GMT", + "Date": "Wed, 12 May 2021 22:40:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff88f575-834b-426f-bbcb-3c63a12c6a27", - "x-ms-ratelimit-remaining-subscription-reads": "11720", - "x-ms-request-id": "ff88f575-834b-426f-bbcb-3c63a12c6a27", - "x-ms-routing-request-id": "WESTUS2:20210507T202703Z:ff88f575-834b-426f-bbcb-3c63a12c6a27" + "x-ms-correlation-request-id": "55ddb336-7698-4786-aaaa-eacebb780fc3", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "55ddb336-7698-4786-aaaa-eacebb780fc3", + "x-ms-routing-request-id": "WESTUS2:20210512T224005Z:55ddb336-7698-4786-aaaa-eacebb780fc3" }, "ResponseBody": [] }, @@ -651,7 +652,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "de865ad3e49eaf460d2ccd65ae8e89b5", "x-ms-return-client-request-id": "true" }, @@ -660,17 +661,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:04 GMT", + "Date": "Wed, 12 May 2021 22:40:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e98ba96-0923-4f79-bd49-2eb4c43eb8e3", - "x-ms-ratelimit-remaining-subscription-reads": "11719", - "x-ms-request-id": "8e98ba96-0923-4f79-bd49-2eb4c43eb8e3", - "x-ms-routing-request-id": "WESTUS2:20210507T202705Z:8e98ba96-0923-4f79-bd49-2eb4c43eb8e3" + "x-ms-correlation-request-id": "0dd79f55-84ec-4c8d-ae11-3dd8ab57e327", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "0dd79f55-84ec-4c8d-ae11-3dd8ab57e327", + "x-ms-routing-request-id": "WESTUS2:20210512T224006Z:0dd79f55-84ec-4c8d-ae11-3dd8ab57e327" }, "ResponseBody": [] }, @@ -679,7 +680,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a1d25747c450ca1ea50ed180981ca71", "x-ms-return-client-request-id": "true" }, @@ -688,17 +689,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:05 GMT", + "Date": "Wed, 12 May 2021 22:40:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb4866a5-1757-4357-9ceb-010bff65e480", - "x-ms-ratelimit-remaining-subscription-reads": "11718", - "x-ms-request-id": "cb4866a5-1757-4357-9ceb-010bff65e480", - "x-ms-routing-request-id": "WESTUS2:20210507T202706Z:cb4866a5-1757-4357-9ceb-010bff65e480" + "x-ms-correlation-request-id": "d17f2d3d-60bd-4b7a-9f56-0d74bf56e701", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "d17f2d3d-60bd-4b7a-9f56-0d74bf56e701", + "x-ms-routing-request-id": "WESTUS2:20210512T224007Z:d17f2d3d-60bd-4b7a-9f56-0d74bf56e701" }, "ResponseBody": [] }, @@ -707,7 +708,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d49264648bb7d8d8e4ff968c47bd7dc0", "x-ms-return-client-request-id": "true" }, @@ -716,17 +717,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:06 GMT", + "Date": "Wed, 12 May 2021 22:40:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5323e898-e41b-4d5d-8fed-eb23a6f12c06", - "x-ms-ratelimit-remaining-subscription-reads": "11717", - "x-ms-request-id": "5323e898-e41b-4d5d-8fed-eb23a6f12c06", - "x-ms-routing-request-id": "WESTUS2:20210507T202707Z:5323e898-e41b-4d5d-8fed-eb23a6f12c06" + "x-ms-correlation-request-id": "fef5b48d-a2f6-41b0-815d-ad9b68e278ab", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "fef5b48d-a2f6-41b0-815d-ad9b68e278ab", + "x-ms-routing-request-id": "WESTUS2:20210512T224008Z:fef5b48d-a2f6-41b0-815d-ad9b68e278ab" }, "ResponseBody": [] }, @@ -735,7 +736,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31b5a16da787562bb97af44df62da58c", "x-ms-return-client-request-id": "true" }, @@ -744,17 +745,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:07 GMT", + "Date": "Wed, 12 May 2021 22:40:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8121c514-496a-4acf-850c-c5ddbb3a0846", - "x-ms-ratelimit-remaining-subscription-reads": "11716", - "x-ms-request-id": "8121c514-496a-4acf-850c-c5ddbb3a0846", - "x-ms-routing-request-id": "WESTUS2:20210507T202708Z:8121c514-496a-4acf-850c-c5ddbb3a0846" + "x-ms-correlation-request-id": "0a4c10ac-9d82-4268-8123-4355ddccf7c7", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "0a4c10ac-9d82-4268-8123-4355ddccf7c7", + "x-ms-routing-request-id": "WESTUS2:20210512T224009Z:0a4c10ac-9d82-4268-8123-4355ddccf7c7" }, "ResponseBody": [] }, @@ -763,7 +764,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a005c62b5fce8fe4c446645e614c52c", "x-ms-return-client-request-id": "true" }, @@ -772,17 +773,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:08 GMT", + "Date": "Wed, 12 May 2021 22:40:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9166e65-b970-4400-bfa2-ba33a9aaef12", - "x-ms-ratelimit-remaining-subscription-reads": "11715", - "x-ms-request-id": "e9166e65-b970-4400-bfa2-ba33a9aaef12", - "x-ms-routing-request-id": "WESTUS2:20210507T202709Z:e9166e65-b970-4400-bfa2-ba33a9aaef12" + "x-ms-correlation-request-id": "d0c10623-75d5-44c0-9a2a-99325f8fc9f1", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "d0c10623-75d5-44c0-9a2a-99325f8fc9f1", + "x-ms-routing-request-id": "WESTUS2:20210512T224011Z:d0c10623-75d5-44c0-9a2a-99325f8fc9f1" }, "ResponseBody": [] }, @@ -791,7 +792,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "67ab2cd398ccbde9393b1a3c978ae2b6", "x-ms-return-client-request-id": "true" }, @@ -800,17 +801,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:09 GMT", + "Date": "Wed, 12 May 2021 22:40:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d799dc1e-d0a3-40c9-9700-acbc66b2f847", - "x-ms-ratelimit-remaining-subscription-reads": "11714", - "x-ms-request-id": "d799dc1e-d0a3-40c9-9700-acbc66b2f847", - "x-ms-routing-request-id": "WESTUS2:20210507T202710Z:d799dc1e-d0a3-40c9-9700-acbc66b2f847" + "x-ms-correlation-request-id": "e40de7b5-7b54-44df-9b72-2e87ac7d3bfb", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "e40de7b5-7b54-44df-9b72-2e87ac7d3bfb", + "x-ms-routing-request-id": "WESTUS2:20210512T224012Z:e40de7b5-7b54-44df-9b72-2e87ac7d3bfb" }, "ResponseBody": [] }, @@ -819,7 +820,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea2a095a33bdb8c4a3cce44240e56fa4", "x-ms-return-client-request-id": "true" }, @@ -828,17 +829,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:11 GMT", + "Date": "Wed, 12 May 2021 22:40:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f1672e6-00d7-49bd-93bb-4b22760ccde1", - "x-ms-ratelimit-remaining-subscription-reads": "11713", - "x-ms-request-id": "5f1672e6-00d7-49bd-93bb-4b22760ccde1", - "x-ms-routing-request-id": "WESTUS2:20210507T202711Z:5f1672e6-00d7-49bd-93bb-4b22760ccde1" + "x-ms-correlation-request-id": "6498a8e1-6400-449f-9047-5ed1e428416d", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "6498a8e1-6400-449f-9047-5ed1e428416d", + "x-ms-routing-request-id": "WESTUS2:20210512T224013Z:6498a8e1-6400-449f-9047-5ed1e428416d" }, "ResponseBody": [] }, @@ -847,7 +848,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c97ac7b53d82c9bf724210c09ac151c2", "x-ms-return-client-request-id": "true" }, @@ -856,17 +857,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:12 GMT", + "Date": "Wed, 12 May 2021 22:40:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "605f81e1-7fc5-4166-9d6f-75f386b022cf", - "x-ms-ratelimit-remaining-subscription-reads": "11712", - "x-ms-request-id": "605f81e1-7fc5-4166-9d6f-75f386b022cf", - "x-ms-routing-request-id": "WESTUS2:20210507T202712Z:605f81e1-7fc5-4166-9d6f-75f386b022cf" + "x-ms-correlation-request-id": "318b0010-c012-4d57-8f0c-8bbdbb6c61ec", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "318b0010-c012-4d57-8f0c-8bbdbb6c61ec", + "x-ms-routing-request-id": "WESTUS2:20210512T224014Z:318b0010-c012-4d57-8f0c-8bbdbb6c61ec" }, "ResponseBody": [] }, @@ -875,7 +876,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dcebb062daeaa06f68f2c4ffb4a77d53", "x-ms-return-client-request-id": "true" }, @@ -884,17 +885,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:13 GMT", + "Date": "Wed, 12 May 2021 22:40:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc72d25b-a768-47ed-bb07-f89983b0b7b4", - "x-ms-ratelimit-remaining-subscription-reads": "11711", - "x-ms-request-id": "cc72d25b-a768-47ed-bb07-f89983b0b7b4", - "x-ms-routing-request-id": "WESTUS2:20210507T202713Z:cc72d25b-a768-47ed-bb07-f89983b0b7b4" + "x-ms-correlation-request-id": "27b74655-3b1a-4a6f-8c42-9250b0045cc8", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "27b74655-3b1a-4a6f-8c42-9250b0045cc8", + "x-ms-routing-request-id": "WESTUS2:20210512T224015Z:27b74655-3b1a-4a6f-8c42-9250b0045cc8" }, "ResponseBody": [] }, @@ -903,7 +904,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cf8775cb19101c334960787b22041ee1", "x-ms-return-client-request-id": "true" }, @@ -912,17 +913,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:14 GMT", + "Date": "Wed, 12 May 2021 22:40:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "952c3fb4-6974-4644-b543-3bb0c4bb40e4", - "x-ms-ratelimit-remaining-subscription-reads": "11710", - "x-ms-request-id": "952c3fb4-6974-4644-b543-3bb0c4bb40e4", - "x-ms-routing-request-id": "WESTUS2:20210507T202714Z:952c3fb4-6974-4644-b543-3bb0c4bb40e4" + "x-ms-correlation-request-id": "9f026179-8809-4280-ace6-813fa200fbcd", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "9f026179-8809-4280-ace6-813fa200fbcd", + "x-ms-routing-request-id": "WESTUS2:20210512T224016Z:9f026179-8809-4280-ace6-813fa200fbcd" }, "ResponseBody": [] }, @@ -931,7 +932,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90e0227a92fadbba58da619079c015cb", "x-ms-return-client-request-id": "true" }, @@ -940,17 +941,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:15 GMT", + "Date": "Wed, 12 May 2021 22:40:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c43a6cca-d0ea-478a-8b1e-9e33e354056b", - "x-ms-ratelimit-remaining-subscription-reads": "11709", - "x-ms-request-id": "c43a6cca-d0ea-478a-8b1e-9e33e354056b", - "x-ms-routing-request-id": "WESTUS2:20210507T202715Z:c43a6cca-d0ea-478a-8b1e-9e33e354056b" + "x-ms-correlation-request-id": "644592b0-0beb-4cbe-a052-985887963baf", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "644592b0-0beb-4cbe-a052-985887963baf", + "x-ms-routing-request-id": "WESTUS2:20210512T224017Z:644592b0-0beb-4cbe-a052-985887963baf" }, "ResponseBody": [] }, @@ -959,24 +960,52 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "24f4bcc4823948b17ccf928962f37e63", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:18 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b5cd8a50-d27c-428c-8360-bbc6e09975cb", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "b5cd8a50-d27c-428c-8360-bbc6e09975cb", + "x-ms-routing-request-id": "WESTUS2:20210512T224018Z:b5cd8a50-d27c-428c-8360-bbc6e09975cb" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9185e3d4edc63859bbac7735b7a3a289", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:16 GMT", + "Date": "Wed, 12 May 2021 22:40:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3535bad6-0117-4ca4-a7f8-682635065b85", - "x-ms-ratelimit-remaining-subscription-reads": "11708", - "x-ms-request-id": "3535bad6-0117-4ca4-a7f8-682635065b85", - "x-ms-routing-request-id": "WESTUS2:20210507T202716Z:3535bad6-0117-4ca4-a7f8-682635065b85" + "x-ms-correlation-request-id": "357a728d-487d-471f-b679-aad44279c3ca", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "357a728d-487d-471f-b679-aad44279c3ca", + "x-ms-routing-request-id": "WESTUS2:20210512T224019Z:357a728d-487d-471f-b679-aad44279c3ca" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json index 68c86fb86797..5bffa96785ea 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json @@ -6,7 +6,6 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|ad80da2b-4d0c713138b5070e.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fa2ef457757d9b442c1db93ad69fe692", "x-ms-return-client-request-id": "true" @@ -17,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:11 GMT", + "Date": "Wed, 12 May 2021 22:39:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe33709d-8d17-4c94-a5ff-e93da0930fca", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "fe33709d-8d17-4c94-a5ff-e93da0930fca", - "x-ms-routing-request-id": "WESTUS2:20210507T002311Z:fe33709d-8d17-4c94-a5ff-e93da0930fca" + "x-ms-correlation-request-id": "5ba5bda8-2563-4382-b9e8-8c6ecaa68c9b", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "5ba5bda8-2563-4382-b9e8-8c6ecaa68c9b", + "x-ms-routing-request-id": "WESTUS2:20210512T223945Z:5ba5bda8-2563-4382-b9e8-8c6ecaa68c9b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-1bcc7ab9ef49e149a1efa63f598761d7-a8f3e0828383f54a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a4cfd661abb90642afcbe78f79634ae1-ed918daac2b2eb4b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5186692cac050d7d79a4b9d1fe39028a", "x-ms-return-client-request-id": "true" }, @@ -64,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:12 GMT", + "Date": "Wed, 12 May 2021 22:39:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44418ee9-daf2-475c-8104-1f5bc4e13095", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "44418ee9-daf2-475c-8104-1f5bc4e13095", - "x-ms-routing-request-id": "WESTUS2:20210507T002312Z:44418ee9-daf2-475c-8104-1f5bc4e13095" + "x-ms-correlation-request-id": "2a88fb42-e6ca-44c0-9f2a-9c3d445de215", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "2a88fb42-e6ca-44c0-9f2a-9c3d445de215", + "x-ms-routing-request-id": "WESTUS2:20210512T223947Z:2a88fb42-e6ca-44c0-9f2a-9c3d445de215" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9243", @@ -91,8 +90,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-54684f09b91b0242b3f7c1440aa189db-c4d297de3907ce48-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-485a0788497c5c4799daa749ec0d2506-a817c5613d9a6644-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "42ec7da7387011849116b5a7432ed035", "x-ms-return-client-request-id": "true" }, @@ -101,17 +100,939 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 00:23:12 GMT", + "Date": "Wed, 12 May 2021 22:39:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e100fcc2-f048-4b81-ba28-7de6ac09a719", + "x-ms-correlation-request-id": "17fc29a6-a608-4ac4-a3d0-86240492562e", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "e100fcc2-f048-4b81-ba28-7de6ac09a719", - "x-ms-routing-request-id": "WESTUS2:20210507T002312Z:e100fcc2-f048-4b81-ba28-7de6ac09a719" + "x-ms-request-id": "17fc29a6-a608-4ac4-a3d0-86240492562e", + "x-ms-routing-request-id": "WESTUS2:20210512T223947Z:17fc29a6-a608-4ac4-a3d0-86240492562e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "222fb0b64ff9f45ce475c0eff7d5c94a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5d7847b8-0029-4dfb-8237-1e9a6529f1ff", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "5d7847b8-0029-4dfb-8237-1e9a6529f1ff", + "x-ms-routing-request-id": "WESTUS2:20210512T223947Z:5d7847b8-0029-4dfb-8237-1e9a6529f1ff" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b51783d4b226eaef2ba5918333b487c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "59929bb8-dcb9-429c-a8b2-26217aaf1f4c", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "59929bb8-dcb9-429c-a8b2-26217aaf1f4c", + "x-ms-routing-request-id": "WESTUS2:20210512T223948Z:59929bb8-dcb9-429c-a8b2-26217aaf1f4c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "93f1d1e8aeff6a3cec1e6c25fc6250dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "83c00ae8-0c41-44e5-a66b-18e4b994df39", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "83c00ae8-0c41-44e5-a66b-18e4b994df39", + "x-ms-routing-request-id": "WESTUS2:20210512T223949Z:83c00ae8-0c41-44e5-a66b-18e4b994df39" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "06fbb92378b104bdc044f654bed8c12f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b3e16cdb-68a5-4ed6-bceb-896177adf505", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "b3e16cdb-68a5-4ed6-bceb-896177adf505", + "x-ms-routing-request-id": "WESTUS2:20210512T223950Z:b3e16cdb-68a5-4ed6-bceb-896177adf505" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2506f7ed36e3264b47adc90845c9edc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e6277399-3d9c-4d49-96ac-5b5a3deb7ca3", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "e6277399-3d9c-4d49-96ac-5b5a3deb7ca3", + "x-ms-routing-request-id": "WESTUS2:20210512T223951Z:e6277399-3d9c-4d49-96ac-5b5a3deb7ca3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "795fb45480b86f1613edd2bab7e8ab13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "806d8b56-a2a4-4085-bad2-f3d8b26a47ef", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "806d8b56-a2a4-4085-bad2-f3d8b26a47ef", + "x-ms-routing-request-id": "WESTUS2:20210512T223952Z:806d8b56-a2a4-4085-bad2-f3d8b26a47ef" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "04373c5c2b5bedf96ed5be04aeb5bef6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f038985d-cee0-492e-80a9-a2c720d852a3", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "f038985d-cee0-492e-80a9-a2c720d852a3", + "x-ms-routing-request-id": "WESTUS2:20210512T223953Z:f038985d-cee0-492e-80a9-a2c720d852a3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0aff2d5647796c76e19611f663906e5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "86a97667-35f1-4aed-b2b9-78b2e93c2504", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "86a97667-35f1-4aed-b2b9-78b2e93c2504", + "x-ms-routing-request-id": "WESTUS2:20210512T223954Z:86a97667-35f1-4aed-b2b9-78b2e93c2504" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "09abb602e892296dbb720ae3c212c05e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "363329ee-58ea-4629-b656-19805b87e0a3", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "363329ee-58ea-4629-b656-19805b87e0a3", + "x-ms-routing-request-id": "WESTUS2:20210512T223955Z:363329ee-58ea-4629-b656-19805b87e0a3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8963db2ea1e8159ac5ca23c5190289de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "329ac97b-faa7-4276-ae5c-9320b633ec3b", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "329ac97b-faa7-4276-ae5c-9320b633ec3b", + "x-ms-routing-request-id": "WESTUS2:20210512T223956Z:329ac97b-faa7-4276-ae5c-9320b633ec3b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f8015f66b5096e64c0d64e063c93aacf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b9c90b0b-a2e5-489a-915e-2598b59bd0a8", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "b9c90b0b-a2e5-489a-915e-2598b59bd0a8", + "x-ms-routing-request-id": "WESTUS2:20210512T223957Z:b9c90b0b-a2e5-489a-915e-2598b59bd0a8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "88c7b2d5e52c61761b9643c7c5a70fb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "16e3228f-2553-4202-bd29-34e16db90d39", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "16e3228f-2553-4202-bd29-34e16db90d39", + "x-ms-routing-request-id": "WESTUS2:20210512T223958Z:16e3228f-2553-4202-bd29-34e16db90d39" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "627c2ce8c810795476f5c9125293d831", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:58 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "91427bb8-2f12-446a-b780-b51ba6b76180", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "91427bb8-2f12-446a-b780-b51ba6b76180", + "x-ms-routing-request-id": "WESTUS2:20210512T223959Z:91427bb8-2f12-446a-b780-b51ba6b76180" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "67ef5320013b81b1e8a0dc73729da818", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:39:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "516a31aa-906f-43f2-9568-3333b9b77042", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "516a31aa-906f-43f2-9568-3333b9b77042", + "x-ms-routing-request-id": "WESTUS2:20210512T224000Z:516a31aa-906f-43f2-9568-3333b9b77042" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "101d95c648170dbe5d4e11361b640e88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d89fa6cd-7923-49cd-87ca-361f80696ab1", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "d89fa6cd-7923-49cd-87ca-361f80696ab1", + "x-ms-routing-request-id": "WESTUS2:20210512T224001Z:d89fa6cd-7923-49cd-87ca-361f80696ab1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "71a711bda8b8e77d7afa7a6febe107d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fafb9212-20a0-4043-8205-b1a55e5f2abf", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "fafb9212-20a0-4043-8205-b1a55e5f2abf", + "x-ms-routing-request-id": "WESTUS2:20210512T224002Z:fafb9212-20a0-4043-8205-b1a55e5f2abf" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bc4cb04dc875d81a94e109edf07b6583", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "342b587b-b58b-4f8a-b985-c2797a061eca", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "342b587b-b58b-4f8a-b985-c2797a061eca", + "x-ms-routing-request-id": "WESTUS2:20210512T224003Z:342b587b-b58b-4f8a-b985-c2797a061eca" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "60b6549136f61d601836951dcd4f227c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cbdcff29-6e7e-4797-973f-1b918b8bb5bd", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "cbdcff29-6e7e-4797-973f-1b918b8bb5bd", + "x-ms-routing-request-id": "WESTUS2:20210512T224004Z:cbdcff29-6e7e-4797-973f-1b918b8bb5bd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6be937465218f513f7cfdcd69f90f6ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "86179b35-2d25-4d17-a463-ee2b939442f3", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "86179b35-2d25-4d17-a463-ee2b939442f3", + "x-ms-routing-request-id": "WESTUS2:20210512T224005Z:86179b35-2d25-4d17-a463-ee2b939442f3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "96ddf694a62b16e3502ea43e33fd0a45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fb82dc52-3d41-4452-97a9-38c0d780fe36", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "fb82dc52-3d41-4452-97a9-38c0d780fe36", + "x-ms-routing-request-id": "WESTUS2:20210512T224006Z:fb82dc52-3d41-4452-97a9-38c0d780fe36" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b8a68cbffa923f6b41c069265a897d87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "32311653-0068-46df-a4bb-98b616e92790", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "32311653-0068-46df-a4bb-98b616e92790", + "x-ms-routing-request-id": "WESTUS2:20210512T224007Z:32311653-0068-46df-a4bb-98b616e92790" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d78895408b719f5154d21ae9add4c2fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "77be3d8c-a54e-46a6-a100-317781c352c4", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "77be3d8c-a54e-46a6-a100-317781c352c4", + "x-ms-routing-request-id": "WESTUS2:20210512T224008Z:77be3d8c-a54e-46a6-a100-317781c352c4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "121797c53de99a6d8a9e556a3dbcbcc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "55bfe1f3-9bea-4062-b232-9bdf86d5c54c", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "55bfe1f3-9bea-4062-b232-9bdf86d5c54c", + "x-ms-routing-request-id": "WESTUS2:20210512T224010Z:55bfe1f3-9bea-4062-b232-9bdf86d5c54c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9dfe1cb0327433d43b0664bfdf81916c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f59e233b-7571-42ad-9704-af63cf88515c", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "f59e233b-7571-42ad-9704-af63cf88515c", + "x-ms-routing-request-id": "WESTUS2:20210512T224011Z:f59e233b-7571-42ad-9704-af63cf88515c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c3616efe6b71029d27ee4cd336e76298", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1b7bec94-4103-49fe-ae71-43388614a708", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "1b7bec94-4103-49fe-ae71-43388614a708", + "x-ms-routing-request-id": "WESTUS2:20210512T224012Z:1b7bec94-4103-49fe-ae71-43388614a708" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9139531524d59285c2e4d7e3d9adba09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "98b96e41-b034-45f2-94f4-02c758051043", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "98b96e41-b034-45f2-94f4-02c758051043", + "x-ms-routing-request-id": "WESTUS2:20210512T224013Z:98b96e41-b034-45f2-94f4-02c758051043" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ce6be80cf95a45567efc7586e601fd54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e1190b14-3fb3-4c39-a71d-f0efbad5c33d", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "e1190b14-3fb3-4c39-a71d-f0efbad5c33d", + "x-ms-routing-request-id": "WESTUS2:20210512T224014Z:e1190b14-3fb3-4c39-a71d-f0efbad5c33d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8ca9cba40048da97e9cf008d93ba2879", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:14 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5e7d7ffc-92ee-4aa8-8b9d-695a9f13f092", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "5e7d7ffc-92ee-4aa8-8b9d-695a9f13f092", + "x-ms-routing-request-id": "WESTUS2:20210512T224015Z:5e7d7ffc-92ee-4aa8-8b9d-695a9f13f092" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4dc64234937b1c3dfdf312d9aeffabc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:16 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a10b2e6d-8c17-43cd-8d00-b9612b5ff696", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "a10b2e6d-8c17-43cd-8d00-b9612b5ff696", + "x-ms-routing-request-id": "WESTUS2:20210512T224016Z:a10b2e6d-8c17-43cd-8d00-b9612b5ff696" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0d3e83e62d030bc15191e58af9c8b1c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:16 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e5061103-8f7c-41ae-a1a8-c5caaf607905", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "e5061103-8f7c-41ae-a1a8-c5caaf607905", + "x-ms-routing-request-id": "WESTUS2:20210512T224017Z:e5061103-8f7c-41ae-a1a8-c5caaf607905" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a352fbd4b03a10d88e8d8f54edbd2bea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d91ed7d1-62c8-4e1e-ab7c-b2bf2e7deef2", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "d91ed7d1-62c8-4e1e-ab7c-b2bf2e7deef2", + "x-ms-routing-request-id": "WESTUS2:20210512T224018Z:d91ed7d1-62c8-4e1e-ab7c-b2bf2e7deef2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "10a63f241a7c067681bafbeaaeb22234", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:19 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "da1adc4c-feb1-4772-9215-bb34147b1a7e", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "da1adc4c-feb1-4772-9215-bb34147b1a7e", + "x-ms-routing-request-id": "WESTUS2:20210512T224019Z:da1adc4c-feb1-4772-9215-bb34147b1a7e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b3054f4108ac3686aa2d7f769d6c1e94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 12 May 2021 22:40:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fb7117cd-d5bf-4e0b-ab9e-339bde4c608b", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "fb7117cd-d5bf-4e0b-ab9e-339bde4c608b", + "x-ms-routing-request-id": "WESTUS2:20210512T224020Z:fb7117cd-d5bf-4e0b-ab9e-339bde4c608b" }, "ResponseBody": [] } From d94ab956b4071679a706c2ee13624676b8636bb2 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Wed, 12 May 2021 16:51:26 -0700 Subject: [PATCH 13/18] Fix the failing test StartExportTemplate --- .../Scenario/ResourceGroupOperationsTests.cs | 6 +- .../StartExportTemplate().json | 135 ++++++++++++++++++ .../StartExportTemplate()Async.json | 134 +++++++++++++++++ 3 files changed, 271 insertions(+), 4 deletions(-) create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs index 8883539e3887..2133e914c94b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs @@ -97,10 +97,8 @@ public async Task CheckExistence() public async Task StartExportTemplate() { ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var parameters = new ExportTemplateRequest - { - Options = "IncludeParameterDefaultValue: '', IncludeComments: '', SkipResourceNameParameterization: '', SkipAllParameterization: ''" - }; + var parameters = new ExportTemplateRequest(); + parameters.Resources.Add("*"); var expOp = await rg.StartExportTemplateAsync(parameters); await expOp.WaitForCompletionAsync(); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate().json new file mode 100644 index 000000000000..a83815b364d5 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate().json @@ -0,0 +1,135 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "32a6fdffa409e85e54962abd9f4da428", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 12 May 2021 23:49:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c93ce79d-d37e-42f1-9863-03d65c0f36c6", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "c93ce79d-d37e-42f1-9863-03d65c0f36c6", + "x-ms-routing-request-id": "WESTUS2:20210512T234942Z:c93ce79d-d37e-42f1-9863-03d65c0f36c6" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg1347?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-cba1945cf40aa945a147ede73c9e29b5-f4fe4e5232ee494d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "53b790c2f14b89997a170d4863d6892d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 12 May 2021 23:49:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2a086963-b664-4c2f-ab61-e48099dda320", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "2a086963-b664-4c2f-ab61-e48099dda320", + "x-ms-routing-request-id": "WESTUS2:20210512T234943Z:2a086963-b664-4c2f-ab61-e48099dda320" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1347", + "name": "testrg1347", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg1347/exportTemplate?api-version=2019-10-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "19", + "Content-Type": "application/json", + "traceparent": "00-aee9c06c39147c459838f636d33b94a9-463b4cc647854846-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "594eecb68e34fce18b82be33459d882a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "resources": [ + "*" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "179", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 12 May 2021 23:49:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e674a85d-30fb-43b9-a1eb-c2f2026e4a6b", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "e674a85d-30fb-43b9-a1eb-c2f2026e4a6b", + "x-ms-routing-request-id": "WESTUS2:20210512T234944Z:e674a85d-30fb-43b9-a1eb-c2f2026e4a6b" + }, + "ResponseBody": { + "template": { + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": {}, + "variables": {}, + "resources": [] + } + } + } + ], + "Variables": { + "RandomSeed": "644244967", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate()Async.json new file mode 100644 index 000000000000..248ba9ac1215 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate()Async.json @@ -0,0 +1,134 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6fee38b4babbfcaed8d6e0de49334574", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 12 May 2021 23:49:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f064cf20-e793-4c90-aaa1-486b68e2e617", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "f064cf20-e793-4c90-aaa1-486b68e2e617", + "x-ms-routing-request-id": "WESTUS2:20210512T234942Z:f064cf20-e793-4c90-aaa1-486b68e2e617" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg7061?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-c7eced9d98b7f54b9579c5b7d795b9d2-f0a5753321275341-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "173239ec56adb4fe4f511ef05d6e531a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 12 May 2021 23:49:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e63f0346-114e-45ee-a01f-8ec9a0082bc3", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "e63f0346-114e-45ee-a01f-8ec9a0082bc3", + "x-ms-routing-request-id": "WESTUS2:20210512T234943Z:e63f0346-114e-45ee-a01f-8ec9a0082bc3" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7061", + "name": "testrg7061", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg7061/exportTemplate?api-version=2019-10-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "19", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8e11aade18050faea4503f6ac6e148b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "resources": [ + "*" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "179", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 12 May 2021 23:49:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c59675c1-18ea-49bf-9b88-812069fe7a90", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "c59675c1-18ea-49bf-9b88-812069fe7a90", + "x-ms-routing-request-id": "WESTUS2:20210512T234944Z:c59675c1-18ea-49bf-9b88-812069fe7a90" + }, + "ResponseBody": { + "template": { + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": {}, + "variables": {}, + "resources": [] + } + } + } + ], + "Variables": { + "RandomSeed": "1775509539", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file From 4facd8c29932c9e1307d4aa86468383501c61fb5 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Thu, 13 May 2021 19:19:37 -0700 Subject: [PATCH 14/18] Address comments --- .../src/Generated/ResourceGroupOperations.cs | 49 +- .../{Generated => }/ResourceListOperations.cs | 0 .../{Generated => }/ResourceOperationsBase.cs | 0 .../Scenario/ResourceGroupOperationsTests.cs | 14 - .../CheckExistence().json | 1071 ---------------- .../CheckExistence()Async.json | 1073 ----------------- 6 files changed, 5 insertions(+), 2202 deletions(-) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/ResourceListOperations.cs (100%) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/{Generated => }/ResourceOperationsBase.cs (100%) delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/CheckExistence().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/CheckExistence()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs index 2523f7d2a8ca..36514b851a73 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs @@ -6,6 +6,7 @@ using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; +using Azure.Core; namespace Azure.ResourceManager.Core { @@ -75,40 +76,6 @@ protected ResourceGroupOperations(ResourceOperationsBase options, ResourceGroupR private ResourcesRestOperations GenericRestClient => new ResourcesRestOperations(Diagnostics, Pipeline, Id.SubscriptionId, BaseUri); - /// Checks whether a resource group exists. - /// The cancellation token to use. - public virtual Response CheckExistence(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.CheckExistence"); - scope.Start(); - try - { - return RestClient.CheckExistence(Id.Name, cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Checks whether a resource group exists. - /// The cancellation token to use. - public virtual async Task> CheckExistenceAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.CheckExistence"); - scope.Start(); - try - { - return await RestClient.CheckExistenceAsync(Id.Name, cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - /// /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. /// @@ -257,10 +224,8 @@ public override Response Get(CancellationToken cancellationToken try { - return new PhArmResponse(RestClient.Get(Id.Name, cancellationToken), g => - { - return new ResourceGroup(this, g); - }); + var result = RestClient.Get(Id.Name, cancellationToken); + return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); } catch (Exception e) { @@ -277,12 +242,8 @@ public override async Task> GetAsync(CancellationToken c try { - return new PhArmResponse( - await RestClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false), - g => - { - return new ResourceGroup(this, g); - }); + var result = await RestClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); } catch (Exception e) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceListOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceListOperations.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceListOperations.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceListOperations.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceOperationsBase.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs index 2133e914c94b..fb8d0daf76f6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs @@ -78,20 +78,6 @@ public async Task Update() Assert.AreEqual(rg1.Data.Tags, rg2.Data.Tags); } - [TestCase] - [RecordedTest] - public async Task CheckExistence() - { - var rgName = Recording.GenerateAssetName("testrg"); - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); - bool existence = await rg.CheckExistenceAsync(); - Assert.IsTrue(existence); - var deleteOp = await rg.StartDeleteAsync(); - await deleteOp.WaitForCompletionResponseAsync(); - existence = await rg.CheckExistenceAsync(); - Assert.IsFalse(existence); - } - [TestCase] [RecordedTest] public async Task StartExportTemplate() diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/CheckExistence().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/CheckExistence().json deleted file mode 100644 index e29449914000..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/CheckExistence().json +++ /dev/null @@ -1,1071 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dc8b8855c23b8e457f493e9ed65c719a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 21:12:52 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25696ce9-8a45-4759-b6eb-30cebb23c376", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "25696ce9-8a45-4759-b6eb-30cebb23c376", - "x-ms-routing-request-id": "WESTUS2:20210512T211253Z:25696ce9-8a45-4759-b6eb-30cebb23c376" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9528?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "traceparent": "00-66a1bb446c5d7a4e8d44c9cad606da2c-9588013868898a46-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ac71b715dbb701a57c6dab38a2b9df88", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 21:12:53 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c198074d-b39c-4247-8fad-d8d349ae63a3", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "c198074d-b39c-4247-8fad-d8d349ae63a3", - "x-ms-routing-request-id": "WESTUS2:20210512T211254Z:c198074d-b39c-4247-8fad-d8d349ae63a3" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9528", - "name": "testrg9528", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9528?api-version=2019-10-01", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2b77abb364eafd01e1f747fc437a1bc1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:53 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4676b25d-c4e6-4d0f-ab91-6db05cc8b05d", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "4676b25d-c4e6-4d0f-ab91-6db05cc8b05d", - "x-ms-routing-request-id": "WESTUS2:20210512T211254Z:4676b25d-c4e6-4d0f-ab91-6db05cc8b05d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9528?api-version=2019-10-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "be2fa5fee192ac9de5dabe559956dc90", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:53 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39a97a73-6f72-4438-a558-686714c9a9d2", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "39a97a73-6f72-4438-a558-686714c9a9d2", - "x-ms-routing-request-id": "WESTUS2:20210512T211254Z:39a97a73-6f72-4438-a558-686714c9a9d2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fc39ea512089d2f50dca450fa6ac648a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:53 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91ba651e-de22-40d9-af20-d4bb5fed217c", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "91ba651e-de22-40d9-af20-d4bb5fed217c", - "x-ms-routing-request-id": "WESTUS2:20210512T211254Z:91ba651e-de22-40d9-af20-d4bb5fed217c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2d9eb71a6a578fc7e37e091e16dd193d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:55 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed3688a4-a6d1-4620-b69e-b2bf2bc957d1", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "ed3688a4-a6d1-4620-b69e-b2bf2bc957d1", - "x-ms-routing-request-id": "WESTUS2:20210512T211255Z:ed3688a4-a6d1-4620-b69e-b2bf2bc957d1" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ae03bb1cdf1c3d062050a22e29b20a08", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:55 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "174148df-adda-4aa0-bfa7-893879691124", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "174148df-adda-4aa0-bfa7-893879691124", - "x-ms-routing-request-id": "WESTUS2:20210512T211256Z:174148df-adda-4aa0-bfa7-893879691124" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dca5400f900ae6ab22aa190b17d6bc30", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:57 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2893306-bc80-47b9-affa-0e8d985b711a", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "d2893306-bc80-47b9-affa-0e8d985b711a", - "x-ms-routing-request-id": "WESTUS2:20210512T211257Z:d2893306-bc80-47b9-affa-0e8d985b711a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ebf308b1b5a93a6eb0600c06c8996530", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:57 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fdf36c7-1eac-4a0b-9507-75dc83719e15", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "8fdf36c7-1eac-4a0b-9507-75dc83719e15", - "x-ms-routing-request-id": "WESTUS2:20210512T211258Z:8fdf36c7-1eac-4a0b-9507-75dc83719e15" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d50e00733d388c320f1c8b71c6fb264a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:58 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb4add9a-ff2b-47f9-bf13-4a728db51e18", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "fb4add9a-ff2b-47f9-bf13-4a728db51e18", - "x-ms-routing-request-id": "WESTUS2:20210512T211259Z:fb4add9a-ff2b-47f9-bf13-4a728db51e18" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "217d72941fbf5a5fd26a2ba983a51e89", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:00 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90530602-06ec-4dac-9e35-111f8b1476dd", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "90530602-06ec-4dac-9e35-111f8b1476dd", - "x-ms-routing-request-id": "WESTUS2:20210512T211300Z:90530602-06ec-4dac-9e35-111f8b1476dd" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1697e945e6c873f7d567db8d29fc74b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:01 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e417d02-083d-4299-8b98-d316ef90b580", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "1e417d02-083d-4299-8b98-d316ef90b580", - "x-ms-routing-request-id": "WESTUS2:20210512T211301Z:1e417d02-083d-4299-8b98-d316ef90b580" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5571c23a431b5470a1b402cd1189086a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:02 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86c42f71-3bfb-48c1-8d42-9f3fcc898241", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "86c42f71-3bfb-48c1-8d42-9f3fcc898241", - "x-ms-routing-request-id": "WESTUS2:20210512T211302Z:86c42f71-3bfb-48c1-8d42-9f3fcc898241" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dc2c02fe0f63ad817b094b5843d230d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:03 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2929c46a-b28c-40e4-8476-8364ba7d1f6b", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "2929c46a-b28c-40e4-8476-8364ba7d1f6b", - "x-ms-routing-request-id": "WESTUS2:20210512T211303Z:2929c46a-b28c-40e4-8476-8364ba7d1f6b" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c06e76f6c833016e78437413e42a624b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:04 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a59bb7ac-0e8a-47e0-bad1-d829e6064b2e", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "a59bb7ac-0e8a-47e0-bad1-d829e6064b2e", - "x-ms-routing-request-id": "WESTUS2:20210512T211304Z:a59bb7ac-0e8a-47e0-bad1-d829e6064b2e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "278e715e97d02b5140c4da12f71810cf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:05 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9294e678-0a5a-4a81-8f68-3943f2b62b2c", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "9294e678-0a5a-4a81-8f68-3943f2b62b2c", - "x-ms-routing-request-id": "WESTUS2:20210512T211305Z:9294e678-0a5a-4a81-8f68-3943f2b62b2c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9bd62c83471b3536932a64209a6dc950", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:06 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d77e917-105c-4bb4-898d-5556bc6036c6", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "8d77e917-105c-4bb4-898d-5556bc6036c6", - "x-ms-routing-request-id": "WESTUS2:20210512T211307Z:8d77e917-105c-4bb4-898d-5556bc6036c6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d2f900a709435f062543806eee5b0a5f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:07 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3bef77ff-002d-497f-897b-a2759491178a", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "3bef77ff-002d-497f-897b-a2759491178a", - "x-ms-routing-request-id": "WESTUS2:20210512T211308Z:3bef77ff-002d-497f-897b-a2759491178a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b790a532c75316303a5993a5323190d2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:08 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e983ac03-71d2-490f-8e14-5ebc9daf3678", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "e983ac03-71d2-490f-8e14-5ebc9daf3678", - "x-ms-routing-request-id": "WESTUS2:20210512T211309Z:e983ac03-71d2-490f-8e14-5ebc9daf3678" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f76b89fb3e1e7a8c267775d8c7c74738", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:09 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "240f21d5-fd7c-4cf1-935a-0adbef24c4f5", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "240f21d5-fd7c-4cf1-935a-0adbef24c4f5", - "x-ms-routing-request-id": "WESTUS2:20210512T211310Z:240f21d5-fd7c-4cf1-935a-0adbef24c4f5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f5ed042011dde0fdcfe297e975602cf3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:10 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1ac6b68-8d32-414f-beed-1001ed382607", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "e1ac6b68-8d32-414f-beed-1001ed382607", - "x-ms-routing-request-id": "WESTUS2:20210512T211311Z:e1ac6b68-8d32-414f-beed-1001ed382607" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6473adb212f0f440181691db51574f72", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:11 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89f8d7ac-6053-4e6c-9416-5b0b6c42feaf", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "89f8d7ac-6053-4e6c-9416-5b0b6c42feaf", - "x-ms-routing-request-id": "WESTUS2:20210512T211312Z:89f8d7ac-6053-4e6c-9416-5b0b6c42feaf" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2d855b129a44e9f58c8b273ca6a304c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:12 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac07fa3d-7bcf-4044-b8f8-0f7f4e04ebcb", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "ac07fa3d-7bcf-4044-b8f8-0f7f4e04ebcb", - "x-ms-routing-request-id": "WESTUS2:20210512T211313Z:ac07fa3d-7bcf-4044-b8f8-0f7f4e04ebcb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1a25824ae2530d47c4f8dcc780218e78", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:13 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "426332fc-7eaa-45d7-83af-3af2569199a2", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "426332fc-7eaa-45d7-83af-3af2569199a2", - "x-ms-routing-request-id": "WESTUS2:20210512T211314Z:426332fc-7eaa-45d7-83af-3af2569199a2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1ad62493feda17afb78ad865ea044d75", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:14 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "acfa7956-7504-44f0-9bfd-e2d29bf438bc", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "acfa7956-7504-44f0-9bfd-e2d29bf438bc", - "x-ms-routing-request-id": "WESTUS2:20210512T211315Z:acfa7956-7504-44f0-9bfd-e2d29bf438bc" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cf91cb1134312f1e1377694bbe2d686a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:15 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "692eed11-2d53-4687-8916-93fc41c574c0", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "692eed11-2d53-4687-8916-93fc41c574c0", - "x-ms-routing-request-id": "WESTUS2:20210512T211316Z:692eed11-2d53-4687-8916-93fc41c574c0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "82a8affceacc4cebd20e62c90ae223bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:16 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1ca2aa6-bf5f-420c-a964-c99c3095ab14", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "a1ca2aa6-bf5f-420c-a964-c99c3095ab14", - "x-ms-routing-request-id": "WESTUS2:20210512T211317Z:a1ca2aa6-bf5f-420c-a964-c99c3095ab14" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b5b667abbf905e4605a706629464598a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:17 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea4265d1-9705-4447-ada5-cb87fd11ea15", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "ea4265d1-9705-4447-ada5-cb87fd11ea15", - "x-ms-routing-request-id": "WESTUS2:20210512T211318Z:ea4265d1-9705-4447-ada5-cb87fd11ea15" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3a696e21cb5c26a9e044fd23d2552531", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:18 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b216716f-8e11-4180-816c-6e30d1f50640", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "b216716f-8e11-4180-816c-6e30d1f50640", - "x-ms-routing-request-id": "WESTUS2:20210512T211319Z:b216716f-8e11-4180-816c-6e30d1f50640" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "569faa54b3773dd969497c24e488b76d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a137840-1635-43bf-a426-50969acc5222", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "2a137840-1635-43bf-a426-50969acc5222", - "x-ms-routing-request-id": "WESTUS2:20210512T211320Z:2a137840-1635-43bf-a426-50969acc5222" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9ca8d8b4e878df63bd8fd54bc2228bb0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da4edd3a-79ab-4dd1-b406-8c3aab4dfcd2", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "da4edd3a-79ab-4dd1-b406-8c3aab4dfcd2", - "x-ms-routing-request-id": "WESTUS2:20210512T211321Z:da4edd3a-79ab-4dd1-b406-8c3aab4dfcd2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ea0ed48202c46d12942bd1124f844257", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92c7e15d-84ec-4571-a56b-20573d84be22", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "92c7e15d-84ec-4571-a56b-20573d84be22", - "x-ms-routing-request-id": "WESTUS2:20210512T211322Z:92c7e15d-84ec-4571-a56b-20573d84be22" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fa6e8f8d88ac6cb846c098e7de8d7a46", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce368822-2aa0-489b-8dcf-f3565a5ffef5", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "ce368822-2aa0-489b-8dcf-f3565a5ffef5", - "x-ms-routing-request-id": "WESTUS2:20210512T211323Z:ce368822-2aa0-489b-8dcf-f3565a5ffef5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0fa2cbbdcc7ab2a9c53a074c16519039", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f41e8b97-9620-4cb9-a9f8-796d3946cd56", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "f41e8b97-9620-4cb9-a9f8-796d3946cd56", - "x-ms-routing-request-id": "WESTUS2:20210512T211324Z:f41e8b97-9620-4cb9-a9f8-796d3946cd56" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "32be7d4d91b4f9031ca1a304692a8f07", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eae6dd24-5f2f-42c7-9b74-09add5a81519", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "eae6dd24-5f2f-42c7-9b74-09add5a81519", - "x-ms-routing-request-id": "WESTUS2:20210512T211325Z:eae6dd24-5f2f-42c7-9b74-09add5a81519" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5NTI4LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "83548ab132e2c0dde6bc3471806b56f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d04d6e66-20d8-4147-acfb-aa06688f9b4f", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "d04d6e66-20d8-4147-acfb-aa06688f9b4f", - "x-ms-routing-request-id": "WESTUS2:20210512T211326Z:d04d6e66-20d8-4147-acfb-aa06688f9b4f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9528?api-version=2019-10-01", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "609a5f3048cf2c92c7a8f3d828a4489b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "102", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 21:13:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3ab1736-c79d-4ea2-bf32-101bb629cce4", - "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "b3ab1736-c79d-4ea2-bf32-101bb629cce4", - "x-ms-routing-request-id": "WESTUS2:20210512T211326Z:b3ab1736-c79d-4ea2-bf32-101bb629cce4" - }, - "ResponseBody": [] - } - ], - "Variables": { - "RandomSeed": "2111307235", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/CheckExistence()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/CheckExistence()Async.json deleted file mode 100644 index 7d509ea6bbaa..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/CheckExistence()Async.json +++ /dev/null @@ -1,1073 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Request-Id": "|42dcd509-4d82d307cdd63d4b.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e56b252066a5b60bf4c9da730c9b32a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 21:12:53 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "683e03a2-4495-4ba1-9517-3289ddef8c4e", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "683e03a2-4495-4ba1-9517-3289ddef8c4e", - "x-ms-routing-request-id": "WESTUS2:20210512T211253Z:683e03a2-4495-4ba1-9517-3289ddef8c4e" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg582?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "traceparent": "00-a3c9496f6d0411429e73a5b0509c23a9-59a2d4b89f8d5045-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "64c1dbbb17f3fdeebef38db1e8ca5756", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "226", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 21:12:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bc22342-a1be-40f7-adf3-eb716d4fcda0", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "1bc22342-a1be-40f7-adf3-eb716d4fcda0", - "x-ms-routing-request-id": "WESTUS2:20210512T211254Z:1bc22342-a1be-40f7-adf3-eb716d4fcda0" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg582", - "name": "testrg582", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg582?api-version=2019-10-01", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8f29529c866a204c859068b204096f65-a4cf72e5afc6654f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "35ee98336bef0d17cd035f349f6fe38e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6aa1922-4bf8-4519-9da3-fa050912453d", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "a6aa1922-4bf8-4519-9da3-fa050912453d", - "x-ms-routing-request-id": "WESTUS2:20210512T211254Z:a6aa1922-4bf8-4519-9da3-fa050912453d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg582?api-version=2019-10-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ee28af57839a0d2c7ce7e7737e050bff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:54 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55effcb6-fb15-4880-8f22-7f3f0c709a38", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "55effcb6-fb15-4880-8f22-7f3f0c709a38", - "x-ms-routing-request-id": "WESTUS2:20210512T211254Z:55effcb6-fb15-4880-8f22-7f3f0c709a38" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3859fe1068a1afbc6ce1b90783a48fc8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:54 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1a403eb-11ab-48f2-9d55-6509199b8686", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "d1a403eb-11ab-48f2-9d55-6509199b8686", - "x-ms-routing-request-id": "WESTUS2:20210512T211254Z:d1a403eb-11ab-48f2-9d55-6509199b8686" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "82b15ff7e096e64a24d82ae6ec3b54c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:54 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5fc45d99-3171-4e73-bde6-aba08058c061", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "5fc45d99-3171-4e73-bde6-aba08058c061", - "x-ms-routing-request-id": "WESTUS2:20210512T211255Z:5fc45d99-3171-4e73-bde6-aba08058c061" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7f639989d3ab1a5e61299762b783cc1f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:56 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8bbd339b-7a5b-4b83-a88d-76a17d6ef483", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "8bbd339b-7a5b-4b83-a88d-76a17d6ef483", - "x-ms-routing-request-id": "WESTUS2:20210512T211256Z:8bbd339b-7a5b-4b83-a88d-76a17d6ef483" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "59f9cd24db082fb7b37214c93ed5c230", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:56 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "619dcf7c-d794-4dd1-98d0-25b7a270f331", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "619dcf7c-d794-4dd1-98d0-25b7a270f331", - "x-ms-routing-request-id": "WESTUS2:20210512T211257Z:619dcf7c-d794-4dd1-98d0-25b7a270f331" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ea7df68c0f41241d0096216d49e82ea0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:58 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9a4fc75-2063-45c9-9144-0db4e086218e", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "e9a4fc75-2063-45c9-9144-0db4e086218e", - "x-ms-routing-request-id": "WESTUS2:20210512T211258Z:e9a4fc75-2063-45c9-9144-0db4e086218e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1fc20a0bfa42aebae133cb38bf95dc8b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:59 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c550bbec-417e-4c4b-8537-17ea6771d1d0", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "c550bbec-417e-4c4b-8537-17ea6771d1d0", - "x-ms-routing-request-id": "WESTUS2:20210512T211259Z:c550bbec-417e-4c4b-8537-17ea6771d1d0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c1d56666e20614deb0d55871b94ae6cb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:12:59 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "784f8e8b-7f75-4539-aa0a-45b2993cc852", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "784f8e8b-7f75-4539-aa0a-45b2993cc852", - "x-ms-routing-request-id": "WESTUS2:20210512T211300Z:784f8e8b-7f75-4539-aa0a-45b2993cc852" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "33bd7344a31292ed3ccf080d44e4656b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:00 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "561fb1de-44f0-4df5-b2c7-124f22ad6a76", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "561fb1de-44f0-4df5-b2c7-124f22ad6a76", - "x-ms-routing-request-id": "WESTUS2:20210512T211301Z:561fb1de-44f0-4df5-b2c7-124f22ad6a76" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e20795ba6d12299a2cad6e6da148f597", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:01 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02916951-dc47-48e0-8e78-0a99161a405f", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "02916951-dc47-48e0-8e78-0a99161a405f", - "x-ms-routing-request-id": "WESTUS2:20210512T211302Z:02916951-dc47-48e0-8e78-0a99161a405f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4bf4004ca9d7c27978438537d9d0d0cc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:03 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84fdcc75-1d2e-4a1f-afbe-725002ab44f7", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "84fdcc75-1d2e-4a1f-afbe-725002ab44f7", - "x-ms-routing-request-id": "WESTUS2:20210512T211303Z:84fdcc75-1d2e-4a1f-afbe-725002ab44f7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "23b6ed700443d6b8d89306653580f0f3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:04 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b2da43d-259c-4c16-b09c-9eaf1bb629c6", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "8b2da43d-259c-4c16-b09c-9eaf1bb629c6", - "x-ms-routing-request-id": "WESTUS2:20210512T211304Z:8b2da43d-259c-4c16-b09c-9eaf1bb629c6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "43c071d919ef11931c4469cfe8634f5b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:05 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bed4e1aa-585e-463e-9b8f-9b99ab2075fd", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "bed4e1aa-585e-463e-9b8f-9b99ab2075fd", - "x-ms-routing-request-id": "WESTUS2:20210512T211305Z:bed4e1aa-585e-463e-9b8f-9b99ab2075fd" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b4fda1dcd1914854471e7344a2138cf8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:06 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5fabcb1a-70f8-4c2f-b067-34b4c4c26b67", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "5fabcb1a-70f8-4c2f-b067-34b4c4c26b67", - "x-ms-routing-request-id": "WESTUS2:20210512T211306Z:5fabcb1a-70f8-4c2f-b067-34b4c4c26b67" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "685d91528d1056dd59a506fe9ae8ee74", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:07 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ccd64b56-222b-48b8-b521-7d0a2e3b11d4", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "ccd64b56-222b-48b8-b521-7d0a2e3b11d4", - "x-ms-routing-request-id": "WESTUS2:20210512T211307Z:ccd64b56-222b-48b8-b521-7d0a2e3b11d4" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9488ab443b8308611c78fbd1a54f6f09", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:08 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92276b3a-9632-489a-9e00-d0bf0fe201aa", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "92276b3a-9632-489a-9e00-d0bf0fe201aa", - "x-ms-routing-request-id": "WESTUS2:20210512T211308Z:92276b3a-9632-489a-9e00-d0bf0fe201aa" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "567d71b8e7064f4bc4a65becca56ad5f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:09 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6deef6c8-95dc-4000-964c-deeac1c3b2fb", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "6deef6c8-95dc-4000-964c-deeac1c3b2fb", - "x-ms-routing-request-id": "WESTUS2:20210512T211310Z:6deef6c8-95dc-4000-964c-deeac1c3b2fb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f6fffe2ff88a16742f544c97910bb109", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:10 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4286764b-08d4-48a9-95ae-a59a299f3741", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "4286764b-08d4-48a9-95ae-a59a299f3741", - "x-ms-routing-request-id": "WESTUS2:20210512T211311Z:4286764b-08d4-48a9-95ae-a59a299f3741" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2946fd36976b5d6e5f39cfdde0753dc6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:11 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc7fe98c-6290-414c-916d-e575ba0c43ba", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "fc7fe98c-6290-414c-916d-e575ba0c43ba", - "x-ms-routing-request-id": "WESTUS2:20210512T211312Z:fc7fe98c-6290-414c-916d-e575ba0c43ba" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a6a19cca784fbf7efc6627b19bb3beb8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:12 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb4db0eb-038e-4736-9a17-1a3b484d7d72", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "cb4db0eb-038e-4736-9a17-1a3b484d7d72", - "x-ms-routing-request-id": "WESTUS2:20210512T211313Z:cb4db0eb-038e-4736-9a17-1a3b484d7d72" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cdb551f4841098f390a29751289736ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:13 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c7dac8c-59fa-46c8-aa1d-fe301e87143e", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "4c7dac8c-59fa-46c8-aa1d-fe301e87143e", - "x-ms-routing-request-id": "WESTUS2:20210512T211314Z:4c7dac8c-59fa-46c8-aa1d-fe301e87143e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f4cd85170a6abeb97f862d0470bcc2ac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:14 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "243639b3-bb67-4214-87eb-593019ed9895", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "243639b3-bb67-4214-87eb-593019ed9895", - "x-ms-routing-request-id": "WESTUS2:20210512T211315Z:243639b3-bb67-4214-87eb-593019ed9895" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8ee8177a70bf45b6a80916ade12c9664", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:15 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "497111f3-39bf-4994-bbd8-b6e426cab6f5", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "497111f3-39bf-4994-bbd8-b6e426cab6f5", - "x-ms-routing-request-id": "WESTUS2:20210512T211316Z:497111f3-39bf-4994-bbd8-b6e426cab6f5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "159a6c30cae6ea4e98f74e8957ef28d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:16 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d6a37ae-c825-40a9-9bd8-f5d49da5f813", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "4d6a37ae-c825-40a9-9bd8-f5d49da5f813", - "x-ms-routing-request-id": "WESTUS2:20210512T211317Z:4d6a37ae-c825-40a9-9bd8-f5d49da5f813" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "11d7eae0a7afa7facf874b60f40cdd52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:17 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99ac09b2-1acc-4f41-bd3d-37417768f2e7", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "99ac09b2-1acc-4f41-bd3d-37417768f2e7", - "x-ms-routing-request-id": "WESTUS2:20210512T211318Z:99ac09b2-1acc-4f41-bd3d-37417768f2e7" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "03d4c8efac22b0c6c8fef6c8212ceeb9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:18 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59270a1a-9aa3-45c4-af3f-60034c822434", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "59270a1a-9aa3-45c4-af3f-60034c822434", - "x-ms-routing-request-id": "WESTUS2:20210512T211319Z:59270a1a-9aa3-45c4-af3f-60034c822434" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f6cc42e1855488b572f3455e7eedf58b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd501335-a0ea-48bc-a3bf-4eb6a1d02d35", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "fd501335-a0ea-48bc-a3bf-4eb6a1d02d35", - "x-ms-routing-request-id": "WESTUS2:20210512T211320Z:fd501335-a0ea-48bc-a3bf-4eb6a1d02d35" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8e9afb19241a34b1242648b0b13185a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "657af3ea-16df-4c2e-8655-3f565d9b22be", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "657af3ea-16df-4c2e-8655-3f565d9b22be", - "x-ms-routing-request-id": "WESTUS2:20210512T211321Z:657af3ea-16df-4c2e-8655-3f565d9b22be" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b27f9298e7406afd124c902e666732db", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15c36239-126c-4469-af8c-354cb3d154bb", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "15c36239-126c-4469-af8c-354cb3d154bb", - "x-ms-routing-request-id": "WESTUS2:20210512T211322Z:15c36239-126c-4469-af8c-354cb3d154bb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "26af6a085f92bc9f9198d22d3c04d641", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9953fae7-73fa-4e70-ad4e-508c39acbc92", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "9953fae7-73fa-4e70-ad4e-508c39acbc92", - "x-ms-routing-request-id": "WESTUS2:20210512T211323Z:9953fae7-73fa-4e70-ad4e-508c39acbc92" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ecc5a26d436d324bfd2f7ccd9482cdbc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5dd2e1c-707b-42f6-a002-6c449b0bc00f", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "a5dd2e1c-707b-42f6-a002-6c449b0bc00f", - "x-ms-routing-request-id": "WESTUS2:20210512T211324Z:a5dd2e1c-707b-42f6-a002-6c449b0bc00f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "47a86df45f813810f2c321a814cf2e0d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6935b713-9a29-4cdb-b3c2-f3022003da9c", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "6935b713-9a29-4cdb-b3c2-f3022003da9c", - "x-ms-routing-request-id": "WESTUS2:20210512T211325Z:6935b713-9a29-4cdb-b3c2-f3022003da9c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc1ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c4c04e7645a2c56d1e7d2862e3d1280e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 21:13:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10e73c09-42fa-46fd-ac47-00e6506c2a3c", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "10e73c09-42fa-46fd-ac47-00e6506c2a3c", - "x-ms-routing-request-id": "WESTUS2:20210512T211326Z:10e73c09-42fa-46fd-ac47-00e6506c2a3c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg582?api-version=2019-10-01", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cf3916ca8e5c0ebf918cf9aa22a31d2d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "101", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 21:13:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2edda27-e7d7-4b9d-a245-36daa63d737e", - "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "b2edda27-e7d7-4b9d-a245-36daa63d737e", - "x-ms-routing-request-id": "WESTUS2:20210512T211326Z:b2edda27-e7d7-4b9d-a245-36daa63d737e" - }, - "ResponseBody": [] - } - ], - "Variables": { - "RandomSeed": "254278106", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file From ba541ffa213704223cfdd8fb782005ecf9ac6c8b Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Tue, 18 May 2021 16:38:57 -0700 Subject: [PATCH 15/18] Change tag lro operations to return its lro type --- .../src/Generated/ResourceGroupOperations.cs | 84 ++++++------------- .../ResourceGroupUpdateTagOperation.cs | 72 ++++++++++++++++ .../Generated/ResourceGroupsRestOperations.cs | 16 ++-- 3 files changed, 107 insertions(+), 65 deletions(-) create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupUpdateTagOperation.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs index 36514b851a73..6f87c491ef47 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs @@ -13,8 +13,7 @@ namespace Azure.ResourceManager.Core /// /// A class representing the operations that can be performed over a specific ResourceGroup. /// - public class ResourceGroupOperations : ResourceOperationsBase, - ITaggableResource + public class ResourceGroupOperations : ResourceOperationsBase { /// /// Name of the CreateOrUpdate() method in [Resource]Container classes. @@ -261,10 +260,8 @@ public virtual Response Update(ResourceGroupPatchable parameters, scope.Start(); try { - return new PhArmResponse(RestClient.Update(Id.Name, parameters, cancellationToken), g => - { - return new ResourceGroup(this, g); - }); + var result = RestClient.Update(Id.Name, parameters, cancellationToken); + return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); } catch (Exception e) { @@ -282,12 +279,8 @@ public virtual async Task> UpdateAsync(ResourceGroupPatc scope.Start(); try { - return new PhArmResponse( - await RestClient.UpdateAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false), - g => - { - return new ResourceGroup(this, g); - }); + var result = await RestClient.UpdateAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); } catch (Exception e) { @@ -317,10 +310,8 @@ public virtual Response AddTag(string key, string value, Cancella var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags[key] = value; - return new PhArmResponse(RestClient.Update(Id.Name, patch, cancellationToken), g => - { - return new ResourceGroup(this, g); - }); + var result = RestClient.Update(Id.Name, patch, cancellationToken); + return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); } catch (Exception e) { @@ -350,11 +341,8 @@ public virtual async Task> AddTagAsync(string key, strin var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags[key] = value; - return new PhArmResponse( - await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), g => - { - return new ResourceGroup(this, g); - }); + var result = await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); } catch (Exception e) { @@ -373,7 +361,7 @@ await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(f /// /// Details on long running operation object. /// - public virtual Operation StartAddTag(string key, string value, CancellationToken cancellationToken = default) + public virtual ResourceGroupUpdateTagOperation StartAddTag(string key, string value, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); @@ -387,10 +375,8 @@ public virtual Operation StartAddTag(string key, string value, Ca var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags[key] = value; - return new PhArmOperation(RestClient.Update(Id.Name, patch, cancellationToken), g => - { - return new ResourceGroup(this, g); - }); + var originalResponse = RestClient.Update(Id.Name, patch, cancellationToken); + return new ResourceGroupUpdateTagOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateRequest(Id.Name, patch).Request, originalResponse.GetRawResponse()); } catch (Exception e) { @@ -409,7 +395,7 @@ public virtual Operation StartAddTag(string key, string value, Ca /// /// Details on long running operation object. /// - public virtual async Task> StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) + public virtual async Task StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); @@ -423,12 +409,8 @@ public virtual async Task> StartAddTagAsync(string key, var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags[key] = value; - return new PhArmOperation( - await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), - g => - { - return new ResourceGroup(this, g); - }); + var originalResponse = await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false); + return new ResourceGroupUpdateTagOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateRequest(Id.Name, patch).Request, originalResponse.GetRawResponse()); } catch (Exception e) { @@ -570,7 +552,7 @@ await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(f /// /// Details on long running operation object. /// - public virtual Operation StartSetTags(IDictionary tags, CancellationToken cancellationToken = default) + public virtual ResourceGroupUpdateTagOperation StartSetTags(IDictionary tags, CancellationToken cancellationToken = default) { if (tags == null) throw new ArgumentNullException(nameof(tags)); @@ -583,10 +565,8 @@ public virtual Operation StartSetTags(IDictionary var resource = GetResource(cancellationToken); var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(tags); - return new PhArmOperation(RestClient.Update(Id.Name, patch, cancellationToken), g => - { - return new ResourceGroup(this, g); - }); + var originalResponse = RestClient.Update(Id.Name, patch, cancellationToken); + return new ResourceGroupUpdateTagOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateRequest(Id.Name, patch).Request, originalResponse.GetRawResponse()); } catch (Exception e) { @@ -604,7 +584,7 @@ public virtual Operation StartSetTags(IDictionary /// /// Details on long running operation object. /// - public virtual async Task> StartSetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) + public virtual async Task StartSetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) { if (tags == null) throw new ArgumentNullException(nameof(tags)); @@ -617,12 +597,8 @@ public virtual async Task> StartSetTagsAsync(IDictionar ResourceGroup resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(tags); - return new PhArmOperation( - await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), - g => - { - return new ResourceGroup(this, g); - }); + var originalResponse = await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false); + return new ResourceGroupUpdateTagOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateRequest(Id.Name, patch).Request, originalResponse.GetRawResponse()); } catch (Exception e) { @@ -706,7 +682,7 @@ await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(f /// /// Details on long running operation object. /// - public virtual Operation StartRemoveTag(string key, CancellationToken cancellationToken = default) + public virtual ResourceGroupUpdateTagOperation StartRemoveTag(string key, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); @@ -720,10 +696,8 @@ public virtual Operation StartRemoveTag(string key, CancellationT var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags.Remove(key); - return new PhArmOperation(RestClient.Update(Id.Name, patch, cancellationToken), g => - { - return new ResourceGroup(this, g); - }); + var originalResponse = RestClient.Update(Id.Name, patch, cancellationToken); + return new ResourceGroupUpdateTagOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateRequest(Id.Name, patch).Request, originalResponse.GetRawResponse()); } catch (Exception e) { @@ -741,7 +715,7 @@ public virtual Operation StartRemoveTag(string key, CancellationT /// /// Details on long running operation object. /// - public virtual async Task> StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) + public virtual async Task StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); @@ -755,12 +729,8 @@ public virtual async Task> StartRemoveTagAsync(string k var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags.Remove(key); - return new PhArmOperation( - await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), - g => - { - return new ResourceGroup(this, g); - }); + var originalResponse = await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false); + return new ResourceGroupUpdateTagOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateRequest(Id.Name, patch).Request, originalResponse.GetRawResponse()); } catch (Exception e) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupUpdateTagOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupUpdateTagOperation.cs new file mode 100644 index 000000000000..61f8b97c706d --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupUpdateTagOperation.cs @@ -0,0 +1,72 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.ResourceManager.Core +{ + /// Updates resource group tag. + public class ResourceGroupUpdateTagOperation : Operation, IOperationSource + { + private readonly OperationOrResponseInternals _operation; + private readonly ResourceOperationsBase _parentOperation; + + /// Initializes a new instance of ResourceGroupUpdateTagOperation for mocking. + protected ResourceGroupUpdateTagOperation() + { + } + + internal ResourceGroupUpdateTagOperation(ResourceOperationsBase parentOperation, ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new OperationOrResponseInternals(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "ResourceGroupAddTagOperation"); + _parentOperation = parentOperation; + } + /// + public override string Id => ""; + + /// + public override ResourceGroup Value => _operation.Value; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override bool HasValue => _operation.HasValue; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); + + ResourceGroup IOperationSource.CreateResult(Response response, CancellationToken cancellationToken) + { + using var document = JsonDocument.Parse(response.ContentStream); + return new ResourceGroup(_parentOperation, ResourceGroupData.DeserializeResourceGroup(document.RootElement)); + } + + async ValueTask IOperationSource.CreateResultAsync(Response response, CancellationToken cancellationToken) + { + using var document = await JsonDocument.ParseAsync(response.ContentStream, default, cancellationToken).ConfigureAwait(false); + return new ResourceGroup(_parentOperation, ResourceGroupData.DeserializeResourceGroup(document.RootElement)); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsRestOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsRestOperations.cs index aae5e5356d7c..9c13ceca8895 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsRestOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsRestOperations.cs @@ -41,7 +41,7 @@ public ResourceGroupsRestOperations(ClientDiagnostics clientDiagnostics, HttpPip _pipeline = pipeline; } - internal Azure.Core.HttpMessage CreateCheckExistenceRequest(string resourceGroupName) + internal HttpMessage CreateCheckExistenceRequest(string resourceGroupName) { var message = _pipeline.CreateMessage(); var request = message.Request; @@ -118,7 +118,7 @@ public Response CheckExistence(string resourceGroupName, CancellationToken } } - internal Azure.Core.HttpMessage CreateCreateOrUpdateRequest(string resourceGroupName, ResourceGroupData parameters) + internal HttpMessage CreateCreateOrUpdateRequest(string resourceGroupName, ResourceGroupData parameters) { var message = _pipeline.CreateMessage(); var request = message.Request; @@ -205,7 +205,7 @@ public Response CreateOrUpdate(string resourceGroupName, Reso } } - internal Azure.Core.HttpMessage CreateDeleteRequest(string resourceGroupName) + internal HttpMessage CreateDeleteRequest(string resourceGroupName) { var message = _pipeline.CreateMessage(); var request = message.Request; @@ -268,7 +268,7 @@ public Response Delete(string resourceGroupName, CancellationToken cancellationT } } - internal Azure.Core.HttpMessage CreateGetRequest(string resourceGroupName) + internal HttpMessage CreateGetRequest(string resourceGroupName) { var message = _pipeline.CreateMessage(); var request = message.Request; @@ -339,7 +339,7 @@ public Response Get(string resourceGroupName, CancellationTok } } - internal Azure.Core.HttpMessage CreateUpdateRequest(string resourceGroupName, ResourceGroupPatchable parameters) + internal HttpMessage CreateUpdateRequest(string resourceGroupName, ResourceGroupPatchable parameters) { var message = _pipeline.CreateMessage(); var request = message.Request; @@ -425,7 +425,7 @@ public Response Update(string resourceGroupName, ResourceGrou } } - internal Azure.Core.HttpMessage CreateExportTemplateRequest(string resourceGroupName, ExportTemplateRequest parameters) + internal HttpMessage CreateExportTemplateRequest(string resourceGroupName, ExportTemplateRequest parameters) { var message = _pipeline.CreateMessage(); var request = message.Request; @@ -503,7 +503,7 @@ public Response ExportTemplate(string resourceGroupName, ExportTemplateRequest p } } - internal Azure.Core.HttpMessage CreateListRequest(string filter, int? top) + internal HttpMessage CreateListRequest(string filter, int? top) { var message = _pipeline.CreateMessage(); var request = message.Request; @@ -571,7 +571,7 @@ public Response List(string filter = null, int? top = n } } - internal Azure.Core.HttpMessage CreateListNextPageRequest(string nextLink, string filter, int? top) + internal HttpMessage CreateListNextPageRequest(string nextLink, string filter, int? top) { var message = _pipeline.CreateMessage(); var request = message.Request; From e0af75254416835d5c287c3ece797fb846627044 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Tue, 18 May 2021 17:58:51 -0700 Subject: [PATCH 16/18] Change rg CreateOrUpdate lro operations to return its lro object --- .../src/Generated/ResourceGroupContainer.cs | 39 +++------ .../ResourceGroupCreateOrUpdateOperation.cs | 73 +++++++++++++++++ .../src/Generated/ResourceGroupOperations.cs | 80 ++++++------------- .../ResourceGroupUpdateTagOperation.cs | 2 +- 4 files changed, 111 insertions(+), 83 deletions(-) create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupCreateOrUpdateOperation.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs index 4ecf8c9a23be..485e87eb5830 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs @@ -86,10 +86,8 @@ public Response CreateOrUpdate(string name, ResourceGroupData res try { - var response = RestClient.CreateOrUpdate(name, resourceDetails, cancellationToken); - return new PhArmResponse( - response, - g => new ResourceGroup(Parent, g)); + var operation = StartCreateOrUpdate(name, resourceDetails, cancellationToken); + return operation.WaitForCompletion(cancellationToken); } catch (Exception e) { @@ -119,10 +117,8 @@ public virtual async Task> CreateOrUpdateAsync(string na try { - var response = await RestClient.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).ConfigureAwait(false); - return new PhArmResponse( - response, - g => new ResourceGroup(Parent, g)); + var operation = await StartCreateOrUpdateAsync(name, resourceDetails, cancellationToken).ConfigureAwait(false); + return await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); } catch (Exception e) { @@ -143,7 +139,7 @@ public virtual async Task> CreateOrUpdateAsync(string na /// /// Name of the resource group cannot be null or a whitespace. /// resourceDetails cannot be null. - public Operation StartCreateOrUpdate(string name, ResourceGroupData resourceDetails, CancellationToken cancellationToken = default) + public ResourceGroupCreateOrUpdateOperation StartCreateOrUpdate(string name, ResourceGroupData resourceDetails, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(name)) throw new ArgumentException("name cannot be null or a whitespace.", nameof(name)); @@ -155,9 +151,8 @@ public Operation StartCreateOrUpdate(string name, ResourceGroupDa try { - return new PhArmOperation( - RestClient.CreateOrUpdate(name, resourceDetails, cancellationToken), - g => new ResourceGroup(Parent, g)); + var originalResponse = RestClient.CreateOrUpdate(name, resourceDetails, cancellationToken); + return new ResourceGroupCreateOrUpdateOperation(this, Diagnostics, Pipeline, RestClient.CreateCreateOrUpdateRequest(name, resourceDetails).Request, originalResponse.GetRawResponse()); } catch (Exception e) { @@ -178,7 +173,7 @@ public Operation StartCreateOrUpdate(string name, ResourceGroupDa /// /// Name of the resource group cannot be null or a whitespace. /// resourceDetails cannot be null. - public virtual async Task> StartCreateOrUpdateAsync(string name, ResourceGroupData resourceDetails, CancellationToken cancellationToken = default) + public virtual async Task StartCreateOrUpdateAsync(string name, ResourceGroupData resourceDetails, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(name)) throw new ArgumentException("name cannot be null or a whitespace.", nameof(name)); @@ -190,9 +185,8 @@ public virtual async Task> StartCreateOrUpdateAsync(str try { - return new PhArmOperation( - await RestClient.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).ConfigureAwait(false), - g => new ResourceGroup(Parent, g)); + var originalResponse = await RestClient.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).ConfigureAwait(false); + return new ResourceGroupCreateOrUpdateOperation(this, Diagnostics, Pipeline, RestClient.CreateCreateOrUpdateRequest(name, resourceDetails).Request, originalResponse.GetRawResponse()); } catch (Exception e) { @@ -291,10 +285,8 @@ public override Response Get(string resourceGroupName, Cancellati try { - return new PhArmResponse(RestClient.Get(resourceGroupName, cancellationToken), g => - { - return new ResourceGroup(Parent, g); - }); + var result = RestClient.Get(resourceGroupName, cancellationToken); + return Response.FromValue(new ResourceGroup(Parent, result), result.GetRawResponse()); } catch (Exception e) { @@ -312,12 +304,7 @@ public override async Task> GetAsync(string resourceGrou try { var result = await RestClient.GetAsync(resourceGroupName, cancellationToken).ConfigureAwait(false); - return new PhArmResponse( - result, - g => - { - return new ResourceGroup(Parent, g); - }); + return Response.FromValue(new ResourceGroup(Parent, result), result.GetRawResponse()); } catch (Exception e) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupCreateOrUpdateOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupCreateOrUpdateOperation.cs new file mode 100644 index 000000000000..aba4e6f9e2f2 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupCreateOrUpdateOperation.cs @@ -0,0 +1,73 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.ResourceManager.Core +{ + /// Create or update a resource group. + public class ResourceGroupCreateOrUpdateOperation : Operation, IOperationSource + { + private readonly OperationOrResponseInternals _operation; + private readonly OperationsBase _parentOperation; + + /// Initializes a new instance of ResourcesCreateOrUpdateByIdOperation for mocking. + protected ResourceGroupCreateOrUpdateOperation() + { + } + + internal ResourceGroupCreateOrUpdateOperation(OperationsBase parentOperation, ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + { + _operation = new OperationOrResponseInternals(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "ResourceGroupCreateOrUpdateOperation"); + _parentOperation = parentOperation; + } + /// + public override string Id => ""; + + /// + public override ResourceGroup Value => _operation.Value; + + /// + public override bool HasCompleted => _operation.HasCompleted; + + /// + public override bool HasValue => _operation.HasValue; + + /// + public override Response GetRawResponse() => _operation.GetRawResponse(); + + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); + + /// + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); + + /// + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); + + ResourceGroup IOperationSource.CreateResult(Response response, CancellationToken cancellationToken) + { + using var document = JsonDocument.Parse(response.ContentStream); + return new ResourceGroup((ResourceOperationsBase)_parentOperation, ResourceGroupData.DeserializeResourceGroup(document.RootElement)); + } + + async ValueTask IOperationSource.CreateResultAsync(Response response, CancellationToken cancellationToken) + { + using var document = await JsonDocument.ParseAsync(response.ContentStream, default, cancellationToken).ConfigureAwait(false); + return new ResourceGroup((ResourceOperationsBase)_parentOperation, ResourceGroupData.DeserializeResourceGroup(document.RootElement)); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs index 6f87c491ef47..1c9d394bdf9e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs @@ -87,7 +87,8 @@ public virtual Response Delete(CancellationToken cancellationToken = default) try { - return RestClient.Delete(Id.Name, cancellationToken); + var operation = StartDelete(cancellationToken); + return operation.WaitForCompletion(cancellationToken); } catch (Exception e) { @@ -108,7 +109,8 @@ public virtual async Task DeleteAsync(CancellationToken cancellationTo try { - return await RestClient.DeleteAsync(Id.Name, cancellationToken).ConfigureAwait(false); + var operation = await StartDeleteAsync(cancellationToken).ConfigureAwait(false); + return await operation.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); } catch (Exception e) { @@ -223,8 +225,8 @@ public override Response Get(CancellationToken cancellationToken try { - var result = RestClient.Get(Id.Name, cancellationToken); - return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); + var originalResponse = RestClient.Get(Id.Name, cancellationToken); + return Response.FromValue(new ResourceGroup(this, originalResponse), originalResponse.GetRawResponse()); } catch (Exception e) { @@ -241,8 +243,8 @@ public override async Task> GetAsync(CancellationToken c try { - var result = await RestClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); + var originalResponse = await RestClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new ResourceGroup(this, originalResponse), originalResponse.GetRawResponse()); } catch (Exception e) { @@ -260,8 +262,8 @@ public virtual Response Update(ResourceGroupPatchable parameters, scope.Start(); try { - var result = RestClient.Update(Id.Name, parameters, cancellationToken); - return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); + var originalResponse = RestClient.Update(Id.Name, parameters, cancellationToken); + return Response.FromValue(new ResourceGroup(this, originalResponse), originalResponse.GetRawResponse()); } catch (Exception e) { @@ -279,8 +281,8 @@ public virtual async Task> UpdateAsync(ResourceGroupPatc scope.Start(); try { - var result = await RestClient.UpdateAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); + var originalResponse = await RestClient.UpdateAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new ResourceGroup(this, originalResponse), originalResponse.GetRawResponse()); } catch (Exception e) { @@ -306,12 +308,8 @@ public virtual Response AddTag(string key, string value, Cancella try { - var resource = GetResource(cancellationToken); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(resource.Data.Tags); - patch.Tags[key] = value; - var result = RestClient.Update(Id.Name, patch, cancellationToken); - return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); + var operation = StartAddTag(key, value, cancellationToken); + return operation.WaitForCompletion(cancellationToken); } catch (Exception e) { @@ -337,12 +335,8 @@ public virtual async Task> AddTagAsync(string key, strin try { - ResourceGroup resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(resource.Data.Tags); - patch.Tags[key] = value; - var result = await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); + var operation = await StartAddTagAsync(key, value, cancellationToken).ConfigureAwait(false); + return await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); } catch (Exception e) { @@ -495,13 +489,8 @@ public virtual Response SetTags(IDictionary tags, try { - var resource = GetResource(cancellationToken); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(tags); - return new PhArmResponse(RestClient.Update(Id.Name, patch, cancellationToken), g => - { - return new ResourceGroup(this, g); - }); + var operation = StartSetTags(tags, cancellationToken); + return operation.WaitForCompletion(cancellationToken); } catch (Exception e) { @@ -526,15 +515,8 @@ public virtual async Task> SetTagsAsync(IDictionary( - await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), - g => - { - return new ResourceGroup(this, g); - }); + var operation = await StartSetTagsAsync(tags, cancellationToken).ConfigureAwait(false); + return await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); } catch (Exception e) { @@ -623,14 +605,8 @@ public virtual Response RemoveTag(string key, CancellationToken c try { - var resource = GetResource(cancellationToken); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(resource.Data.Tags); - patch.Tags.Remove(key); - return new PhArmResponse(RestClient.Update(Id.Name, patch, cancellationToken), g => - { - return new ResourceGroup(this, g); - }); + var operation = StartRemoveTag(key, cancellationToken); + return operation.WaitForCompletion(cancellationToken); } catch (Exception e) { @@ -655,16 +631,8 @@ public virtual async Task> RemoveTagAsync(string key, Ca try { - ResourceGroup resource = await GetResourceAsync(cancellationToken).ConfigureAwait(false); - var patch = new ResourceGroupPatchable(); - patch.Tags.ReplaceWith(resource.Data.Tags); - patch.Tags.Remove(key); - return new PhArmResponse( - await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false), - g => - { - return new ResourceGroup(this, g); - }); + var operation = await StartRemoveTagAsync(key, cancellationToken).ConfigureAwait(false); + return await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); } catch (Exception e) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupUpdateTagOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupUpdateTagOperation.cs index 61f8b97c706d..a10d594d0721 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupUpdateTagOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupUpdateTagOperation.cs @@ -27,7 +27,7 @@ protected ResourceGroupUpdateTagOperation() internal ResourceGroupUpdateTagOperation(ResourceOperationsBase parentOperation, ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) { - _operation = new OperationOrResponseInternals(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "ResourceGroupAddTagOperation"); + _operation = new OperationOrResponseInternals(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "ResourceGroupUpdateTagOperation"); _parentOperation = parentOperation; } /// From 4c094f735fdf4036b020f237c07e149945c4fd4c Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Wed, 19 May 2021 12:05:11 -0700 Subject: [PATCH 17/18] Update CreateOrUpdate lro object --- .../src/Generated/ResourceGroupContainer.cs | 4 +- .../ResourceGroupCreateOrUpdateOperation.cs | 24 ++----- ...ion.cs => ResourceGroupDeleteOperation.cs} | 7 +- .../src/Generated/ResourceGroupOperations.cs | 37 +++++----- .../ResourceGroupUpdateTagOperation.cs | 72 ------------------- 5 files changed, 27 insertions(+), 117 deletions(-) rename sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/{ResourceGroupsDeleteOperation.cs => ResourceGroupDeleteOperation.cs} (88%) delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupUpdateTagOperation.cs diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs index 485e87eb5830..50ad5b6295c5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupContainer.cs @@ -152,7 +152,7 @@ public ResourceGroupCreateOrUpdateOperation StartCreateOrUpdate(string name, Res try { var originalResponse = RestClient.CreateOrUpdate(name, resourceDetails, cancellationToken); - return new ResourceGroupCreateOrUpdateOperation(this, Diagnostics, Pipeline, RestClient.CreateCreateOrUpdateRequest(name, resourceDetails).Request, originalResponse.GetRawResponse()); + return new ResourceGroupCreateOrUpdateOperation(Parent, originalResponse); } catch (Exception e) { @@ -186,7 +186,7 @@ public virtual async Task StartCreateOrUpd try { var originalResponse = await RestClient.CreateOrUpdateAsync(name, resourceDetails, cancellationToken).ConfigureAwait(false); - return new ResourceGroupCreateOrUpdateOperation(this, Diagnostics, Pipeline, RestClient.CreateCreateOrUpdateRequest(name, resourceDetails).Request, originalResponse.GetRawResponse()); + return new ResourceGroupCreateOrUpdateOperation(Parent, originalResponse); } catch (Exception e) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupCreateOrUpdateOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupCreateOrUpdateOperation.cs index aba4e6f9e2f2..c597707daf79 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupCreateOrUpdateOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupCreateOrUpdateOperation.cs @@ -6,31 +6,27 @@ #nullable disable using System; -using System.Text.Json; using System.Threading; using System.Threading.Tasks; -using Azure; using Azure.Core; -using Azure.Core.Pipeline; namespace Azure.ResourceManager.Core { /// Create or update a resource group. - public class ResourceGroupCreateOrUpdateOperation : Operation, IOperationSource + public class ResourceGroupCreateOrUpdateOperation : Operation { private readonly OperationOrResponseInternals _operation; - private readonly OperationsBase _parentOperation; /// Initializes a new instance of ResourcesCreateOrUpdateByIdOperation for mocking. protected ResourceGroupCreateOrUpdateOperation() { } - internal ResourceGroupCreateOrUpdateOperation(OperationsBase parentOperation, ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + internal ResourceGroupCreateOrUpdateOperation(ResourceOperationsBase parentOperation, Response response) { - _operation = new OperationOrResponseInternals(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "ResourceGroupCreateOrUpdateOperation"); - _parentOperation = parentOperation; + _operation = new OperationOrResponseInternals(Response.FromValue(new ResourceGroup(parentOperation, response.Value), response.GetRawResponse())); } + /// public override string Id => ""; @@ -57,17 +53,5 @@ internal ResourceGroupCreateOrUpdateOperation(OperationsBase parentOperation, Cl /// public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); - - ResourceGroup IOperationSource.CreateResult(Response response, CancellationToken cancellationToken) - { - using var document = JsonDocument.Parse(response.ContentStream); - return new ResourceGroup((ResourceOperationsBase)_parentOperation, ResourceGroupData.DeserializeResourceGroup(document.RootElement)); - } - - async ValueTask IOperationSource.CreateResultAsync(Response response, CancellationToken cancellationToken) - { - using var document = await JsonDocument.ParseAsync(response.ContentStream, default, cancellationToken).ConfigureAwait(false); - return new ResourceGroup((ResourceOperationsBase)_parentOperation, ResourceGroupData.DeserializeResourceGroup(document.RootElement)); - } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsDeleteOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupDeleteOperation.cs similarity index 88% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsDeleteOperation.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupDeleteOperation.cs index 0da849d75f30..e8119a9deed6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupsDeleteOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupDeleteOperation.cs @@ -8,23 +8,22 @@ using System; using System.Threading; using System.Threading.Tasks; -using Azure; using Azure.Core; using Azure.Core.Pipeline; namespace Azure.ResourceManager.Core { /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. - public partial class ResourceGroupsDeleteOperation : Operation + public partial class ResourceGroupDeleteOperation : Operation { private readonly OperationOrResponseInternals _operation; /// Initializes a new instance of ResourceGroupsDeleteOperation for mocking. - protected ResourceGroupsDeleteOperation() + protected ResourceGroupDeleteOperation() { } - internal ResourceGroupsDeleteOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + internal ResourceGroupDeleteOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) { _operation = new OperationOrResponseInternals(clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "ResourceGroupsDeleteOperation"); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs index 1c9d394bdf9e..0a9ec2d99ef5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupOperations.cs @@ -6,7 +6,6 @@ using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; -using Azure.Core; namespace Azure.ResourceManager.Core { @@ -123,11 +122,11 @@ public virtual async Task DeleteAsync(CancellationToken cancellationTo /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. /// /// A token to allow the caller to cancel the call to the service. The default value is . - /// A response with the operation for this resource. + /// A response with the operation for this resource. /// /// Details on long running operation object. /// - public virtual ResourceGroupsDeleteOperation StartDelete(CancellationToken cancellationToken = default) + public virtual ResourceGroupDeleteOperation StartDelete(CancellationToken cancellationToken = default) { using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartDelete"); scope.Start(); @@ -135,7 +134,7 @@ public virtual ResourceGroupsDeleteOperation StartDelete(CancellationToken cance try { var originalResponse = RestClient.Delete(Id.Name, cancellationToken); - return new ResourceGroupsDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, originalResponse); + return new ResourceGroupDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, originalResponse); } catch (Exception e) { @@ -148,11 +147,11 @@ public virtual ResourceGroupsDeleteOperation StartDelete(CancellationToken cance /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. /// /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns a response with the operation for this resource. + /// A that on completion returns a response with the operation for this resource. /// /// Details on long running operation object. /// - public virtual async Task StartDeleteAsync(CancellationToken cancellationToken = default) + public virtual async Task StartDeleteAsync(CancellationToken cancellationToken = default) { using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartDelete"); scope.Start(); @@ -160,7 +159,7 @@ public virtual async Task StartDeleteAsync(Cancel try { var originalResponse = await RestClient.DeleteAsync(Id.Name, cancellationToken).ConfigureAwait(false); - return new ResourceGroupsDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, originalResponse); + return new ResourceGroupDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, originalResponse); } catch (Exception e) { @@ -355,7 +354,7 @@ public virtual async Task> AddTagAsync(string key, strin /// /// Details on long running operation object. /// - public virtual ResourceGroupUpdateTagOperation StartAddTag(string key, string value, CancellationToken cancellationToken = default) + public virtual ResourceGroupCreateOrUpdateOperation StartAddTag(string key, string value, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); @@ -370,7 +369,7 @@ public virtual ResourceGroupUpdateTagOperation StartAddTag(string key, string va patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags[key] = value; var originalResponse = RestClient.Update(Id.Name, patch, cancellationToken); - return new ResourceGroupUpdateTagOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateRequest(Id.Name, patch).Request, originalResponse.GetRawResponse()); + return new ResourceGroupCreateOrUpdateOperation(this, originalResponse); } catch (Exception e) { @@ -389,7 +388,7 @@ public virtual ResourceGroupUpdateTagOperation StartAddTag(string key, string va /// /// Details on long running operation object. /// - public virtual async Task StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) + public virtual async Task StartAddTagAsync(string key, string value, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); @@ -404,7 +403,7 @@ public virtual async Task StartAddTagAsync(stri patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags[key] = value; var originalResponse = await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false); - return new ResourceGroupUpdateTagOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateRequest(Id.Name, patch).Request, originalResponse.GetRawResponse()); + return new ResourceGroupCreateOrUpdateOperation(this, originalResponse); } catch (Exception e) { @@ -534,7 +533,7 @@ public virtual async Task> SetTagsAsync(IDictionary /// Details on long running operation object. /// - public virtual ResourceGroupUpdateTagOperation StartSetTags(IDictionary tags, CancellationToken cancellationToken = default) + public virtual ResourceGroupCreateOrUpdateOperation StartSetTags(IDictionary tags, CancellationToken cancellationToken = default) { if (tags == null) throw new ArgumentNullException(nameof(tags)); @@ -548,7 +547,7 @@ public virtual ResourceGroupUpdateTagOperation StartSetTags(IDictionary /// Details on long running operation object. /// - public virtual async Task StartSetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) + public virtual async Task StartSetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) { if (tags == null) throw new ArgumentNullException(nameof(tags)); @@ -580,7 +579,7 @@ public virtual async Task StartSetTagsAsync(IDi var patch = new ResourceGroupPatchable(); patch.Tags.ReplaceWith(tags); var originalResponse = await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false); - return new ResourceGroupUpdateTagOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateRequest(Id.Name, patch).Request, originalResponse.GetRawResponse()); + return new ResourceGroupCreateOrUpdateOperation(this, originalResponse); } catch (Exception e) { @@ -650,7 +649,7 @@ public virtual async Task> RemoveTagAsync(string key, Ca /// /// Details on long running operation object. /// - public virtual ResourceGroupUpdateTagOperation StartRemoveTag(string key, CancellationToken cancellationToken = default) + public virtual ResourceGroupCreateOrUpdateOperation StartRemoveTag(string key, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); @@ -665,7 +664,7 @@ public virtual ResourceGroupUpdateTagOperation StartRemoveTag(string key, Cancel patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags.Remove(key); var originalResponse = RestClient.Update(Id.Name, patch, cancellationToken); - return new ResourceGroupUpdateTagOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateRequest(Id.Name, patch).Request, originalResponse.GetRawResponse()); + return new ResourceGroupCreateOrUpdateOperation(this, originalResponse); } catch (Exception e) { @@ -683,7 +682,7 @@ public virtual ResourceGroupUpdateTagOperation StartRemoveTag(string key, Cancel /// /// Details on long running operation object. /// - public virtual async Task StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) + public virtual async Task StartRemoveTagAsync(string key, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(key)) throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); @@ -698,7 +697,7 @@ public virtual async Task StartRemoveTagAsync(s patch.Tags.ReplaceWith(resource.Data.Tags); patch.Tags.Remove(key); var originalResponse = await RestClient.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(false); - return new ResourceGroupUpdateTagOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateRequest(Id.Name, patch).Request, originalResponse.GetRawResponse()); + return new ResourceGroupCreateOrUpdateOperation(this, originalResponse); } catch (Exception e) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupUpdateTagOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupUpdateTagOperation.cs deleted file mode 100644 index a10d594d0721..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ResourceGroupUpdateTagOperation.cs +++ /dev/null @@ -1,72 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -// - -#nullable disable - -using System; -using System.Text.Json; -using System.Threading; -using System.Threading.Tasks; -using Azure.Core; -using Azure.Core.Pipeline; - -namespace Azure.ResourceManager.Core -{ - /// Updates resource group tag. - public class ResourceGroupUpdateTagOperation : Operation, IOperationSource - { - private readonly OperationOrResponseInternals _operation; - private readonly ResourceOperationsBase _parentOperation; - - /// Initializes a new instance of ResourceGroupUpdateTagOperation for mocking. - protected ResourceGroupUpdateTagOperation() - { - } - - internal ResourceGroupUpdateTagOperation(ResourceOperationsBase parentOperation, ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) - { - _operation = new OperationOrResponseInternals(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "ResourceGroupUpdateTagOperation"); - _parentOperation = parentOperation; - } - /// - public override string Id => ""; - - /// - public override ResourceGroup Value => _operation.Value; - - /// - public override bool HasCompleted => _operation.HasCompleted; - - /// - public override bool HasValue => _operation.HasValue; - - /// - public override Response GetRawResponse() => _operation.GetRawResponse(); - - /// - public override Response UpdateStatus(CancellationToken cancellationToken = default) => _operation.UpdateStatus(cancellationToken); - - /// - public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); - - /// - public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); - - /// - public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); - - ResourceGroup IOperationSource.CreateResult(Response response, CancellationToken cancellationToken) - { - using var document = JsonDocument.Parse(response.ContentStream); - return new ResourceGroup(_parentOperation, ResourceGroupData.DeserializeResourceGroup(document.RootElement)); - } - - async ValueTask IOperationSource.CreateResultAsync(Response response, CancellationToken cancellationToken) - { - using var document = await JsonDocument.ParseAsync(response.ContentStream, default, cancellationToken).ConfigureAwait(false); - return new ResourceGroup(_parentOperation, ResourceGroupData.DeserializeResourceGroup(document.RootElement)); - } - } -} From f497a5e2c1ec0dba3c0f6b964d0286764d2b4851 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Wed, 19 May 2021 12:05:31 -0700 Subject: [PATCH 18/18] Run tests --- .../ResourceGroupContainerTests/Create().json | 22 +- .../Create()Async.json | 22 +- .../ResourceGroupContainerTests/Get().json | 41 +- .../Get()Async.json | 37 +- .../ResourceGroupContainerTests/List().json | 198 +- .../List()Async.json | 204 +- .../StartCreate().json | 28 +- .../StartCreate()Async.json | 26 +- .../AddTag().json | 34 +- .../AddTag()Async.json | 32 +- .../DeleteRg().json | 404 +-- .../DeleteRg()Async.json | 963 +++++- .../ResourceGroupOperationsTests/Get().json | 36 +- .../Get()Async.json | 37 +- .../ListAvailableLocations().json | 1743 +++++++---- .../ListAvailableLocations()Async.json | 2052 ++++++++++--- .../MoveResources().json | 2703 +++++++++-------- .../MoveResources()Async.json | 2653 ++++++++-------- .../RemoveTag().json | 53 +- .../RemoveTag()Async.json | 50 +- .../SetTags().json | 40 +- .../SetTags()Async.json | 39 +- .../StartAddTag().json | 41 +- .../StartAddTag()Async.json | 42 +- .../StartDeleteNonExistantRg().json | 24 +- .../StartDeleteNonExistantRg()Async.json | 24 +- .../StartDeleteRg().json | 440 ++- .../StartDeleteRg()Async.json | 452 ++- .../StartExportTemplate().json | 40 +- .../StartExportTemplate()Async.json | 38 +- .../StartMoveResources().json | 2679 ++++++++-------- .../StartMoveResources()Async.json | 2614 ++++++++-------- .../StartRemoveTag().json | 56 +- .../StartRemoveTag()Async.json | 54 +- .../StartSetTags().json | 40 +- .../StartSetTags()Async.json | 41 +- .../StartValidateMoveResources().json | 1201 ++++---- .../StartValidateMoveResources()Async.json | 1229 ++++---- .../Update().json | 35 +- .../Update()Async.json | 39 +- .../ValidateMoveResources().json | 1252 ++++---- .../ValidateMoveResources()Async.json | 1274 ++++---- 42 files changed, 12933 insertions(+), 10099 deletions(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json index 6c95f5d6f287..85d1cd2f89fd 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:21 GMT", + "Date": "Wed, 19 May 2021 18:34:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd05c8ee-517d-4f23-ba58-dfa58247146c", + "x-ms-correlation-request-id": "2ff90cf6-829f-4325-b5b7-7b82b74a2dfc", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "bd05c8ee-517d-4f23-ba58-dfa58247146c", - "x-ms-routing-request-id": "WESTUS2:20210506T221422Z:bd05c8ee-517d-4f23-ba58-dfa58247146c" + "x-ms-request-id": "2ff90cf6-829f-4325-b5b7-7b82b74a2dfc", + "x-ms-routing-request-id": "WESTUS2:20210519T183415Z:2ff90cf6-829f-4325-b5b7-7b82b74a2dfc" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-009e6444ff50dd4cabcaedcdaeb50f65-4ee3a3652342e94d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fd86f46cbde03444b2ae95b06482b068-5f5849d8a1b91344-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4f9b1cb0c615a755df66b08668e1e5c8", "x-ms-return-client-request-id": "true" }, @@ -58,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:22 GMT", + "Date": "Wed, 19 May 2021 18:34:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42ddfec9-3adf-4a74-af44-8d1ed256be3f", + "x-ms-correlation-request-id": "0861da4d-d5d8-4cb1-9946-489af7175e1f", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "42ddfec9-3adf-4a74-af44-8d1ed256be3f", - "x-ms-routing-request-id": "WESTUS2:20210506T221423Z:42ddfec9-3adf-4a74-af44-8d1ed256be3f" + "x-ms-request-id": "0861da4d-d5d8-4cb1-9946-489af7175e1f", + "x-ms-routing-request-id": "WESTUS2:20210519T183417Z:0861da4d-d5d8-4cb1-9946-489af7175e1f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create()Async.json index 71664814dc2b..b9b3ba09f1ef 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create()Async.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:21 GMT", + "Date": "Wed, 19 May 2021 18:34:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e1abc4e-cc70-4263-bb0a-d87524bb1ec1", + "x-ms-correlation-request-id": "6a69dc44-4c1e-44dd-a841-df2aba86d0d2", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "1e1abc4e-cc70-4263-bb0a-d87524bb1ec1", - "x-ms-routing-request-id": "WESTUS2:20210506T221422Z:1e1abc4e-cc70-4263-bb0a-d87524bb1ec1" + "x-ms-request-id": "6a69dc44-4c1e-44dd-a841-df2aba86d0d2", + "x-ms-routing-request-id": "WESTUS2:20210519T183415Z:6a69dc44-4c1e-44dd-a841-df2aba86d0d2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-9a2b66316fd1904db45f1fcec0c64ddb-8c8c760d455fdf47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-17b739235c57a84ebd227f41f0b54086-58ed7dcdc1d15c4a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4f9b1cb0c615a755df66b08668e1e5c8", "x-ms-return-client-request-id": "true" }, @@ -58,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:22 GMT", + "Date": "Wed, 19 May 2021 18:34:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14b226f8-398d-4a1a-93b0-9912a9300932", + "x-ms-correlation-request-id": "463dde7a-e8e1-45ce-97af-984e0b3875d9", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "14b226f8-398d-4a1a-93b0-9912a9300932", - "x-ms-routing-request-id": "WESTUS2:20210506T221423Z:14b226f8-398d-4a1a-93b0-9912a9300932" + "x-ms-request-id": "463dde7a-e8e1-45ce-97af-984e0b3875d9", + "x-ms-routing-request-id": "WESTUS2:20210519T183416Z:463dde7a-e8e1-45ce-97af-984e0b3875d9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json index 8b2b75fb6f83..b6f88a2cf0d1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-262fb47d5becb74094f5137b716d566e-26c202e9c846df41-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "947ed80a888c329c78682d2e8a26a844", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:23 GMT", + "Date": "Wed, 19 May 2021 18:34:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28f955f4-61c5-437b-8748-24db1e22c1cf", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "28f955f4-61c5-437b-8748-24db1e22c1cf", - "x-ms-routing-request-id": "WESTUS2:20210506T221424Z:28f955f4-61c5-437b-8748-24db1e22c1cf" + "x-ms-correlation-request-id": "9ac2784d-a427-44ae-b8c8-1e9d5874520f", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "9ac2784d-a427-44ae-b8c8-1e9d5874520f", + "x-ms-routing-request-id": "WESTUS2:20210519T183418Z:9ac2784d-a427-44ae-b8c8-1e9d5874520f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-16e206391de6e54a9259e7205c3263f3-9c6f102f3e435040-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-99e5b8799a28a546adde4292a2e16c85-5a530d8b5206d04d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6e214c3fac952f6afda406451eb6e501", "x-ms-return-client-request-id": "true" }, @@ -58,20 +59,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:24 GMT", + "Date": "Wed, 19 May 2021 18:34:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e1c98f4-563b-452d-8dec-aae2764672a0", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "5e1c98f4-563b-452d-8dec-aae2764672a0", - "x-ms-routing-request-id": "WESTUS2:20210506T221425Z:5e1c98f4-563b-452d-8dec-aae2764672a0" + "x-ms-correlation-request-id": "9a5287d1-5017-4bf5-81a8-20bf325c114c", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "9a5287d1-5017-4bf5-81a8-20bf325c114c", + "x-ms-routing-request-id": "WESTUS2:20210519T183418Z:9a5287d1-5017-4bf5-81a8-20bf325c114c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", @@ -90,8 +91,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-615226c0a5673840afb5062c01f6ace7-d51fdf833235d945-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-393649e7a130bc4bb8814a94bc9f6b08-0a27979901983048-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9730847ff5de83c556d82af59a97e08a", "x-ms-return-client-request-id": "true" }, @@ -101,15 +102,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:24 GMT", + "Date": "Wed, 19 May 2021 18:34:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31062e0b-4858-415d-b48b-f40f3a4e4c0a", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "31062e0b-4858-415d-b48b-f40f3a4e4c0a", - "x-ms-routing-request-id": "WESTUS2:20210506T221425Z:31062e0b-4858-415d-b48b-f40f3a4e4c0a" + "x-ms-correlation-request-id": "1a1ad79f-0fdd-487d-ad0e-0d618ff84c97", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "1a1ad79f-0fdd-487d-ad0e-0d618ff84c97", + "x-ms-routing-request-id": "WESTUS2:20210519T183418Z:1a1ad79f-0fdd-487d-ad0e-0d618ff84c97" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get()Async.json index 6eeb7e573d7d..742a58a6135a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get()Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-6f6d19c9f710ab4d9611bffdd3d3d3cc-e2038d3337f08446-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bf56a65b1b3503a53e85268135c4c103", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:23 GMT", + "Date": "Wed, 19 May 2021 18:34:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "635a66e0-c614-4a68-98ed-b47278bc5218", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "635a66e0-c614-4a68-98ed-b47278bc5218", - "x-ms-routing-request-id": "WESTUS2:20210506T221424Z:635a66e0-c614-4a68-98ed-b47278bc5218" + "x-ms-correlation-request-id": "5bf3a3cc-1e44-4625-9bb3-b9a902e530c2", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "5bf3a3cc-1e44-4625-9bb3-b9a902e530c2", + "x-ms-routing-request-id": "WESTUS2:20210519T183417Z:5bf3a3cc-1e44-4625-9bb3-b9a902e530c2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-9e7f1de80097a14fafd3b4115d977d98-91f7679f8dd71d42-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-ad514a7d425c854faf26cf626ab20793-48343b5e2f4d2d42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b569d83722f70f6203999b272959e7c7", "x-ms-return-client-request-id": "true" }, @@ -63,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:24 GMT", + "Date": "Wed, 19 May 2021 18:34:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff8bbaa7-5ddc-4e0d-99bf-5befa5d7abfe", + "x-ms-correlation-request-id": "5f7a23a4-600c-4492-b72e-ed30f1a5aec8", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "ff8bbaa7-5ddc-4e0d-99bf-5befa5d7abfe", - "x-ms-routing-request-id": "WESTUS2:20210506T221425Z:ff8bbaa7-5ddc-4e0d-99bf-5befa5d7abfe" + "x-ms-request-id": "5f7a23a4-600c-4492-b72e-ed30f1a5aec8", + "x-ms-routing-request-id": "WESTUS2:20210519T183418Z:5f7a23a4-600c-4492-b72e-ed30f1a5aec8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", @@ -90,8 +91,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5fbb9b54e6ad00468835140ed54b6bc9-9fc8c64b4881eb43-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-ab75a30e72523644ac6d083b806895ea-811a8982fafed648-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e0f8777a432c9cce195e5f9f9edde36", "x-ms-return-client-request-id": "true" }, @@ -101,15 +102,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:24 GMT", + "Date": "Wed, 19 May 2021 18:34:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94abd4f5-a793-4be1-8e7f-b6eb449f54e2", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "94abd4f5-a793-4be1-8e7f-b6eb449f54e2", - "x-ms-routing-request-id": "WESTUS2:20210506T221425Z:94abd4f5-a793-4be1-8e7f-b6eb449f54e2" + "x-ms-correlation-request-id": "ec2bb71b-ee3a-4bbe-b907-f551b9077492", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "ec2bb71b-ee3a-4bbe-b907-f551b9077492", + "x-ms-routing-request-id": "WESTUS2:20210519T183418Z:ec2bb71b-ee3a-4bbe-b907-f551b9077492" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json index 5182458e3c8d..ec8876fe0d95 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bd25d44e0346bc4c8427b53b72748e92-56c530be78a54145-00", + "Request-Id": "|a3bfa398-430a65b38f944799.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "32314624bfbe8662a7fea2c55ef4175d", "x-ms-return-client-request-id": "true" @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:25 GMT", + "Date": "Wed, 19 May 2021 18:34:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fcb5c685-c3fa-43cb-986b-b781e04e40a8", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "fcb5c685-c3fa-43cb-986b-b781e04e40a8", - "x-ms-routing-request-id": "WESTUS2:20210506T221425Z:fcb5c685-c3fa-43cb-986b-b781e04e40a8" + "x-ms-correlation-request-id": "8d02ad8f-6cdb-46a4-9486-853d60b58312", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "8d02ad8f-6cdb-46a4-9486-853d60b58312", + "x-ms-routing-request-id": "WESTUS2:20210519T183418Z:8d02ad8f-6cdb-46a4-9486-853d60b58312" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-1ee8e173f5fa9645a8f8a768b3326a46-8cb3d9c7d7ca7045-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-4a781b45aa08aa4e94f7eac422754f9e-57484e6003735340-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4d506cbd48c3a8c934b1e57276165c60", "x-ms-return-client-request-id": "true" }, @@ -59,20 +59,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:26 GMT", + "Date": "Wed, 19 May 2021 18:34:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9ec2e07-21b2-43b2-aa6b-91f4a0ad95d8", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "b9ec2e07-21b2-43b2-aa6b-91f4a0ad95d8", - "x-ms-routing-request-id": "WESTUS2:20210506T221426Z:b9ec2e07-21b2-43b2-aa6b-91f4a0ad95d8" + "x-ms-correlation-request-id": "5de2b371-7108-4772-a538-b278e1a64b98", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "5de2b371-7108-4772-a538-b278e1a64b98", + "x-ms-routing-request-id": "WESTUS2:20210519T183419Z:5de2b371-7108-4772-a538-b278e1a64b98" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", @@ -93,8 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-c974cc910f3a224da6b1527cd5ecfe48-c1623141373fad44-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f2c3215a08ce5d49afeb5d0a4bcfca5d-1f779afbdbd40e47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "997a583a7a13a661eb9ff26126efcbab", "x-ms-return-client-request-id": "true" }, @@ -102,20 +102,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:26 GMT", + "Date": "Wed, 19 May 2021 18:34:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9aaba07-a468-4bbb-90a1-71aceaec0a72", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "b9aaba07-a468-4bbb-90a1-71aceaec0a72", - "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:b9aaba07-a468-4bbb-90a1-71aceaec0a72" + "x-ms-correlation-request-id": "eb7f1844-1890-4bc9-bd92-b6fdb0767969", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "eb7f1844-1890-4bc9-bd92-b6fdb0767969", + "x-ms-routing-request-id": "WESTUS2:20210519T183420Z:eb7f1844-1890-4bc9-bd92-b6fdb0767969" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", @@ -134,8 +134,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-80786f19a9dd134e91a7c40ab9ffa4ef-64921257d1716048-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-6dcb5891f90163419b2faeffe32537b7-0a2a48a04d1d4b4d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "db5e9666609168fe8a8a0e7c1330e845", "x-ms-return-client-request-id": "true" }, @@ -143,29 +143,20 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5354", + "Content-Length": "2829", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:26 GMT", + "Date": "Wed, 19 May 2021 18:34:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec28a51b-581c-4a04-9f29-9d7fd90992bf", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "ec28a51b-581c-4a04-9f29-9d7fd90992bf", - "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:ec28a51b-581c-4a04-9f29-9d7fd90992bf" + "x-ms-correlation-request-id": "3942ae9e-32ba-4e0f-9e0a-f2c87eb3cf3c", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "3942ae9e-32ba-4e0f-9e0a-f2c87eb3cf3c", + "x-ms-routing-request-id": "WESTUS2:20210519T183420Z:3942ae9e-32ba-4e0f-9e0a-f2c87eb3cf3c" }, "ResponseBody": { "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/zipstoragemc001", - "name": "zipstoragemc001", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastus2", - "properties": { - "provisioningState": "Succeeded" - } - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG", "name": "AzSecPackAutoConfigRG", @@ -176,102 +167,53 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", - "name": "NetworkWatcherRG", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8850", - "name": "testrg8850", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9511", - "name": "testrg9511", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3278", - "name": "testrg3278", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7404", - "name": "testrg7404", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8198", - "name": "testrg8198", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", + "name": "testRg-9476", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Succeeded" + "provisioningState": "Deleting" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2336", - "name": "testrg2336", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", + "name": "testRg-6439", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Succeeded" + "provisioningState": "Deleting" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1536", - "name": "testrg1536", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", + "name": "testRg-2388", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Succeeded" + "provisioningState": "Deleting" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1424", - "name": "testrg1424", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", + "name": "testRg-9522", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Succeeded" + "provisioningState": "Deleting" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6756", - "name": "testrg6756", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", + "name": "testRg-2283", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Succeeded" + "provisioningState": "Deleting" } }, { @@ -294,56 +236,6 @@ "provisioningState": "Succeeded" } }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", - "name": "testRg-9476", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5251", - "name": "testRg-5251", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", - "name": "testRg-2388", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", - "name": "testRg-6439", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", - "name": "testRg-9522", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2", "name": "AutoRestResources2", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List()Async.json index 3f5caf8b4152..9fde9fcb54fb 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|274b216a-4f7b5282ec0f0086.", + "traceparent": "00-59a9f62313f8514da24e44b78625e990-6fdb93f403037844-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fc4e15b5fbbb5705603d2b33fb5b2337", "x-ms-return-client-request-id": "true" @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:24 GMT", + "Date": "Wed, 19 May 2021 18:34:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6782cf30-f904-4844-98cd-021450ce1c17", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "6782cf30-f904-4844-98cd-021450ce1c17", - "x-ms-routing-request-id": "WESTUS2:20210506T221425Z:6782cf30-f904-4844-98cd-021450ce1c17" + "x-ms-correlation-request-id": "c0379d57-bf64-4c1a-ba2c-36d05dd8e58c", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "c0379d57-bf64-4c1a-ba2c-36d05dd8e58c", + "x-ms-routing-request-id": "WESTUS2:20210519T183418Z:c0379d57-bf64-4c1a-ba2c-36d05dd8e58c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-324de41d0d67d345a8cdbd8efa8df4df-89d2921e2ea8844d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-20cf3a726e5e8d4e80ccd0d5c2fb2038-236a3cd813338340-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c1867024544a4ce2fd808a6a8f416fa", "x-ms-return-client-request-id": "true" }, @@ -64,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:26 GMT", + "Date": "Wed, 19 May 2021 18:34:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fab63fc1-6135-4d27-b64b-1455499671a9", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "fab63fc1-6135-4d27-b64b-1455499671a9", - "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:fab63fc1-6135-4d27-b64b-1455499671a9" + "x-ms-correlation-request-id": "203bfe0d-0578-40e3-b4b8-aec1e615500e", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "203bfe0d-0578-40e3-b4b8-aec1e615500e", + "x-ms-routing-request-id": "WESTUS2:20210519T183419Z:203bfe0d-0578-40e3-b4b8-aec1e615500e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", @@ -93,8 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-bdbe76d85ccb5d4c868ede56f59dce60-a45ef1e82f7ad640-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-97a0e5a4ff170a4daf057418fb52284a-aab73135a8d52f45-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f77522cdaf69f33f8f0ffba77bde90a3", "x-ms-return-client-request-id": "true" }, @@ -107,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:26 GMT", + "Date": "Wed, 19 May 2021 18:34:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b97d9bb9-1106-432e-8fc0-be1ac0e3a66d", + "x-ms-correlation-request-id": "7c7672bf-1c59-4e87-8870-32f3b34ce423", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "b97d9bb9-1106-432e-8fc0-be1ac0e3a66d", - "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:b97d9bb9-1106-432e-8fc0-be1ac0e3a66d" + "x-ms-request-id": "7c7672bf-1c59-4e87-8870-32f3b34ce423", + "x-ms-routing-request-id": "WESTUS2:20210519T183419Z:7c7672bf-1c59-4e87-8870-32f3b34ce423" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", @@ -134,8 +134,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-08fa87c82b0999419656a75628786797-4dffaadab0261a4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-ee881278062ae94fa57b691bcfab7683-5aaf8ce1d26a544b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e6fd11270f580cf588b22fcb1b74814", "x-ms-return-client-request-id": "true" }, @@ -143,29 +143,20 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5585", + "Content-Length": "2600", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:26 GMT", + "Date": "Wed, 19 May 2021 18:34:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97493c9e-0bde-4c90-a387-6dbc1e74ef93", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "97493c9e-0bde-4c90-a387-6dbc1e74ef93", - "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:97493c9e-0bde-4c90-a387-6dbc1e74ef93" + "x-ms-correlation-request-id": "cbe0a24e-c265-4ac7-8ef3-8f977e4e4121", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "cbe0a24e-c265-4ac7-8ef3-8f977e4e4121", + "x-ms-routing-request-id": "WESTUS2:20210519T183419Z:cbe0a24e-c265-4ac7-8ef3-8f977e4e4121" }, "ResponseBody": { "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/zipstoragemc001", - "name": "zipstoragemc001", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastus2", - "properties": { - "provisioningState": "Succeeded" - } - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG", "name": "AzSecPackAutoConfigRG", @@ -175,125 +166,6 @@ "provisioningState": "Succeeded" } }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", - "name": "NetworkWatcherRG", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8850", - "name": "testrg8850", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9511", - "name": "testrg9511", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3278", - "name": "testrg3278", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7404", - "name": "testrg7404", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8198", - "name": "testrg8198", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2336", - "name": "testrg2336", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1536", - "name": "testrg1536", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1424", - "name": "testrg1424", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6756", - "name": "testrg6756", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", - "name": "testRg-6350", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", - "name": "testRg-6091", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", "name": "testRg-9476", @@ -301,17 +173,17 @@ "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Succeeded" + "provisioningState": "Deleting" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5251", - "name": "testRg-5251", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", + "name": "testRg-6439", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Succeeded" + "provisioningState": "Deleting" } }, { @@ -321,12 +193,12 @@ "location": "westus2", "tags": {}, "properties": { - "provisioningState": "Succeeded" + "provisioningState": "Deleting" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", - "name": "testRg-6439", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", + "name": "testRg-9522", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -335,8 +207,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", - "name": "testRg-9522", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", + "name": "testRg-2283", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -345,8 +217,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", - "name": "testRg-2283", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", + "name": "testRg-6350", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate().json index a02d3d7e9b97..d58d6ee09b98 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-17de32561fccee42a59f9c70a25b829c-d60898df3641754f-00", + "Request-Id": "|a3bfa399-430a65b38f944799.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "884af3a7695b086bb37b82d98938cb3a", "x-ms-return-client-request-id": "true" @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:27 GMT", + "Date": "Wed, 19 May 2021 18:34:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "649cf656-16b9-44a3-a970-bc647978c717", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "649cf656-16b9-44a3-a970-bc647978c717", - "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:649cf656-16b9-44a3-a970-bc647978c717" + "x-ms-correlation-request-id": "b7ede02a-ee33-45d6-b03d-34f5a5e2de74", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "b7ede02a-ee33-45d6-b03d-34f5a5e2de74", + "x-ms-routing-request-id": "WESTUS2:20210519T183420Z:b7ede02a-ee33-45d6-b03d-34f5a5e2de74" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-4dffcd5098f2e74bbbbfdc5e78127181-0f78fee2657a854a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-325c598be6398e478ee4ae1620f7d7e6-5639d3f3cd1d1544-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8b2b066fc48fef0717970e149205230a", "x-ms-return-client-request-id": "true" }, @@ -59,20 +59,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:28 GMT", + "Date": "Wed, 19 May 2021 18:34:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52a739bc-b693-4017-91f9-40c0d41d4061", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "52a739bc-b693-4017-91f9-40c0d41d4061", - "x-ms-routing-request-id": "WESTUS2:20210506T221428Z:52a739bc-b693-4017-91f9-40c0d41d4061" + "x-ms-correlation-request-id": "722fce45-badb-4f0d-a4f5-88447f173957", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "722fce45-badb-4f0d-a4f5-88447f173957", + "x-ms-routing-request-id": "WESTUS2:20210519T183421Z:722fce45-badb-4f0d-a4f5-88447f173957" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5251", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate()Async.json index 39b797fbdeb2..71604c8aff6a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/StartCreate()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|274b216b-4f7b5282ec0f0086.", + "traceparent": "00-5c59279e69f6b44385265093f410fac1-f53b04e5ac40264e-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "41d0d7715fb7e09d06eff6e127b77d79", "x-ms-return-client-request-id": "true" @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:26 GMT", + "Date": "Wed, 19 May 2021 18:34:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e718e7d-6639-4741-8ec4-1d9785de95b7", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "9e718e7d-6639-4741-8ec4-1d9785de95b7", - "x-ms-routing-request-id": "WESTUS2:20210506T221427Z:9e718e7d-6639-4741-8ec4-1d9785de95b7" + "x-ms-correlation-request-id": "da4266ff-a992-4077-90b7-7f26faa1f8f9", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "da4266ff-a992-4077-90b7-7f26faa1f8f9", + "x-ms-routing-request-id": "WESTUS2:20210519T183420Z:da4266ff-a992-4077-90b7-7f26faa1f8f9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-03e8f4183d6e6146b437c88c426f5829-3715710ece250440-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c5a33e377427764b8040090f44491dad-277f3240fe2b5244-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3b69c81f3028db1851038e65627d650", "x-ms-return-client-request-id": "true" }, @@ -64,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 06 May 2021 22:14:27 GMT", + "Date": "Wed, 19 May 2021 18:34:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "341a397a-724e-41c6-a3d1-b1f6122ee066", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "341a397a-724e-41c6-a3d1-b1f6122ee066", - "x-ms-routing-request-id": "WESTUS2:20210506T221428Z:341a397a-724e-41c6-a3d1-b1f6122ee066" + "x-ms-correlation-request-id": "1bf7d7e8-8acf-49e0-8907-917eb37adfb7", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "1bf7d7e8-8acf-49e0-8907-917eb37adfb7", + "x-ms-routing-request-id": "WESTUS2:20210519T183421Z:1bf7d7e8-8acf-49e0-8907-917eb37adfb7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-1105", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag().json index f54d3feffb12..1bdcee92a156 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:22:58 GMT", + "Date": "Wed, 19 May 2021 18:51:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2387eb3d-7b0f-4c35-a454-33d7b623cd81", + "x-ms-correlation-request-id": "919d1dda-c745-428c-b3a5-007857beeb9d", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "2387eb3d-7b0f-4c35-a454-33d7b623cd81", - "x-ms-routing-request-id": "WESTUS2:20210507T002258Z:2387eb3d-7b0f-4c35-a454-33d7b623cd81" + "x-ms-request-id": "919d1dda-c745-428c-b3a5-007857beeb9d", + "x-ms-routing-request-id": "WESTUS2:20210519T185123Z:919d1dda-c745-428c-b3a5-007857beeb9d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-ebbc996ad1c1564e89f0f99bec2f6b35-4591f49217bde443-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c20fd30a3031a24ca361ed3ab78f60a8-09ed7b73e36faa4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d1da8b7561b8028cbcb34792a863a65c", "x-ms-return-client-request-id": "true" }, @@ -58,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:22:59 GMT", + "Date": "Wed, 19 May 2021 18:51:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94415fc1-1747-438d-9f87-11308ab3c37f", + "x-ms-correlation-request-id": "34edc19e-677f-40dd-af12-5725a9581f8e", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "94415fc1-1747-438d-9f87-11308ab3c37f", - "x-ms-routing-request-id": "WESTUS2:20210507T002259Z:94415fc1-1747-438d-9f87-11308ab3c37f" + "x-ms-request-id": "34edc19e-677f-40dd-af12-5725a9581f8e", + "x-ms-routing-request-id": "WESTUS2:20210519T185123Z:34edc19e-677f-40dd-af12-5725a9581f8e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg843", @@ -92,8 +92,8 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "traceparent": "00-d7e15fabf5a1214994c1760876b86373-0e7b90a66003574c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-ea319da1a2fa8140a56320e3699c97b5-38641671cb85a74f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b88bc6574e449dc41491ab9b82fcef2d", "x-ms-return-client-request-id": "true" }, @@ -107,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:22:59 GMT", + "Date": "Wed, 19 May 2021 18:51:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9417920d-22f8-4c98-b196-0ceda5fc1892", + "x-ms-correlation-request-id": "b015f7f5-5a21-4fa7-a21f-90a733878e50", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "9417920d-22f8-4c98-b196-0ceda5fc1892", - "x-ms-routing-request-id": "WESTUS2:20210507T002300Z:9417920d-22f8-4c98-b196-0ceda5fc1892" + "x-ms-request-id": "b015f7f5-5a21-4fa7-a21f-90a733878e50", + "x-ms-routing-request-id": "WESTUS2:20210519T185124Z:b015f7f5-5a21-4fa7-a21f-90a733878e50" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg843", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag()Async.json index 06afd0eef9a9..42d688f82729 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag()Async.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:22:57 GMT", + "Date": "Wed, 19 May 2021 18:51:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd5b41fd-79d8-47f3-9226-bf50b6c23511", + "x-ms-correlation-request-id": "fb242e45-005a-4e21-a36f-f2d706ec9b3a", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "dd5b41fd-79d8-47f3-9226-bf50b6c23511", - "x-ms-routing-request-id": "WESTUS2:20210507T002258Z:dd5b41fd-79d8-47f3-9226-bf50b6c23511" + "x-ms-request-id": "fb242e45-005a-4e21-a36f-f2d706ec9b3a", + "x-ms-routing-request-id": "WESTUS2:20210519T185123Z:fb242e45-005a-4e21-a36f-f2d706ec9b3a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-6016902170ece645b5562947eaba252a-de7824345a58fd43-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-cc9b6ff757ba6f4e86235bca1191a04e-d9f24498355c9045-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3cec09a8ec6483d8ae6dff6faace7ce9", "x-ms-return-client-request-id": "true" }, @@ -58,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:22:58 GMT", + "Date": "Wed, 19 May 2021 18:51:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2bb9f3f0-bd91-4724-9c64-7dc50461ef50", + "x-ms-correlation-request-id": "b3b44030-726f-420f-803f-7134ed991961", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "2bb9f3f0-bd91-4724-9c64-7dc50461ef50", - "x-ms-routing-request-id": "WESTUS2:20210507T002259Z:2bb9f3f0-bd91-4724-9c64-7dc50461ef50" + "x-ms-request-id": "b3b44030-726f-420f-803f-7134ed991961", + "x-ms-routing-request-id": "WESTUS2:20210519T185124Z:b3b44030-726f-420f-803f-7134ed991961" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9462", @@ -92,7 +92,7 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "142fbe2561211c9c917da1a94d5c97ad", "x-ms-return-client-request-id": "true" }, @@ -106,15 +106,15 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:00 GMT", + "Date": "Wed, 19 May 2021 18:51:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea31d80d-f23b-4f5e-90f1-efb5d91bb625", + "x-ms-correlation-request-id": "ff90e475-5568-4d1d-ba98-48a13e399d9c", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "ea31d80d-f23b-4f5e-90f1-efb5d91bb625", - "x-ms-routing-request-id": "WESTUS2:20210507T002300Z:ea31d80d-f23b-4f5e-90f1-efb5d91bb625" + "x-ms-request-id": "ff90e475-5568-4d1d-ba98-48a13e399d9c", + "x-ms-routing-request-id": "WESTUS2:20210519T185124Z:ff90e475-5568-4d1d-ba98-48a13e399d9c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9462", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json index adc125306a05..5aa969696e5d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:22:28 GMT", + "Date": "Wed, 19 May 2021 18:51:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ec97291-a310-406b-9867-729ce7388aef", + "x-ms-correlation-request-id": "93a45438-6d00-40eb-ac34-832514dd0b8a", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "4ec97291-a310-406b-9867-729ce7388aef", - "x-ms-routing-request-id": "WESTUS2:20210507T202229Z:4ec97291-a310-406b-9867-729ce7388aef" + "x-ms-request-id": "93a45438-6d00-40eb-ac34-832514dd0b8a", + "x-ms-routing-request-id": "WESTUS2:20210519T185124Z:93a45438-6d00-40eb-ac34-832514dd0b8a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-055dd7f83fd4f54eb0fc7d008f329254-0697c4ae32bbe544-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-2c5ec524883db74fbe9aa1f08eecfd15-8acf2588a6c1be47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ae28f93f6f2cd0fc03cbac7ecb0ba451", "x-ms-return-client-request-id": "true" }, @@ -63,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:22:29 GMT", + "Date": "Wed, 19 May 2021 18:51:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd7e03fb-25af-4c48-9654-534eae1a67cc", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "dd7e03fb-25af-4c48-9654-534eae1a67cc", - "x-ms-routing-request-id": "WESTUS2:20210507T202230Z:dd7e03fb-25af-4c48-9654-534eae1a67cc" + "x-ms-correlation-request-id": "942f2287-a648-45ae-b684-2e9cd40ee9c8", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "942f2287-a648-45ae-b684-2e9cd40ee9c8", + "x-ms-routing-request-id": "WESTUS2:20210519T185125Z:942f2287-a648-45ae-b684-2e9cd40ee9c8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8404", @@ -90,7 +90,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3aa63aed44f4d08271b0ea71672b73ce", "x-ms-return-client-request-id": "true" }, @@ -99,17 +99,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:29 GMT", + "Date": "Wed, 19 May 2021 18:51:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ee72989-ead5-4168-a1f2-90ff2fe4c539", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-request-id": "5ee72989-ead5-4168-a1f2-90ff2fe4c539", - "x-ms-routing-request-id": "WESTUS2:20210507T202230Z:5ee72989-ead5-4168-a1f2-90ff2fe4c539" + "x-ms-correlation-request-id": "3c9ecdce-4c91-4684-9ceb-5a342fa8078f", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "3c9ecdce-4c91-4684-9ceb-5a342fa8078f", + "x-ms-routing-request-id": "WESTUS2:20210519T185125Z:3c9ecdce-4c91-4684-9ceb-5a342fa8078f" }, "ResponseBody": [] }, @@ -118,7 +118,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71695e8297e4fb5376573d7c848a68d8", "x-ms-return-client-request-id": "true" }, @@ -127,17 +127,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:29 GMT", + "Date": "Wed, 19 May 2021 18:51:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b736855-efb1-4bbe-9ffd-5dc94764e4d9", + "x-ms-correlation-request-id": "da33cba2-f397-49c8-a0e5-90dc982f63ed", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "8b736855-efb1-4bbe-9ffd-5dc94764e4d9", - "x-ms-routing-request-id": "WESTUS2:20210507T202230Z:8b736855-efb1-4bbe-9ffd-5dc94764e4d9" + "x-ms-request-id": "da33cba2-f397-49c8-a0e5-90dc982f63ed", + "x-ms-routing-request-id": "WESTUS2:20210519T185125Z:da33cba2-f397-49c8-a0e5-90dc982f63ed" }, "ResponseBody": [] }, @@ -146,7 +146,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f5c2dd5722c0214855ae6924c7807734", "x-ms-return-client-request-id": "true" }, @@ -155,17 +155,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:30 GMT", + "Date": "Wed, 19 May 2021 18:51:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f714c2b-f40f-4ecc-a566-86f4d56e153d", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "4f714c2b-f40f-4ecc-a566-86f4d56e153d", - "x-ms-routing-request-id": "WESTUS2:20210507T202231Z:4f714c2b-f40f-4ecc-a566-86f4d56e153d" + "x-ms-correlation-request-id": "6c2bfb14-40cd-492c-9fbd-ac6128fac3a9", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "6c2bfb14-40cd-492c-9fbd-ac6128fac3a9", + "x-ms-routing-request-id": "WESTUS2:20210519T185126Z:6c2bfb14-40cd-492c-9fbd-ac6128fac3a9" }, "ResponseBody": [] }, @@ -174,7 +174,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09ef4dba01c124ea814f0bb18e697247", "x-ms-return-client-request-id": "true" }, @@ -183,17 +183,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:31 GMT", + "Date": "Wed, 19 May 2021 18:51:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14fa3ca1-c671-43ed-a5eb-a48159769341", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "14fa3ca1-c671-43ed-a5eb-a48159769341", - "x-ms-routing-request-id": "WESTUS2:20210507T202232Z:14fa3ca1-c671-43ed-a5eb-a48159769341" + "x-ms-correlation-request-id": "64eb8a33-886f-46bd-8925-d07bacffa992", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "64eb8a33-886f-46bd-8925-d07bacffa992", + "x-ms-routing-request-id": "WESTUS2:20210519T185127Z:64eb8a33-886f-46bd-8925-d07bacffa992" }, "ResponseBody": [] }, @@ -202,7 +202,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7baaa467ff795fdc16481b352d2f34f6", "x-ms-return-client-request-id": "true" }, @@ -211,17 +211,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:32 GMT", + "Date": "Wed, 19 May 2021 18:51:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9598f79a-5085-47db-a808-49c5d4d10f26", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "9598f79a-5085-47db-a808-49c5d4d10f26", - "x-ms-routing-request-id": "WESTUS2:20210507T202233Z:9598f79a-5085-47db-a808-49c5d4d10f26" + "x-ms-correlation-request-id": "b2f4a4c5-a51e-4c01-88fc-91c435731655", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "b2f4a4c5-a51e-4c01-88fc-91c435731655", + "x-ms-routing-request-id": "WESTUS2:20210519T185128Z:b2f4a4c5-a51e-4c01-88fc-91c435731655" }, "ResponseBody": [] }, @@ -230,7 +230,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "37c108e05f9a5517f39e7470179692ec", "x-ms-return-client-request-id": "true" }, @@ -239,17 +239,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:33 GMT", + "Date": "Wed, 19 May 2021 18:51:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6c9d693-0afd-435e-85ee-a44e45b308cc", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "a6c9d693-0afd-435e-85ee-a44e45b308cc", - "x-ms-routing-request-id": "WESTUS2:20210507T202234Z:a6c9d693-0afd-435e-85ee-a44e45b308cc" + "x-ms-correlation-request-id": "f0247fc6-54c4-4b63-b5fa-983c22ae592d", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "f0247fc6-54c4-4b63-b5fa-983c22ae592d", + "x-ms-routing-request-id": "WESTUS2:20210519T185129Z:f0247fc6-54c4-4b63-b5fa-983c22ae592d" }, "ResponseBody": [] }, @@ -258,7 +258,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23bc223bfbd5baba7090f278e6b4f652", "x-ms-return-client-request-id": "true" }, @@ -267,17 +267,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:34 GMT", + "Date": "Wed, 19 May 2021 18:51:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96bf2118-9aae-487b-9837-8736ca7de11d", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "96bf2118-9aae-487b-9837-8736ca7de11d", - "x-ms-routing-request-id": "WESTUS2:20210507T202235Z:96bf2118-9aae-487b-9837-8736ca7de11d" + "x-ms-correlation-request-id": "801e0495-7b1e-42da-9e97-fe656d094c44", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "801e0495-7b1e-42da-9e97-fe656d094c44", + "x-ms-routing-request-id": "WESTUS2:20210519T185130Z:801e0495-7b1e-42da-9e97-fe656d094c44" }, "ResponseBody": [] }, @@ -286,7 +286,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85d1151b3ba708ac8c5488db8b6c4880", "x-ms-return-client-request-id": "true" }, @@ -295,17 +295,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:36 GMT", + "Date": "Wed, 19 May 2021 18:51:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b98854f-0d61-4f31-a329-5b549b02261c", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "5b98854f-0d61-4f31-a329-5b549b02261c", - "x-ms-routing-request-id": "WESTUS2:20210507T202236Z:5b98854f-0d61-4f31-a329-5b549b02261c" + "x-ms-correlation-request-id": "35f79968-f0b9-47a8-b5e7-c2f3141a4c09", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "35f79968-f0b9-47a8-b5e7-c2f3141a4c09", + "x-ms-routing-request-id": "WESTUS2:20210519T185131Z:35f79968-f0b9-47a8-b5e7-c2f3141a4c09" }, "ResponseBody": [] }, @@ -314,7 +314,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0bf92fb51172e4214e06c60a6c9e6f3e", "x-ms-return-client-request-id": "true" }, @@ -323,17 +323,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:37 GMT", + "Date": "Wed, 19 May 2021 18:51:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "415bff97-9220-4997-9743-512c1790739f", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "415bff97-9220-4997-9743-512c1790739f", - "x-ms-routing-request-id": "WESTUS2:20210507T202237Z:415bff97-9220-4997-9743-512c1790739f" + "x-ms-correlation-request-id": "897a2953-cd00-4bed-a9a7-00435c3d3161", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "897a2953-cd00-4bed-a9a7-00435c3d3161", + "x-ms-routing-request-id": "WESTUS2:20210519T185132Z:897a2953-cd00-4bed-a9a7-00435c3d3161" }, "ResponseBody": [] }, @@ -342,7 +342,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "025521a80cc5004475b4968073df2f04", "x-ms-return-client-request-id": "true" }, @@ -351,17 +351,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:38 GMT", + "Date": "Wed, 19 May 2021 18:51:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ae075f7-d7ed-407a-8dcc-1141f438843e", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "8ae075f7-d7ed-407a-8dcc-1141f438843e", - "x-ms-routing-request-id": "WESTUS2:20210507T202238Z:8ae075f7-d7ed-407a-8dcc-1141f438843e" + "x-ms-correlation-request-id": "a1d9348d-04b3-477c-b534-3e5b7faf0639", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "a1d9348d-04b3-477c-b534-3e5b7faf0639", + "x-ms-routing-request-id": "WESTUS2:20210519T185133Z:a1d9348d-04b3-477c-b534-3e5b7faf0639" }, "ResponseBody": [] }, @@ -370,7 +370,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b6c37247eabb09e0f3ec37a175a29bee", "x-ms-return-client-request-id": "true" }, @@ -379,17 +379,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:39 GMT", + "Date": "Wed, 19 May 2021 18:51:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f197e9a2-3e94-4808-9f96-cf63b0e03e57", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "f197e9a2-3e94-4808-9f96-cf63b0e03e57", - "x-ms-routing-request-id": "WESTUS2:20210507T202239Z:f197e9a2-3e94-4808-9f96-cf63b0e03e57" + "x-ms-correlation-request-id": "d064c9d1-c812-4fae-be85-5c7c503da561", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "d064c9d1-c812-4fae-be85-5c7c503da561", + "x-ms-routing-request-id": "WESTUS2:20210519T185134Z:d064c9d1-c812-4fae-be85-5c7c503da561" }, "ResponseBody": [] }, @@ -398,7 +398,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "693349e44617a8baeaf996bd7aa0706f", "x-ms-return-client-request-id": "true" }, @@ -407,17 +407,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:40 GMT", + "Date": "Wed, 19 May 2021 18:51:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a33a1993-0356-4643-8310-60a316b85b30", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "a33a1993-0356-4643-8310-60a316b85b30", - "x-ms-routing-request-id": "WESTUS2:20210507T202241Z:a33a1993-0356-4643-8310-60a316b85b30" + "x-ms-correlation-request-id": "e645ffc0-7ecc-4e97-bb7b-41036efab78a", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "e645ffc0-7ecc-4e97-bb7b-41036efab78a", + "x-ms-routing-request-id": "WESTUS2:20210519T185135Z:e645ffc0-7ecc-4e97-bb7b-41036efab78a" }, "ResponseBody": [] }, @@ -426,7 +426,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fac2c1d6b9dabd83414b0ed9d5a38ad2", "x-ms-return-client-request-id": "true" }, @@ -435,17 +435,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:41 GMT", + "Date": "Wed, 19 May 2021 18:51:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fff768e9-33a8-43d9-96df-143f41bd8dd9", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "fff768e9-33a8-43d9-96df-143f41bd8dd9", - "x-ms-routing-request-id": "WESTUS2:20210507T202242Z:fff768e9-33a8-43d9-96df-143f41bd8dd9" + "x-ms-correlation-request-id": "7fc488d3-7c50-40db-9d1f-a3823154c187", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "7fc488d3-7c50-40db-9d1f-a3823154c187", + "x-ms-routing-request-id": "WESTUS2:20210519T185136Z:7fc488d3-7c50-40db-9d1f-a3823154c187" }, "ResponseBody": [] }, @@ -454,7 +454,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2a9ca719c5ab01edb71acbc154228f53", "x-ms-return-client-request-id": "true" }, @@ -463,17 +463,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:42 GMT", + "Date": "Wed, 19 May 2021 18:51:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6791fc42-4722-4bc0-8a33-6601d26748a0", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "6791fc42-4722-4bc0-8a33-6601d26748a0", - "x-ms-routing-request-id": "WESTUS2:20210507T202243Z:6791fc42-4722-4bc0-8a33-6601d26748a0" + "x-ms-correlation-request-id": "78b3b3cf-9e9a-4de6-8314-0d6638dd1340", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "78b3b3cf-9e9a-4de6-8314-0d6638dd1340", + "x-ms-routing-request-id": "WESTUS2:20210519T185137Z:78b3b3cf-9e9a-4de6-8314-0d6638dd1340" }, "ResponseBody": [] }, @@ -482,7 +482,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3cac77ba1df2b13c67628cb38e1d347", "x-ms-return-client-request-id": "true" }, @@ -491,17 +491,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:43 GMT", + "Date": "Wed, 19 May 2021 18:51:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "692c0ecc-62c5-457e-9c14-79f8bffcaf8f", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "692c0ecc-62c5-457e-9c14-79f8bffcaf8f", - "x-ms-routing-request-id": "WESTUS2:20210507T202244Z:692c0ecc-62c5-457e-9c14-79f8bffcaf8f" + "x-ms-correlation-request-id": "510c0f9c-3e23-4877-8b7a-516a9c31f6f5", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "510c0f9c-3e23-4877-8b7a-516a9c31f6f5", + "x-ms-routing-request-id": "WESTUS2:20210519T185138Z:510c0f9c-3e23-4877-8b7a-516a9c31f6f5" }, "ResponseBody": [] }, @@ -510,7 +510,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2a4c36f460411c3d4c142c0edc2681f", "x-ms-return-client-request-id": "true" }, @@ -519,17 +519,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:44 GMT", + "Date": "Wed, 19 May 2021 18:51:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1151b862-4a79-46ff-a9fe-576f0b7020a6", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "1151b862-4a79-46ff-a9fe-576f0b7020a6", - "x-ms-routing-request-id": "WESTUS2:20210507T202245Z:1151b862-4a79-46ff-a9fe-576f0b7020a6" + "x-ms-correlation-request-id": "795c37d0-5b1d-4a70-b6aa-2360b2f818bd", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "795c37d0-5b1d-4a70-b6aa-2360b2f818bd", + "x-ms-routing-request-id": "WESTUS2:20210519T185139Z:795c37d0-5b1d-4a70-b6aa-2360b2f818bd" }, "ResponseBody": [] }, @@ -538,7 +538,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d5dbabcd7d878f2947063359d21c9d6", "x-ms-return-client-request-id": "true" }, @@ -547,17 +547,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:45 GMT", + "Date": "Wed, 19 May 2021 18:51:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53326f03-0eec-4f1f-b1ec-0dec53b722ae", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "53326f03-0eec-4f1f-b1ec-0dec53b722ae", - "x-ms-routing-request-id": "WESTUS2:20210507T202246Z:53326f03-0eec-4f1f-b1ec-0dec53b722ae" + "x-ms-correlation-request-id": "fb61a4aa-5f01-49fa-83bf-5e0b63b699f7", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "fb61a4aa-5f01-49fa-83bf-5e0b63b699f7", + "x-ms-routing-request-id": "WESTUS2:20210519T185140Z:fb61a4aa-5f01-49fa-83bf-5e0b63b699f7" }, "ResponseBody": [] }, @@ -566,7 +566,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90528347bc7d344f03b9df1e5e533d04", "x-ms-return-client-request-id": "true" }, @@ -575,17 +575,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:46 GMT", + "Date": "Wed, 19 May 2021 18:51:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edcfa54f-eba3-468e-9a03-097d827dfb38", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "edcfa54f-eba3-468e-9a03-097d827dfb38", - "x-ms-routing-request-id": "WESTUS2:20210507T202247Z:edcfa54f-eba3-468e-9a03-097d827dfb38" + "x-ms-correlation-request-id": "c6a1512d-3969-4db4-8763-762aa53fde2c", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "c6a1512d-3969-4db4-8763-762aa53fde2c", + "x-ms-routing-request-id": "WESTUS2:20210519T185141Z:c6a1512d-3969-4db4-8763-762aa53fde2c" }, "ResponseBody": [] }, @@ -594,7 +594,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d0f080dc583976fd02c3e93e38e73b2", "x-ms-return-client-request-id": "true" }, @@ -603,17 +603,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:47 GMT", + "Date": "Wed, 19 May 2021 18:51:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87d7abc5-150f-4fd0-8239-5dd11021c84f", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "87d7abc5-150f-4fd0-8239-5dd11021c84f", - "x-ms-routing-request-id": "WESTUS2:20210507T202248Z:87d7abc5-150f-4fd0-8239-5dd11021c84f" + "x-ms-correlation-request-id": "256ac5d1-f0dc-42fa-9353-28b036a66e93", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "256ac5d1-f0dc-42fa-9353-28b036a66e93", + "x-ms-routing-request-id": "WESTUS2:20210519T185143Z:256ac5d1-f0dc-42fa-9353-28b036a66e93" }, "ResponseBody": [] }, @@ -622,7 +622,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a786bf8d76f00a26a280a1ff8d41941", "x-ms-return-client-request-id": "true" }, @@ -631,17 +631,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:48 GMT", + "Date": "Wed, 19 May 2021 18:51:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0c43231-6de3-40d1-bbf2-7e29ac5ce1a1", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "e0c43231-6de3-40d1-bbf2-7e29ac5ce1a1", - "x-ms-routing-request-id": "WESTUS2:20210507T202249Z:e0c43231-6de3-40d1-bbf2-7e29ac5ce1a1" + "x-ms-correlation-request-id": "5961d20b-cd54-4eb8-bcd6-0b5d5f8f6ed6", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "5961d20b-cd54-4eb8-bcd6-0b5d5f8f6ed6", + "x-ms-routing-request-id": "WESTUS2:20210519T185144Z:5961d20b-cd54-4eb8-bcd6-0b5d5f8f6ed6" }, "ResponseBody": [] }, @@ -650,7 +650,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94285f334b12825214bac0507dbc5175", "x-ms-return-client-request-id": "true" }, @@ -659,17 +659,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:49 GMT", + "Date": "Wed, 19 May 2021 18:51:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03aa8969-0d39-4623-9bbb-922e42681615", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "03aa8969-0d39-4623-9bbb-922e42681615", - "x-ms-routing-request-id": "WESTUS2:20210507T202250Z:03aa8969-0d39-4623-9bbb-922e42681615" + "x-ms-correlation-request-id": "2edca69c-b3dc-4d74-89ee-b7684453510c", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "2edca69c-b3dc-4d74-89ee-b7684453510c", + "x-ms-routing-request-id": "WESTUS2:20210519T185145Z:2edca69c-b3dc-4d74-89ee-b7684453510c" }, "ResponseBody": [] }, @@ -678,7 +678,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f2262c45d3da3594660e125aba4f9ffc", "x-ms-return-client-request-id": "true" }, @@ -687,17 +687,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:50 GMT", + "Date": "Wed, 19 May 2021 18:51:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "033114d2-96bc-4438-b634-324f6ea1e328", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "033114d2-96bc-4438-b634-324f6ea1e328", - "x-ms-routing-request-id": "WESTUS2:20210507T202251Z:033114d2-96bc-4438-b634-324f6ea1e328" + "x-ms-correlation-request-id": "782a421d-0aea-467d-a096-438caabb5369", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "782a421d-0aea-467d-a096-438caabb5369", + "x-ms-routing-request-id": "WESTUS2:20210519T185146Z:782a421d-0aea-467d-a096-438caabb5369" }, "ResponseBody": [] }, @@ -706,7 +706,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8360fd13de65ac9f19f655b5175182ae", "x-ms-return-client-request-id": "true" }, @@ -715,17 +715,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:52 GMT", + "Date": "Wed, 19 May 2021 18:51:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d68d4c9-91a7-4b23-b822-0403a867357c", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "7d68d4c9-91a7-4b23-b822-0403a867357c", - "x-ms-routing-request-id": "WESTUS2:20210507T202252Z:7d68d4c9-91a7-4b23-b822-0403a867357c" + "x-ms-correlation-request-id": "ee1b3c30-993d-4d57-a59a-82af64afb97f", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "ee1b3c30-993d-4d57-a59a-82af64afb97f", + "x-ms-routing-request-id": "WESTUS2:20210519T185147Z:ee1b3c30-993d-4d57-a59a-82af64afb97f" }, "ResponseBody": [] }, @@ -734,7 +734,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cbda94d727ae5f66caf22e0438f7c7c5", "x-ms-return-client-request-id": "true" }, @@ -743,17 +743,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:53 GMT", + "Date": "Wed, 19 May 2021 18:51:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3bf624c-423a-4caf-9612-23ab6d74720d", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "f3bf624c-423a-4caf-9612-23ab6d74720d", - "x-ms-routing-request-id": "WESTUS2:20210507T202253Z:f3bf624c-423a-4caf-9612-23ab6d74720d" + "x-ms-correlation-request-id": "59820277-54a3-49e4-b6af-e13130db8d89", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "59820277-54a3-49e4-b6af-e13130db8d89", + "x-ms-routing-request-id": "WESTUS2:20210519T185148Z:59820277-54a3-49e4-b6af-e13130db8d89" }, "ResponseBody": [] }, @@ -762,7 +762,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "803dc41acd5c66108d79d9e47edf1d14", "x-ms-return-client-request-id": "true" }, @@ -771,17 +771,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:54 GMT", + "Date": "Wed, 19 May 2021 18:51:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1fce4af-ddc8-411e-90ea-465ad80379b9", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "f1fce4af-ddc8-411e-90ea-465ad80379b9", - "x-ms-routing-request-id": "WESTUS2:20210507T202254Z:f1fce4af-ddc8-411e-90ea-465ad80379b9" + "x-ms-correlation-request-id": "c8b72423-e884-4312-84b9-cc628998eca7", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "c8b72423-e884-4312-84b9-cc628998eca7", + "x-ms-routing-request-id": "WESTUS2:20210519T185149Z:c8b72423-e884-4312-84b9-cc628998eca7" }, "ResponseBody": [] }, @@ -790,7 +790,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2683648cd475ec4d9600b972b09b7421", "x-ms-return-client-request-id": "true" }, @@ -799,17 +799,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:55 GMT", + "Date": "Wed, 19 May 2021 18:51:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b66f7dc0-56ac-4fd0-a8a4-1a12aac23f23", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "b66f7dc0-56ac-4fd0-a8a4-1a12aac23f23", - "x-ms-routing-request-id": "WESTUS2:20210507T202255Z:b66f7dc0-56ac-4fd0-a8a4-1a12aac23f23" + "x-ms-correlation-request-id": "5210f3cb-7e03-4003-a7f9-70e00947fe79", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "5210f3cb-7e03-4003-a7f9-70e00947fe79", + "x-ms-routing-request-id": "WESTUS2:20210519T185150Z:5210f3cb-7e03-4003-a7f9-70e00947fe79" }, "ResponseBody": [] }, @@ -818,7 +818,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "539a902e0214095284733e354d82e1eb", "x-ms-return-client-request-id": "true" }, @@ -827,17 +827,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:56 GMT", + "Date": "Wed, 19 May 2021 18:51:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de2646bf-f435-4ca4-ab47-7fcea9334b1b", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "de2646bf-f435-4ca4-ab47-7fcea9334b1b", - "x-ms-routing-request-id": "WESTUS2:20210507T202256Z:de2646bf-f435-4ca4-ab47-7fcea9334b1b" + "x-ms-correlation-request-id": "c2cdccf0-7f8b-4c18-afb7-3636eb29702f", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "c2cdccf0-7f8b-4c18-afb7-3636eb29702f", + "x-ms-routing-request-id": "WESTUS2:20210519T185151Z:c2cdccf0-7f8b-4c18-afb7-3636eb29702f" }, "ResponseBody": [] }, @@ -846,7 +846,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d47819d5a074464f7651e95b149db6f1", "x-ms-return-client-request-id": "true" }, @@ -855,17 +855,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:57 GMT", + "Date": "Wed, 19 May 2021 18:51:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1073207c-a9c1-40bb-b6b0-6d9e02f52b2e", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "1073207c-a9c1-40bb-b6b0-6d9e02f52b2e", - "x-ms-routing-request-id": "WESTUS2:20210507T202257Z:1073207c-a9c1-40bb-b6b0-6d9e02f52b2e" + "x-ms-correlation-request-id": "e9de4430-2efd-4e4b-850e-7e2b5a3f40e4", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "e9de4430-2efd-4e4b-850e-7e2b5a3f40e4", + "x-ms-routing-request-id": "WESTUS2:20210519T185152Z:e9de4430-2efd-4e4b-850e-7e2b5a3f40e4" }, "ResponseBody": [] }, @@ -874,7 +874,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "edb5b704ca4489001179a20196189e14", "x-ms-return-client-request-id": "true" }, @@ -883,17 +883,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:58 GMT", + "Date": "Wed, 19 May 2021 18:51:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69b07094-05ce-46ee-84dd-6251edbc80a8", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "69b07094-05ce-46ee-84dd-6251edbc80a8", - "x-ms-routing-request-id": "WESTUS2:20210507T202258Z:69b07094-05ce-46ee-84dd-6251edbc80a8" + "x-ms-correlation-request-id": "61de1599-a7e8-48a8-a1b8-53bb41df4816", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "61de1599-a7e8-48a8-a1b8-53bb41df4816", + "x-ms-routing-request-id": "WESTUS2:20210519T185153Z:61de1599-a7e8-48a8-a1b8-53bb41df4816" }, "ResponseBody": [] }, @@ -902,7 +902,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "969dcd1e9f238dac4054dcc218f6f5e7", "x-ms-return-client-request-id": "true" }, @@ -911,17 +911,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:22:59 GMT", + "Date": "Wed, 19 May 2021 18:51:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a9c6626-9acb-448e-b380-a9d87ee1e273", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "9a9c6626-9acb-448e-b380-a9d87ee1e273", - "x-ms-routing-request-id": "WESTUS2:20210507T202259Z:9a9c6626-9acb-448e-b380-a9d87ee1e273" + "x-ms-correlation-request-id": "8f56f803-e054-4094-91d8-ffaaf27c36a6", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "8f56f803-e054-4094-91d8-ffaaf27c36a6", + "x-ms-routing-request-id": "WESTUS2:20210519T185154Z:8f56f803-e054-4094-91d8-ffaaf27c36a6" }, "ResponseBody": [] }, @@ -930,7 +930,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95304cbcf3cd0aa619eec3fafe4eaf5e", "x-ms-return-client-request-id": "true" }, @@ -939,17 +939,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:00 GMT", + "Date": "Wed, 19 May 2021 18:51:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3969d4ba-911d-4280-a4a3-638f83d71409", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "3969d4ba-911d-4280-a4a3-638f83d71409", - "x-ms-routing-request-id": "WESTUS2:20210507T202301Z:3969d4ba-911d-4280-a4a3-638f83d71409" + "x-ms-correlation-request-id": "3260611e-2c94-4df8-9a28-50cd03647ebe", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "3260611e-2c94-4df8-9a28-50cd03647ebe", + "x-ms-routing-request-id": "WESTUS2:20210519T185155Z:3260611e-2c94-4df8-9a28-50cd03647ebe" }, "ResponseBody": [] }, @@ -958,7 +958,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "463cd5b320ff65ce0b27adf0ed3d701a", "x-ms-return-client-request-id": "true" }, @@ -967,15 +967,15 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:01 GMT", + "Date": "Wed, 19 May 2021 18:51:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15e277bc-d789-40ab-93c0-d32eb93b2ab6", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "15e277bc-d789-40ab-93c0-d32eb93b2ab6", - "x-ms-routing-request-id": "WESTUS2:20210507T202302Z:15e277bc-d789-40ab-93c0-d32eb93b2ab6" + "x-ms-correlation-request-id": "17bebc16-4eaa-4637-87fd-6babfd33bac0", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "17bebc16-4eaa-4637-87fd-6babfd33bac0", + "x-ms-routing-request-id": "WESTUS2:20210519T185156Z:17bebc16-4eaa-4637-87fd-6babfd33bac0" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json index b0150fb567d7..43b807e6a0fb 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "Request-Id": "|b84bef29-4e1fac3c59f9802f.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "36ca397932140e126372a7087188334f", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:00 GMT", + "Date": "Wed, 19 May 2021 18:51:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b35a6832-a303-4f59-89ab-849bddb788b9", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "b35a6832-a303-4f59-89ab-849bddb788b9", - "x-ms-routing-request-id": "WESTUS2:20210507T002300Z:b35a6832-a303-4f59-89ab-849bddb788b9" + "x-ms-correlation-request-id": "642f6ec5-93ff-4c6a-b4f6-8545be57a88e", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "642f6ec5-93ff-4c6a-b4f6-8545be57a88e", + "x-ms-routing-request-id": "WESTUS2:20210519T185124Z:642f6ec5-93ff-4c6a-b4f6-8545be57a88e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-337e6852e44e3741b9bfe4baec383790-fa27ed94a1a5d149-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-0f606f7eb0ad2e42b59fdd45fea0d09d-2f0b6b7d9841a240-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a2fa65b3af59b8c04d4be3d77f82d2af", "x-ms-return-client-request-id": "true" }, @@ -63,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:00 GMT", + "Date": "Wed, 19 May 2021 18:51:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc10321d-7027-4a67-b665-a594057ebfa6", + "x-ms-correlation-request-id": "4447ecd0-b45b-484f-b638-6c2252f4eb2c", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "bc10321d-7027-4a67-b665-a594057ebfa6", - "x-ms-routing-request-id": "WESTUS2:20210507T002301Z:bc10321d-7027-4a67-b665-a594057ebfa6" + "x-ms-request-id": "4447ecd0-b45b-484f-b638-6c2252f4eb2c", + "x-ms-routing-request-id": "WESTUS2:20210519T185125Z:4447ecd0-b45b-484f-b638-6c2252f4eb2c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3087", @@ -90,8 +91,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9c7a56bdb6fe384693b7a950b7f434e9-3bab3727604e2948-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-5c88844d8c275c44-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d80061beada5eb9763bfaae39996fb94", "x-ms-return-client-request-id": "true" }, @@ -100,17 +101,943 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 00:23:00 GMT", + "Date": "Wed, 19 May 2021 18:51:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "004858d8-29ef-4a9e-8325-bd126d7221ac", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "004858d8-29ef-4a9e-8325-bd126d7221ac", - "x-ms-routing-request-id": "WESTUS2:20210507T002301Z:004858d8-29ef-4a9e-8325-bd126d7221ac" + "x-ms-correlation-request-id": "90da366a-7cc9-454a-a464-ffb2ef9feac1", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "90da366a-7cc9-454a-a464-ffb2ef9feac1", + "x-ms-routing-request-id": "WESTUS2:20210519T185125Z:90da366a-7cc9-454a-a464-ffb2ef9feac1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-0fe7dec1f64b3b40-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "26b359d576330684ce0e3f9a04dd1fb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:24 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f2034a4a-4bc9-4aca-b0b6-3e62ab33fad8", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "f2034a4a-4bc9-4aca-b0b6-3e62ab33fad8", + "x-ms-routing-request-id": "WESTUS2:20210519T185125Z:f2034a4a-4bc9-4aca-b0b6-3e62ab33fad8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6fbf4f507676b1854276ce27e6afbc2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:25 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8fedd407-a01a-4ca7-82f4-9db6041abc6c", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "8fedd407-a01a-4ca7-82f4-9db6041abc6c", + "x-ms-routing-request-id": "WESTUS2:20210519T185126Z:8fedd407-a01a-4ca7-82f4-9db6041abc6c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3f0dbadbd5e3a1618a058d1acd85842c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:26 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2ae2fb62-63d4-40c1-b535-2aec28375178", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "2ae2fb62-63d4-40c1-b535-2aec28375178", + "x-ms-routing-request-id": "WESTUS2:20210519T185127Z:2ae2fb62-63d4-40c1-b535-2aec28375178" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "df96105e73775f79d301e3bca75c201e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fc86d32b-46a3-46d7-a291-ee8e5b72f535", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "fc86d32b-46a3-46d7-a291-ee8e5b72f535", + "x-ms-routing-request-id": "WESTUS2:20210519T185128Z:fc86d32b-46a3-46d7-a291-ee8e5b72f535" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "49be1351e0d07bd3ed1ee570e96ae4bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6dfc9b17-ef9d-4a16-a91b-b95bf940cd2d", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "6dfc9b17-ef9d-4a16-a91b-b95bf940cd2d", + "x-ms-routing-request-id": "WESTUS2:20210519T185129Z:6dfc9b17-ef9d-4a16-a91b-b95bf940cd2d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d5c9a1f1dd1967b441ad6be1f1a4f92d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b8eb23fb-8463-47b6-aaeb-0af5641368d2", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "b8eb23fb-8463-47b6-aaeb-0af5641368d2", + "x-ms-routing-request-id": "WESTUS2:20210519T185130Z:b8eb23fb-8463-47b6-aaeb-0af5641368d2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bac96fe53ac77d5c3c1af1588e097668", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:30 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ebac09af-010a-4a28-85b3-f8e025a483fd", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "ebac09af-010a-4a28-85b3-f8e025a483fd", + "x-ms-routing-request-id": "WESTUS2:20210519T185131Z:ebac09af-010a-4a28-85b3-f8e025a483fd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "05cb261d4a9374045e56082274f28a49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "39698c4e-2afa-4630-89e2-d0b9e0c8aa43", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "39698c4e-2afa-4630-89e2-d0b9e0c8aa43", + "x-ms-routing-request-id": "WESTUS2:20210519T185132Z:39698c4e-2afa-4630-89e2-d0b9e0c8aa43" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7a8ab7252aa1b6f6454b98feeb5bd837", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bc5fcdf7-d92b-42ac-bfa4-39aed87206f8", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "bc5fcdf7-d92b-42ac-bfa4-39aed87206f8", + "x-ms-routing-request-id": "WESTUS2:20210519T185133Z:bc5fcdf7-d92b-42ac-bfa4-39aed87206f8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cac40237f3d89a9a6a545b70323a094a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "363739ac-4833-4988-85be-43ebad0a3d28", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "363739ac-4833-4988-85be-43ebad0a3d28", + "x-ms-routing-request-id": "WESTUS2:20210519T185134Z:363739ac-4833-4988-85be-43ebad0a3d28" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d733a890fc7ef3c73015c047b1068902", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e544e277-fc99-43c9-9a3f-31295b3c72f2", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "e544e277-fc99-43c9-9a3f-31295b3c72f2", + "x-ms-routing-request-id": "WESTUS2:20210519T185135Z:e544e277-fc99-43c9-9a3f-31295b3c72f2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "71ead07dbf2e32701cf00f4cce85840a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "686cf622-fc12-49cc-9991-29b98e87733c", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "686cf622-fc12-49cc-9991-29b98e87733c", + "x-ms-routing-request-id": "WESTUS2:20210519T185136Z:686cf622-fc12-49cc-9991-29b98e87733c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "426d4e4201283bb83bd09ac33253e863", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:36 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cfa321a3-94bc-4bcc-85f5-7f7b23951933", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "cfa321a3-94bc-4bcc-85f5-7f7b23951933", + "x-ms-routing-request-id": "WESTUS2:20210519T185137Z:cfa321a3-94bc-4bcc-85f5-7f7b23951933" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "61f258cb974fd11c3701ba8eec7a24aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "98f84a11-c928-4227-b6e7-d996352564d5", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "98f84a11-c928-4227-b6e7-d996352564d5", + "x-ms-routing-request-id": "WESTUS2:20210519T185138Z:98f84a11-c928-4227-b6e7-d996352564d5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6304b59146987cda18ae355d24acffc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0f0db7ce-a73f-421b-ac02-933dc73e1059", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "0f0db7ce-a73f-421b-ac02-933dc73e1059", + "x-ms-routing-request-id": "WESTUS2:20210519T185139Z:0f0db7ce-a73f-421b-ac02-933dc73e1059" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7581ac072292aabb319c0a2646294fc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:39 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1130c06b-26fb-4f6c-8020-1a524129e1a5", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "1130c06b-26fb-4f6c-8020-1a524129e1a5", + "x-ms-routing-request-id": "WESTUS2:20210519T185140Z:1130c06b-26fb-4f6c-8020-1a524129e1a5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7d32efac854f84cb7d7649a062bfac8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3227f6be-d038-43ae-895a-4a1bed757879", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "3227f6be-d038-43ae-895a-4a1bed757879", + "x-ms-routing-request-id": "WESTUS2:20210519T185141Z:3227f6be-d038-43ae-895a-4a1bed757879" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4087f202aef86e17fa5a31fb3bb435ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "23cacdb8-68fb-4d8a-b3a3-72726b8a6a62", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "23cacdb8-68fb-4d8a-b3a3-72726b8a6a62", + "x-ms-routing-request-id": "WESTUS2:20210519T185142Z:23cacdb8-68fb-4d8a-b3a3-72726b8a6a62" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "34b0745f82798279e0fcf71cd91a4872", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "168b4348-e846-4bd7-a0c8-cd019cf8b379", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "168b4348-e846-4bd7-a0c8-cd019cf8b379", + "x-ms-routing-request-id": "WESTUS2:20210519T185143Z:168b4348-e846-4bd7-a0c8-cd019cf8b379" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "54247ff00fa2fdc8d8c482f553cf49c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ccbd2796-6606-4c33-8451-26dc1efe75ed", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "ccbd2796-6606-4c33-8451-26dc1efe75ed", + "x-ms-routing-request-id": "WESTUS2:20210519T185144Z:ccbd2796-6606-4c33-8451-26dc1efe75ed" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ed415b41770e801178055ffcb6fb94e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f2d83c31-c9b6-4dd7-a092-96f3b80b37ae", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "f2d83c31-c9b6-4dd7-a092-96f3b80b37ae", + "x-ms-routing-request-id": "WESTUS2:20210519T185145Z:f2d83c31-c9b6-4dd7-a092-96f3b80b37ae" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bc0bbf11e190504bacb35cb5ff842e10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "45a1b570-8a42-4103-a8ef-b4b3df703e8a", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "45a1b570-8a42-4103-a8ef-b4b3df703e8a", + "x-ms-routing-request-id": "WESTUS2:20210519T185146Z:45a1b570-8a42-4103-a8ef-b4b3df703e8a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7edb2eb35ad878646ea4db9dafcc46dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "67423302-1bb8-4c52-88e0-db4f8b08c4f7", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "67423302-1bb8-4c52-88e0-db4f8b08c4f7", + "x-ms-routing-request-id": "WESTUS2:20210519T185148Z:67423302-1bb8-4c52-88e0-db4f8b08c4f7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "94e3a12f8cc45f390ff0415b1a5b80f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1b93ee15-d17c-4df3-82f2-2161218ca68c", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "1b93ee15-d17c-4df3-82f2-2161218ca68c", + "x-ms-routing-request-id": "WESTUS2:20210519T185149Z:1b93ee15-d17c-4df3-82f2-2161218ca68c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "88484ed61620b7075b924deb06aea0df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "591541a6-e3b8-41a8-94c9-df56e221cef4", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "591541a6-e3b8-41a8-94c9-df56e221cef4", + "x-ms-routing-request-id": "WESTUS2:20210519T185150Z:591541a6-e3b8-41a8-94c9-df56e221cef4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5d867f6c9aa1264cf47b6fe818085e12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6be80b93-5cfd-42b9-a0c9-2f9fc96b73b6", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "6be80b93-5cfd-42b9-a0c9-2f9fc96b73b6", + "x-ms-routing-request-id": "WESTUS2:20210519T185151Z:6be80b93-5cfd-42b9-a0c9-2f9fc96b73b6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "60c7e624bd8319bc9a2b39313f4d5961", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f3b871c0-2bf7-4ea2-8691-f372e0be366d", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "f3b871c0-2bf7-4ea2-8691-f372e0be366d", + "x-ms-routing-request-id": "WESTUS2:20210519T185152Z:f3b871c0-2bf7-4ea2-8691-f372e0be366d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9aee614f22d53b53022294a4a71f9e52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c75eda05-351f-48d7-8c49-533ee3342f2b", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "c75eda05-351f-48d7-8c49-533ee3342f2b", + "x-ms-routing-request-id": "WESTUS2:20210519T185153Z:c75eda05-351f-48d7-8c49-533ee3342f2b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1fc73a3440e6ae5cc36dc375611ae7a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4f4073f9-cbce-4cb8-9753-06772763dc87", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "4f4073f9-cbce-4cb8-9753-06772763dc87", + "x-ms-routing-request-id": "WESTUS2:20210519T185154Z:4f4073f9-cbce-4cb8-9753-06772763dc87" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b7980d21c31a013d938b5d612918717b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "af73f043-a508-40be-b205-17070986c094", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "af73f043-a508-40be-b205-17070986c094", + "x-ms-routing-request-id": "WESTUS2:20210519T185155Z:af73f043-a508-40be-b205-17070986c094" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "04fde68d3a860f7a053fd7685eded9e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "377395da-bfe6-41ef-bfbe-2d630e4b840c", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "377395da-bfe6-41ef-bfbe-2d630e4b840c", + "x-ms-routing-request-id": "WESTUS2:20210519T185156Z:377395da-bfe6-41ef-bfbe-2d630e4b840c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-a5dfe60c7a26944f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9982ed3ae7867137fdc58b5ae2fb85ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:51:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ceb01ecc-03cf-45ab-ab82-e6bd670a9dd3", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "ceb01ecc-03cf-45ab-ab82-e6bd670a9dd3", + "x-ms-routing-request-id": "WESTUS2:20210519T185157Z:ceb01ecc-03cf-45ab-ab82-e6bd670a9dd3" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json index e88b00fe6a4a..55ab5f7fc774 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:02 GMT", + "Date": "Wed, 19 May 2021 18:51:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfeae233-bcc1-47f2-835a-44c075b530cb", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "cfeae233-bcc1-47f2-835a-44c075b530cb", - "x-ms-routing-request-id": "WESTUS2:20210507T202302Z:cfeae233-bcc1-47f2-835a-44c075b530cb" + "x-ms-correlation-request-id": "8738ea86-73f7-4535-9393-b75cc3c05f7d", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "8738ea86-73f7-4535-9393-b75cc3c05f7d", + "x-ms-routing-request-id": "WESTUS2:20210519T185156Z:8738ea86-73f7-4535-9393-b75cc3c05f7d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-a031ace71f185b479501cd7f6b9ebfc5-af12c6300b6f5f4b-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-ab6802f90fe2604c8c07e6cde131e76d-589b17f69389f041-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "667c3f9e9364ea17e5e46067f39e54b4", "x-ms-return-client-request-id": "true" }, @@ -63,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:03 GMT", + "Date": "Wed, 19 May 2021 18:51:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc19e4e9-4db6-43d5-a693-b23287a1cb89", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "bc19e4e9-4db6-43d5-a693-b23287a1cb89", - "x-ms-routing-request-id": "WESTUS2:20210507T202303Z:bc19e4e9-4db6-43d5-a693-b23287a1cb89" + "x-ms-correlation-request-id": "2ba59709-abbb-4074-ab9a-44f334775967", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "2ba59709-abbb-4074-ab9a-44f334775967", + "x-ms-routing-request-id": "WESTUS2:20210519T185157Z:2ba59709-abbb-4074-ab9a-44f334775967" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1772", @@ -90,7 +90,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9791f785a4d33c76463a66d970cd44a2", "x-ms-return-client-request-id": "true" }, @@ -100,15 +100,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:03 GMT", + "Date": "Wed, 19 May 2021 18:51:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "727a15d0-dd1a-46ca-a26b-ad9ea1cfbcf0", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "727a15d0-dd1a-46ca-a26b-ad9ea1cfbcf0", - "x-ms-routing-request-id": "WESTUS2:20210507T202303Z:727a15d0-dd1a-46ca-a26b-ad9ea1cfbcf0" + "x-ms-correlation-request-id": "7213556b-3a11-44b3-927b-251a212b774d", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "7213556b-3a11-44b3-927b-251a212b774d", + "x-ms-routing-request-id": "WESTUS2:20210519T185157Z:7213556b-3a11-44b3-927b-251a212b774d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1772", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json index 1bbe9590ed94..ef08a5d8b316 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-02e7e3e522e35d479020f86713f07da3-47c686ac750fd54b-00", + "traceparent": "00-020a47d6f8392142b94a30210bcc16c3-39c9b5aef2f7d944-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "59b7aae8604ff395a6f45701af8fb704", "x-ms-return-client-request-id": "true" @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:01 GMT", + "Date": "Wed, 19 May 2021 18:51:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfe0a32d-5355-42c5-a5ff-953caeecb566", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "cfe0a32d-5355-42c5-a5ff-953caeecb566", - "x-ms-routing-request-id": "WESTUS2:20210507T002301Z:cfe0a32d-5355-42c5-a5ff-953caeecb566" + "x-ms-correlation-request-id": "0f217c0f-615f-424d-8d53-8cf286892a2b", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "0f217c0f-615f-424d-8d53-8cf286892a2b", + "x-ms-routing-request-id": "WESTUS2:20210519T185157Z:0f217c0f-615f-424d-8d53-8cf286892a2b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-d87dc5f28b435744af65bac4b689a93b-34f6ff94a4649c4f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b7b601df5a312a489b17afdfa8119c54-d61d7d73f5219248-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "071a7ec67987f24b062ad73bf6781c92", "x-ms-return-client-request-id": "true" }, @@ -64,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:01 GMT", + "Date": "Wed, 19 May 2021 18:51:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe735516-3502-4b0d-ad86-ab86a4dcd1f2", + "x-ms-correlation-request-id": "761ef06c-428d-4062-bb4a-c40af3e9a367", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "fe735516-3502-4b0d-ad86-ab86a4dcd1f2", - "x-ms-routing-request-id": "WESTUS2:20210507T002302Z:fe735516-3502-4b0d-ad86-ab86a4dcd1f2" + "x-ms-request-id": "761ef06c-428d-4062-bb4a-c40af3e9a367", + "x-ms-routing-request-id": "WESTUS2:20210519T185158Z:761ef06c-428d-4062-bb4a-c40af3e9a367" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3094", @@ -91,8 +91,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2bf041542c72d64a99beb8af4549579e-0dce2190c843b44b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a56179c782b01065ad5db32879bec64", "x-ms-return-client-request-id": "true" }, @@ -102,15 +101,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:01 GMT", + "Date": "Wed, 19 May 2021 18:51:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e535c7a-4d56-45fe-8e66-27afdfe4c8f5", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "6e535c7a-4d56-45fe-8e66-27afdfe4c8f5", - "x-ms-routing-request-id": "WESTUS2:20210507T002302Z:6e535c7a-4d56-45fe-8e66-27afdfe4c8f5" + "x-ms-correlation-request-id": "bc513c8e-5bf0-4550-9aa9-a2cbdf4892b4", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "bc513c8e-5bf0-4550-9aa9-a2cbdf4892b4", + "x-ms-routing-request-id": "WESTUS2:20210519T185158Z:bc513c8e-5bf0-4550-9aa9-a2cbdf4892b4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3094", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json index b52b03b8dafd..12bbac6295e8 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-a681b21b23f6b14bb34b3d399af1d926-4a4d01886eeafc46-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aa51013d54407fd4230a57392c708ca6", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:04 GMT", + "Date": "Wed, 19 May 2021 18:51:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98330849-c1f3-4d60-ae24-a479db7e3c65", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "98330849-c1f3-4d60-ae24-a479db7e3c65", - "x-ms-routing-request-id": "WESTUS2:20210507T202304Z:98330849-c1f3-4d60-ae24-a479db7e3c65" + "x-ms-correlation-request-id": "f592290a-129f-44f3-bd63-109e4f2e6a01", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "f592290a-129f-44f3-bd63-109e4f2e6a01", + "x-ms-routing-request-id": "WESTUS2:20210519T185158Z:f592290a-129f-44f3-bd63-109e4f2e6a01" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-eeeabc9e5a44cb42a868cbcb3c18692b-abf72679ab4e1d47-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-5d6aae91dd56e04886fb32c04585b18b-c0e15046efa9514f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7042e52bd2a4bb1f0cc1dc04b133791", "x-ms-return-client-request-id": "true" }, @@ -63,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:04 GMT", + "Date": "Wed, 19 May 2021 18:51:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10f68959-43eb-456f-875e-0d7566d449b3", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "10f68959-43eb-456f-875e-0d7566d449b3", - "x-ms-routing-request-id": "WESTUS2:20210507T202305Z:10f68959-43eb-456f-875e-0d7566d449b3" + "x-ms-correlation-request-id": "d5ed3bda-6148-48f7-96a8-c6f6542182ad", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "d5ed3bda-6148-48f7-96a8-c6f6542182ad", + "x-ms-routing-request-id": "WESTUS2:20210519T185158Z:d5ed3bda-6148-48f7-96a8-c6f6542182ad" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1226", @@ -98,17 +99,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1293150", + "Content-Length": "1310422", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:07 GMT", + "Date": "Wed, 19 May 2021 18:52:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e03a4712-161f-4c3f-9aef-d09e0c1eae96", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "e03a4712-161f-4c3f-9aef-d09e0c1eae96", - "x-ms-routing-request-id": "WESTUS2:20210507T202307Z:e03a4712-161f-4c3f-9aef-d09e0c1eae96" + "x-ms-correlation-request-id": "76582237-cc19-47e9-9672-525c03ddfd80", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "76582237-cc19-47e9-9672-525c03ddfd80", + "x-ms-routing-request-id": "WESTUS2:20210519T185201Z:76582237-cc19-47e9-9672-525c03ddfd80" }, "ResponseBody": { "value": [ @@ -211,8 +212,7 @@ "UAE North", "Australia Central", "France South", - "South India", - "West Central US" + "South India" ], "apiVersions": [ "2020-02-02-preview", @@ -446,8 +446,7 @@ "UAE North", "Australia Central", "France South", - "South India", - "West Central US" + "South India" ], "apiVersions": [ "2018-05-01-preview", @@ -730,7 +729,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2015-04-01", @@ -864,7 +864,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2017-05-01-preview", @@ -915,7 +916,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2017-05-01-preview" @@ -958,7 +960,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2017-02-01" @@ -4765,6 +4768,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -4864,6 +4868,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -4918,6 +4923,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -4967,6 +4973,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5016,6 +5023,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5066,6 +5074,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5116,6 +5125,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5166,6 +5176,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5216,6 +5227,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5266,6 +5278,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5316,6 +5329,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5364,6 +5378,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5412,6 +5427,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5460,6 +5476,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5508,6 +5525,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5556,6 +5574,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5604,6 +5623,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5652,6 +5672,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5702,6 +5723,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5752,6 +5774,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5804,6 +5827,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5857,6 +5881,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5910,6 +5935,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6139,6 +6165,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6234,6 +6261,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6281,6 +6309,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6463,6 +6492,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6601,6 +6631,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6650,6 +6681,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6743,6 +6775,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6792,6 +6825,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6849,6 +6883,135 @@ ], "capabilities": "None" }, + { + "resourceType": "servers/databases/ledgerDigestUploads", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/ledgerDigestUploadsAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/ledgerDigestUploadsOperationResults", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "servers/recommendedElasticPools", "locations": [ @@ -7023,6 +7186,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7073,6 +7237,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7123,6 +7288,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7173,6 +7339,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7223,6 +7390,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7272,6 +7440,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" @@ -7317,6 +7486,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7366,6 +7536,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7415,6 +7586,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7464,6 +7636,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7513,6 +7686,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" @@ -7558,6 +7732,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" @@ -7603,6 +7778,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7654,6 +7830,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7705,6 +7882,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7785,6 +7963,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7831,6 +8010,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7880,6 +8060,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7929,6 +8110,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7978,6 +8160,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8027,6 +8210,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8076,6 +8260,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8170,6 +8355,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8219,6 +8405,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8268,6 +8455,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8317,6 +8505,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8367,6 +8556,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8417,6 +8607,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8467,6 +8658,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8517,6 +8709,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8567,6 +8760,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8618,6 +8812,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8668,6 +8863,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8719,6 +8915,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8770,6 +8967,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8821,6 +9019,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8872,6 +9071,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9281,6 +9481,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9334,6 +9535,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9384,6 +9586,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9482,6 +9685,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9532,6 +9736,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9582,6 +9787,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9632,6 +9838,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9678,6 +9885,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9727,6 +9935,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9774,6 +9983,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9823,6 +10033,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9870,6 +10081,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9920,6 +10132,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9966,6 +10179,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10014,6 +10228,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10062,6 +10277,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10111,6 +10327,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10161,6 +10378,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10211,6 +10429,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10261,6 +10480,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10308,6 +10528,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-08-01", @@ -10354,6 +10575,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-08-01", @@ -10400,6 +10622,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10447,6 +10670,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10494,6 +10718,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10578,6 +10803,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10627,6 +10853,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10744,6 +10971,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10793,6 +11021,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10842,6 +11071,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10889,6 +11119,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10937,6 +11168,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10983,6 +11215,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11029,6 +11262,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11075,6 +11309,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11121,6 +11356,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11168,6 +11404,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11215,6 +11452,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11262,6 +11500,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11309,6 +11548,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11356,6 +11596,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11403,6 +11644,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11452,6 +11694,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11501,6 +11744,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11550,6 +11794,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11599,6 +11844,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11646,6 +11892,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11693,6 +11940,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11742,6 +11990,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11790,6 +12039,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11838,6 +12088,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11886,6 +12137,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11935,6 +12187,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11984,6 +12237,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12033,6 +12287,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12083,6 +12338,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12133,6 +12389,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12183,6 +12440,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12233,6 +12491,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12283,6 +12542,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12332,6 +12592,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12381,6 +12642,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12431,6 +12693,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12481,6 +12744,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12531,6 +12795,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12581,6 +12846,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12630,6 +12896,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12679,6 +12946,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12728,6 +12996,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12777,6 +13046,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12826,6 +13096,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12875,6 +13146,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12923,6 +13195,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12971,6 +13244,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13020,6 +13294,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13069,6 +13344,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13117,6 +13393,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13165,6 +13442,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13213,6 +13491,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13260,6 +13539,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13307,6 +13587,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13315,6 +13596,92 @@ ], "capabilities": "None" }, + { + "resourceType": "locations/outboundFirewallRulesAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/outboundFirewallRulesOperationResults", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", "locations": [ @@ -13354,6 +13721,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13401,6 +13769,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13451,6 +13820,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" @@ -13496,6 +13866,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" @@ -13541,6 +13912,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" @@ -14478,6 +14850,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview", "2020-06-01", "2019-11-01-preview", @@ -14518,6 +14891,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview" ], "capabilities": "None" @@ -14554,6 +14928,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview", "2020-06-01", "2019-11-01-preview", @@ -14594,6 +14969,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview", "2020-06-01", "2019-11-01-preview", @@ -14634,6 +15010,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview", "2020-06-01", "2019-11-01-preview", @@ -14674,6 +15051,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview", "2020-06-01", "2019-11-01-preview", @@ -14714,6 +15092,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview", "2020-06-01", "2019-11-01-preview", @@ -14732,7 +15111,7 @@ "version": "1.0", "apiVersions": { "default": "2019-10-01", - "operations": "2020-07-01-preview" + "operations": "2021-03-01-preview" }, "metrics": { "mdmInfo": [ @@ -14893,6 +15272,10 @@ { "location": "Central India", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -15234,6 +15617,7 @@ "West Europe" ], "apiVersions": [ + "2021-04-10-privatepreview", "2020-11-05-preview", "2020-02-14-privatepreview", "2020-02-14-preview" @@ -15379,7 +15763,7 @@ } }, "Microsoft.ManagedIdentity": { - "applicationId": "87bbf879-e67c-49da-a9e1-632ecff043f9" + "applicationId": "37ef5504-7ac2-4c18-ad5a-09b4c66ce5f9" } }, "capabilities": "SupportsTags, SupportsLocation" @@ -15388,17 +15772,25 @@ "resourceType": "locations/capabilities", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", "Central US", "East US", "East US 2", "France Central", + "Germany West Central", "Japan East", + "Japan West", "North Europe", + "Norway East", + "South Africa North", + "South Central US", "Southeast Asia", + "UAE North", "UK South", "West Europe", + "West US", "West US 2" ], "apiVersions": [ @@ -15412,17 +15804,25 @@ "resourceType": "locations/checkNameAvailability", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", "Central US", "East US", "East US 2", "France Central", + "Germany West Central", "Japan East", + "Japan West", "North Europe", + "Norway East", + "South Africa North", + "South Central US", "Southeast Asia", + "UAE North", "UK South", "West Europe", + "West US", "West US 2" ], "apiVersions": [ @@ -15573,24 +15973,32 @@ { "resourceType": "getPrivateDnsZoneSuffix", "locations": [ - "East US 2", - "East US", - "North Europe", - "Southeast Asia", - "West Europe", - "West US 2", - "North Central US", - "Canada Central", "Australia East", - "UK South", - "Japan East", - "Central US", - "Korea Central", + "Australia Southeast", + "Brazil South", + "Canada Central", "Central India", + "Central US", "East Asia", + "East US 2", + "East US", "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "North Europe", + "North Central US", + "Norway East", + "South Africa North", + "South Central US", + "Southeast Asia", "Switzerland North", - "Brazil South" + "UAE North", + "UK South", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ "2021-03-31-privatepreview", @@ -15833,17 +16241,25 @@ "resourceType": "locations/checkVirtualNetworkSubnetUsage", "locations": [ "Australia East", + "Australia Southeast", "Canada Central", "Central US", "East US", "East US 2", "France Central", + "Germany West Central", + "Japan West", "Japan East", "North Central US", "North Europe", + "Norway East", + "South Africa North", + "South Central US", "Southeast Asia", + "UAE North", "UK South", "West Europe", + "West US", "West US 2" ], "apiVersions": [ @@ -17206,7 +17622,7 @@ } ], "metadata": { - "build": "1.0.3119.0", + "build": "1.0.3164.0", "microsoft.insights": { "monitoringResourceProvider": { "version": "1.0", @@ -17524,7 +17940,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-01-01-preview", @@ -20484,6 +20901,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -34466,6 +34887,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -34751,6 +35176,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -36777,6 +37206,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -37190,6 +37623,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -37866,6 +38303,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -38054,6 +38495,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -38282,7 +38727,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-10-01", @@ -38318,6 +38766,50 @@ }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, + { + "resourceType": "querypacks", + "locations": [ + "West Central US", + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Brazil Southeast", + "Japan West", + "UAE North", + "Australia Central", + "France South", + "South India" + ], + "apiVersions": [ + "2019-09-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, { "resourceType": "locations", "locations": [], @@ -38371,7 +38863,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-10-01", @@ -38423,7 +38918,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-03-01-preview", @@ -38484,7 +38982,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-08-01", @@ -38529,7 +39030,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-08-01", @@ -38574,7 +39078,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-08-01", @@ -38680,7 +39187,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-08-01", @@ -38737,7 +39247,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-08-01", @@ -38794,7 +39307,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-10-01", @@ -38831,16 +39347,7 @@ "West US", "UK West", "South Africa North", - "Brazil South", - "Switzerland North", - "Switzerland West", - "Germany West Central", - "Australia Central 2", - "UAE Central", - "UAE North", - "Japan West", - "Brazil Southeast", - "Norway East" + "Brazil South" ], "apiVersions": [ "2020-08-01", @@ -43353,6 +43860,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18", "2016-02-01-preview" ], @@ -43387,11 +43895,10 @@ "UAE North", "Switzerland North", "Switzerland West", - "Germany West Central", - "West US 3", - "Norway East" + "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18", "2016-02-01-preview" ], @@ -43429,6 +43936,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18", "2016-02-01-preview" ], @@ -43463,11 +43971,10 @@ "UAE North", "Switzerland North", "Switzerland West", - "Germany West Central", - "Norway East", - "West US 3" + "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18", "2016-02-01-preview" ], @@ -43505,6 +44012,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18", "2016-02-01-preview" ], @@ -43542,6 +44050,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18", "2016-02-01-preview" ], @@ -43549,9 +44058,39 @@ }, { "resourceType": "checkDomainAvailability", - "locations": [], + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany West Central" + ], "apiVersions": [ - "2017-04-18" + "2021-04-30", + "2017-04-18", + "2016-02-01-preview" ], "capabilities": "None" }, @@ -43587,6 +44126,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18" ], "capabilities": "None" @@ -43623,6 +44163,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18" ], "capabilities": "None" @@ -43659,9 +44200,118 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18" ], "capabilities": "None" + }, + { + "resourceType": "deletedAccounts", + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany West Central" + ], + "apiVersions": [ + "2021-04-30" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/resourceGroups", + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany West Central" + ], + "apiVersions": [ + "2021-04-30" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/resourceGroups/deletedAccounts", + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany West Central" + ], + "apiVersions": [ + "2021-04-30" + ], + "capabilities": "None" } ], "metadata": { @@ -45516,6 +46166,7 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-03-31", "2021-03-03-preview", "2021-02-01-preview", "2020-08-31-preview", @@ -45563,6 +46214,7 @@ "resourceType": "usages", "locations": [], "apiVersions": [ + "2021-03-31", "2021-03-03-preview", "2021-02-01-preview", "2020-08-31-preview", @@ -45597,6 +46249,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-31", "2021-03-03-preview", "2021-02-01-preview", "2020-08-31-preview", @@ -45631,6 +46284,7 @@ "resourceType": "operationResults", "locations": [], "apiVersions": [ + "2021-03-31", "2021-03-03-preview", "2021-02-01-preview", "2020-08-31-preview", @@ -45707,6 +46361,7 @@ "UAE North" ], "apiVersions": [ + "2021-03-31", "2021-03-03-preview", "2021-02-01-preview", "2020-08-31-preview", @@ -46960,6 +47615,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -47165,6 +47824,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "None" @@ -49136,6 +49799,8 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview", "2021-05-01", "2021-03-01-preview", "2020-05-01", @@ -49163,6 +49828,8 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview", "2021-05-01", "2021-03-01-preview", "2020-05-01", @@ -49215,6 +49882,8 @@ "Norway East" ], "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview", "2021-05-01", "2021-03-01-preview", "2020-05-01", @@ -49969,11 +50638,18 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { "Microsoft.ManagedIdentity": { - "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b" + "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b", + "delegationAppIds": [ + "a6aa9161-5291-40bb-8c5c-923b567bee3b" + ] }, "portal": { "kinds": [ @@ -53512,7 +54188,7 @@ "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2020-01-01", + "defaultApiVersion": "2021-03-01", "capabilities": "SupportsTags, SupportsLocation" }, { @@ -53555,7 +54231,7 @@ "2020-01-01", "2017-06-01" ], - "defaultApiVersion": "2020-01-01", + "defaultApiVersion": "2021-03-01", "capabilities": "None" }, { @@ -53599,7 +54275,7 @@ "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2020-01-01", + "defaultApiVersion": "2021-03-01", "capabilities": "None" }, { @@ -53643,7 +54319,7 @@ "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2020-01-01", + "defaultApiVersion": "2021-03-01", "capabilities": "None" }, { @@ -53687,7 +54363,7 @@ "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2020-01-01", + "defaultApiVersion": "2021-03-01", "capabilities": "None" } ], @@ -54112,6 +54788,15 @@ "defaultApiVersion": "2020-05-12-preview", "capabilities": "None" }, + { + "resourceType": "farmBeatsExtensionDefinitions", + "locations": [], + "apiVersions": [ + "2020-05-12-preview" + ], + "defaultApiVersion": "2020-05-12-preview", + "capabilities": "None" + }, { "resourceType": "checkNameAvailability", "locations": [], @@ -54679,7 +55364,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" }, { "resourceType": "Operations", @@ -54687,6 +55372,11 @@ "apiVersions": [ "2020-08-26" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" } ], @@ -55245,6 +55935,7 @@ "France Central" ], "apiVersions": [ + "2021-04-01", "2020-01-13-preview", "2019-06-01", "2018-06-30", @@ -55879,7 +56570,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-03-20" @@ -55902,7 +56596,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-03-20" @@ -55925,7 +56622,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2021-01-01-preview", @@ -55971,7 +56671,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2021-01-01-preview", @@ -55995,7 +56698,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-03-20" @@ -56018,7 +56724,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-03-20" @@ -56041,7 +56750,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56064,7 +56776,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56087,7 +56802,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56110,7 +56828,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56133,7 +56854,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56156,7 +56880,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56179,7 +56906,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56202,7 +56932,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56225,7 +56958,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56248,7 +56984,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56271,7 +57010,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56415,6 +57157,10 @@ { "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", "roleDefinitionId": "2e103dbb-6933-4a8b-a358-17ee9ff00b9e" + }, + { + "applicationId": "bb55177b-a7d9-4939-a257-8ab53a3b2bc6", + "roleDefinitionId": "53e71f1b-1471-4d76-9ca8-e6ed70639ef7" } ], "resourceTypes": [ @@ -56422,6 +57168,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-06-01-preview", "2021-03-02-preview", "2019-01-01" ], @@ -56431,6 +57178,7 @@ "resourceType": "Operations", "locations": [], "apiVersions": [ + "2021-06-01-preview", "2021-03-02-preview", "2020-12-08-preview" ], @@ -56456,6 +57204,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2021-03-02-preview", "2019-10-01" ], @@ -56478,6 +57227,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2021-03-02-preview", "2020-12-08-preview" ], @@ -56500,6 +57250,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2021-03-02-preview", "2020-12-08-preview" ], @@ -56522,6 +57273,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2021-03-02-preview", "2020-12-08-preview" ], @@ -56751,55 +57503,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureSphere", - "namespace": "Microsoft.AzureSphere", - "authorizations": [ - { - "applicationId": "e7d5afaf-5e93-4aad-b546-878812ff572c", - "roleDefinitionId": "0bf1834f-602f-4692-b93c-814d655198fd" - } - ], - "resourceTypes": [ - { - "resourceType": "catalogs", - "locations": [ - "East US 2 EUAP", - "Central US EUAP", - "global" - ], - "apiVersions": [ - "2021-02-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": false - } - }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "catalogs/products", - "locations": [ - "global" - ], - "apiVersions": [ - "2021-02-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": false - } - }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - } - ], - "metadata": { - "onboardedVia": "ProviderHub" - }, - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureStack", "namespace": "Microsoft.AzureStack", @@ -56903,6 +57606,11 @@ "2020-10-01", "2020-03-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -59484,6 +60192,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-05-14-preview", "2021-04-02-preview", "2021-03-05-preview", "2021-02-12-preview", @@ -59810,66 +60519,8 @@ { "resourceType": "Locations/operationstatuses", "locations": [ - "East US 2 EUAP" - ], - "apiVersions": [ - "2020-12-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "Ledgers", - "locations": [ - "East US 2 EUAP" - ], - "apiVersions": [ - "2020-12-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": false - } - }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - } - ], - "metadata": { - "onboardedVia": "ProviderHub" - }, - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConfidentialLedger", - "namespace": "Microsoft.ConfidentialLedger", - "authorizations": [ - { - "applicationId": "4353526e-1c33-4fcf-9e82-9683edf52848" - }, - { - "applicationId": "c9e0b461-3515-4a03-b576-ede91ed4336d" - } - ], - "resourceTypes": [ - { - "resourceType": "Locations", - "locations": [ - "global" - ], - "apiVersions": [ - "2020-12-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, - "capabilities": "None" - }, - { - "resourceType": "Locations/operationstatuses", - "locations": [ - "East US 2 EUAP" + "East US 2 EUAP", + "East US" ], "apiVersions": [ "2020-12-01-preview" @@ -59879,7 +60530,8 @@ { "resourceType": "Ledgers", "locations": [ - "East US 2 EUAP" + "East US 2 EUAP", + "East US" ], "apiVersions": [ "2020-12-01-preview" @@ -59889,7 +60541,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" } ], "metadata": { @@ -59912,6 +60564,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-01-preview", "2020-03-01-preview", "2020-03-01" ], @@ -59921,6 +60574,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-03-01-preview", "2020-03-01-preview", "2020-03-01" ], @@ -59945,6 +60599,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-03-01-preview", "2020-03-01-preview", "2020-03-01" ], @@ -59967,6 +60622,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-03-01-preview", "2020-03-01-preview", "2020-03-01" ], @@ -59976,6 +60632,7 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-03-01-preview", "2020-03-01-preview", "2020-03-01" ], @@ -59985,10 +60642,32 @@ "resourceType": "agreements", "locations": [], "apiVersions": [ + "2021-03-01-preview", "2020-03-01-preview", "2020-03-01" ], "capabilities": "None" + }, + { + "resourceType": "validations", + "locations": [ + "West US 2", + "West Central US", + "Australia East", + "France Central", + "Canada Central", + "East US", + "UK South", + "West Europe", + "Central US", + "East US 2", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "None" } ], "metadata": { @@ -60627,6 +61306,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60675,6 +61355,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60742,6 +61423,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60790,6 +61472,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60838,6 +61521,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60886,6 +61570,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60953,6 +61638,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -61001,6 +61687,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -61105,6 +61792,7 @@ "francecentral", "germanywestcentral", "japaneast", + "japanwest", "koreacentral", "northcentralus", "northeurope", @@ -61832,6 +62520,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61843,6 +62532,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61868,6 +62558,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61893,6 +62584,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61918,6 +62610,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61929,6 +62622,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61954,6 +62648,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61979,6 +62674,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -62004,6 +62700,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -62785,199 +63482,6 @@ "2020-02-01-preview" ], "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, - "capabilities": "None" - }, - { - "resourceType": "locations/operationStatuses", - "locations": [ - "West US 2", - "East US 2 EUAP" - ], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "monitors", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "metadata": { - "Microsoft.ManagedIdentity": { - "applicationId": "055caf97-1b4f-4730-9f5d-acc24b707b06" - }, - "providerHubMetadata": { - "providerExtendsPreflight": false - } - }, - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "monitors/tagRules", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": false - } - }, - "capabilities": "None" - }, - { - "resourceType": "monitors/listMonitoredResources", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, - "capabilities": "None" - }, - { - "resourceType": "monitors/listApiKeys", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, - "capabilities": "None" - }, - { - "resourceType": "monitors/getDefaultKey", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, - "capabilities": "None" - }, - { - "resourceType": "monitors/setDefaultKey", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, - "capabilities": "None" - }, - { - "resourceType": "monitors/singleSignOnConfigurations", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": false - } - }, - "capabilities": "None" - }, - { - "resourceType": "monitors/listHosts", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, - "capabilities": "None" - }, - { - "resourceType": "monitors/listLinkedResources", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, - "capabilities": "None" - }, - { - "resourceType": "monitors/refreshSetPasswordLink", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], "metadata": { "providerHubMetadata": { "providerExtendsPreflight": true @@ -62985,55 +63489,6 @@ }, "capabilities": "None" }, - { - "resourceType": "agreements", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": false - } - }, - "capabilities": "None" - } - ], - "metadata": { - "onboardedVia": "ProviderHub" - }, - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Datadog", - "namespace": "Microsoft.Datadog", - "authorizations": [ - { - "applicationId": "ae11f5fb-c627-4eec-b4a0-f7b5969426e5", - "roleDefinitionId": "904f1136-432f-44da-adc4-d3bdf27b156d" - }, - { - "applicationId": "055caf97-1b4f-4730-9f5d-acc24b707b06", - "roleDefinitionId": "4ac7c055-417e-47eb-9a38-137e6233a688" - }, - { - "applicationId": "0c6620df-7b29-44de-8ba4-688a56a20f9f", - "roleDefinitionId": "e2116b11-5fb7-4f68-b0e9-9d4173a5dfdb" - } - ], - "resourceTypes": [ - { - "resourceType": "registeredSubscriptions", - "locations": [], - "apiVersions": [ - "2021-03-01", - "2020-02-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, { "resourceType": "locations", "locations": [], @@ -63052,6 +63507,7 @@ "resourceType": "locations/operationStatuses", "locations": [ "West US 2", + "Central US EUAP", "East US 2 EUAP" ], "apiVersions": [ @@ -63067,6 +63523,11 @@ "2021-03-01", "2020-02-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -65876,74 +66337,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DelegatedNetwork", - "namespace": "Microsoft.DelegatedNetwork", - "authorizations": [ - { - "applicationId": "a91b1853-4403-4f54-b5cb-d1ea19d90c37", - "roleDefinitionId": "ff3f8a59-97f9-442a-9d5f-e21908e36352" - }, - { - "applicationId": "1efe5bbf-d5b1-4fe9-99fa-f55ce1c88679" - } - ], - "resourceTypes": [ - { - "resourceType": "operations", - "locations": [ - "Australia Central", - "Australia Central 2", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US 2", - "East US", - "France Central", - "France South", - "Germany West Central", - "Japan East", - "Japan West", - "Korea Central", - "Korea South", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Africa West", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "UAE North", - "UK South", - "UK West", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2" - ], - "apiVersions": [ - "2021-03-15", - "2020-08-08-preview" - ], - "capabilities": "None" - } - ], - "metadata": { - "Microsoft.ManagedIdentity": { - "applicationId": "a91b1853-4403-4f54-b5cb-d1ea19d90c37" - } - }, - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DeploymentManager", "namespace": "Microsoft.DeploymentManager", @@ -66349,7 +66742,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "accounts/instances", @@ -66442,8 +66835,6 @@ { "resourceType": "controllers", "locations": [ - "West Europe", - "Central US", "East US 2" ], "apiVersions": [ @@ -66454,8 +66845,6 @@ { "resourceType": "controllers/listConnectionDetails", "locations": [ - "West Europe", - "Central US", "East US 2" ], "apiVersions": [ @@ -66466,8 +66855,6 @@ { "resourceType": "operations", "locations": [ - "West Europe", - "Central US", "East US 2" ], "apiVersions": [ @@ -66479,8 +66866,6 @@ { "resourceType": "locations", "locations": [ - "West Europe", - "Central US", "East US 2" ], "apiVersions": [ @@ -66491,8 +66876,6 @@ { "resourceType": "locations/operationresults", "locations": [ - "West Europe", - "Central US", "East US 2" ], "apiVersions": [ @@ -66503,8 +66886,6 @@ { "resourceType": "locations/checkContainerHostMapping", "locations": [ - "West Europe", - "Central US", "East US 2" ], "apiVersions": [ @@ -67374,6 +67755,7 @@ "Australia East", "East US 2", "West US 2", + "UK South", "West Central US" ], "apiVersions": [ @@ -67392,6 +67774,7 @@ "Australia East", "East US 2", "West US 2", + "UK South", "West Central US" ], "apiVersions": [ @@ -67410,6 +67793,7 @@ "Australia East", "East US 2", "West US 2", + "UK South", "West Central US" ], "apiVersions": [ @@ -67428,6 +67812,7 @@ "Australia East", "East US 2", "West US 2", + "UK South", "West Central US" ], "apiVersions": [ @@ -69199,6 +69584,10 @@ { "applicationId": "a0f92522-89de-4c5e-9a75-0044ccf66efd", "roleDefinitionId": "b3429810-7d5c-420e-8605-cf280f3099f2" + }, + { + "applicationId": "bd9b7cd5-dac1-495f-b013-ac871e98fa5f", + "roleDefinitionId": "0d44c8f0-08b9-44d4-9f59-e51c83f95200" } ], "resourceTypes": [ @@ -69242,6 +69631,7 @@ "France Central" ], "apiVersions": [ + "2021-05-01-preview", "2020-07-01-preview" ], "capabilities": "SystemAssignedResourceIdentity, SupportsExtension" @@ -69250,6 +69640,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2021-03-01", "2020-10-01-preview", "2020-07-01-preview", @@ -69491,6 +69882,14 @@ "2", "3" ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -71438,6 +71837,7 @@ "Switzerland West" ], "apiVersions": [ + "2021-05-01", "2020-07-01-preview", "2020-04-01", "2018-10-01", @@ -71491,6 +71891,7 @@ "Switzerland West" ], "apiVersions": [ + "2021-05-01", "2020-07-01-preview", "2020-04-01", "2018-10-01", @@ -71544,6 +71945,7 @@ "Switzerland West" ], "apiVersions": [ + "2021-05-01", "2020-07-01-preview", "2020-04-01", "2018-10-01", @@ -71597,6 +71999,7 @@ "Switzerland West" ], "apiVersions": [ + "2021-05-01", "2020-07-01-preview", "2020-04-01", "2018-10-01", @@ -71611,6 +72014,7 @@ "resourceType": "publicMaintenanceConfigurations", "locations": [], "apiVersions": [ + "2021-05-01", "2021-04-01-preview", "2020-07-01-preview" ], @@ -74258,7 +74662,11 @@ "North Europe", "West Europe", "West US 2", - "West Central US" + "West Central US", + "Japan East", + "Japan West", + "UK West", + "UK South" ], "apiVersions": [ "2019-11-04-preview" @@ -74267,6 +74675,9 @@ "metadata": { "Microsoft.ManagedIdentity": { "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc" + }, + "providerHubMetadata": { + "providerExtendsPreflight": false } }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -74277,6 +74688,11 @@ "apiVersions": [ "2019-11-04-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -74285,6 +74701,11 @@ "apiVersions": [ "2019-11-04-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -74297,7 +74718,11 @@ "East US 2 EUAP", "Central US EUAP", "West US 2", - "West Central US" + "West Central US", + "Japan East", + "Japan West", + "UK West", + "UK South" ], "apiVersions": [ "2019-11-04-preview" @@ -74312,7 +74737,11 @@ "North Europe", "West Europe", "West US 2", - "West Central US" + "West Central US", + "Japan East", + "Japan West", + "UK West", + "UK South" ], "apiVersions": [ "2019-11-04-preview" @@ -74337,6 +74766,86 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.RecommendationsService", + "namespace": "Microsoft.RecommendationsService", + "authorizations": [ + { + "applicationId": "C5B731DB-1B0A-43F6-BCF6-757667D9CDC6", + "roleDefinitionId": "FA1FE492-0EDB-4A97-A404-DBDF3F915824" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "East US", + "West US", + "North Europe", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/modeling", + "locations": [ + "West US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/serviceEndpoints", + "locations": [ + "East US", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.RecoveryServices", "namespace": "Microsoft.RecoveryServices", @@ -76971,6 +77480,7 @@ { "resourceType": "searchServices", "locations": [ + "West US 3", "Germany West Central", "Norway East", "Switzerland West", @@ -77035,6 +77545,7 @@ { "resourceType": "resourceHealthMetadata", "locations": [ + "West US 3", "Germany West Central", "Norway East", "Switzerland West", @@ -79151,6 +79662,10 @@ { "applicationId": "9581bc0e-c952-4fd3-8d99-e777877718b1", "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" + }, + { + "applicationId": "17724442-aa9a-46cc-bf09-c47bb1a98518", + "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" } ], "resourceTypes": [ @@ -81177,7 +81692,8 @@ "South India", "Norway East", "Germany West Central", - "Uae North" + "Uae North", + "Australia Central" ], "apiVersions": [ "2019-06-01", @@ -81225,7 +81741,8 @@ "South India", "Norway East", "Germany West Central", - "Uae North" + "Uae North", + "Australia Central" ], "apiVersions": [ "2020-03-01-preview", @@ -81263,7 +81780,8 @@ "South India", "Norway East", "Germany West Central", - "Uae North" + "Uae North", + "Australia Central" ], "apiVersions": [ "2020-03-01-preview", @@ -81301,7 +81819,8 @@ "South India", "Norway East", "Germany West Central", - "UAE North" + "UAE North", + "Australia Central" ], "apiVersions": [ "2019-06-01", @@ -81384,7 +81903,8 @@ "France Central", "South India", "Norway East", - "Uae North" + "Uae North", + "Australia Central" ], "apiVersions": [ "2019-06-01", @@ -81858,6 +82378,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -81935,6 +82457,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -82006,6 +82530,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2020-04-01-preview", @@ -82301,6 +82827,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -82341,6 +82869,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -82351,6 +82881,8 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -82391,12 +82923,22 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" ], "capabilities": "None" }, + { + "resourceType": "kustoOperations", + "locations": [], + "apiVersions": [ + "2021-04-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "privateLinkHubs", "locations": [ @@ -82431,6 +82973,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -82441,6 +82985,8 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -82481,6 +83027,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -82521,6 +83069,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -82905,8 +83455,8 @@ "West US", "West US 2", "South Central US", - "North Europe", - "West Europe" + "West Europe", + "North Europe" ], "apiVersions": [ "2020-02-14", @@ -82926,8 +83476,8 @@ "West US", "West US 2", "South Central US", - "North Europe", - "West Europe" + "West Europe", + "North Europe" ], "apiVersions": [ "2020-02-14", @@ -82971,8 +83521,8 @@ "West US", "West US 2", "South Central US", - "North Europe", - "West Europe" + "West Europe", + "North Europe" ], "apiVersions": [ "2020-02-14", @@ -82991,8 +83541,8 @@ "West US", "West US 2", "South Central US", - "North Europe", - "West Europe" + "West Europe", + "North Europe" ], "apiVersions": [ "2020-02-14", @@ -83779,6 +84329,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83788,7 +84339,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" }, { "resourceType": "fusionGroups/azureZones", @@ -83803,6 +84354,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83827,6 +84379,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83851,6 +84404,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83868,6 +84422,7 @@ "East US" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83895,6 +84450,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83905,6 +84461,7 @@ "resourceType": "fusionGroups/replicationRules/migrations", "locations": [], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83920,6 +84477,7 @@ "resourceType": "registeredSubscriptions", "locations": [], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83944,6 +84502,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83968,6 +84527,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83983,10 +84543,16 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -84004,6 +84570,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -84013,7 +84580,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" }, { "resourceType": "migrators/targets", @@ -84030,6 +84597,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -84056,6 +84624,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -84082,6 +84651,88 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", + "2021-01-01-preview", + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrators/metadataMigrations", + "locations": [ + "Canada Central", + "East US", + "West US", + "West US 2", + "West Central US", + "Korea Central", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-01-preview", + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrators/metadataTargets", + "locations": [ + "Canada Central", + "East US", + "West US", + "West US 2", + "West Central US", + "Korea Central", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-01-preview", + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrators/pathMappings", + "locations": [ + "Canada Central", + "East US", + "West US", + "West US 2", + "West Central US", + "Korea Central", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json index 77c4b204aaa1..14f73d045495 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f40b5f47cb829046a5b2234b71c297e3-70f81eb98633ab4b-00", + "traceparent": "00-304e0d5d916ce248a8216687e81fedd3-e01458a9d305ae46-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8ea69f816f2f18ccce65ca21918d7337", "x-ms-return-client-request-id": "true" @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:02 GMT", + "Date": "Wed, 19 May 2021 18:51:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a620845b-cece-4cb3-8d4c-81bb0815e4d5", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "a620845b-cece-4cb3-8d4c-81bb0815e4d5", - "x-ms-routing-request-id": "WESTUS2:20210507T002302Z:a620845b-cece-4cb3-8d4c-81bb0815e4d5" + "x-ms-correlation-request-id": "76abe8e0-b4c9-40ac-8379-884602bba8a2", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "76abe8e0-b4c9-40ac-8379-884602bba8a2", + "x-ms-routing-request-id": "WESTUS2:20210519T185158Z:76abe8e0-b4c9-40ac-8379-884602bba8a2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-348a0e2597c631439ec9408608dd763c-e1f349f19159a44b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b52067880987c349bd3a50cc80bac90e-abacb239defb8d4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22bcabeba86cfa7cc2b3b13c9ce6eda2", "x-ms-return-client-request-id": "true" }, @@ -64,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:02 GMT", + "Date": "Wed, 19 May 2021 18:51:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6e6e65b-c977-447f-8eb9-77a6d9826458", + "x-ms-correlation-request-id": "cd441bcd-69c0-42c6-9ae2-95ea3775d5a3", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "e6e6e65b-c977-447f-8eb9-77a6d9826458", - "x-ms-routing-request-id": "WESTUS2:20210507T002303Z:e6e6e65b-c977-447f-8eb9-77a6d9826458" + "x-ms-request-id": "cd441bcd-69c0-42c6-9ae2-95ea3775d5a3", + "x-ms-routing-request-id": "WESTUS2:20210519T185158Z:cd441bcd-69c0-42c6-9ae2-95ea3775d5a3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3699", @@ -91,7 +91,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4d43aaa1a99ee44b9a3befb2eec679bf-2ef0d8954cfebb4c-00", + "traceparent": "00-1df79482b126654eb90ed1ecaa5f09ae-c55cd596df049741-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "528e1efe62ef073f41b442f10cdf8fa8", "x-ms-return-client-request-id": "true" @@ -100,17 +100,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1293230", + "Content-Length": "1310422", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:05 GMT", + "Date": "Wed, 19 May 2021 18:52:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2cf0df21-912a-44ca-b2dc-43aca5f59fb7", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "2cf0df21-912a-44ca-b2dc-43aca5f59fb7", - "x-ms-routing-request-id": "WESTUS2:20210507T002305Z:2cf0df21-912a-44ca-b2dc-43aca5f59fb7" + "x-ms-correlation-request-id": "3af9ca57-bb03-42d6-986e-134028929bed", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "3af9ca57-bb03-42d6-986e-134028929bed", + "x-ms-routing-request-id": "WESTUS2:20210519T185201Z:3af9ca57-bb03-42d6-986e-134028929bed" }, "ResponseBody": { "value": [ @@ -213,8 +213,7 @@ "UAE North", "Australia Central", "France South", - "South India", - "West Central US" + "South India" ], "apiVersions": [ "2020-02-02-preview", @@ -448,8 +447,7 @@ "UAE North", "Australia Central", "France South", - "South India", - "West Central US" + "South India" ], "apiVersions": [ "2018-05-01-preview", @@ -732,7 +730,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2015-04-01", @@ -866,7 +865,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2017-05-01-preview", @@ -917,7 +917,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2017-05-01-preview" @@ -960,7 +961,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2017-02-01" @@ -4767,6 +4769,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -4866,6 +4869,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -4920,6 +4924,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -4969,6 +4974,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5018,6 +5024,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5068,6 +5075,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5118,6 +5126,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5168,6 +5177,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5218,6 +5228,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5268,6 +5279,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5318,6 +5330,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5366,6 +5379,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5414,6 +5428,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5462,6 +5477,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5510,6 +5526,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5558,6 +5575,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5606,6 +5624,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5654,6 +5673,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5704,6 +5724,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5754,6 +5775,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5806,6 +5828,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5859,6 +5882,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -5912,6 +5936,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6141,6 +6166,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6236,6 +6262,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6283,6 +6310,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6465,6 +6493,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6603,6 +6632,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6652,6 +6682,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6745,6 +6776,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6794,6 +6826,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -6851,6 +6884,135 @@ ], "capabilities": "None" }, + { + "resourceType": "servers/databases/ledgerDigestUploads", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/ledgerDigestUploadsAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/ledgerDigestUploadsOperationResults", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "servers/recommendedElasticPools", "locations": [ @@ -7025,6 +7187,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7075,6 +7238,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7125,6 +7289,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7175,6 +7340,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7225,6 +7391,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7274,6 +7441,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" @@ -7319,6 +7487,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7368,6 +7537,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7417,6 +7587,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7466,6 +7637,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7515,6 +7687,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" @@ -7560,6 +7733,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" @@ -7605,6 +7779,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7656,6 +7831,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7707,6 +7883,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7787,6 +7964,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7833,6 +8011,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7882,6 +8061,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7931,6 +8111,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -7980,6 +8161,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8029,6 +8211,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8078,6 +8261,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8172,6 +8356,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8221,6 +8406,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8270,6 +8456,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8319,6 +8506,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8369,6 +8557,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8419,6 +8608,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8469,6 +8659,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8519,6 +8710,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8569,6 +8761,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8620,6 +8813,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8670,6 +8864,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8721,6 +8916,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8772,6 +8968,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8823,6 +9020,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -8874,6 +9072,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9283,6 +9482,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9336,6 +9536,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9386,6 +9587,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9484,6 +9686,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9534,6 +9737,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9584,6 +9788,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9634,6 +9839,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9680,6 +9886,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9729,6 +9936,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9776,6 +9984,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9825,6 +10034,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9872,6 +10082,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9922,6 +10133,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -9968,6 +10180,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10016,6 +10229,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10064,6 +10278,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10113,6 +10328,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10163,6 +10379,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10213,6 +10430,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10263,6 +10481,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10310,6 +10529,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-08-01", @@ -10356,6 +10576,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-08-01", @@ -10402,6 +10623,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10449,6 +10671,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10496,6 +10719,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10580,6 +10804,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10629,6 +10854,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10746,6 +10972,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10795,6 +11022,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10844,6 +11072,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10891,6 +11120,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10939,6 +11169,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -10985,6 +11216,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11031,6 +11263,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11077,6 +11310,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11123,6 +11357,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11170,6 +11405,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11217,6 +11453,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11264,6 +11501,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11311,6 +11549,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11358,6 +11597,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11405,6 +11645,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11454,6 +11695,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11503,6 +11745,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11552,6 +11795,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11601,6 +11845,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11648,6 +11893,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11695,6 +11941,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11744,6 +11991,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11792,6 +12040,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11840,6 +12089,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11888,6 +12138,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11937,6 +12188,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -11986,6 +12238,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12035,6 +12288,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12085,6 +12339,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12135,6 +12390,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12185,6 +12441,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12235,6 +12492,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12285,6 +12543,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12334,6 +12593,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12345,256 +12605,160 @@ "capabilities": "None" }, { - "resourceType": "locations/syncGroupOperationResults", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "Jio India West", - "Korea Central", - "Korea South", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "UAE North", - "UK South", - "UK West", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2" - ], - "apiVersions": [ - "2020-11-01-preview", - "2020-08-01-preview", - "2020-02-02-preview", - "2019-06-01-preview", - "2018-06-01-preview", - "2017-10-01-preview", - "2017-03-01-preview", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/syncMemberOperationResults", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "Jio India West", - "Korea Central", - "Korea South", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "UAE North", - "UK South", - "UK West", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2" - ], - "apiVersions": [ - "2020-11-01-preview", - "2020-08-01-preview", - "2020-02-02-preview", - "2019-06-01-preview", - "2018-06-01-preview", - "2017-10-01-preview", - "2017-03-01-preview", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/syncAgentOperationResults", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "Jio India West", - "Korea Central", - "Korea South", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "UAE North", - "UK South", - "UK West", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2" - ], - "apiVersions": [ - "2020-11-01-preview", - "2020-08-01-preview", - "2020-02-02-preview", - "2019-06-01-preview", - "2018-06-01-preview", - "2017-10-01-preview", - "2017-03-01-preview", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/syncDatabaseIds", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "Jio India West", - "Korea Central", - "Korea South", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "UAE North", - "UK South", - "UK West", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2" - ], - "apiVersions": [ - "2020-11-01-preview", - "2020-08-01-preview", - "2020-02-02-preview", - "2019-06-01-preview", - "2018-06-01-preview", - "2017-10-01-preview", - "2017-03-01-preview", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/longTermRetentionServers", - "locations": [ - "Australia Central", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US", - "East US 2", - "France Central", - "Germany West Central", - "Japan East", - "Japan West", - "Jio India West", - "Korea Central", - "Korea South", - "North Central US", - "North Europe", - "Norway East", - "South Africa North", - "South Central US", - "South India", - "Southeast Asia", - "Switzerland North", - "UAE North", - "UK South", - "UK West", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2" - ], - "apiVersions": [ - "2020-11-01-preview", - "2020-08-01-preview", - "2020-02-02-preview", - "2019-06-01-preview", - "2018-06-01-preview", - "2017-10-01-preview", - "2017-03-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/longTermRetentionBackups", + "resourceType": "locations/syncGroupOperationResults", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/syncMemberOperationResults", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/syncAgentOperationResults", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/syncDatabaseIds", "locations": [ "Australia Central", "Australia East", @@ -12632,6 +12796,58 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/longTermRetentionServers", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12643,7 +12859,7 @@ "capabilities": "None" }, { - "resourceType": "locations/longTermRetentionPolicyOperationResults", + "resourceType": "locations/longTermRetentionBackups", "locations": [ "Australia Central", "Australia East", @@ -12681,6 +12897,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12692,7 +12909,7 @@ "capabilities": "None" }, { - "resourceType": "locations/longTermRetentionPolicyAzureAsyncOperation", + "resourceType": "locations/longTermRetentionPolicyOperationResults", "locations": [ "Australia Central", "Australia East", @@ -12730,6 +12947,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12741,7 +12959,7 @@ "capabilities": "None" }, { - "resourceType": "locations/longTermRetentionBackupOperationResults", + "resourceType": "locations/longTermRetentionPolicyAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -12779,6 +12997,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12790,7 +13009,7 @@ "capabilities": "None" }, { - "resourceType": "locations/longTermRetentionBackupAzureAsyncOperation", + "resourceType": "locations/longTermRetentionBackupOperationResults", "locations": [ "Australia Central", "Australia East", @@ -12828,6 +13047,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12839,7 +13059,7 @@ "capabilities": "None" }, { - "resourceType": "locations/shortTermRetentionPolicyOperationResults", + "resourceType": "locations/longTermRetentionBackupAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -12877,17 +13097,19 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview" + "2017-10-01-preview", + "2017-03-01-preview" ], "capabilities": "None" }, { - "resourceType": "locations/shortTermRetentionPolicyAzureAsyncOperation", + "resourceType": "locations/shortTermRetentionPolicyOperationResults", "locations": [ "Australia Central", "Australia East", @@ -12925,6 +13147,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -12935,7 +13158,7 @@ "capabilities": "None" }, { - "resourceType": "locations/managedShortTermRetentionPolicyOperationResults", + "resourceType": "locations/shortTermRetentionPolicyAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -12973,18 +13196,18 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", - "2017-03-01-preview" + "2017-10-01-preview" ], "capabilities": "None" }, { - "resourceType": "locations/managedShortTermRetentionPolicyAzureAsyncOperation", + "resourceType": "locations/managedShortTermRetentionPolicyOperationResults", "locations": [ "Australia Central", "Australia East", @@ -13022,6 +13245,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13033,7 +13257,7 @@ "capabilities": "None" }, { - "resourceType": "locations/instanceFailoverGroups", + "resourceType": "locations/managedShortTermRetentionPolicyAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -13071,17 +13295,19 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview" + "2017-10-01-preview", + "2017-03-01-preview" ], "capabilities": "None" }, { - "resourceType": "locations/instanceFailoverGroupAzureAsyncOperation", + "resourceType": "locations/instanceFailoverGroups", "locations": [ "Australia Central", "Australia East", @@ -13119,6 +13345,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13129,7 +13356,7 @@ "capabilities": "None" }, { - "resourceType": "locations/instanceFailoverGroupOperationResults", + "resourceType": "locations/instanceFailoverGroupAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -13167,6 +13394,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13177,7 +13405,7 @@ "capabilities": "None" }, { - "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "resourceType": "locations/instanceFailoverGroupOperationResults", "locations": [ "Australia Central", "Australia East", @@ -13215,16 +13443,18 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview" + "2018-06-01-preview", + "2017-10-01-preview" ], "capabilities": "None" }, { - "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", "locations": [ "Australia Central", "Australia East", @@ -13262,6 +13492,55 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13309,6 +13588,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13317,6 +13597,92 @@ ], "capabilities": "None" }, + { + "resourceType": "locations/outboundFirewallRulesAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/outboundFirewallRulesOperationResults", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", "locations": [ @@ -13356,6 +13722,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13403,6 +13770,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", @@ -13453,6 +13821,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" @@ -13498,6 +13867,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" @@ -13543,6 +13913,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" @@ -14480,6 +14851,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview", "2020-06-01", "2019-11-01-preview", @@ -14520,6 +14892,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview" ], "capabilities": "None" @@ -14556,6 +14929,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview", "2020-06-01", "2019-11-01-preview", @@ -14596,6 +14970,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview", "2020-06-01", "2019-11-01-preview", @@ -14636,6 +15011,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview", "2020-06-01", "2019-11-01-preview", @@ -14676,6 +15052,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview", "2020-06-01", "2019-11-01-preview", @@ -14716,6 +15093,7 @@ "UK West" ], "apiVersions": [ + "2021-03-01-preview", "2020-07-01-preview", "2020-06-01", "2019-11-01-preview", @@ -14734,7 +15112,7 @@ "version": "1.0", "apiVersions": { "default": "2019-10-01", - "operations": "2020-07-01-preview" + "operations": "2021-03-01-preview" }, "metrics": { "mdmInfo": [ @@ -14895,6 +15273,10 @@ { "location": "Central India", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -15236,6 +15618,7 @@ "West Europe" ], "apiVersions": [ + "2021-04-10-privatepreview", "2020-11-05-preview", "2020-02-14-privatepreview", "2020-02-14-preview" @@ -15381,7 +15764,7 @@ } }, "Microsoft.ManagedIdentity": { - "applicationId": "87bbf879-e67c-49da-a9e1-632ecff043f9" + "applicationId": "37ef5504-7ac2-4c18-ad5a-09b4c66ce5f9" } }, "capabilities": "SupportsTags, SupportsLocation" @@ -15390,17 +15773,25 @@ "resourceType": "locations/capabilities", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", "Central US", "East US", "East US 2", "France Central", + "Germany West Central", "Japan East", + "Japan West", "North Europe", + "Norway East", + "South Africa North", + "South Central US", "Southeast Asia", + "UAE North", "UK South", "West Europe", + "West US", "West US 2" ], "apiVersions": [ @@ -15414,17 +15805,25 @@ "resourceType": "locations/checkNameAvailability", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", "Central US", "East US", "East US 2", "France Central", + "Germany West Central", "Japan East", + "Japan West", "North Europe", + "Norway East", + "South Africa North", + "South Central US", "Southeast Asia", + "UAE North", "UK South", "West Europe", + "West US", "West US 2" ], "apiVersions": [ @@ -15575,80 +15974,42 @@ { "resourceType": "getPrivateDnsZoneSuffix", "locations": [ - "East US 2", - "East US", - "North Europe", - "Southeast Asia", - "West Europe", - "West US 2", - "North Central US", - "Canada Central", - "Australia East", - "UK South", - "Japan East", - "Central US", - "Korea Central", - "Central India", - "East Asia", - "France Central", - "Switzerland North", - "Brazil South" - ], - "apiVersions": [ - "2021-03-31-privatepreview", - "2020-10-05-privatepreview", - "2018-03-29-privatepreview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [ - "Australia Central", - "Australia Central 2", "Australia East", "Australia Southeast", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "East Asia", "East US 2", "East US", "France Central", - "France South", "Germany West Central", "Japan East", "Japan West", "Korea Central", - "Korea South", - "North Central US", "North Europe", + "North Central US", "Norway East", "South Africa North", - "South Africa West", "South Central US", - "South India", "Southeast Asia", "Switzerland North", "UAE North", "UK South", - "UK West", - "West Central US", "West Europe", - "West India", "West US", "West US 2" ], "apiVersions": [ - "2017-12-01-preview", - "2017-12-01" + "2021-03-31-privatepreview", + "2020-10-05-privatepreview", + "2018-03-29-privatepreview" ], "capabilities": "None" }, { - "resourceType": "locations/operationResults", + "resourceType": "locations", "locations": [ "Australia Central", "Australia Central 2", @@ -15671,58 +16032,12 @@ "Korea South", "North Central US", "North Europe", - "South Africa North", - "South Africa West", - "South Central US", - "South India", - "Southeast Asia", "Norway East", - "Switzerland North", - "UAE North", - "UK South", - "UK West", - "West Central US", - "West Europe", - "West India", - "West US", - "West US 2" - ], - "apiVersions": [ - "2017-12-01-preview", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/azureAsyncOperation", - "locations": [ - "Australia Central", - "Australia Central 2", - "Australia East", - "Australia Southeast", - "Brazil South", - "Canada Central", - "Canada East", - "Central India", - "Central US", - "East Asia", - "East US 2", - "East US", - "France Central", - "France South", - "Germany West Central", - "Japan East", - "Japan West", - "Korea Central", - "Korea South", - "North Central US", - "North Europe", "South Africa North", "South Africa West", "South Central US", "South India", "Southeast Asia", - "Norway East", "Switzerland North", "UAE North", "UK South", @@ -15740,7 +16055,99 @@ "capabilities": "None" }, { - "resourceType": "locations/administratorOperationResults", + "resourceType": "locations/operationResults", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/azureAsyncOperation", + "locations": [ + "Australia Central", + "Australia Central 2", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US 2", + "East US", + "France Central", + "France South", + "Germany West Central", + "Japan East", + "Japan West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "South Africa North", + "South Africa West", + "South Central US", + "South India", + "Southeast Asia", + "Norway East", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2" + ], + "apiVersions": [ + "2017-12-01-preview", + "2017-12-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/administratorOperationResults", "locations": [ "Australia Central", "Australia Central 2", @@ -15835,17 +16242,25 @@ "resourceType": "locations/checkVirtualNetworkSubnetUsage", "locations": [ "Australia East", + "Australia Southeast", "Canada Central", "Central US", "East US", "East US 2", "France Central", + "Germany West Central", + "Japan West", "Japan East", "North Central US", "North Europe", + "Norway East", + "South Africa North", + "South Central US", "Southeast Asia", + "UAE North", "UK South", "West Europe", + "West US", "West US 2" ], "apiVersions": [ @@ -17208,7 +17623,7 @@ } ], "metadata": { - "build": "1.0.3119.0", + "build": "1.0.3164.0", "microsoft.insights": { "monitoringResourceProvider": { "version": "1.0", @@ -17526,7 +17941,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2018-01-01-preview", @@ -20486,6 +20902,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -34468,6 +34888,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -34753,6 +35177,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -36779,6 +37207,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -37192,6 +37624,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -37868,6 +38304,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -38056,6 +38496,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -38284,7 +38728,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-10-01", @@ -38320,6 +38767,50 @@ }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, + { + "resourceType": "querypacks", + "locations": [ + "West Central US", + "East US", + "South Central US", + "North Europe", + "West Europe", + "Southeast Asia", + "West US 2", + "UK South", + "Canada Central", + "Central India", + "Japan East", + "Australia East", + "Korea Central", + "France Central", + "Central US", + "East US 2", + "East Asia", + "West US", + "South Africa North", + "North Central US", + "Brazil South", + "Switzerland North", + "Norway East", + "Australia Southeast", + "Australia Central 2", + "Germany West Central", + "Switzerland West", + "UAE Central", + "UK West", + "Brazil Southeast", + "Japan West", + "UAE North", + "Australia Central", + "France South", + "South India" + ], + "apiVersions": [ + "2019-09-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, { "resourceType": "locations", "locations": [], @@ -38373,7 +38864,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-10-01", @@ -38425,7 +38919,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-03-01-preview", @@ -38486,7 +38983,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-08-01", @@ -38531,7 +39031,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-08-01", @@ -38576,7 +39079,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-08-01", @@ -38682,7 +39188,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-08-01", @@ -38739,7 +39248,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-08-01", @@ -38796,7 +39308,10 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-10-01", @@ -38833,16 +39348,7 @@ "West US", "UK West", "South Africa North", - "Brazil South", - "Switzerland North", - "Switzerland West", - "Germany West Central", - "Australia Central 2", - "UAE Central", - "UAE North", - "Japan West", - "Brazil Southeast", - "Norway East" + "Brazil South" ], "apiVersions": [ "2020-08-01", @@ -43355,6 +43861,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18", "2016-02-01-preview" ], @@ -43389,11 +43896,10 @@ "UAE North", "Switzerland North", "Switzerland West", - "Germany West Central", - "West US 3", - "Norway East" + "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18", "2016-02-01-preview" ], @@ -43431,6 +43937,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18", "2016-02-01-preview" ], @@ -43465,11 +43972,10 @@ "UAE North", "Switzerland North", "Switzerland West", - "Germany West Central", - "Norway East", - "West US 3" + "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18", "2016-02-01-preview" ], @@ -43507,6 +44013,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18", "2016-02-01-preview" ], @@ -43544,6 +44051,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18", "2016-02-01-preview" ], @@ -43551,9 +44059,39 @@ }, { "resourceType": "checkDomainAvailability", - "locations": [], + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany West Central" + ], "apiVersions": [ - "2017-04-18" + "2021-04-30", + "2017-04-18", + "2016-02-01-preview" ], "capabilities": "None" }, @@ -43589,6 +44127,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18" ], "capabilities": "None" @@ -43625,6 +44164,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18" ], "capabilities": "None" @@ -43661,9 +44201,118 @@ "Germany West Central" ], "apiVersions": [ + "2021-04-30", "2017-04-18" ], "capabilities": "None" + }, + { + "resourceType": "deletedAccounts", + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany West Central" + ], + "apiVersions": [ + "2021-04-30" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/resourceGroups", + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany West Central" + ], + "apiVersions": [ + "2021-04-30" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/resourceGroups/deletedAccounts", + "locations": [ + "Global", + "Australia East", + "Brazil South", + "West US", + "West US 2", + "West Europe", + "North Europe", + "Southeast Asia", + "East Asia", + "West Central US", + "South Central US", + "East US", + "East US 2", + "Canada Central", + "Japan East", + "Central India", + "UK South", + "Japan West", + "Korea Central", + "France Central", + "North Central US", + "Central US", + "South Africa North", + "UAE North", + "Switzerland North", + "Switzerland West", + "Germany West Central" + ], + "apiVersions": [ + "2021-04-30" + ], + "capabilities": "None" } ], "metadata": { @@ -45518,6 +46167,7 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-03-31", "2021-03-03-preview", "2021-02-01-preview", "2020-08-31-preview", @@ -45565,6 +46215,7 @@ "resourceType": "usages", "locations": [], "apiVersions": [ + "2021-03-31", "2021-03-03-preview", "2021-02-01-preview", "2020-08-31-preview", @@ -45599,6 +46250,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-31", "2021-03-03-preview", "2021-02-01-preview", "2020-08-31-preview", @@ -45633,6 +46285,7 @@ "resourceType": "operationResults", "locations": [], "apiVersions": [ + "2021-03-31", "2021-03-03-preview", "2021-02-01-preview", "2020-08-31-preview", @@ -45709,6 +46362,7 @@ "UAE North" ], "apiVersions": [ + "2021-03-31", "2021-03-03-preview", "2021-02-01-preview", "2020-08-31-preview", @@ -46962,6 +47616,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -47167,6 +47825,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "None" @@ -49138,6 +49800,8 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview", "2021-05-01", "2021-03-01-preview", "2020-05-01", @@ -49165,6 +49829,8 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview", "2021-05-01", "2021-03-01-preview", "2020-05-01", @@ -49217,6 +49883,8 @@ "Norway East" ], "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview", "2021-05-01", "2021-03-01-preview", "2020-05-01", @@ -49971,11 +50639,18 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { "Microsoft.ManagedIdentity": { - "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b" + "applicationId": "a6aa9161-5291-40bb-8c5c-923b567bee3b", + "delegationAppIds": [ + "a6aa9161-5291-40bb-8c5c-923b567bee3b" + ] }, "portal": { "kinds": [ @@ -53514,7 +54189,7 @@ "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2020-01-01", + "defaultApiVersion": "2021-03-01", "capabilities": "SupportsTags, SupportsLocation" }, { @@ -53557,7 +54232,7 @@ "2020-01-01", "2017-06-01" ], - "defaultApiVersion": "2020-01-01", + "defaultApiVersion": "2021-03-01", "capabilities": "None" }, { @@ -53601,7 +54276,7 @@ "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2020-01-01", + "defaultApiVersion": "2021-03-01", "capabilities": "None" }, { @@ -53645,7 +54320,7 @@ "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2020-01-01", + "defaultApiVersion": "2021-03-01", "capabilities": "None" }, { @@ -53689,7 +54364,7 @@ "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2020-01-01", + "defaultApiVersion": "2021-03-01", "capabilities": "None" } ], @@ -54114,6 +54789,15 @@ "defaultApiVersion": "2020-05-12-preview", "capabilities": "None" }, + { + "resourceType": "farmBeatsExtensionDefinitions", + "locations": [], + "apiVersions": [ + "2020-05-12-preview" + ], + "defaultApiVersion": "2020-05-12-preview", + "capabilities": "None" + }, { "resourceType": "checkNameAvailability", "locations": [], @@ -54681,7 +55365,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" }, { "resourceType": "Operations", @@ -54689,6 +55373,11 @@ "apiVersions": [ "2020-08-26" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" } ], @@ -55247,6 +55936,7 @@ "France Central" ], "apiVersions": [ + "2021-04-01", "2020-01-13-preview", "2019-06-01", "2018-06-30", @@ -55881,7 +56571,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-03-20" @@ -55904,7 +56597,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-03-20" @@ -55927,7 +56623,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2021-01-01-preview", @@ -55973,7 +56672,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2021-01-01-preview", @@ -55997,7 +56699,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-03-20" @@ -56020,7 +56725,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-03-20" @@ -56043,7 +56751,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56066,7 +56777,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56089,7 +56803,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56112,7 +56829,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56135,7 +56855,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56158,7 +56881,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56181,7 +56907,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56204,7 +56933,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56227,7 +56959,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56250,7 +56985,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56273,7 +57011,10 @@ "Southeast Asia", "UK West", "East US 2", - "Central US" + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" ], "apiVersions": [ "2020-07-17-preview" @@ -56417,6 +57158,10 @@ { "applicationId": "319f651f-7ddb-4fc6-9857-7aef9250bd05", "roleDefinitionId": "2e103dbb-6933-4a8b-a358-17ee9ff00b9e" + }, + { + "applicationId": "bb55177b-a7d9-4939-a257-8ab53a3b2bc6", + "roleDefinitionId": "53e71f1b-1471-4d76-9ca8-e6ed70639ef7" } ], "resourceTypes": [ @@ -56424,6 +57169,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-06-01-preview", "2021-03-02-preview", "2019-01-01" ], @@ -56433,6 +57179,7 @@ "resourceType": "Operations", "locations": [], "apiVersions": [ + "2021-06-01-preview", "2021-03-02-preview", "2020-12-08-preview" ], @@ -56458,6 +57205,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2021-03-02-preview", "2019-10-01" ], @@ -56480,6 +57228,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2021-03-02-preview", "2020-12-08-preview" ], @@ -56502,6 +57251,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2021-03-02-preview", "2020-12-08-preview" ], @@ -56524,6 +57274,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2021-03-02-preview", "2020-12-08-preview" ], @@ -56856,6 +57607,11 @@ "2020-10-01", "2020-03-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -59437,6 +60193,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-05-14-preview", "2021-04-02-preview", "2021-03-05-preview", "2021-02-12-preview", @@ -59763,7 +60520,8 @@ { "resourceType": "Locations/operationstatuses", "locations": [ - "East US 2 EUAP" + "East US 2 EUAP", + "East US" ], "apiVersions": [ "2020-12-01-preview" @@ -59773,7 +60531,8 @@ { "resourceType": "Ledgers", "locations": [ - "East US 2 EUAP" + "East US 2 EUAP", + "East US" ], "apiVersions": [ "2020-12-01-preview" @@ -59783,7 +60542,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" } ], "metadata": { @@ -59806,6 +60565,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-01-preview", "2020-03-01-preview", "2020-03-01" ], @@ -59815,6 +60575,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-03-01-preview", "2020-03-01-preview", "2020-03-01" ], @@ -59839,6 +60600,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-03-01-preview", "2020-03-01-preview", "2020-03-01" ], @@ -59861,6 +60623,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-03-01-preview", "2020-03-01-preview", "2020-03-01" ], @@ -59870,6 +60633,7 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-03-01-preview", "2020-03-01-preview", "2020-03-01" ], @@ -59879,10 +60643,32 @@ "resourceType": "agreements", "locations": [], "apiVersions": [ + "2021-03-01-preview", "2020-03-01-preview", "2020-03-01" ], "capabilities": "None" + }, + { + "resourceType": "validations", + "locations": [ + "West US 2", + "West Central US", + "Australia East", + "France Central", + "Canada Central", + "East US", + "UK South", + "West Europe", + "Central US", + "East US 2", + "North Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "None" } ], "metadata": { @@ -60521,6 +61307,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60569,6 +61356,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60636,6 +61424,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60684,6 +61473,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60732,6 +61522,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60780,6 +61571,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60847,6 +61639,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60895,6 +61688,7 @@ "France Central", "Germany West Central", "Japan East", + "Japan West", "Korea Central", "North Central US", "North Europe", @@ -60999,6 +61793,7 @@ "francecentral", "germanywestcentral", "japaneast", + "japanwest", "koreacentral", "northcentralus", "northeurope", @@ -61726,6 +62521,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61737,6 +62533,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61762,6 +62559,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61787,6 +62585,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61812,6 +62611,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61823,6 +62623,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61848,6 +62649,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61873,6 +62675,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -61898,6 +62701,7 @@ "UK South" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2020-04-01", "2019-09-01", @@ -62679,6 +63483,11 @@ "2020-02-01-preview" ], "defaultApiVersion": "2021-03-01", + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -62699,6 +63508,7 @@ "resourceType": "locations/operationStatuses", "locations": [ "West US 2", + "Central US EUAP", "East US 2 EUAP" ], "apiVersions": [ @@ -62714,6 +63524,11 @@ "2021-03-01", "2020-02-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -65887,18 +66702,12 @@ "apiVersions": [ "2020-03-01-preview" ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, "capabilities": "None" }, { - "resourceType": "locations/operationstatuses", + "resourceType": "locations/operationStatuses", "locations": [ "East US 2 EUAP", - "West US", "West US 2", "North Europe", "Southeast Asia" @@ -65934,7 +66743,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "accounts/instances", @@ -65959,11 +66768,6 @@ "apiVersions": [ "2020-03-01-preview" ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, "capabilities": "None" }, { @@ -65972,11 +66776,6 @@ "apiVersions": [ "2020-03-01-preview" ], - "metadata": { - "providerHubMetadata": { - "providerExtendsPreflight": true - } - }, "capabilities": "None" } ], @@ -66037,8 +66836,6 @@ { "resourceType": "controllers", "locations": [ - "West Europe", - "Central US", "East US 2" ], "apiVersions": [ @@ -66049,8 +66846,6 @@ { "resourceType": "controllers/listConnectionDetails", "locations": [ - "West Europe", - "Central US", "East US 2" ], "apiVersions": [ @@ -66061,8 +66856,6 @@ { "resourceType": "operations", "locations": [ - "West Europe", - "Central US", "East US 2" ], "apiVersions": [ @@ -66074,8 +66867,6 @@ { "resourceType": "locations", "locations": [ - "West Europe", - "Central US", "East US 2" ], "apiVersions": [ @@ -66086,8 +66877,6 @@ { "resourceType": "locations/operationresults", "locations": [ - "West Europe", - "Central US", "East US 2" ], "apiVersions": [ @@ -66098,8 +66887,6 @@ { "resourceType": "locations/checkContainerHostMapping", "locations": [ - "West Europe", - "Central US", "East US 2" ], "apiVersions": [ @@ -66969,6 +67756,7 @@ "Australia East", "East US 2", "West US 2", + "UK South", "West Central US" ], "apiVersions": [ @@ -66987,6 +67775,7 @@ "Australia East", "East US 2", "West US 2", + "UK South", "West Central US" ], "apiVersions": [ @@ -67005,6 +67794,7 @@ "Australia East", "East US 2", "West US 2", + "UK South", "West Central US" ], "apiVersions": [ @@ -67023,6 +67813,7 @@ "Australia East", "East US 2", "West US 2", + "UK South", "West Central US" ], "apiVersions": [ @@ -67287,6 +68078,11 @@ "apiVersions": [ "2020-12-08" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -67314,7 +68110,9 @@ "North Europe", "Southeast Asia", "Australia East", - "East US 2 EUAP" + "East US 2 EUAP", + "Central India", + "West Central US" ], "apiVersions": [ "2020-12-08" @@ -67333,7 +68131,9 @@ "North Europe", "Southeast Asia", "Australia East", - "East US 2 EUAP" + "East US 2 EUAP", + "Central India", + "West Central US" ], "apiVersions": [ "2020-12-08" @@ -68785,6 +69585,10 @@ { "applicationId": "a0f92522-89de-4c5e-9a75-0044ccf66efd", "roleDefinitionId": "b3429810-7d5c-420e-8605-cf280f3099f2" + }, + { + "applicationId": "bd9b7cd5-dac1-495f-b013-ac871e98fa5f", + "roleDefinitionId": "0d44c8f0-08b9-44d4-9f59-e51c83f95200" } ], "resourceTypes": [ @@ -68828,6 +69632,7 @@ "France Central" ], "apiVersions": [ + "2021-05-01-preview", "2020-07-01-preview" ], "capabilities": "SystemAssignedResourceIdentity, SupportsExtension" @@ -68836,6 +69641,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-05-01-preview", "2021-03-01", "2020-10-01-preview", "2020-07-01-preview", @@ -69077,6 +69883,14 @@ "2", "3" ] + }, + { + "location": "East Asia", + "zones": [ + "1", + "2", + "3" + ] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -71024,6 +71838,7 @@ "Switzerland West" ], "apiVersions": [ + "2021-05-01", "2020-07-01-preview", "2020-04-01", "2018-10-01", @@ -71077,6 +71892,7 @@ "Switzerland West" ], "apiVersions": [ + "2021-05-01", "2020-07-01-preview", "2020-04-01", "2018-10-01", @@ -71130,6 +71946,7 @@ "Switzerland West" ], "apiVersions": [ + "2021-05-01", "2020-07-01-preview", "2020-04-01", "2018-10-01", @@ -71183,6 +72000,7 @@ "Switzerland West" ], "apiVersions": [ + "2021-05-01", "2020-07-01-preview", "2020-04-01", "2018-10-01", @@ -71197,6 +72015,7 @@ "resourceType": "publicMaintenanceConfigurations", "locations": [], "apiVersions": [ + "2021-05-01", "2021-04-01-preview", "2020-07-01-preview" ], @@ -73844,7 +74663,11 @@ "North Europe", "West Europe", "West US 2", - "West Central US" + "West Central US", + "Japan East", + "Japan West", + "UK West", + "UK South" ], "apiVersions": [ "2019-11-04-preview" @@ -73853,6 +74676,9 @@ "metadata": { "Microsoft.ManagedIdentity": { "applicationId": "a77d91dc-971b-4cf7-90c8-f183194249bc" + }, + "providerHubMetadata": { + "providerExtendsPreflight": false } }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -73863,6 +74689,11 @@ "apiVersions": [ "2019-11-04-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -73871,6 +74702,11 @@ "apiVersions": [ "2019-11-04-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -73883,7 +74719,11 @@ "East US 2 EUAP", "Central US EUAP", "West US 2", - "West Central US" + "West Central US", + "Japan East", + "Japan West", + "UK West", + "UK South" ], "apiVersions": [ "2019-11-04-preview" @@ -73898,7 +74738,11 @@ "North Europe", "West Europe", "West US 2", - "West Central US" + "West Central US", + "Japan East", + "Japan West", + "UK West", + "UK South" ], "apiVersions": [ "2019-11-04-preview" @@ -73923,6 +74767,86 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.RecommendationsService", + "namespace": "Microsoft.RecommendationsService", + "authorizations": [ + { + "applicationId": "C5B731DB-1B0A-43F6-BCF6-757667D9CDC6", + "roleDefinitionId": "FA1FE492-0EDB-4A97-A404-DBDF3F915824" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "East US", + "West US", + "North Europe", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "accounts/modeling", + "locations": [ + "West US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "accounts/serviceEndpoints", + "locations": [ + "East US", + "West US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.RecoveryServices", "namespace": "Microsoft.RecoveryServices", @@ -76557,6 +77481,7 @@ { "resourceType": "searchServices", "locations": [ + "West US 3", "Germany West Central", "Norway East", "Switzerland West", @@ -76621,6 +77546,7 @@ { "resourceType": "resourceHealthMetadata", "locations": [ + "West US 3", "Germany West Central", "Norway East", "Switzerland West", @@ -78737,6 +79663,10 @@ { "applicationId": "9581bc0e-c952-4fd3-8d99-e777877718b1", "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" + }, + { + "applicationId": "17724442-aa9a-46cc-bf09-c47bb1a98518", + "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" } ], "resourceTypes": [ @@ -80763,7 +81693,8 @@ "South India", "Norway East", "Germany West Central", - "Uae North" + "Uae North", + "Australia Central" ], "apiVersions": [ "2019-06-01", @@ -80811,7 +81742,8 @@ "South India", "Norway East", "Germany West Central", - "Uae North" + "Uae North", + "Australia Central" ], "apiVersions": [ "2020-03-01-preview", @@ -80849,7 +81781,8 @@ "South India", "Norway East", "Germany West Central", - "Uae North" + "Uae North", + "Australia Central" ], "apiVersions": [ "2020-03-01-preview", @@ -80887,7 +81820,8 @@ "South India", "Norway East", "Germany West Central", - "UAE North" + "UAE North", + "Australia Central" ], "apiVersions": [ "2019-06-01", @@ -80970,7 +81904,8 @@ "France Central", "South India", "Norway East", - "Uae North" + "Uae North", + "Australia Central" ], "apiVersions": [ "2019-06-01", @@ -81444,6 +82379,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -81521,6 +82458,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -81592,6 +82531,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2020-04-01-preview", @@ -81887,6 +82828,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -81927,6 +82870,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -81937,6 +82882,8 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -81977,12 +82924,22 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" ], "capabilities": "None" }, + { + "resourceType": "kustoOperations", + "locations": [], + "apiVersions": [ + "2021-04-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "privateLinkHubs", "locations": [ @@ -82017,6 +82974,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -82027,6 +82986,8 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -82067,6 +83028,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -82107,6 +83070,8 @@ "UAE North" ], "apiVersions": [ + "2021-05-01", + "2021-04-01-preview", "2021-03-01", "2020-12-01", "2019-06-01-preview" @@ -82491,8 +83456,8 @@ "West US", "West US 2", "South Central US", - "North Europe", - "West Europe" + "West Europe", + "North Europe" ], "apiVersions": [ "2020-02-14", @@ -82512,8 +83477,8 @@ "West US", "West US 2", "South Central US", - "North Europe", - "West Europe" + "West Europe", + "North Europe" ], "apiVersions": [ "2020-02-14", @@ -82557,8 +83522,8 @@ "West US", "West US 2", "South Central US", - "North Europe", - "West Europe" + "West Europe", + "North Europe" ], "apiVersions": [ "2020-02-14", @@ -82577,8 +83542,8 @@ "West US", "West US 2", "South Central US", - "North Europe", - "West Europe" + "West Europe", + "North Europe" ], "apiVersions": [ "2020-02-14", @@ -83365,6 +84330,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83374,7 +84340,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" }, { "resourceType": "fusionGroups/azureZones", @@ -83389,6 +84355,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83413,6 +84380,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83437,6 +84405,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83454,6 +84423,7 @@ "East US" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83481,6 +84451,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83491,6 +84462,7 @@ "resourceType": "fusionGroups/replicationRules/migrations", "locations": [], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83506,6 +84478,7 @@ "resourceType": "registeredSubscriptions", "locations": [], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83530,6 +84503,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83554,6 +84528,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83569,10 +84544,16 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -83590,6 +84571,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83599,7 +84581,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" }, { "resourceType": "migrators/targets", @@ -83616,6 +84598,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83642,6 +84625,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" @@ -83668,6 +84652,88 @@ "Southeast Asia" ], "apiVersions": [ + "2021-02-01-preview", + "2021-01-01-preview", + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrators/metadataMigrations", + "locations": [ + "Canada Central", + "East US", + "West US", + "West US 2", + "West Central US", + "Korea Central", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-01-preview", + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrators/metadataTargets", + "locations": [ + "Canada Central", + "East US", + "West US", + "West US 2", + "West Central US", + "Korea Central", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview", + "2021-01-01-preview", + "2020-12-01-preview", + "2019-09-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "migrators/pathMappings", + "locations": [ + "Canada Central", + "East US", + "West US", + "West US 2", + "West Central US", + "Korea Central", + "West Europe", + "North Europe", + "East Asia", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview", "2021-01-01-preview", "2020-12-01-preview", "2019-09-01-preview" diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources().json index fbccbd3f67fd..360ca663124f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources().json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-d45b552710b2294b9b70eb6747e605f7-8af2d1b4709f9640-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7eee7d2375e5548e54041570939466ef", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:08 GMT", + "Date": "Wed, 19 May 2021 18:52:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffffc70e-4b44-43d2-b557-f9a5b343da26", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "ffffc70e-4b44-43d2-b557-f9a5b343da26", - "x-ms-routing-request-id": "WESTUS2:20210507T202308Z:ffffc70e-4b44-43d2-b557-f9a5b343da26" + "x-ms-correlation-request-id": "88950d0d-dbc1-49cb-a0f3-858b61b94cf1", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "88950d0d-dbc1-49cb-a0f3-858b61b94cf1", + "x-ms-routing-request-id": "WESTUS2:20210519T185202Z:88950d0d-dbc1-49cb-a0f3-858b61b94cf1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-260533546a6f2e41bc24e218f38e6dd9-ad64c1efcf9d5e46-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b6a74dd1b18df64f89ec9ab979c1cde7-2c31d94b93fc8b42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "345486e57f5f7f6b4d52c8186e2c9aa3", "x-ms-return-client-request-id": "true" }, @@ -63,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:08 GMT", + "Date": "Wed, 19 May 2021 18:52:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be6a545a-467e-4cfd-a144-508920c77890", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "be6a545a-467e-4cfd-a144-508920c77890", - "x-ms-routing-request-id": "WESTUS2:20210507T202309Z:be6a545a-467e-4cfd-a144-508920c77890" + "x-ms-correlation-request-id": "6e879c34-c8cf-454b-b8b5-78b24b00086a", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "6e879c34-c8cf-454b-b8b5-78b24b00086a", + "x-ms-routing-request-id": "WESTUS2:20210519T185203Z:6e879c34-c8cf-454b-b8b5-78b24b00086a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8829", @@ -92,8 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-fa9723b8093cab46a4936438aa9c0abd-01aa1bda64d3f349-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e4b935e9a21c624baef6f5b4f2487f23-50e76da69d46c24d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2e83f855bfb4ad43c1ed692b15d533c0", "x-ms-return-client-request-id": "true" }, @@ -106,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:09 GMT", + "Date": "Wed, 19 May 2021 18:52:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c365abbb-7927-4e2e-8fdf-db7b24743380", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "c365abbb-7927-4e2e-8fdf-db7b24743380", - "x-ms-routing-request-id": "WESTUS2:20210507T202309Z:c365abbb-7927-4e2e-8fdf-db7b24743380" + "x-ms-correlation-request-id": "4426bd80-76be-4b26-9112-cc242889ea99", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "4426bd80-76be-4b26-9112-cc242889ea99", + "x-ms-routing-request-id": "WESTUS2:20210519T185203Z:4426bd80-76be-4b26-9112-cc242889ea99" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789", @@ -141,17 +142,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "52611", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:09 GMT", + "Date": "Wed, 19 May 2021 18:52:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ac264e6-5a62-4e32-9505-bf63f48ba7a7", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "1ac264e6-5a62-4e32-9505-bf63f48ba7a7", - "x-ms-routing-request-id": "WESTUS2:20210507T202309Z:1ac264e6-5a62-4e32-9505-bf63f48ba7a7" + "x-ms-correlation-request-id": "52071cdd-db43-49f7-a175-d63738250f0c", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "52071cdd-db43-49f7-a175-d63738250f0c", + "x-ms-routing-request-id": "WESTUS2:20210519T185203Z:52071cdd-db43-49f7-a175-d63738250f0c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -475,6 +476,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -760,6 +765,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -2778,6 +2787,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -3186,6 +3199,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3846,6 +3863,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4034,6 +4055,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4051,7 +4076,7 @@ "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6b6d3e6c314d10c7869d920254377c95", "x-ms-return-client-request-id": "true" }, @@ -4071,7 +4096,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:10 GMT", + "Date": "Wed, 19 May 2021 18:52:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4081,11 +4106,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6b6d3e6c314d10c7869d920254377c95", - "x-ms-correlation-request-id": "c1915099-a6d0-4940-8d73-ea986dd9dd26", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "b1546627-1bce-48fc-a542-73b5f2c4378c", - "x-ms-routing-request-id": "WESTUS2:20210507T202310Z:c1915099-a6d0-4940-8d73-ea986dd9dd26" + "x-ms-correlation-request-id": "82d8c1a0-3612-47d6-9578-64320c766338", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "4ac9e745-7ba3-4849-be7c-8438f022f44b", + "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:82d8c1a0-3612-47d6-9578-64320c766338" }, "ResponseBody": [ "{\r\n", @@ -4110,7 +4135,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "96a85eee55c669b30136dd266c80ab60", "x-ms-return-client-request-id": "true" }, @@ -4120,15 +4145,15 @@ "Cache-Control": "no-cache", "Content-Length": "280", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:10 GMT", + "Date": "Wed, 19 May 2021 18:52:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d0aa91a-596b-4848-830e-bd80b7fccc6e", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "5d0aa91a-596b-4848-830e-bd80b7fccc6e", - "x-ms-routing-request-id": "WESTUS2:20210507T202310Z:5d0aa91a-596b-4848-830e-bd80b7fccc6e" + "x-ms-correlation-request-id": "d4c85809-71eb-4cf6-855c-3f7fa3dc6e5d", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "d4c85809-71eb-4cf6-855c-3f7fa3dc6e5d", + "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:d4c85809-71eb-4cf6-855c-3f7fa3dc6e5d" }, "ResponseBody": { "value": [ @@ -4151,7 +4176,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "78e330a6a946a871ac736a1e162a9314", "x-ms-return-client-request-id": "true" }, @@ -4161,15 +4186,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:23:10 GMT", + "Date": "Wed, 19 May 2021 18:52:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e548f0f2-b19d-408d-84bc-99c11ca63732", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "e548f0f2-b19d-408d-84bc-99c11ca63732", - "x-ms-routing-request-id": "WESTUS2:20210507T202310Z:e548f0f2-b19d-408d-84bc-99c11ca63732" + "x-ms-correlation-request-id": "2f6b64c1-4ef0-4c90-b9d0-fefa790b126e", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "2f6b64c1-4ef0-4c90-b9d0-fefa790b126e", + "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:2f6b64c1-4ef0-4c90-b9d0-fefa790b126e" }, "ResponseBody": { "value": [] @@ -4183,7 +4208,7 @@ "Authorization": "Sanitized", "Content-Length": "256", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f6137cc2e58e02cfba27cf25e66b8d80", "x-ms-return-client-request-id": "true" }, @@ -4197,17 +4222,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:10 GMT", + "Date": "Wed, 19 May 2021 18:52:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50e7715f-0a6f-47e0-8735-06e6a4209d82", + "x-ms-correlation-request-id": "0af02ae0-9a56-429b-adfc-820cd1429ea1", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "50e7715f-0a6f-47e0-8735-06e6a4209d82", - "x-ms-routing-request-id": "WESTUS2:20210507T202310Z:50e7715f-0a6f-47e0-8735-06e6a4209d82" + "x-ms-request-id": "0af02ae0-9a56-429b-adfc-820cd1429ea1", + "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:0af02ae0-9a56-429b-adfc-820cd1429ea1" }, "ResponseBody": [] }, @@ -4216,7 +4241,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef63c8a3b56cc0d161e0bd1fd94bc240", "x-ms-return-client-request-id": "true" }, @@ -4225,17 +4250,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:10 GMT", + "Date": "Wed, 19 May 2021 18:52:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d2f1c4f-7861-4335-b468-f9b350d28c92", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "9d2f1c4f-7861-4335-b468-f9b350d28c92", - "x-ms-routing-request-id": "WESTUS2:20210507T202310Z:9d2f1c4f-7861-4335-b468-f9b350d28c92" + "x-ms-correlation-request-id": "063cde24-f3fd-47c8-9fa9-2f86647b642a", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "063cde24-f3fd-47c8-9fa9-2f86647b642a", + "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:063cde24-f3fd-47c8-9fa9-2f86647b642a" }, "ResponseBody": [] }, @@ -4244,7 +4269,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c9aeae546355f86aece088ffb7c1826", "x-ms-return-client-request-id": "true" }, @@ -4253,17 +4278,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:11 GMT", + "Date": "Wed, 19 May 2021 18:52:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6413b5f5-a795-4a46-b129-072206e6b652", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "6413b5f5-a795-4a46-b129-072206e6b652", - "x-ms-routing-request-id": "WESTUS2:20210507T202311Z:6413b5f5-a795-4a46-b129-072206e6b652" + "x-ms-correlation-request-id": "4ffefed8-1d96-4c53-9567-8e8afcdcef80", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "4ffefed8-1d96-4c53-9567-8e8afcdcef80", + "x-ms-routing-request-id": "WESTUS2:20210519T185205Z:4ffefed8-1d96-4c53-9567-8e8afcdcef80" }, "ResponseBody": [] }, @@ -4272,7 +4297,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d81f8d49e08ce13e834ebada5ae6ba1", "x-ms-return-client-request-id": "true" }, @@ -4281,17 +4306,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:12 GMT", + "Date": "Wed, 19 May 2021 18:52:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2a2f2f9-5b12-4437-8a2e-70e16f230f21", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "f2a2f2f9-5b12-4437-8a2e-70e16f230f21", - "x-ms-routing-request-id": "WESTUS2:20210507T202312Z:f2a2f2f9-5b12-4437-8a2e-70e16f230f21" + "x-ms-correlation-request-id": "57a3ee1f-19e1-40ab-8287-9da2cbcf10d2", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "57a3ee1f-19e1-40ab-8287-9da2cbcf10d2", + "x-ms-routing-request-id": "WESTUS2:20210519T185206Z:57a3ee1f-19e1-40ab-8287-9da2cbcf10d2" }, "ResponseBody": [] }, @@ -4300,7 +4325,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff6da93df7f95ca24204419dac42c5e5", "x-ms-return-client-request-id": "true" }, @@ -4309,17 +4334,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:13 GMT", + "Date": "Wed, 19 May 2021 18:52:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61e14c4a-d71c-4e02-80ec-4c4973ea28c1", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "61e14c4a-d71c-4e02-80ec-4c4973ea28c1", - "x-ms-routing-request-id": "WESTUS2:20210507T202313Z:61e14c4a-d71c-4e02-80ec-4c4973ea28c1" + "x-ms-correlation-request-id": "111b10bf-64b7-402d-9c60-35e0d025ae39", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "111b10bf-64b7-402d-9c60-35e0d025ae39", + "x-ms-routing-request-id": "WESTUS2:20210519T185207Z:111b10bf-64b7-402d-9c60-35e0d025ae39" }, "ResponseBody": [] }, @@ -4328,7 +4353,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e04b97c8a4c94738d7cc73005bd9b9ff", "x-ms-return-client-request-id": "true" }, @@ -4337,17 +4362,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:14 GMT", + "Date": "Wed, 19 May 2021 18:52:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c197428-4df9-45c0-b6d8-d96b8580d5d3", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "3c197428-4df9-45c0-b6d8-d96b8580d5d3", - "x-ms-routing-request-id": "WESTUS2:20210507T202314Z:3c197428-4df9-45c0-b6d8-d96b8580d5d3" + "x-ms-correlation-request-id": "4fc991ed-ce7e-4e1a-a246-1511af7b5be7", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "4fc991ed-ce7e-4e1a-a246-1511af7b5be7", + "x-ms-routing-request-id": "WESTUS2:20210519T185208Z:4fc991ed-ce7e-4e1a-a246-1511af7b5be7" }, "ResponseBody": [] }, @@ -4356,7 +4381,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "52516762190fdd2c5625db035c7522a5", "x-ms-return-client-request-id": "true" }, @@ -4365,17 +4390,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:15 GMT", + "Date": "Wed, 19 May 2021 18:52:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a41a4cab-0dcf-4fed-8eea-c44c9f22279a", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "a41a4cab-0dcf-4fed-8eea-c44c9f22279a", - "x-ms-routing-request-id": "WESTUS2:20210507T202316Z:a41a4cab-0dcf-4fed-8eea-c44c9f22279a" + "x-ms-correlation-request-id": "cd84ca26-7807-42fb-bbe4-83f9053be625", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "cd84ca26-7807-42fb-bbe4-83f9053be625", + "x-ms-routing-request-id": "WESTUS2:20210519T185209Z:cd84ca26-7807-42fb-bbe4-83f9053be625" }, "ResponseBody": [] }, @@ -4384,7 +4409,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0ee5056f8b6398d77025282d83a10168", "x-ms-return-client-request-id": "true" }, @@ -4393,17 +4418,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:16 GMT", + "Date": "Wed, 19 May 2021 18:52:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1049239-4f92-4fa3-b176-6ea2892fe5b3", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "a1049239-4f92-4fa3-b176-6ea2892fe5b3", - "x-ms-routing-request-id": "WESTUS2:20210507T202317Z:a1049239-4f92-4fa3-b176-6ea2892fe5b3" + "x-ms-correlation-request-id": "ccbf06fd-d8e4-4ea9-b735-6b9a4e84d59e", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "ccbf06fd-d8e4-4ea9-b735-6b9a4e84d59e", + "x-ms-routing-request-id": "WESTUS2:20210519T185210Z:ccbf06fd-d8e4-4ea9-b735-6b9a4e84d59e" }, "ResponseBody": [] }, @@ -4412,7 +4437,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "443b424b73f1afd66b6d8aa4c935eb61", "x-ms-return-client-request-id": "true" }, @@ -4421,17 +4446,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:17 GMT", + "Date": "Wed, 19 May 2021 18:52:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be247323-6273-48e8-bf60-1b46bc4a2367", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "be247323-6273-48e8-bf60-1b46bc4a2367", - "x-ms-routing-request-id": "WESTUS2:20210507T202318Z:be247323-6273-48e8-bf60-1b46bc4a2367" + "x-ms-correlation-request-id": "7644b12f-cae5-442b-9630-daef7e9c86a5", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "7644b12f-cae5-442b-9630-daef7e9c86a5", + "x-ms-routing-request-id": "WESTUS2:20210519T185211Z:7644b12f-cae5-442b-9630-daef7e9c86a5" }, "ResponseBody": [] }, @@ -4440,7 +4465,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5591cea9aaf4d79b90b9e1e9f0fe59b4", "x-ms-return-client-request-id": "true" }, @@ -4449,17 +4474,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:18 GMT", + "Date": "Wed, 19 May 2021 18:52:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a8a206b-8a77-4039-9cf7-cdf1b9b7faca", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "1a8a206b-8a77-4039-9cf7-cdf1b9b7faca", - "x-ms-routing-request-id": "WESTUS2:20210507T202319Z:1a8a206b-8a77-4039-9cf7-cdf1b9b7faca" + "x-ms-correlation-request-id": "d6cc90d3-2369-4fb3-900d-edb490a94916", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "d6cc90d3-2369-4fb3-900d-edb490a94916", + "x-ms-routing-request-id": "WESTUS2:20210519T185212Z:d6cc90d3-2369-4fb3-900d-edb490a94916" }, "ResponseBody": [] }, @@ -4468,7 +4493,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "19b77223dd3afcb42f35a3f50132ce3b", "x-ms-return-client-request-id": "true" }, @@ -4477,17 +4502,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:19 GMT", + "Date": "Wed, 19 May 2021 18:52:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb2a3a92-2b05-4bcf-97d6-610a73c72441", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "fb2a3a92-2b05-4bcf-97d6-610a73c72441", - "x-ms-routing-request-id": "WESTUS2:20210507T202320Z:fb2a3a92-2b05-4bcf-97d6-610a73c72441" + "x-ms-correlation-request-id": "bfe473c1-35e8-4d41-b2dd-3671a10ba0e3", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "bfe473c1-35e8-4d41-b2dd-3671a10ba0e3", + "x-ms-routing-request-id": "WESTUS2:20210519T185213Z:bfe473c1-35e8-4d41-b2dd-3671a10ba0e3" }, "ResponseBody": [] }, @@ -4496,7 +4521,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b584c73aac10a074a763b43791ecbe6c", "x-ms-return-client-request-id": "true" }, @@ -4505,17 +4530,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:20 GMT", + "Date": "Wed, 19 May 2021 18:52:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57fd56cc-0c62-42ea-926a-1c08001df1b0", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "57fd56cc-0c62-42ea-926a-1c08001df1b0", - "x-ms-routing-request-id": "WESTUS2:20210507T202321Z:57fd56cc-0c62-42ea-926a-1c08001df1b0" + "x-ms-correlation-request-id": "0a24cf6b-6622-4e35-bba5-9ed9fb27a197", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "0a24cf6b-6622-4e35-bba5-9ed9fb27a197", + "x-ms-routing-request-id": "WESTUS2:20210519T185214Z:0a24cf6b-6622-4e35-bba5-9ed9fb27a197" }, "ResponseBody": [] }, @@ -4524,7 +4549,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5681d514d17dcb26199525be07a5d65e", "x-ms-return-client-request-id": "true" }, @@ -4533,17 +4558,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:21 GMT", + "Date": "Wed, 19 May 2021 18:52:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c27273d9-27f4-4b59-917e-deee72e23532", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "c27273d9-27f4-4b59-917e-deee72e23532", - "x-ms-routing-request-id": "WESTUS2:20210507T202322Z:c27273d9-27f4-4b59-917e-deee72e23532" + "x-ms-correlation-request-id": "c2c3aae2-961d-49ed-97c6-19ae0beed52a", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "c2c3aae2-961d-49ed-97c6-19ae0beed52a", + "x-ms-routing-request-id": "WESTUS2:20210519T185215Z:c2c3aae2-961d-49ed-97c6-19ae0beed52a" }, "ResponseBody": [] }, @@ -4552,7 +4577,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "29aea6eaa47a77a4fe1772d7297d6a42", "x-ms-return-client-request-id": "true" }, @@ -4561,17 +4586,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:22 GMT", + "Date": "Wed, 19 May 2021 18:52:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77b06fe0-e796-40de-b1c8-dae35de8d9c8", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "77b06fe0-e796-40de-b1c8-dae35de8d9c8", - "x-ms-routing-request-id": "WESTUS2:20210507T202323Z:77b06fe0-e796-40de-b1c8-dae35de8d9c8" + "x-ms-correlation-request-id": "a85f9420-2df8-435c-8016-45a3f86be256", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "a85f9420-2df8-435c-8016-45a3f86be256", + "x-ms-routing-request-id": "WESTUS2:20210519T185216Z:a85f9420-2df8-435c-8016-45a3f86be256" }, "ResponseBody": [] }, @@ -4580,7 +4605,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ce1367778b069bda0b89c7b86b69901", "x-ms-return-client-request-id": "true" }, @@ -4589,17 +4614,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:24 GMT", + "Date": "Wed, 19 May 2021 18:52:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6224fd32-f30d-430c-907e-128e1200c44d", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "6224fd32-f30d-430c-907e-128e1200c44d", - "x-ms-routing-request-id": "WESTUS2:20210507T202324Z:6224fd32-f30d-430c-907e-128e1200c44d" + "x-ms-correlation-request-id": "7926d536-1095-4b9c-a836-bff8dd72c694", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "7926d536-1095-4b9c-a836-bff8dd72c694", + "x-ms-routing-request-id": "WESTUS2:20210519T185217Z:7926d536-1095-4b9c-a836-bff8dd72c694" }, "ResponseBody": [] }, @@ -4608,7 +4633,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eb4c558d943e6ff2300a58665e4fa29c", "x-ms-return-client-request-id": "true" }, @@ -4617,17 +4642,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:25 GMT", + "Date": "Wed, 19 May 2021 18:52:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fced64f9-5b71-4c27-99c4-30c100335da7", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "fced64f9-5b71-4c27-99c4-30c100335da7", - "x-ms-routing-request-id": "WESTUS2:20210507T202325Z:fced64f9-5b71-4c27-99c4-30c100335da7" + "x-ms-correlation-request-id": "880fe1fa-4663-44e6-9ebc-3c46b94916c0", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "880fe1fa-4663-44e6-9ebc-3c46b94916c0", + "x-ms-routing-request-id": "WESTUS2:20210519T185218Z:880fe1fa-4663-44e6-9ebc-3c46b94916c0" }, "ResponseBody": [] }, @@ -4636,7 +4661,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d046e32aaac472ade84489c20828f147", "x-ms-return-client-request-id": "true" }, @@ -4645,17 +4670,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:26 GMT", + "Date": "Wed, 19 May 2021 18:52:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "167f2bd5-742e-4041-9af7-25a86dedf144", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "167f2bd5-742e-4041-9af7-25a86dedf144", - "x-ms-routing-request-id": "WESTUS2:20210507T202326Z:167f2bd5-742e-4041-9af7-25a86dedf144" + "x-ms-correlation-request-id": "c961b6ea-dd6b-41ea-8cd5-a6a0b1da75c0", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "c961b6ea-dd6b-41ea-8cd5-a6a0b1da75c0", + "x-ms-routing-request-id": "WESTUS2:20210519T185219Z:c961b6ea-dd6b-41ea-8cd5-a6a0b1da75c0" }, "ResponseBody": [] }, @@ -4664,7 +4689,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d349717e7e30e3044471fba61f570b50", "x-ms-return-client-request-id": "true" }, @@ -4673,17 +4698,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:27 GMT", + "Date": "Wed, 19 May 2021 18:52:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ce5ab3a-988e-4251-b1d1-e22c19f53eef", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "8ce5ab3a-988e-4251-b1d1-e22c19f53eef", - "x-ms-routing-request-id": "WESTUS2:20210507T202327Z:8ce5ab3a-988e-4251-b1d1-e22c19f53eef" + "x-ms-correlation-request-id": "c4830692-fb69-49e4-94bf-40c37e625bdd", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "c4830692-fb69-49e4-94bf-40c37e625bdd", + "x-ms-routing-request-id": "WESTUS2:20210519T185220Z:c4830692-fb69-49e4-94bf-40c37e625bdd" }, "ResponseBody": [] }, @@ -4692,7 +4717,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a350ff16c86fe23da8da03f90b306707", "x-ms-return-client-request-id": "true" }, @@ -4701,17 +4726,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:28 GMT", + "Date": "Wed, 19 May 2021 18:52:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ccb215db-0cca-4306-9f19-40799d711aa5", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "ccb215db-0cca-4306-9f19-40799d711aa5", - "x-ms-routing-request-id": "WESTUS2:20210507T202328Z:ccb215db-0cca-4306-9f19-40799d711aa5" + "x-ms-correlation-request-id": "1b844037-56af-4ee3-a895-9bf240bc4a07", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "1b844037-56af-4ee3-a895-9bf240bc4a07", + "x-ms-routing-request-id": "WESTUS2:20210519T185221Z:1b844037-56af-4ee3-a895-9bf240bc4a07" }, "ResponseBody": [] }, @@ -4720,7 +4745,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ece81018ce05ac6bde638c52af065290", "x-ms-return-client-request-id": "true" }, @@ -4729,17 +4754,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:29 GMT", + "Date": "Wed, 19 May 2021 18:52:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68c4fc02-8dd3-464f-94d7-2d80e3eb735b", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "68c4fc02-8dd3-464f-94d7-2d80e3eb735b", - "x-ms-routing-request-id": "WESTUS2:20210507T202329Z:68c4fc02-8dd3-464f-94d7-2d80e3eb735b" + "x-ms-correlation-request-id": "0e2e663f-c7a7-48aa-b789-d37a55183a46", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "0e2e663f-c7a7-48aa-b789-d37a55183a46", + "x-ms-routing-request-id": "WESTUS2:20210519T185223Z:0e2e663f-c7a7-48aa-b789-d37a55183a46" }, "ResponseBody": [] }, @@ -4748,7 +4773,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "08ab38394ed8b5d734672b567a0bd713", "x-ms-return-client-request-id": "true" }, @@ -4757,17 +4782,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:30 GMT", + "Date": "Wed, 19 May 2021 18:52:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02b4011a-4171-4f36-bb6e-d381ebcf4398", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "02b4011a-4171-4f36-bb6e-d381ebcf4398", - "x-ms-routing-request-id": "WESTUS2:20210507T202330Z:02b4011a-4171-4f36-bb6e-d381ebcf4398" + "x-ms-correlation-request-id": "a22c4f71-a503-408b-ad43-5b52b462258a", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "a22c4f71-a503-408b-ad43-5b52b462258a", + "x-ms-routing-request-id": "WESTUS2:20210519T185224Z:a22c4f71-a503-408b-ad43-5b52b462258a" }, "ResponseBody": [] }, @@ -4776,7 +4801,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0f8ef3091e6f474b93a4c40c3bea33a2", "x-ms-return-client-request-id": "true" }, @@ -4785,17 +4810,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:31 GMT", + "Date": "Wed, 19 May 2021 18:52:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26369ff9-815c-4bc9-9479-d63c31f76af7", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "26369ff9-815c-4bc9-9479-d63c31f76af7", - "x-ms-routing-request-id": "WESTUS2:20210507T202331Z:26369ff9-815c-4bc9-9479-d63c31f76af7" + "x-ms-correlation-request-id": "61b0c571-88dd-4c81-abba-dda0ad044ec9", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "61b0c571-88dd-4c81-abba-dda0ad044ec9", + "x-ms-routing-request-id": "WESTUS2:20210519T185225Z:61b0c571-88dd-4c81-abba-dda0ad044ec9" }, "ResponseBody": [] }, @@ -4804,7 +4829,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2bf73875f84ca2f3932b89ea21531d2", "x-ms-return-client-request-id": "true" }, @@ -4813,17 +4838,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:32 GMT", + "Date": "Wed, 19 May 2021 18:52:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05d850b0-77ee-4f97-acde-59bc9f9abf5c", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "05d850b0-77ee-4f97-acde-59bc9f9abf5c", - "x-ms-routing-request-id": "WESTUS2:20210507T202332Z:05d850b0-77ee-4f97-acde-59bc9f9abf5c" + "x-ms-correlation-request-id": "3ed6087c-2937-4d19-a362-07eaebcd3079", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "3ed6087c-2937-4d19-a362-07eaebcd3079", + "x-ms-routing-request-id": "WESTUS2:20210519T185226Z:3ed6087c-2937-4d19-a362-07eaebcd3079" }, "ResponseBody": [] }, @@ -4832,7 +4857,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bb48798b43781a21ed64743389cb7a49", "x-ms-return-client-request-id": "true" }, @@ -4841,17 +4866,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:33 GMT", + "Date": "Wed, 19 May 2021 18:52:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a578b39d-f4bd-4425-98a1-e4d42655a518", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-request-id": "a578b39d-f4bd-4425-98a1-e4d42655a518", - "x-ms-routing-request-id": "WESTUS2:20210507T202333Z:a578b39d-f4bd-4425-98a1-e4d42655a518" + "x-ms-correlation-request-id": "7742e8b2-09a9-4cd0-9b3b-4a644777a41c", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "7742e8b2-09a9-4cd0-9b3b-4a644777a41c", + "x-ms-routing-request-id": "WESTUS2:20210519T185227Z:7742e8b2-09a9-4cd0-9b3b-4a644777a41c" }, "ResponseBody": [] }, @@ -4860,7 +4885,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "07ce8833054baa8fc3c3d63c65aca47e", "x-ms-return-client-request-id": "true" }, @@ -4869,17 +4894,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:34 GMT", + "Date": "Wed, 19 May 2021 18:52:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9f6791f-35c9-4745-9cfb-6660b1a2e85a", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "b9f6791f-35c9-4745-9cfb-6660b1a2e85a", - "x-ms-routing-request-id": "WESTUS2:20210507T202334Z:b9f6791f-35c9-4745-9cfb-6660b1a2e85a" + "x-ms-correlation-request-id": "c92a8110-ae5d-488f-a6f9-7e2d0986193d", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "c92a8110-ae5d-488f-a6f9-7e2d0986193d", + "x-ms-routing-request-id": "WESTUS2:20210519T185228Z:c92a8110-ae5d-488f-a6f9-7e2d0986193d" }, "ResponseBody": [] }, @@ -4888,7 +4913,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c280f17378a1442a51a5e420eafb406d", "x-ms-return-client-request-id": "true" }, @@ -4897,17 +4922,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:35 GMT", + "Date": "Wed, 19 May 2021 18:52:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efec1687-b44f-4dc0-adb4-6453a90d24b3", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "efec1687-b44f-4dc0-adb4-6453a90d24b3", - "x-ms-routing-request-id": "WESTUS2:20210507T202336Z:efec1687-b44f-4dc0-adb4-6453a90d24b3" + "x-ms-correlation-request-id": "88536f8d-028d-4ee0-a82d-059a2e46e1e7", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "88536f8d-028d-4ee0-a82d-059a2e46e1e7", + "x-ms-routing-request-id": "WESTUS2:20210519T185229Z:88536f8d-028d-4ee0-a82d-059a2e46e1e7" }, "ResponseBody": [] }, @@ -4916,7 +4941,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a6b6fb729478587ea9ef7b46de4b440", "x-ms-return-client-request-id": "true" }, @@ -4925,17 +4950,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:36 GMT", + "Date": "Wed, 19 May 2021 18:52:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9b21dfd-f946-471b-a40f-058610563c29", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "e9b21dfd-f946-471b-a40f-058610563c29", - "x-ms-routing-request-id": "WESTUS2:20210507T202337Z:e9b21dfd-f946-471b-a40f-058610563c29" + "x-ms-correlation-request-id": "d8cfc378-9a37-44eb-a466-05dc3e449409", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "d8cfc378-9a37-44eb-a466-05dc3e449409", + "x-ms-routing-request-id": "WESTUS2:20210519T185230Z:d8cfc378-9a37-44eb-a466-05dc3e449409" }, "ResponseBody": [] }, @@ -4944,7 +4969,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97c0f6bfb84abaa75e89b5a6206ebfc7", "x-ms-return-client-request-id": "true" }, @@ -4953,17 +4978,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:37 GMT", + "Date": "Wed, 19 May 2021 18:52:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9478a644-7694-4086-9ad3-7f7123c5c559", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "9478a644-7694-4086-9ad3-7f7123c5c559", - "x-ms-routing-request-id": "WESTUS2:20210507T202338Z:9478a644-7694-4086-9ad3-7f7123c5c559" + "x-ms-correlation-request-id": "ec6b501c-8857-42ca-9e50-b3854971e4f3", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "ec6b501c-8857-42ca-9e50-b3854971e4f3", + "x-ms-routing-request-id": "WESTUS2:20210519T185231Z:ec6b501c-8857-42ca-9e50-b3854971e4f3" }, "ResponseBody": [] }, @@ -4972,7 +4997,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f68468828a4149366afad7038075d76d", "x-ms-return-client-request-id": "true" }, @@ -4981,17 +5006,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:38 GMT", + "Date": "Wed, 19 May 2021 18:52:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fdeef554-527a-4991-a208-831bffc8a110", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "fdeef554-527a-4991-a208-831bffc8a110", - "x-ms-routing-request-id": "WESTUS2:20210507T202339Z:fdeef554-527a-4991-a208-831bffc8a110" + "x-ms-correlation-request-id": "c6a71036-edcd-4a26-8216-cc7bcd434bfc", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "c6a71036-edcd-4a26-8216-cc7bcd434bfc", + "x-ms-routing-request-id": "WESTUS2:20210519T185232Z:c6a71036-edcd-4a26-8216-cc7bcd434bfc" }, "ResponseBody": [] }, @@ -5000,7 +5025,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f461a3f0a93bff23c7b0bbbe73e0657b", "x-ms-return-client-request-id": "true" }, @@ -5009,17 +5034,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:39 GMT", + "Date": "Wed, 19 May 2021 18:52:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72cc7d46-7d85-4713-a8ae-7b3f08fbd686", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "72cc7d46-7d85-4713-a8ae-7b3f08fbd686", - "x-ms-routing-request-id": "WESTUS2:20210507T202340Z:72cc7d46-7d85-4713-a8ae-7b3f08fbd686" + "x-ms-correlation-request-id": "5d8ffc6c-7bed-46dc-bacf-f21ba95b7cb1", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "5d8ffc6c-7bed-46dc-bacf-f21ba95b7cb1", + "x-ms-routing-request-id": "WESTUS2:20210519T185233Z:5d8ffc6c-7bed-46dc-bacf-f21ba95b7cb1" }, "ResponseBody": [] }, @@ -5028,7 +5053,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "043130dfbe5f34ffbf772d4fe0a43ae8", "x-ms-return-client-request-id": "true" }, @@ -5037,17 +5062,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:40 GMT", + "Date": "Wed, 19 May 2021 18:52:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47c2c21b-7d81-410e-a3be-12e0d214a05c", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "47c2c21b-7d81-410e-a3be-12e0d214a05c", - "x-ms-routing-request-id": "WESTUS2:20210507T202341Z:47c2c21b-7d81-410e-a3be-12e0d214a05c" + "x-ms-correlation-request-id": "3813f225-fbcf-4c19-8c8b-5cc48817648a", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "3813f225-fbcf-4c19-8c8b-5cc48817648a", + "x-ms-routing-request-id": "WESTUS2:20210519T185234Z:3813f225-fbcf-4c19-8c8b-5cc48817648a" }, "ResponseBody": [] }, @@ -5056,7 +5081,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7cb648b1ca0dd98c44852f90cf78d589", "x-ms-return-client-request-id": "true" }, @@ -5065,17 +5090,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:41 GMT", + "Date": "Wed, 19 May 2021 18:52:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76d5ab08-76c5-479a-9e2e-1ec6e5a1a81c", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "76d5ab08-76c5-479a-9e2e-1ec6e5a1a81c", - "x-ms-routing-request-id": "WESTUS2:20210507T202342Z:76d5ab08-76c5-479a-9e2e-1ec6e5a1a81c" + "x-ms-correlation-request-id": "cc0b8a8a-4ad1-4214-ad28-1ecf0d66ff20", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "cc0b8a8a-4ad1-4214-ad28-1ecf0d66ff20", + "x-ms-routing-request-id": "WESTUS2:20210519T185235Z:cc0b8a8a-4ad1-4214-ad28-1ecf0d66ff20" }, "ResponseBody": [] }, @@ -5084,7 +5109,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "50245c95d244310da42c35c47bd41e22", "x-ms-return-client-request-id": "true" }, @@ -5093,17 +5118,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:42 GMT", + "Date": "Wed, 19 May 2021 18:52:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db02029c-8308-40d7-97b0-1094f448df33", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "db02029c-8308-40d7-97b0-1094f448df33", - "x-ms-routing-request-id": "WESTUS2:20210507T202343Z:db02029c-8308-40d7-97b0-1094f448df33" + "x-ms-correlation-request-id": "c95e6f45-d104-4684-afaf-2f5cdc57ef4c", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "c95e6f45-d104-4684-afaf-2f5cdc57ef4c", + "x-ms-routing-request-id": "WESTUS2:20210519T185236Z:c95e6f45-d104-4684-afaf-2f5cdc57ef4c" }, "ResponseBody": [] }, @@ -5112,7 +5137,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2b0cd275e82a146da357c0d98e6e6447", "x-ms-return-client-request-id": "true" }, @@ -5121,17 +5146,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:43 GMT", + "Date": "Wed, 19 May 2021 18:52:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58bd66db-5318-48fd-8760-6721f430a4b8", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "58bd66db-5318-48fd-8760-6721f430a4b8", - "x-ms-routing-request-id": "WESTUS2:20210507T202344Z:58bd66db-5318-48fd-8760-6721f430a4b8" + "x-ms-correlation-request-id": "912f92d1-7b33-40d0-ae65-a9ed18eb0794", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "912f92d1-7b33-40d0-ae65-a9ed18eb0794", + "x-ms-routing-request-id": "WESTUS2:20210519T185237Z:912f92d1-7b33-40d0-ae65-a9ed18eb0794" }, "ResponseBody": [] }, @@ -5140,7 +5165,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "83b9a3a1ea80dea43a84d8e095c85e70", "x-ms-return-client-request-id": "true" }, @@ -5149,17 +5174,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:44 GMT", + "Date": "Wed, 19 May 2021 18:52:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "787cf271-d82a-45df-b529-68c1ec894e57", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "787cf271-d82a-45df-b529-68c1ec894e57", - "x-ms-routing-request-id": "WESTUS2:20210507T202345Z:787cf271-d82a-45df-b529-68c1ec894e57" + "x-ms-correlation-request-id": "acb3016e-1051-4bd1-b7cf-ac2c03533617", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "acb3016e-1051-4bd1-b7cf-ac2c03533617", + "x-ms-routing-request-id": "WESTUS2:20210519T185238Z:acb3016e-1051-4bd1-b7cf-ac2c03533617" }, "ResponseBody": [] }, @@ -5168,7 +5193,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd1a0d66aa6bac5eef0facec1233a335", "x-ms-return-client-request-id": "true" }, @@ -5177,17 +5202,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:45 GMT", + "Date": "Wed, 19 May 2021 18:52:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ead08e8-c19f-47c6-aca1-b4b78e1ab30b", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "1ead08e8-c19f-47c6-aca1-b4b78e1ab30b", - "x-ms-routing-request-id": "WESTUS2:20210507T202346Z:1ead08e8-c19f-47c6-aca1-b4b78e1ab30b" + "x-ms-correlation-request-id": "74be0a39-a1a6-4f50-a8f6-bc6ebbe73c41", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "74be0a39-a1a6-4f50-a8f6-bc6ebbe73c41", + "x-ms-routing-request-id": "WESTUS2:20210519T185239Z:74be0a39-a1a6-4f50-a8f6-bc6ebbe73c41" }, "ResponseBody": [] }, @@ -5196,7 +5221,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d722eec89a1a8ba12e2df0a5108c7edb", "x-ms-return-client-request-id": "true" }, @@ -5205,17 +5230,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:46 GMT", + "Date": "Wed, 19 May 2021 18:52:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8d213bc-175e-4d06-bed2-51dd1ee46798", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "a8d213bc-175e-4d06-bed2-51dd1ee46798", - "x-ms-routing-request-id": "WESTUS2:20210507T202347Z:a8d213bc-175e-4d06-bed2-51dd1ee46798" + "x-ms-correlation-request-id": "a61121c0-b956-4177-995e-8b53f2ae5bd9", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "a61121c0-b956-4177-995e-8b53f2ae5bd9", + "x-ms-routing-request-id": "WESTUS2:20210519T185240Z:a61121c0-b956-4177-995e-8b53f2ae5bd9" }, "ResponseBody": [] }, @@ -5224,7 +5249,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "81734ff96753f7db440c94703db7cc06", "x-ms-return-client-request-id": "true" }, @@ -5233,17 +5258,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:47 GMT", + "Date": "Wed, 19 May 2021 18:52:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47272ffb-ce0e-4293-b3b3-bbd0b7cf720c", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "47272ffb-ce0e-4293-b3b3-bbd0b7cf720c", - "x-ms-routing-request-id": "WESTUS2:20210507T202348Z:47272ffb-ce0e-4293-b3b3-bbd0b7cf720c" + "x-ms-correlation-request-id": "effad170-3b82-4427-8659-c379b6587124", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "effad170-3b82-4427-8659-c379b6587124", + "x-ms-routing-request-id": "WESTUS2:20210519T185241Z:effad170-3b82-4427-8659-c379b6587124" }, "ResponseBody": [] }, @@ -5252,7 +5277,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a718a2e186a5cb566b8fcf3eb9b99c62", "x-ms-return-client-request-id": "true" }, @@ -5261,17 +5286,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:48 GMT", + "Date": "Wed, 19 May 2021 18:52:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b85b3043-0c19-44c5-9486-b2ac7723f9aa", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "b85b3043-0c19-44c5-9486-b2ac7723f9aa", - "x-ms-routing-request-id": "WESTUS2:20210507T202349Z:b85b3043-0c19-44c5-9486-b2ac7723f9aa" + "x-ms-correlation-request-id": "d359d3b9-f215-4c6a-a582-3079d82526df", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "d359d3b9-f215-4c6a-a582-3079d82526df", + "x-ms-routing-request-id": "WESTUS2:20210519T185242Z:d359d3b9-f215-4c6a-a582-3079d82526df" }, "ResponseBody": [] }, @@ -5280,7 +5305,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c2f3d19122c060e2122b920d06314e76", "x-ms-return-client-request-id": "true" }, @@ -5289,17 +5314,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:50 GMT", + "Date": "Wed, 19 May 2021 18:52:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae24ab11-caab-4c19-ace5-186d2310cd13", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "ae24ab11-caab-4c19-ace5-186d2310cd13", - "x-ms-routing-request-id": "WESTUS2:20210507T202350Z:ae24ab11-caab-4c19-ace5-186d2310cd13" + "x-ms-correlation-request-id": "ae50d444-c06b-4b80-94e0-1773aa1e915a", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "ae50d444-c06b-4b80-94e0-1773aa1e915a", + "x-ms-routing-request-id": "WESTUS2:20210519T185243Z:ae50d444-c06b-4b80-94e0-1773aa1e915a" }, "ResponseBody": [] }, @@ -5308,7 +5333,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6dc4ea61d7737236f9a716c4989c3e8b", "x-ms-return-client-request-id": "true" }, @@ -5317,17 +5342,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:51 GMT", + "Date": "Wed, 19 May 2021 18:52:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d78ffd0-6714-4301-b9a1-f379b82035ed", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "0d78ffd0-6714-4301-b9a1-f379b82035ed", - "x-ms-routing-request-id": "WESTUS2:20210507T202351Z:0d78ffd0-6714-4301-b9a1-f379b82035ed" + "x-ms-correlation-request-id": "0eaf3da5-76a7-4576-9974-2a1f65dfc1ab", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "0eaf3da5-76a7-4576-9974-2a1f65dfc1ab", + "x-ms-routing-request-id": "WESTUS2:20210519T185244Z:0eaf3da5-76a7-4576-9974-2a1f65dfc1ab" }, "ResponseBody": [] }, @@ -5336,7 +5361,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6cdf327009c3be45c0b8947af348c539", "x-ms-return-client-request-id": "true" }, @@ -5345,17 +5370,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:52 GMT", + "Date": "Wed, 19 May 2021 18:52:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ab497f8-2f16-4370-b15d-40b7a2d8e48e", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "4ab497f8-2f16-4370-b15d-40b7a2d8e48e", - "x-ms-routing-request-id": "WESTUS2:20210507T202352Z:4ab497f8-2f16-4370-b15d-40b7a2d8e48e" + "x-ms-correlation-request-id": "e0c887b5-8405-4121-a835-282ac4d71283", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "e0c887b5-8405-4121-a835-282ac4d71283", + "x-ms-routing-request-id": "WESTUS2:20210519T185245Z:e0c887b5-8405-4121-a835-282ac4d71283" }, "ResponseBody": [] }, @@ -5364,7 +5389,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cfdd58402ef4baee9a80c9190b1dc876", "x-ms-return-client-request-id": "true" }, @@ -5373,17 +5398,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:53 GMT", + "Date": "Wed, 19 May 2021 18:52:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd3186e1-be91-4a0f-b1bb-eb22147fd2f4", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "dd3186e1-be91-4a0f-b1bb-eb22147fd2f4", - "x-ms-routing-request-id": "WESTUS2:20210507T202353Z:dd3186e1-be91-4a0f-b1bb-eb22147fd2f4" + "x-ms-correlation-request-id": "25f07b47-3b4c-4e43-86d1-3ce89fd603fa", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "25f07b47-3b4c-4e43-86d1-3ce89fd603fa", + "x-ms-routing-request-id": "WESTUS2:20210519T185246Z:25f07b47-3b4c-4e43-86d1-3ce89fd603fa" }, "ResponseBody": [] }, @@ -5392,7 +5417,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d49d06ede25157b2a405adbb42bc7eb0", "x-ms-return-client-request-id": "true" }, @@ -5401,17 +5426,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:54 GMT", + "Date": "Wed, 19 May 2021 18:52:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db5d2288-d09c-4e6c-ad75-c67f4db2b2e2", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "db5d2288-d09c-4e6c-ad75-c67f4db2b2e2", - "x-ms-routing-request-id": "WESTUS2:20210507T202355Z:db5d2288-d09c-4e6c-ad75-c67f4db2b2e2" + "x-ms-correlation-request-id": "3719e9be-ddcd-4046-bcf8-6e24e502ac5c", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "3719e9be-ddcd-4046-bcf8-6e24e502ac5c", + "x-ms-routing-request-id": "WESTUS2:20210519T185247Z:3719e9be-ddcd-4046-bcf8-6e24e502ac5c" }, "ResponseBody": [] }, @@ -5420,7 +5445,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4084dce16ebf41974325d142402cb3a3", "x-ms-return-client-request-id": "true" }, @@ -5429,17 +5454,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:55 GMT", + "Date": "Wed, 19 May 2021 18:52:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "945322ce-30bf-4daa-8201-2083a728be77", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "945322ce-30bf-4daa-8201-2083a728be77", - "x-ms-routing-request-id": "WESTUS2:20210507T202356Z:945322ce-30bf-4daa-8201-2083a728be77" + "x-ms-correlation-request-id": "8caaf5e9-c7fc-414b-8da8-aef3f9e1bc9b", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "8caaf5e9-c7fc-414b-8da8-aef3f9e1bc9b", + "x-ms-routing-request-id": "WESTUS2:20210519T185248Z:8caaf5e9-c7fc-414b-8da8-aef3f9e1bc9b" }, "ResponseBody": [] }, @@ -5448,7 +5473,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed8c1ef0f1ab5de8a5862bee813277de", "x-ms-return-client-request-id": "true" }, @@ -5457,17 +5482,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:56 GMT", + "Date": "Wed, 19 May 2021 18:52:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "549c5ed3-c7f8-4e6a-9469-4f7e55606376", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "549c5ed3-c7f8-4e6a-9469-4f7e55606376", - "x-ms-routing-request-id": "WESTUS2:20210507T202357Z:549c5ed3-c7f8-4e6a-9469-4f7e55606376" + "x-ms-correlation-request-id": "0e9bbb4f-6751-483c-b0b3-1f24c8cfb6ba", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "0e9bbb4f-6751-483c-b0b3-1f24c8cfb6ba", + "x-ms-routing-request-id": "WESTUS2:20210519T185249Z:0e9bbb4f-6751-483c-b0b3-1f24c8cfb6ba" }, "ResponseBody": [] }, @@ -5476,7 +5501,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f38190287997eb66e5b902b11701777", "x-ms-return-client-request-id": "true" }, @@ -5485,17 +5510,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:57 GMT", + "Date": "Wed, 19 May 2021 18:52:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "414a9181-4351-4d53-afbc-2dac52a7eee8", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "414a9181-4351-4d53-afbc-2dac52a7eee8", - "x-ms-routing-request-id": "WESTUS2:20210507T202358Z:414a9181-4351-4d53-afbc-2dac52a7eee8" + "x-ms-correlation-request-id": "4cca2110-4d4d-47d9-b0d6-5af029751bd2", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "4cca2110-4d4d-47d9-b0d6-5af029751bd2", + "x-ms-routing-request-id": "WESTUS2:20210519T185250Z:4cca2110-4d4d-47d9-b0d6-5af029751bd2" }, "ResponseBody": [] }, @@ -5504,7 +5529,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "24cb0a52912fef04f3269a3943a9c010", "x-ms-return-client-request-id": "true" }, @@ -5513,17 +5538,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:58 GMT", + "Date": "Wed, 19 May 2021 18:52:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba0a00ba-3ae0-41ac-8af7-4ff9d8513d61", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "ba0a00ba-3ae0-41ac-8af7-4ff9d8513d61", - "x-ms-routing-request-id": "WESTUS2:20210507T202359Z:ba0a00ba-3ae0-41ac-8af7-4ff9d8513d61" + "x-ms-correlation-request-id": "3405cd98-52f8-4199-9c11-eac225cee826", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "3405cd98-52f8-4199-9c11-eac225cee826", + "x-ms-routing-request-id": "WESTUS2:20210519T185251Z:3405cd98-52f8-4199-9c11-eac225cee826" }, "ResponseBody": [] }, @@ -5532,7 +5557,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2740f2ae83f46809670e7e5060bc4c35", "x-ms-return-client-request-id": "true" }, @@ -5541,17 +5566,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:23:59 GMT", + "Date": "Wed, 19 May 2021 18:52:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e00c4517-8f27-48e7-ac20-2caf59494e44", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "e00c4517-8f27-48e7-ac20-2caf59494e44", - "x-ms-routing-request-id": "WESTUS2:20210507T202400Z:e00c4517-8f27-48e7-ac20-2caf59494e44" + "x-ms-correlation-request-id": "defc28a2-7e81-469d-9306-7e29a87940b1", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "defc28a2-7e81-469d-9306-7e29a87940b1", + "x-ms-routing-request-id": "WESTUS2:20210519T185253Z:defc28a2-7e81-469d-9306-7e29a87940b1" }, "ResponseBody": [] }, @@ -5560,7 +5585,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "769bb36e536770af14483b73ed7d3ac5", "x-ms-return-client-request-id": "true" }, @@ -5569,17 +5594,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:00 GMT", + "Date": "Wed, 19 May 2021 18:52:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e3beeda-b695-431b-bff3-6e7bc7b12865", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "5e3beeda-b695-431b-bff3-6e7bc7b12865", - "x-ms-routing-request-id": "WESTUS2:20210507T202401Z:5e3beeda-b695-431b-bff3-6e7bc7b12865" + "x-ms-correlation-request-id": "8846096d-6c0f-4c83-aeca-6a6cd3abb305", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "8846096d-6c0f-4c83-aeca-6a6cd3abb305", + "x-ms-routing-request-id": "WESTUS2:20210519T185254Z:8846096d-6c0f-4c83-aeca-6a6cd3abb305" }, "ResponseBody": [] }, @@ -5588,7 +5613,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e7d809bef2fcf830063bc2013b38f37", "x-ms-return-client-request-id": "true" }, @@ -5597,17 +5622,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:01 GMT", + "Date": "Wed, 19 May 2021 18:52:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d755f8e-549a-43fd-9bd3-61a8f9c3ff65", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "6d755f8e-549a-43fd-9bd3-61a8f9c3ff65", - "x-ms-routing-request-id": "WESTUS2:20210507T202402Z:6d755f8e-549a-43fd-9bd3-61a8f9c3ff65" + "x-ms-correlation-request-id": "509dc2f8-980b-4c12-8b55-4ab79957a568", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "509dc2f8-980b-4c12-8b55-4ab79957a568", + "x-ms-routing-request-id": "WESTUS2:20210519T185255Z:509dc2f8-980b-4c12-8b55-4ab79957a568" }, "ResponseBody": [] }, @@ -5616,7 +5641,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90ca65d9490e5aa942d012ab47967aea", "x-ms-return-client-request-id": "true" }, @@ -5625,17 +5650,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:02 GMT", + "Date": "Wed, 19 May 2021 18:52:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92e23a79-acd2-4ae4-9d63-13e8d48a5075", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "92e23a79-acd2-4ae4-9d63-13e8d48a5075", - "x-ms-routing-request-id": "WESTUS2:20210507T202403Z:92e23a79-acd2-4ae4-9d63-13e8d48a5075" + "x-ms-correlation-request-id": "85948b30-b937-43a1-be55-04ca398e11bc", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "85948b30-b937-43a1-be55-04ca398e11bc", + "x-ms-routing-request-id": "WESTUS2:20210519T185256Z:85948b30-b937-43a1-be55-04ca398e11bc" }, "ResponseBody": [] }, @@ -5644,7 +5669,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e0b5b8d42d3e7f052fcb7603968e5c60", "x-ms-return-client-request-id": "true" }, @@ -5653,17 +5678,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:03 GMT", + "Date": "Wed, 19 May 2021 18:52:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c6ba546-ad63-437c-a12a-5b212e13c67f", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "1c6ba546-ad63-437c-a12a-5b212e13c67f", - "x-ms-routing-request-id": "WESTUS2:20210507T202404Z:1c6ba546-ad63-437c-a12a-5b212e13c67f" + "x-ms-correlation-request-id": "6388841f-1d12-4afc-9950-aacee7530392", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "6388841f-1d12-4afc-9950-aacee7530392", + "x-ms-routing-request-id": "WESTUS2:20210519T185257Z:6388841f-1d12-4afc-9950-aacee7530392" }, "ResponseBody": [] }, @@ -5672,7 +5697,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "889903b9aab251b7d723dc5eddd78769", "x-ms-return-client-request-id": "true" }, @@ -5681,17 +5706,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:04 GMT", + "Date": "Wed, 19 May 2021 18:52:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c95a15f-8a5f-486c-9c7f-3c17407b6b19", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "1c95a15f-8a5f-486c-9c7f-3c17407b6b19", - "x-ms-routing-request-id": "WESTUS2:20210507T202405Z:1c95a15f-8a5f-486c-9c7f-3c17407b6b19" + "x-ms-correlation-request-id": "a32b6130-5b5a-4eb4-a3cb-f71a0b1d71d4", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "a32b6130-5b5a-4eb4-a3cb-f71a0b1d71d4", + "x-ms-routing-request-id": "WESTUS2:20210519T185258Z:a32b6130-5b5a-4eb4-a3cb-f71a0b1d71d4" }, "ResponseBody": [] }, @@ -5700,7 +5725,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b4cd2e8aefeabf95f4b6042d2a5c3b3", "x-ms-return-client-request-id": "true" }, @@ -5709,17 +5734,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:05 GMT", + "Date": "Wed, 19 May 2021 18:52:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53fae940-1b86-4a4e-87be-3601b2a7f3f3", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "53fae940-1b86-4a4e-87be-3601b2a7f3f3", - "x-ms-routing-request-id": "WESTUS2:20210507T202406Z:53fae940-1b86-4a4e-87be-3601b2a7f3f3" + "x-ms-correlation-request-id": "dd00e790-b564-4a56-b87f-4aa7fc941fe7", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "dd00e790-b564-4a56-b87f-4aa7fc941fe7", + "x-ms-routing-request-id": "WESTUS2:20210519T185259Z:dd00e790-b564-4a56-b87f-4aa7fc941fe7" }, "ResponseBody": [] }, @@ -5728,7 +5753,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44f2b174f2fd2a370163091b51a6a158", "x-ms-return-client-request-id": "true" }, @@ -5737,17 +5762,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:07 GMT", + "Date": "Wed, 19 May 2021 18:52:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30ddcd40-4c0a-4e2b-b5d7-ba9ece63abb4", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "30ddcd40-4c0a-4e2b-b5d7-ba9ece63abb4", - "x-ms-routing-request-id": "WESTUS2:20210507T202407Z:30ddcd40-4c0a-4e2b-b5d7-ba9ece63abb4" + "x-ms-correlation-request-id": "5a7af0a2-62b2-4360-abfe-fd7b1495d5e0", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "5a7af0a2-62b2-4360-abfe-fd7b1495d5e0", + "x-ms-routing-request-id": "WESTUS2:20210519T185300Z:5a7af0a2-62b2-4360-abfe-fd7b1495d5e0" }, "ResponseBody": [] }, @@ -5756,7 +5781,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c41a0c4400420a620aed286749747e31", "x-ms-return-client-request-id": "true" }, @@ -5765,17 +5790,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:08 GMT", + "Date": "Wed, 19 May 2021 18:53:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73484a51-9c0b-4d38-8e5b-33ea9536f045", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "73484a51-9c0b-4d38-8e5b-33ea9536f045", - "x-ms-routing-request-id": "WESTUS2:20210507T202408Z:73484a51-9c0b-4d38-8e5b-33ea9536f045" + "x-ms-correlation-request-id": "304e9d9d-59b1-44cd-b0cf-48de2b498ed2", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "304e9d9d-59b1-44cd-b0cf-48de2b498ed2", + "x-ms-routing-request-id": "WESTUS2:20210519T185301Z:304e9d9d-59b1-44cd-b0cf-48de2b498ed2" }, "ResponseBody": [] }, @@ -5784,7 +5809,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2bea285f43e4f66c9b22599aa5de5ab8", "x-ms-return-client-request-id": "true" }, @@ -5793,17 +5818,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:09 GMT", + "Date": "Wed, 19 May 2021 18:53:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35b91a4a-0498-4b4f-ad02-c7b1647c4c0c", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "35b91a4a-0498-4b4f-ad02-c7b1647c4c0c", - "x-ms-routing-request-id": "WESTUS2:20210507T202409Z:35b91a4a-0498-4b4f-ad02-c7b1647c4c0c" + "x-ms-correlation-request-id": "1c05d0d8-4dc8-4be4-b594-bf7b1a9963a0", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "1c05d0d8-4dc8-4be4-b594-bf7b1a9963a0", + "x-ms-routing-request-id": "WESTUS2:20210519T185302Z:1c05d0d8-4dc8-4be4-b594-bf7b1a9963a0" }, "ResponseBody": [] }, @@ -5812,7 +5837,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c6fd08a9ff8a73714fe8390fcacfe08d", "x-ms-return-client-request-id": "true" }, @@ -5821,17 +5846,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:10 GMT", + "Date": "Wed, 19 May 2021 18:53:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45aa0314-b9b8-470a-bfd1-228ec3026ef1", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "45aa0314-b9b8-470a-bfd1-228ec3026ef1", - "x-ms-routing-request-id": "WESTUS2:20210507T202410Z:45aa0314-b9b8-470a-bfd1-228ec3026ef1" + "x-ms-correlation-request-id": "e2ce1d7e-7b37-49d1-b56c-7329b9fdfd7f", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "e2ce1d7e-7b37-49d1-b56c-7329b9fdfd7f", + "x-ms-routing-request-id": "WESTUS2:20210519T185303Z:e2ce1d7e-7b37-49d1-b56c-7329b9fdfd7f" }, "ResponseBody": [] }, @@ -5840,7 +5865,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "29bbd7e576bc0173a024291fa7c7642c", "x-ms-return-client-request-id": "true" }, @@ -5849,17 +5874,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:11 GMT", + "Date": "Wed, 19 May 2021 18:53:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b2b2f8e-beb4-4460-8fb2-698a79c474e3", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-request-id": "4b2b2f8e-beb4-4460-8fb2-698a79c474e3", - "x-ms-routing-request-id": "WESTUS2:20210507T202411Z:4b2b2f8e-beb4-4460-8fb2-698a79c474e3" + "x-ms-correlation-request-id": "9fc8d1a7-14be-47ea-a367-e59242edda97", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "9fc8d1a7-14be-47ea-a367-e59242edda97", + "x-ms-routing-request-id": "WESTUS2:20210519T185304Z:9fc8d1a7-14be-47ea-a367-e59242edda97" }, "ResponseBody": [] }, @@ -5868,7 +5893,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "40be6f93b87660a6b676dbfc095c2bcb", "x-ms-return-client-request-id": "true" }, @@ -5877,17 +5902,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:12 GMT", + "Date": "Wed, 19 May 2021 18:53:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "621761f0-a013-42a2-b7d4-cf533aa8b5f9", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "621761f0-a013-42a2-b7d4-cf533aa8b5f9", - "x-ms-routing-request-id": "WESTUS2:20210507T202412Z:621761f0-a013-42a2-b7d4-cf533aa8b5f9" + "x-ms-correlation-request-id": "a7d02a21-336b-4969-aa02-11e3bb435608", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "a7d02a21-336b-4969-aa02-11e3bb435608", + "x-ms-routing-request-id": "WESTUS2:20210519T185305Z:a7d02a21-336b-4969-aa02-11e3bb435608" }, "ResponseBody": [] }, @@ -5896,7 +5921,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ceb5cc41302232fc94fc2566d551cc87", "x-ms-return-client-request-id": "true" }, @@ -5905,17 +5930,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:13 GMT", + "Date": "Wed, 19 May 2021 18:53:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7542f955-030d-4bcf-b7e9-9d8452a2edee", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "7542f955-030d-4bcf-b7e9-9d8452a2edee", - "x-ms-routing-request-id": "WESTUS2:20210507T202413Z:7542f955-030d-4bcf-b7e9-9d8452a2edee" + "x-ms-correlation-request-id": "9eca7b47-9387-4c73-901a-824636f5bb06", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "9eca7b47-9387-4c73-901a-824636f5bb06", + "x-ms-routing-request-id": "WESTUS2:20210519T185306Z:9eca7b47-9387-4c73-901a-824636f5bb06" }, "ResponseBody": [] }, @@ -5924,7 +5949,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a7c0c839f112c16305b72459b77f744", "x-ms-return-client-request-id": "true" }, @@ -5933,17 +5958,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:14 GMT", + "Date": "Wed, 19 May 2021 18:53:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8b4a127-ea33-4170-a2de-7b2c3dad9ebb", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "d8b4a127-ea33-4170-a2de-7b2c3dad9ebb", - "x-ms-routing-request-id": "WESTUS2:20210507T202415Z:d8b4a127-ea33-4170-a2de-7b2c3dad9ebb" + "x-ms-correlation-request-id": "780170da-b937-41dc-9da9-b56094e7dbf1", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "780170da-b937-41dc-9da9-b56094e7dbf1", + "x-ms-routing-request-id": "WESTUS2:20210519T185307Z:780170da-b937-41dc-9da9-b56094e7dbf1" }, "ResponseBody": [] }, @@ -5952,7 +5977,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dade5df896126209738bac7a93408a65", "x-ms-return-client-request-id": "true" }, @@ -5961,17 +5986,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:15 GMT", + "Date": "Wed, 19 May 2021 18:53:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d26c35c-64ab-4dee-a3d1-ac214195ee3a", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-request-id": "6d26c35c-64ab-4dee-a3d1-ac214195ee3a", - "x-ms-routing-request-id": "WESTUS2:20210507T202416Z:6d26c35c-64ab-4dee-a3d1-ac214195ee3a" + "x-ms-correlation-request-id": "d71d926f-db8a-4567-897f-488124250b00", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "d71d926f-db8a-4567-897f-488124250b00", + "x-ms-routing-request-id": "WESTUS2:20210519T185308Z:d71d926f-db8a-4567-897f-488124250b00" }, "ResponseBody": [] }, @@ -5980,7 +6005,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fc7853aad1dfa2bab6889ec7bdb7971d", "x-ms-return-client-request-id": "true" }, @@ -5989,17 +6014,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:17 GMT", + "Date": "Wed, 19 May 2021 18:53:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74929c36-2e91-4daf-8ffd-c8f940da0889", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-request-id": "74929c36-2e91-4daf-8ffd-c8f940da0889", - "x-ms-routing-request-id": "WESTUS2:20210507T202417Z:74929c36-2e91-4daf-8ffd-c8f940da0889" + "x-ms-correlation-request-id": "1a66e1b8-41c8-4a4d-9333-e1030f592937", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "1a66e1b8-41c8-4a4d-9333-e1030f592937", + "x-ms-routing-request-id": "WESTUS2:20210519T185309Z:1a66e1b8-41c8-4a4d-9333-e1030f592937" }, "ResponseBody": [] }, @@ -6008,7 +6033,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "776de104f173ed750319e785f39b99ef", "x-ms-return-client-request-id": "true" }, @@ -6017,17 +6042,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:18 GMT", + "Date": "Wed, 19 May 2021 18:53:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32246746-e8e2-4708-8bfb-9fd9c1b2ef15", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-request-id": "32246746-e8e2-4708-8bfb-9fd9c1b2ef15", - "x-ms-routing-request-id": "WESTUS2:20210507T202418Z:32246746-e8e2-4708-8bfb-9fd9c1b2ef15" + "x-ms-correlation-request-id": "9c8ce014-a125-42ee-a22d-37e728c8d761", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "9c8ce014-a125-42ee-a22d-37e728c8d761", + "x-ms-routing-request-id": "WESTUS2:20210519T185310Z:9c8ce014-a125-42ee-a22d-37e728c8d761" }, "ResponseBody": [] }, @@ -6036,7 +6061,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "479a0dd0fafe2764a33b2489f842a5bc", "x-ms-return-client-request-id": "true" }, @@ -6045,17 +6070,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:19 GMT", + "Date": "Wed, 19 May 2021 18:53:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "958555b7-87ed-40f4-be50-88cefc947f8b", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-request-id": "958555b7-87ed-40f4-be50-88cefc947f8b", - "x-ms-routing-request-id": "WESTUS2:20210507T202419Z:958555b7-87ed-40f4-be50-88cefc947f8b" + "x-ms-correlation-request-id": "60fec41a-06c7-4536-8d87-dd7a0407bde5", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "60fec41a-06c7-4536-8d87-dd7a0407bde5", + "x-ms-routing-request-id": "WESTUS2:20210519T185311Z:60fec41a-06c7-4536-8d87-dd7a0407bde5" }, "ResponseBody": [] }, @@ -6064,7 +6089,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b1758ef413d3b9f1de8af9c6e935ae1a", "x-ms-return-client-request-id": "true" }, @@ -6073,17 +6098,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:20 GMT", + "Date": "Wed, 19 May 2021 18:53:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c04a904-98fe-40e5-b5e5-505db350402a", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-request-id": "8c04a904-98fe-40e5-b5e5-505db350402a", - "x-ms-routing-request-id": "WESTUS2:20210507T202420Z:8c04a904-98fe-40e5-b5e5-505db350402a" + "x-ms-correlation-request-id": "f1617354-17e4-47dd-af61-450977e95f72", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "f1617354-17e4-47dd-af61-450977e95f72", + "x-ms-routing-request-id": "WESTUS2:20210519T185312Z:f1617354-17e4-47dd-af61-450977e95f72" }, "ResponseBody": [] }, @@ -6092,7 +6117,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aff7aeef501c0a1f7c46d437ccebf5c0", "x-ms-return-client-request-id": "true" }, @@ -6101,17 +6126,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:21 GMT", + "Date": "Wed, 19 May 2021 18:53:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a76f699-ec9b-4d9f-863d-f2877e6f52ad", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "3a76f699-ec9b-4d9f-863d-f2877e6f52ad", - "x-ms-routing-request-id": "WESTUS2:20210507T202421Z:3a76f699-ec9b-4d9f-863d-f2877e6f52ad" + "x-ms-correlation-request-id": "6049fc13-93c3-4c6d-addb-ca69e4f0d2f0", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "6049fc13-93c3-4c6d-addb-ca69e4f0d2f0", + "x-ms-routing-request-id": "WESTUS2:20210519T185313Z:6049fc13-93c3-4c6d-addb-ca69e4f0d2f0" }, "ResponseBody": [] }, @@ -6120,7 +6145,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "65902b74e726bd1c1be06873009d3e6d", "x-ms-return-client-request-id": "true" }, @@ -6129,17 +6154,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:22 GMT", + "Date": "Wed, 19 May 2021 18:53:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b0ecb09-9adc-4277-97ff-4a73b859e78d", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-request-id": "0b0ecb09-9adc-4277-97ff-4a73b859e78d", - "x-ms-routing-request-id": "WESTUS2:20210507T202422Z:0b0ecb09-9adc-4277-97ff-4a73b859e78d" + "x-ms-correlation-request-id": "c81d3202-0f29-4e12-ba1a-bdb8e03f7d8c", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "c81d3202-0f29-4e12-ba1a-bdb8e03f7d8c", + "x-ms-routing-request-id": "WESTUS2:20210519T185314Z:c81d3202-0f29-4e12-ba1a-bdb8e03f7d8c" }, "ResponseBody": [] }, @@ -6148,7 +6173,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "499a098df54ba49f6f6b348c3ebaedf3", "x-ms-return-client-request-id": "true" }, @@ -6157,17 +6182,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:23 GMT", + "Date": "Wed, 19 May 2021 18:53:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "193d3b4f-97b8-4f4a-97ca-3baafa8fe951", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-request-id": "193d3b4f-97b8-4f4a-97ca-3baafa8fe951", - "x-ms-routing-request-id": "WESTUS2:20210507T202423Z:193d3b4f-97b8-4f4a-97ca-3baafa8fe951" + "x-ms-correlation-request-id": "1fa7544d-4f5c-49ca-bad8-984fff404c48", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "1fa7544d-4f5c-49ca-bad8-984fff404c48", + "x-ms-routing-request-id": "WESTUS2:20210519T185315Z:1fa7544d-4f5c-49ca-bad8-984fff404c48" }, "ResponseBody": [] }, @@ -6176,7 +6201,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bd52399549a507f49139933ce7ab09df", "x-ms-return-client-request-id": "true" }, @@ -6185,17 +6210,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:24 GMT", + "Date": "Wed, 19 May 2021 18:53:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cfeda5d-3bde-4d03-9829-640bd610c392", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-request-id": "7cfeda5d-3bde-4d03-9829-640bd610c392", - "x-ms-routing-request-id": "WESTUS2:20210507T202424Z:7cfeda5d-3bde-4d03-9829-640bd610c392" + "x-ms-correlation-request-id": "3b702241-6254-4c35-b224-24f7ed9a6f43", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "3b702241-6254-4c35-b224-24f7ed9a6f43", + "x-ms-routing-request-id": "WESTUS2:20210519T185316Z:3b702241-6254-4c35-b224-24f7ed9a6f43" }, "ResponseBody": [] }, @@ -6204,7 +6229,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c2a96607ab507e758becf6bab28f7e61", "x-ms-return-client-request-id": "true" }, @@ -6213,17 +6238,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:25 GMT", + "Date": "Wed, 19 May 2021 18:53:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "280f41c9-c774-49c8-9023-522af2c5b5f2", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-request-id": "280f41c9-c774-49c8-9023-522af2c5b5f2", - "x-ms-routing-request-id": "WESTUS2:20210507T202425Z:280f41c9-c774-49c8-9023-522af2c5b5f2" + "x-ms-correlation-request-id": "e98e0a50-fde6-4dc2-9cdc-8aef2344f853", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "e98e0a50-fde6-4dc2-9cdc-8aef2344f853", + "x-ms-routing-request-id": "WESTUS2:20210519T185317Z:e98e0a50-fde6-4dc2-9cdc-8aef2344f853" }, "ResponseBody": [] }, @@ -6232,7 +6257,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c7de74f3804b44c81593b8116163bcc3", "x-ms-return-client-request-id": "true" }, @@ -6241,17 +6266,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:26 GMT", + "Date": "Wed, 19 May 2021 18:53:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea9bafb0-f7e4-4ea6-a63a-ad234a368059", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-request-id": "ea9bafb0-f7e4-4ea6-a63a-ad234a368059", - "x-ms-routing-request-id": "WESTUS2:20210507T202426Z:ea9bafb0-f7e4-4ea6-a63a-ad234a368059" + "x-ms-correlation-request-id": "3c0be25a-e680-478c-a9c7-4359300d1ffd", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "3c0be25a-e680-478c-a9c7-4359300d1ffd", + "x-ms-routing-request-id": "WESTUS2:20210519T185318Z:3c0be25a-e680-478c-a9c7-4359300d1ffd" }, "ResponseBody": [] }, @@ -6260,7 +6285,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d88455612a10e9a3c4d332b852395401", "x-ms-return-client-request-id": "true" }, @@ -6269,17 +6294,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:27 GMT", + "Date": "Wed, 19 May 2021 18:53:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3be09fca-b5c5-4fbc-9490-055e9a9f3698", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-request-id": "3be09fca-b5c5-4fbc-9490-055e9a9f3698", - "x-ms-routing-request-id": "WESTUS2:20210507T202427Z:3be09fca-b5c5-4fbc-9490-055e9a9f3698" + "x-ms-correlation-request-id": "09c75514-d7a0-4f17-b7ef-0f0b18ab7230", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "09c75514-d7a0-4f17-b7ef-0f0b18ab7230", + "x-ms-routing-request-id": "WESTUS2:20210519T185319Z:09c75514-d7a0-4f17-b7ef-0f0b18ab7230" }, "ResponseBody": [] }, @@ -6288,7 +6313,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "734832bb42cc87939d65adbdf3631c28", "x-ms-return-client-request-id": "true" }, @@ -6297,17 +6322,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:28 GMT", + "Date": "Wed, 19 May 2021 18:53:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0188a099-da6c-49ef-a8e3-bd605c542598", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-request-id": "0188a099-da6c-49ef-a8e3-bd605c542598", - "x-ms-routing-request-id": "WESTUS2:20210507T202428Z:0188a099-da6c-49ef-a8e3-bd605c542598" + "x-ms-correlation-request-id": "5159afad-12f3-48aa-bb64-f8613675db2a", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "5159afad-12f3-48aa-bb64-f8613675db2a", + "x-ms-routing-request-id": "WESTUS2:20210519T185320Z:5159afad-12f3-48aa-bb64-f8613675db2a" }, "ResponseBody": [] }, @@ -6316,7 +6341,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5d59322fa50ac850d1f403774e10f1db", "x-ms-return-client-request-id": "true" }, @@ -6325,17 +6350,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:29 GMT", + "Date": "Wed, 19 May 2021 18:53:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8784c72b-c039-4dd5-9e97-474cc23c016c", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "8784c72b-c039-4dd5-9e97-474cc23c016c", - "x-ms-routing-request-id": "WESTUS2:20210507T202429Z:8784c72b-c039-4dd5-9e97-474cc23c016c" + "x-ms-correlation-request-id": "581dae92-0fa2-4df9-97bc-3fe38b2f762b", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "581dae92-0fa2-4df9-97bc-3fe38b2f762b", + "x-ms-routing-request-id": "WESTUS2:20210519T185321Z:581dae92-0fa2-4df9-97bc-3fe38b2f762b" }, "ResponseBody": [] }, @@ -6344,7 +6369,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f56b63e481a1ef7c2fd3bab7de6f660", "x-ms-return-client-request-id": "true" }, @@ -6353,17 +6378,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:30 GMT", + "Date": "Wed, 19 May 2021 18:53:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb482bbb-45d0-4b73-9a55-c46f191f2696", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-request-id": "cb482bbb-45d0-4b73-9a55-c46f191f2696", - "x-ms-routing-request-id": "WESTUS2:20210507T202430Z:cb482bbb-45d0-4b73-9a55-c46f191f2696" + "x-ms-correlation-request-id": "6ceeeaab-8c0a-4fa7-9a93-1398b2a3922c", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "6ceeeaab-8c0a-4fa7-9a93-1398b2a3922c", + "x-ms-routing-request-id": "WESTUS2:20210519T185322Z:6ceeeaab-8c0a-4fa7-9a93-1398b2a3922c" }, "ResponseBody": [] }, @@ -6372,7 +6397,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "208809b7f7e016f7e180a2d83f1c398d", "x-ms-return-client-request-id": "true" }, @@ -6381,17 +6406,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:31 GMT", + "Date": "Wed, 19 May 2021 18:53:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90e6322a-6471-4d3c-9990-7df0da0fa5b2", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-request-id": "90e6322a-6471-4d3c-9990-7df0da0fa5b2", - "x-ms-routing-request-id": "WESTUS2:20210507T202431Z:90e6322a-6471-4d3c-9990-7df0da0fa5b2" + "x-ms-correlation-request-id": "fc7691cd-2e28-4aa4-ae9d-a7fe976f9bb7", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "fc7691cd-2e28-4aa4-ae9d-a7fe976f9bb7", + "x-ms-routing-request-id": "WESTUS2:20210519T185323Z:fc7691cd-2e28-4aa4-ae9d-a7fe976f9bb7" }, "ResponseBody": [] }, @@ -6400,7 +6425,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c7ed173ed0de60d3b3a9b0d6aa54bea", "x-ms-return-client-request-id": "true" }, @@ -6409,17 +6434,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:32 GMT", + "Date": "Wed, 19 May 2021 18:53:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8a03d44-6954-46fd-aa79-f864304afb4c", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-request-id": "c8a03d44-6954-46fd-aa79-f864304afb4c", - "x-ms-routing-request-id": "WESTUS2:20210507T202432Z:c8a03d44-6954-46fd-aa79-f864304afb4c" + "x-ms-correlation-request-id": "88f00ad7-3b87-4cd7-b7f2-68c06a81e13d", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "88f00ad7-3b87-4cd7-b7f2-68c06a81e13d", + "x-ms-routing-request-id": "WESTUS2:20210519T185324Z:88f00ad7-3b87-4cd7-b7f2-68c06a81e13d" }, "ResponseBody": [] }, @@ -6428,7 +6453,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44c0a2fed18746fbbf3f4d99a61edfa5", "x-ms-return-client-request-id": "true" }, @@ -6437,17 +6462,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:33 GMT", + "Date": "Wed, 19 May 2021 18:53:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72234acc-ed85-4f12-bb52-c5072254b8cd", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-request-id": "72234acc-ed85-4f12-bb52-c5072254b8cd", - "x-ms-routing-request-id": "WESTUS2:20210507T202433Z:72234acc-ed85-4f12-bb52-c5072254b8cd" + "x-ms-correlation-request-id": "12deaee4-fdb3-470a-994a-b4f2b138c773", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "12deaee4-fdb3-470a-994a-b4f2b138c773", + "x-ms-routing-request-id": "WESTUS2:20210519T185326Z:12deaee4-fdb3-470a-994a-b4f2b138c773" }, "ResponseBody": [] }, @@ -6456,7 +6481,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ab37adc3b967c953fba1e5a55ce9ab3c", "x-ms-return-client-request-id": "true" }, @@ -6465,17 +6490,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:34 GMT", + "Date": "Wed, 19 May 2021 18:53:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e32fe2f-9fd2-42c6-bdf7-551e5d044f50", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-request-id": "4e32fe2f-9fd2-42c6-bdf7-551e5d044f50", - "x-ms-routing-request-id": "WESTUS2:20210507T202434Z:4e32fe2f-9fd2-42c6-bdf7-551e5d044f50" + "x-ms-correlation-request-id": "c3a997f9-a9c2-401a-bfd0-fbb9fe86c5a4", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "c3a997f9-a9c2-401a-bfd0-fbb9fe86c5a4", + "x-ms-routing-request-id": "WESTUS2:20210519T185327Z:c3a997f9-a9c2-401a-bfd0-fbb9fe86c5a4" }, "ResponseBody": [] }, @@ -6484,7 +6509,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ddab735f55ba206d6387dcda073401c", "x-ms-return-client-request-id": "true" }, @@ -6493,17 +6518,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:35 GMT", + "Date": "Wed, 19 May 2021 18:53:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ae2d3eb-c399-453c-ba71-a1cb3793b401", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "0ae2d3eb-c399-453c-ba71-a1cb3793b401", - "x-ms-routing-request-id": "WESTUS2:20210507T202436Z:0ae2d3eb-c399-453c-ba71-a1cb3793b401" + "x-ms-correlation-request-id": "ea17d252-4c35-43aa-984f-d617cb1e53af", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "ea17d252-4c35-43aa-984f-d617cb1e53af", + "x-ms-routing-request-id": "WESTUS2:20210519T185328Z:ea17d252-4c35-43aa-984f-d617cb1e53af" }, "ResponseBody": [] }, @@ -6512,7 +6537,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc4af55b9f6e44834ff648e5eb56e9d5", "x-ms-return-client-request-id": "true" }, @@ -6521,17 +6546,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:36 GMT", + "Date": "Wed, 19 May 2021 18:53:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "486c8294-6638-40b1-baa8-2efddc5fd152", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-request-id": "486c8294-6638-40b1-baa8-2efddc5fd152", - "x-ms-routing-request-id": "WESTUS2:20210507T202437Z:486c8294-6638-40b1-baa8-2efddc5fd152" + "x-ms-correlation-request-id": "c2526cfe-9357-456d-86d6-f85023ed8d76", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "c2526cfe-9357-456d-86d6-f85023ed8d76", + "x-ms-routing-request-id": "WESTUS2:20210519T185329Z:c2526cfe-9357-456d-86d6-f85023ed8d76" }, "ResponseBody": [] }, @@ -6540,7 +6565,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef6410944244cd49a794d52f3b852887", "x-ms-return-client-request-id": "true" }, @@ -6549,17 +6574,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:37 GMT", + "Date": "Wed, 19 May 2021 18:53:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05c83ea0-5d14-470a-8ab8-bd6436501b8d", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-request-id": "05c83ea0-5d14-470a-8ab8-bd6436501b8d", - "x-ms-routing-request-id": "WESTUS2:20210507T202438Z:05c83ea0-5d14-470a-8ab8-bd6436501b8d" + "x-ms-correlation-request-id": "eb690710-9918-4b69-8da9-2c9c26e28c18", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "eb690710-9918-4b69-8da9-2c9c26e28c18", + "x-ms-routing-request-id": "WESTUS2:20210519T185330Z:eb690710-9918-4b69-8da9-2c9c26e28c18" }, "ResponseBody": [] }, @@ -6568,7 +6593,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "674ac961ef9f96ce34954e64ac21b780", "x-ms-return-client-request-id": "true" }, @@ -6577,17 +6602,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:38 GMT", + "Date": "Wed, 19 May 2021 18:53:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8b7a954-dcd4-4e4f-893d-c6c73939d953", - "x-ms-ratelimit-remaining-subscription-reads": "11864", - "x-ms-request-id": "c8b7a954-dcd4-4e4f-893d-c6c73939d953", - "x-ms-routing-request-id": "WESTUS2:20210507T202439Z:c8b7a954-dcd4-4e4f-893d-c6c73939d953" + "x-ms-correlation-request-id": "98875ab6-cabf-4688-8c90-2c30e695e88a", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "98875ab6-cabf-4688-8c90-2c30e695e88a", + "x-ms-routing-request-id": "WESTUS2:20210519T185331Z:98875ab6-cabf-4688-8c90-2c30e695e88a" }, "ResponseBody": [] }, @@ -6596,7 +6621,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8f39a84e510f18d7ab7c14d9ca5308c9", "x-ms-return-client-request-id": "true" }, @@ -6605,17 +6630,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:39 GMT", + "Date": "Wed, 19 May 2021 18:53:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfcb79d3-b822-4514-b9cd-39a62174640c", - "x-ms-ratelimit-remaining-subscription-reads": "11863", - "x-ms-request-id": "dfcb79d3-b822-4514-b9cd-39a62174640c", - "x-ms-routing-request-id": "WESTUS2:20210507T202440Z:dfcb79d3-b822-4514-b9cd-39a62174640c" + "x-ms-correlation-request-id": "bd07dc8c-2064-4e2a-951c-966e0cd29a6e", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "bd07dc8c-2064-4e2a-951c-966e0cd29a6e", + "x-ms-routing-request-id": "WESTUS2:20210519T185332Z:bd07dc8c-2064-4e2a-951c-966e0cd29a6e" }, "ResponseBody": [] }, @@ -6624,7 +6649,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2283c0ce820ba43542cebaaef4e42186", "x-ms-return-client-request-id": "true" }, @@ -6633,17 +6658,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:40 GMT", + "Date": "Wed, 19 May 2021 18:53:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f66eaac-482c-43ae-a909-c77eb0938084", - "x-ms-ratelimit-remaining-subscription-reads": "11862", - "x-ms-request-id": "6f66eaac-482c-43ae-a909-c77eb0938084", - "x-ms-routing-request-id": "WESTUS2:20210507T202441Z:6f66eaac-482c-43ae-a909-c77eb0938084" + "x-ms-correlation-request-id": "bad4294b-3b6b-4e9b-9e89-db91b4d96aaf", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "bad4294b-3b6b-4e9b-9e89-db91b4d96aaf", + "x-ms-routing-request-id": "WESTUS2:20210519T185333Z:bad4294b-3b6b-4e9b-9e89-db91b4d96aaf" }, "ResponseBody": [] }, @@ -6652,7 +6677,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "93e054dd984c1078f131bc23daf4cbe0", "x-ms-return-client-request-id": "true" }, @@ -6661,17 +6686,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:41 GMT", + "Date": "Wed, 19 May 2021 18:53:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aaa5df3e-7df7-4c69-820d-26fc25c0ffe5", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-request-id": "aaa5df3e-7df7-4c69-820d-26fc25c0ffe5", - "x-ms-routing-request-id": "WESTUS2:20210507T202442Z:aaa5df3e-7df7-4c69-820d-26fc25c0ffe5" + "x-ms-correlation-request-id": "9892d2ba-d169-45c4-aa58-72a219134af4", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "9892d2ba-d169-45c4-aa58-72a219134af4", + "x-ms-routing-request-id": "WESTUS2:20210519T185334Z:9892d2ba-d169-45c4-aa58-72a219134af4" }, "ResponseBody": [] }, @@ -6680,7 +6705,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec96848c949dcc7472944d41962824c6", "x-ms-return-client-request-id": "true" }, @@ -6689,17 +6714,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:43 GMT", + "Date": "Wed, 19 May 2021 18:53:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ca14416-9411-4e23-a87f-182a60170c74", - "x-ms-ratelimit-remaining-subscription-reads": "11860", - "x-ms-request-id": "8ca14416-9411-4e23-a87f-182a60170c74", - "x-ms-routing-request-id": "WESTUS2:20210507T202443Z:8ca14416-9411-4e23-a87f-182a60170c74" + "x-ms-correlation-request-id": "a67d8fd6-36f4-47af-811f-42d76d456b7e", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "a67d8fd6-36f4-47af-811f-42d76d456b7e", + "x-ms-routing-request-id": "WESTUS2:20210519T185335Z:a67d8fd6-36f4-47af-811f-42d76d456b7e" }, "ResponseBody": [] }, @@ -6708,7 +6733,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75fc8e5b7572357c487231dac512ca4e", "x-ms-return-client-request-id": "true" }, @@ -6717,17 +6742,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:44 GMT", + "Date": "Wed, 19 May 2021 18:53:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c3bc418-eb07-4512-8c36-6d3722fbdeb4", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-request-id": "7c3bc418-eb07-4512-8c36-6d3722fbdeb4", - "x-ms-routing-request-id": "WESTUS2:20210507T202444Z:7c3bc418-eb07-4512-8c36-6d3722fbdeb4" + "x-ms-correlation-request-id": "686bf505-0c38-449e-9afa-c8ad77eec318", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "686bf505-0c38-449e-9afa-c8ad77eec318", + "x-ms-routing-request-id": "WESTUS2:20210519T185336Z:686bf505-0c38-449e-9afa-c8ad77eec318" }, "ResponseBody": [] }, @@ -6736,7 +6761,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f22da02354e48e8df1420b84b377ac8", "x-ms-return-client-request-id": "true" }, @@ -6745,17 +6770,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:45 GMT", + "Date": "Wed, 19 May 2021 18:53:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15dd426f-d7e3-457a-8710-636d3561c41e", - "x-ms-ratelimit-remaining-subscription-reads": "11858", - "x-ms-request-id": "15dd426f-d7e3-457a-8710-636d3561c41e", - "x-ms-routing-request-id": "WESTUS2:20210507T202445Z:15dd426f-d7e3-457a-8710-636d3561c41e" + "x-ms-correlation-request-id": "725c52e4-9fe1-46b9-a9fd-738d3050c255", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "725c52e4-9fe1-46b9-a9fd-738d3050c255", + "x-ms-routing-request-id": "WESTUS2:20210519T185337Z:725c52e4-9fe1-46b9-a9fd-738d3050c255" }, "ResponseBody": [] }, @@ -6764,7 +6789,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4cc7f50c55f7176d0861a32a639a065f", "x-ms-return-client-request-id": "true" }, @@ -6773,17 +6798,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:46 GMT", + "Date": "Wed, 19 May 2021 18:53:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "030f4512-b7c2-47ef-b44b-68f847a1e10f", - "x-ms-ratelimit-remaining-subscription-reads": "11857", - "x-ms-request-id": "030f4512-b7c2-47ef-b44b-68f847a1e10f", - "x-ms-routing-request-id": "WESTUS2:20210507T202446Z:030f4512-b7c2-47ef-b44b-68f847a1e10f" + "x-ms-correlation-request-id": "f1cddd98-352d-4da1-b4b1-7c4380c56783", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "f1cddd98-352d-4da1-b4b1-7c4380c56783", + "x-ms-routing-request-id": "WESTUS2:20210519T185338Z:f1cddd98-352d-4da1-b4b1-7c4380c56783" }, "ResponseBody": [] }, @@ -6792,7 +6817,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc3effc9b5062678a5b3955e55c4ea10", "x-ms-return-client-request-id": "true" }, @@ -6801,17 +6826,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:47 GMT", + "Date": "Wed, 19 May 2021 18:53:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6937eb23-d899-4bc3-91b5-c7bc7f8e8c2e", - "x-ms-ratelimit-remaining-subscription-reads": "11856", - "x-ms-request-id": "6937eb23-d899-4bc3-91b5-c7bc7f8e8c2e", - "x-ms-routing-request-id": "WESTUS2:20210507T202447Z:6937eb23-d899-4bc3-91b5-c7bc7f8e8c2e" + "x-ms-correlation-request-id": "b3672940-844e-4f22-b216-13b7317f1b65", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "b3672940-844e-4f22-b216-13b7317f1b65", + "x-ms-routing-request-id": "WESTUS2:20210519T185339Z:b3672940-844e-4f22-b216-13b7317f1b65" }, "ResponseBody": [] }, @@ -6820,7 +6845,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cfce68f87e4bad566c0a67ed91bde545", "x-ms-return-client-request-id": "true" }, @@ -6829,17 +6854,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:48 GMT", + "Date": "Wed, 19 May 2021 18:53:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce731275-b7e0-455d-bf0e-d09fc83103fa", - "x-ms-ratelimit-remaining-subscription-reads": "11855", - "x-ms-request-id": "ce731275-b7e0-455d-bf0e-d09fc83103fa", - "x-ms-routing-request-id": "WESTUS2:20210507T202448Z:ce731275-b7e0-455d-bf0e-d09fc83103fa" + "x-ms-correlation-request-id": "727ca896-e6f8-4b8a-9560-df478541be02", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "727ca896-e6f8-4b8a-9560-df478541be02", + "x-ms-routing-request-id": "WESTUS2:20210519T185340Z:727ca896-e6f8-4b8a-9560-df478541be02" }, "ResponseBody": [] }, @@ -6848,7 +6873,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4beec00dbef956c27da1a644bf0fc243", "x-ms-return-client-request-id": "true" }, @@ -6857,17 +6882,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:49 GMT", + "Date": "Wed, 19 May 2021 18:53:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b572d54e-567f-412e-8f97-559fab0bf75a", - "x-ms-ratelimit-remaining-subscription-reads": "11854", - "x-ms-request-id": "b572d54e-567f-412e-8f97-559fab0bf75a", - "x-ms-routing-request-id": "WESTUS2:20210507T202449Z:b572d54e-567f-412e-8f97-559fab0bf75a" + "x-ms-correlation-request-id": "d45cc027-da6e-4ee3-b2a9-ff6e34848825", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "d45cc027-da6e-4ee3-b2a9-ff6e34848825", + "x-ms-routing-request-id": "WESTUS2:20210519T185341Z:d45cc027-da6e-4ee3-b2a9-ff6e34848825" }, "ResponseBody": [] }, @@ -6876,7 +6901,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fb32937636cc4b14a9904ffb4e8a94e7", "x-ms-return-client-request-id": "true" }, @@ -6885,17 +6910,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:50 GMT", + "Date": "Wed, 19 May 2021 18:53:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e42a419-bdbf-47d6-95cd-755e859f642e", - "x-ms-ratelimit-remaining-subscription-reads": "11853", - "x-ms-request-id": "6e42a419-bdbf-47d6-95cd-755e859f642e", - "x-ms-routing-request-id": "WESTUS2:20210507T202450Z:6e42a419-bdbf-47d6-95cd-755e859f642e" + "x-ms-correlation-request-id": "3da82b4a-b584-4aab-8552-8fdb14ce6321", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "3da82b4a-b584-4aab-8552-8fdb14ce6321", + "x-ms-routing-request-id": "WESTUS2:20210519T185342Z:3da82b4a-b584-4aab-8552-8fdb14ce6321" }, "ResponseBody": [] }, @@ -6904,7 +6929,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "945050ce9ed63a17a67751a9d712ed5d", "x-ms-return-client-request-id": "true" }, @@ -6913,17 +6938,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:51 GMT", + "Date": "Wed, 19 May 2021 18:53:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93a37c96-4752-40e1-a088-b623532991ef", - "x-ms-ratelimit-remaining-subscription-reads": "11852", - "x-ms-request-id": "93a37c96-4752-40e1-a088-b623532991ef", - "x-ms-routing-request-id": "WESTUS2:20210507T202451Z:93a37c96-4752-40e1-a088-b623532991ef" + "x-ms-correlation-request-id": "d801d52d-3f03-47ad-aeea-8993f805756e", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "d801d52d-3f03-47ad-aeea-8993f805756e", + "x-ms-routing-request-id": "WESTUS2:20210519T185343Z:d801d52d-3f03-47ad-aeea-8993f805756e" }, "ResponseBody": [] }, @@ -6932,7 +6957,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fe762348ea8bd679aca2a2686ec608f2", "x-ms-return-client-request-id": "true" }, @@ -6941,17 +6966,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:52 GMT", + "Date": "Wed, 19 May 2021 18:53:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4b14135-dded-4469-834e-653710490f84", - "x-ms-ratelimit-remaining-subscription-reads": "11851", - "x-ms-request-id": "f4b14135-dded-4469-834e-653710490f84", - "x-ms-routing-request-id": "WESTUS2:20210507T202452Z:f4b14135-dded-4469-834e-653710490f84" + "x-ms-correlation-request-id": "e25b428d-a58a-4cb4-88d7-c75487e788cc", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "e25b428d-a58a-4cb4-88d7-c75487e788cc", + "x-ms-routing-request-id": "WESTUS2:20210519T185344Z:e25b428d-a58a-4cb4-88d7-c75487e788cc" }, "ResponseBody": [] }, @@ -6960,7 +6985,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f75be0d2ebed86d7bf75454e56b7397", "x-ms-return-client-request-id": "true" }, @@ -6969,17 +6994,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:53 GMT", + "Date": "Wed, 19 May 2021 18:53:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa3896da-3ebf-4801-bd1d-0348afb9280d", - "x-ms-ratelimit-remaining-subscription-reads": "11850", - "x-ms-request-id": "aa3896da-3ebf-4801-bd1d-0348afb9280d", - "x-ms-routing-request-id": "WESTUS2:20210507T202453Z:aa3896da-3ebf-4801-bd1d-0348afb9280d" + "x-ms-correlation-request-id": "f08cae39-9216-42fa-9090-036106bbeca8", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "f08cae39-9216-42fa-9090-036106bbeca8", + "x-ms-routing-request-id": "WESTUS2:20210519T185345Z:f08cae39-9216-42fa-9090-036106bbeca8" }, "ResponseBody": [] }, @@ -6988,7 +7013,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2bb3f2a39614e45cd679e733fbafcbdf", "x-ms-return-client-request-id": "true" }, @@ -6997,17 +7022,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:54 GMT", + "Date": "Wed, 19 May 2021 18:53:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a49f286-8c67-4b1d-8c3b-349eea0be3ed", - "x-ms-ratelimit-remaining-subscription-reads": "11849", - "x-ms-request-id": "1a49f286-8c67-4b1d-8c3b-349eea0be3ed", - "x-ms-routing-request-id": "WESTUS2:20210507T202455Z:1a49f286-8c67-4b1d-8c3b-349eea0be3ed" + "x-ms-correlation-request-id": "985b24a3-af72-4b88-ba72-a9f191c97e97", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "985b24a3-af72-4b88-ba72-a9f191c97e97", + "x-ms-routing-request-id": "WESTUS2:20210519T185346Z:985b24a3-af72-4b88-ba72-a9f191c97e97" }, "ResponseBody": [] }, @@ -7016,7 +7041,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "199c5e6f7e9c1a9eb69d82939524f141", "x-ms-return-client-request-id": "true" }, @@ -7025,17 +7050,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:55 GMT", + "Date": "Wed, 19 May 2021 18:53:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4c373e4-f12b-4860-b076-d3829ced3398", - "x-ms-ratelimit-remaining-subscription-reads": "11848", - "x-ms-request-id": "e4c373e4-f12b-4860-b076-d3829ced3398", - "x-ms-routing-request-id": "WESTUS2:20210507T202456Z:e4c373e4-f12b-4860-b076-d3829ced3398" + "x-ms-correlation-request-id": "e857a04e-70b8-4c93-9f35-1c1ae23c0238", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "e857a04e-70b8-4c93-9f35-1c1ae23c0238", + "x-ms-routing-request-id": "WESTUS2:20210519T185347Z:e857a04e-70b8-4c93-9f35-1c1ae23c0238" }, "ResponseBody": [] }, @@ -7044,7 +7069,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7cc40b2fdc1376de619099444639ddcc", "x-ms-return-client-request-id": "true" }, @@ -7053,17 +7078,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:56 GMT", + "Date": "Wed, 19 May 2021 18:53:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e10a8e51-78dd-43a6-b5aa-5401be2bb17b", - "x-ms-ratelimit-remaining-subscription-reads": "11847", - "x-ms-request-id": "e10a8e51-78dd-43a6-b5aa-5401be2bb17b", - "x-ms-routing-request-id": "WESTUS2:20210507T202457Z:e10a8e51-78dd-43a6-b5aa-5401be2bb17b" + "x-ms-correlation-request-id": "af2c004e-c393-41e5-ad20-d85e7a7a08ce", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "af2c004e-c393-41e5-ad20-d85e7a7a08ce", + "x-ms-routing-request-id": "WESTUS2:20210519T185348Z:af2c004e-c393-41e5-ad20-d85e7a7a08ce" }, "ResponseBody": [] }, @@ -7072,7 +7097,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "86e5752b59ce25fa5398747714c84fb1", "x-ms-return-client-request-id": "true" }, @@ -7081,17 +7106,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:57 GMT", + "Date": "Wed, 19 May 2021 18:53:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17177cb8-3de2-4ae0-970e-523b61009e3b", - "x-ms-ratelimit-remaining-subscription-reads": "11846", - "x-ms-request-id": "17177cb8-3de2-4ae0-970e-523b61009e3b", - "x-ms-routing-request-id": "WESTUS2:20210507T202458Z:17177cb8-3de2-4ae0-970e-523b61009e3b" + "x-ms-correlation-request-id": "c1ae1326-9195-4d08-9a4a-909103fb4395", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "c1ae1326-9195-4d08-9a4a-909103fb4395", + "x-ms-routing-request-id": "WESTUS2:20210519T185349Z:c1ae1326-9195-4d08-9a4a-909103fb4395" }, "ResponseBody": [] }, @@ -7100,7 +7125,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f004a6884fea92cc8025b70ce459d47c", "x-ms-return-client-request-id": "true" }, @@ -7109,17 +7134,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:58 GMT", + "Date": "Wed, 19 May 2021 18:53:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13fd6a61-1c25-447a-bbcf-01ccb09f76a3", - "x-ms-ratelimit-remaining-subscription-reads": "11845", - "x-ms-request-id": "13fd6a61-1c25-447a-bbcf-01ccb09f76a3", - "x-ms-routing-request-id": "WESTUS2:20210507T202459Z:13fd6a61-1c25-447a-bbcf-01ccb09f76a3" + "x-ms-correlation-request-id": "7d4ed57b-0a9a-460a-82fd-597cf5229742", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "7d4ed57b-0a9a-460a-82fd-597cf5229742", + "x-ms-routing-request-id": "WESTUS2:20210519T185350Z:7d4ed57b-0a9a-460a-82fd-597cf5229742" }, "ResponseBody": [] }, @@ -7128,7 +7153,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1f67b6c06b3fd572109f287a67676299", "x-ms-return-client-request-id": "true" }, @@ -7137,17 +7162,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:24:59 GMT", + "Date": "Wed, 19 May 2021 18:53:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a82f3a2-af49-483b-8289-213d635f20f3", - "x-ms-ratelimit-remaining-subscription-reads": "11844", - "x-ms-request-id": "5a82f3a2-af49-483b-8289-213d635f20f3", - "x-ms-routing-request-id": "WESTUS2:20210507T202500Z:5a82f3a2-af49-483b-8289-213d635f20f3" + "x-ms-correlation-request-id": "05bd5cf9-4170-41f4-8c4a-e4d1939f53dc", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "05bd5cf9-4170-41f4-8c4a-e4d1939f53dc", + "x-ms-routing-request-id": "WESTUS2:20210519T185351Z:05bd5cf9-4170-41f4-8c4a-e4d1939f53dc" }, "ResponseBody": [] }, @@ -7156,7 +7181,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a0bce740ec34dce2a85305a9a2ee40fa", "x-ms-return-client-request-id": "true" }, @@ -7165,17 +7190,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:00 GMT", + "Date": "Wed, 19 May 2021 18:53:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2b016de-4256-453b-8217-336081991d33", - "x-ms-ratelimit-remaining-subscription-reads": "11843", - "x-ms-request-id": "a2b016de-4256-453b-8217-336081991d33", - "x-ms-routing-request-id": "WESTUS2:20210507T202501Z:a2b016de-4256-453b-8217-336081991d33" + "x-ms-correlation-request-id": "a3993783-2565-45d4-830d-c8bf093ae21d", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "a3993783-2565-45d4-830d-c8bf093ae21d", + "x-ms-routing-request-id": "WESTUS2:20210519T185352Z:a3993783-2565-45d4-830d-c8bf093ae21d" }, "ResponseBody": [] }, @@ -7184,7 +7209,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5eb6f8c42f601c72342fdf4a27522a19", "x-ms-return-client-request-id": "true" }, @@ -7193,17 +7218,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:01 GMT", + "Date": "Wed, 19 May 2021 18:53:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "40587c01-efbb-4d6a-8c8e-0413bdf07268", - "x-ms-ratelimit-remaining-subscription-reads": "11842", - "x-ms-request-id": "40587c01-efbb-4d6a-8c8e-0413bdf07268", - "x-ms-routing-request-id": "WESTUS2:20210507T202502Z:40587c01-efbb-4d6a-8c8e-0413bdf07268" + "x-ms-correlation-request-id": "2c274269-c760-4841-8b5d-d6337b3a5c98", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "2c274269-c760-4841-8b5d-d6337b3a5c98", + "x-ms-routing-request-id": "WESTUS2:20210519T185353Z:2c274269-c760-4841-8b5d-d6337b3a5c98" }, "ResponseBody": [] }, @@ -7212,7 +7237,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fdcb1ec3349cd347d38b77eb66c93222", "x-ms-return-client-request-id": "true" }, @@ -7221,17 +7246,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:02 GMT", + "Date": "Wed, 19 May 2021 18:53:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21acc167-77a4-477d-8f41-ef382ef51c07", - "x-ms-ratelimit-remaining-subscription-reads": "11841", - "x-ms-request-id": "21acc167-77a4-477d-8f41-ef382ef51c07", - "x-ms-routing-request-id": "WESTUS2:20210507T202503Z:21acc167-77a4-477d-8f41-ef382ef51c07" + "x-ms-correlation-request-id": "c5c84abf-4bed-4d46-a0c1-d63864b5f2e6", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "c5c84abf-4bed-4d46-a0c1-d63864b5f2e6", + "x-ms-routing-request-id": "WESTUS2:20210519T185354Z:c5c84abf-4bed-4d46-a0c1-d63864b5f2e6" }, "ResponseBody": [] }, @@ -7240,7 +7265,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6fb52e5f04b0113875a06c050d97b456", "x-ms-return-client-request-id": "true" }, @@ -7249,17 +7274,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:03 GMT", + "Date": "Wed, 19 May 2021 18:53:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0aa542c-58b5-4e17-aee1-932a84280d35", - "x-ms-ratelimit-remaining-subscription-reads": "11840", - "x-ms-request-id": "d0aa542c-58b5-4e17-aee1-932a84280d35", - "x-ms-routing-request-id": "WESTUS2:20210507T202504Z:d0aa542c-58b5-4e17-aee1-932a84280d35" + "x-ms-correlation-request-id": "5a195add-95d1-4bbf-b21d-37bfa9f7a439", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "5a195add-95d1-4bbf-b21d-37bfa9f7a439", + "x-ms-routing-request-id": "WESTUS2:20210519T185356Z:5a195add-95d1-4bbf-b21d-37bfa9f7a439" }, "ResponseBody": [] }, @@ -7268,7 +7293,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "83e5eb294323905db0e28ad5b886b56a", "x-ms-return-client-request-id": "true" }, @@ -7277,17 +7302,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:04 GMT", + "Date": "Wed, 19 May 2021 18:53:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2516e8b-e954-49e3-81ad-23d2b236c7e7", - "x-ms-ratelimit-remaining-subscription-reads": "11839", - "x-ms-request-id": "d2516e8b-e954-49e3-81ad-23d2b236c7e7", - "x-ms-routing-request-id": "WESTUS2:20210507T202505Z:d2516e8b-e954-49e3-81ad-23d2b236c7e7" + "x-ms-correlation-request-id": "06f127c0-f078-4646-aa1c-84615f8aea22", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "06f127c0-f078-4646-aa1c-84615f8aea22", + "x-ms-routing-request-id": "WESTUS2:20210519T185357Z:06f127c0-f078-4646-aa1c-84615f8aea22" }, "ResponseBody": [] }, @@ -7296,7 +7321,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f9ebbcfcba9cbe68e6b987fcc842c53c", "x-ms-return-client-request-id": "true" }, @@ -7305,17 +7330,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:05 GMT", + "Date": "Wed, 19 May 2021 18:53:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b662e39-d206-4226-bd32-72a9c0327a81", - "x-ms-ratelimit-remaining-subscription-reads": "11838", - "x-ms-request-id": "5b662e39-d206-4226-bd32-72a9c0327a81", - "x-ms-routing-request-id": "WESTUS2:20210507T202506Z:5b662e39-d206-4226-bd32-72a9c0327a81" + "x-ms-correlation-request-id": "632d3b8f-9f66-49b0-a8d5-1c337d424e58", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "632d3b8f-9f66-49b0-a8d5-1c337d424e58", + "x-ms-routing-request-id": "WESTUS2:20210519T185358Z:632d3b8f-9f66-49b0-a8d5-1c337d424e58" }, "ResponseBody": [] }, @@ -7324,7 +7349,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7ac220d7afe31bffd025bfce7a6358ef", "x-ms-return-client-request-id": "true" }, @@ -7333,17 +7358,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:06 GMT", + "Date": "Wed, 19 May 2021 18:53:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ac94c7c-9a37-4818-97ed-5dff31edf86e", - "x-ms-ratelimit-remaining-subscription-reads": "11837", - "x-ms-request-id": "4ac94c7c-9a37-4818-97ed-5dff31edf86e", - "x-ms-routing-request-id": "WESTUS2:20210507T202507Z:4ac94c7c-9a37-4818-97ed-5dff31edf86e" + "x-ms-correlation-request-id": "c04f0bb0-16fb-42d8-902b-695a97ed9e6e", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "c04f0bb0-16fb-42d8-902b-695a97ed9e6e", + "x-ms-routing-request-id": "WESTUS2:20210519T185359Z:c04f0bb0-16fb-42d8-902b-695a97ed9e6e" }, "ResponseBody": [] }, @@ -7352,7 +7377,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "510801eabaac6eba83279d69bb60c86d", "x-ms-return-client-request-id": "true" }, @@ -7361,17 +7386,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:07 GMT", + "Date": "Wed, 19 May 2021 18:53:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51b131b1-df0c-4798-9cd1-6b4d076594df", - "x-ms-ratelimit-remaining-subscription-reads": "11836", - "x-ms-request-id": "51b131b1-df0c-4798-9cd1-6b4d076594df", - "x-ms-routing-request-id": "WESTUS2:20210507T202508Z:51b131b1-df0c-4798-9cd1-6b4d076594df" + "x-ms-correlation-request-id": "be716537-7d81-44cd-8c13-bcbf6e5f921d", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "be716537-7d81-44cd-8c13-bcbf6e5f921d", + "x-ms-routing-request-id": "WESTUS2:20210519T185400Z:be716537-7d81-44cd-8c13-bcbf6e5f921d" }, "ResponseBody": [] }, @@ -7380,7 +7405,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97fd4d1c3bc34d87bdcf2877fb9a4483", "x-ms-return-client-request-id": "true" }, @@ -7389,17 +7414,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:08 GMT", + "Date": "Wed, 19 May 2021 18:54:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3434195-3e08-41c2-a5ce-e9b599fff89b", - "x-ms-ratelimit-remaining-subscription-reads": "11835", - "x-ms-request-id": "c3434195-3e08-41c2-a5ce-e9b599fff89b", - "x-ms-routing-request-id": "WESTUS2:20210507T202509Z:c3434195-3e08-41c2-a5ce-e9b599fff89b" + "x-ms-correlation-request-id": "e7278537-3ed4-41b5-b71d-b02b02d92a95", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "e7278537-3ed4-41b5-b71d-b02b02d92a95", + "x-ms-routing-request-id": "WESTUS2:20210519T185401Z:e7278537-3ed4-41b5-b71d-b02b02d92a95" }, "ResponseBody": [] }, @@ -7408,7 +7433,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c611986074391c906654f7bc12966070", "x-ms-return-client-request-id": "true" }, @@ -7417,17 +7442,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:10 GMT", + "Date": "Wed, 19 May 2021 18:54:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2cc17667-2456-4cdd-a618-04a1368a8642", - "x-ms-ratelimit-remaining-subscription-reads": "11834", - "x-ms-request-id": "2cc17667-2456-4cdd-a618-04a1368a8642", - "x-ms-routing-request-id": "WESTUS2:20210507T202510Z:2cc17667-2456-4cdd-a618-04a1368a8642" + "x-ms-correlation-request-id": "8525cdd1-bd3f-4186-ad53-0d7faeb64175", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "8525cdd1-bd3f-4186-ad53-0d7faeb64175", + "x-ms-routing-request-id": "WESTUS2:20210519T185402Z:8525cdd1-bd3f-4186-ad53-0d7faeb64175" }, "ResponseBody": [] }, @@ -7436,7 +7461,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2cb1515cc165af2b79bb94dc924373e8", "x-ms-return-client-request-id": "true" }, @@ -7445,17 +7470,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:11 GMT", + "Date": "Wed, 19 May 2021 18:54:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eebb71d2-aa31-4472-907c-9e5f6f2b1dd6", - "x-ms-ratelimit-remaining-subscription-reads": "11833", - "x-ms-request-id": "eebb71d2-aa31-4472-907c-9e5f6f2b1dd6", - "x-ms-routing-request-id": "WESTUS2:20210507T202511Z:eebb71d2-aa31-4472-907c-9e5f6f2b1dd6" + "x-ms-correlation-request-id": "c869cfc6-8481-4ebd-9ca8-b51bfcf98fa0", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "c869cfc6-8481-4ebd-9ca8-b51bfcf98fa0", + "x-ms-routing-request-id": "WESTUS2:20210519T185403Z:c869cfc6-8481-4ebd-9ca8-b51bfcf98fa0" }, "ResponseBody": [] }, @@ -7464,7 +7489,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "230819e2014ea733bde1316f43cb3a27", "x-ms-return-client-request-id": "true" }, @@ -7473,17 +7498,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:12 GMT", + "Date": "Wed, 19 May 2021 18:54:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2d6dd01-b098-43f5-a946-90c62fce943b", - "x-ms-ratelimit-remaining-subscription-reads": "11832", - "x-ms-request-id": "b2d6dd01-b098-43f5-a946-90c62fce943b", - "x-ms-routing-request-id": "WESTUS2:20210507T202512Z:b2d6dd01-b098-43f5-a946-90c62fce943b" + "x-ms-correlation-request-id": "cdea1fb7-fb0c-418e-a25e-4f1316635391", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "cdea1fb7-fb0c-418e-a25e-4f1316635391", + "x-ms-routing-request-id": "WESTUS2:20210519T185404Z:cdea1fb7-fb0c-418e-a25e-4f1316635391" }, "ResponseBody": [] }, @@ -7492,7 +7517,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a91ab86f18e99f1e6c624d7ee0b38923", "x-ms-return-client-request-id": "true" }, @@ -7501,17 +7526,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:13 GMT", + "Date": "Wed, 19 May 2021 18:54:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "335d2fce-6736-4ca8-8bcd-59f88497461b", - "x-ms-ratelimit-remaining-subscription-reads": "11831", - "x-ms-request-id": "335d2fce-6736-4ca8-8bcd-59f88497461b", - "x-ms-routing-request-id": "WESTUS2:20210507T202514Z:335d2fce-6736-4ca8-8bcd-59f88497461b" + "x-ms-correlation-request-id": "f2dcea79-a2b4-496a-8a36-828a3d57e179", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "f2dcea79-a2b4-496a-8a36-828a3d57e179", + "x-ms-routing-request-id": "WESTUS2:20210519T185405Z:f2dcea79-a2b4-496a-8a36-828a3d57e179" }, "ResponseBody": [] }, @@ -7520,7 +7545,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8d90ee03c8d5a211e096f8390bc6bad", "x-ms-return-client-request-id": "true" }, @@ -7529,17 +7554,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:14 GMT", + "Date": "Wed, 19 May 2021 18:54:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a38173dd-ef0d-42a6-8a98-acfcf76853c2", - "x-ms-ratelimit-remaining-subscription-reads": "11830", - "x-ms-request-id": "a38173dd-ef0d-42a6-8a98-acfcf76853c2", - "x-ms-routing-request-id": "WESTUS2:20210507T202515Z:a38173dd-ef0d-42a6-8a98-acfcf76853c2" + "x-ms-correlation-request-id": "9d8d39c7-3a51-4d10-ac8a-c431c39ecbb1", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "9d8d39c7-3a51-4d10-ac8a-c431c39ecbb1", + "x-ms-routing-request-id": "WESTUS2:20210519T185406Z:9d8d39c7-3a51-4d10-ac8a-c431c39ecbb1" }, "ResponseBody": [] }, @@ -7548,7 +7573,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d96d6c80ca28cafffb68b6ecb3b5c709", "x-ms-return-client-request-id": "true" }, @@ -7557,17 +7582,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:16 GMT", + "Date": "Wed, 19 May 2021 18:54:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56295144-7b39-4e35-84de-2f2e0b373825", - "x-ms-ratelimit-remaining-subscription-reads": "11829", - "x-ms-request-id": "56295144-7b39-4e35-84de-2f2e0b373825", - "x-ms-routing-request-id": "WESTUS2:20210507T202516Z:56295144-7b39-4e35-84de-2f2e0b373825" + "x-ms-correlation-request-id": "b9205026-29fb-4b62-909e-4e7dc54ed7c4", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "b9205026-29fb-4b62-909e-4e7dc54ed7c4", + "x-ms-routing-request-id": "WESTUS2:20210519T185407Z:b9205026-29fb-4b62-909e-4e7dc54ed7c4" }, "ResponseBody": [] }, @@ -7576,7 +7601,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "358e0d5742f1329997bf8adfa89a0fb0", "x-ms-return-client-request-id": "true" }, @@ -7585,17 +7610,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:17 GMT", + "Date": "Wed, 19 May 2021 18:54:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cdd2a77f-bfa7-47a9-a9cd-794c492b813d", - "x-ms-ratelimit-remaining-subscription-reads": "11828", - "x-ms-request-id": "cdd2a77f-bfa7-47a9-a9cd-794c492b813d", - "x-ms-routing-request-id": "WESTUS2:20210507T202517Z:cdd2a77f-bfa7-47a9-a9cd-794c492b813d" + "x-ms-correlation-request-id": "a1300d07-7560-4183-881e-72ba0da16c52", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "a1300d07-7560-4183-881e-72ba0da16c52", + "x-ms-routing-request-id": "WESTUS2:20210519T185408Z:a1300d07-7560-4183-881e-72ba0da16c52" }, "ResponseBody": [] }, @@ -7604,7 +7629,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "73fea0f7b04616fa0f0ffc258634a669", "x-ms-return-client-request-id": "true" }, @@ -7613,17 +7638,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:18 GMT", + "Date": "Wed, 19 May 2021 18:54:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84732dd2-49cb-4dbe-98a0-71303c23708c", - "x-ms-ratelimit-remaining-subscription-reads": "11827", - "x-ms-request-id": "84732dd2-49cb-4dbe-98a0-71303c23708c", - "x-ms-routing-request-id": "WESTUS2:20210507T202518Z:84732dd2-49cb-4dbe-98a0-71303c23708c" + "x-ms-correlation-request-id": "40911616-beec-4cac-82a0-5fe94f25b8cd", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "40911616-beec-4cac-82a0-5fe94f25b8cd", + "x-ms-routing-request-id": "WESTUS2:20210519T185409Z:40911616-beec-4cac-82a0-5fe94f25b8cd" }, "ResponseBody": [] }, @@ -7632,7 +7657,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "822b6642362d3dbbd33a42683f1f2160", "x-ms-return-client-request-id": "true" }, @@ -7641,17 +7666,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:19 GMT", + "Date": "Wed, 19 May 2021 18:54:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60bae8a2-0463-4739-8c58-22ba6f4364a8", - "x-ms-ratelimit-remaining-subscription-reads": "11826", - "x-ms-request-id": "60bae8a2-0463-4739-8c58-22ba6f4364a8", - "x-ms-routing-request-id": "WESTUS2:20210507T202519Z:60bae8a2-0463-4739-8c58-22ba6f4364a8" + "x-ms-correlation-request-id": "fc367d90-ad96-48ed-a985-26dcb11f2171", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "fc367d90-ad96-48ed-a985-26dcb11f2171", + "x-ms-routing-request-id": "WESTUS2:20210519T185410Z:fc367d90-ad96-48ed-a985-26dcb11f2171" }, "ResponseBody": [] }, @@ -7660,7 +7685,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "13f4055953b7a7c2127725e24574ac62", "x-ms-return-client-request-id": "true" }, @@ -7669,17 +7694,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:20 GMT", + "Date": "Wed, 19 May 2021 18:54:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cea9635-941b-4a6a-8409-507347c63a97", - "x-ms-ratelimit-remaining-subscription-reads": "11825", - "x-ms-request-id": "7cea9635-941b-4a6a-8409-507347c63a97", - "x-ms-routing-request-id": "WESTUS2:20210507T202520Z:7cea9635-941b-4a6a-8409-507347c63a97" + "x-ms-correlation-request-id": "b06c0c6c-a1e3-44af-bb35-4044a96d972e", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "b06c0c6c-a1e3-44af-bb35-4044a96d972e", + "x-ms-routing-request-id": "WESTUS2:20210519T185411Z:b06c0c6c-a1e3-44af-bb35-4044a96d972e" }, "ResponseBody": [] }, @@ -7688,7 +7713,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "429d21188c6fc183e4c0a00c6d92d7ef", "x-ms-return-client-request-id": "true" }, @@ -7697,17 +7722,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:21 GMT", + "Date": "Wed, 19 May 2021 18:54:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b43edc9-bd67-4e01-9eb0-d5c5ca98bd89", - "x-ms-ratelimit-remaining-subscription-reads": "11824", - "x-ms-request-id": "7b43edc9-bd67-4e01-9eb0-d5c5ca98bd89", - "x-ms-routing-request-id": "WESTUS2:20210507T202521Z:7b43edc9-bd67-4e01-9eb0-d5c5ca98bd89" + "x-ms-correlation-request-id": "dec11dff-4e37-4203-9cd9-453995efc908", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "dec11dff-4e37-4203-9cd9-453995efc908", + "x-ms-routing-request-id": "WESTUS2:20210519T185412Z:dec11dff-4e37-4203-9cd9-453995efc908" }, "ResponseBody": [] }, @@ -7716,7 +7741,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80cb9cee933feeb2a48470b510d9f85e", "x-ms-return-client-request-id": "true" }, @@ -7725,17 +7750,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:22 GMT", + "Date": "Wed, 19 May 2021 18:54:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "681f9bf7-2e32-4d3a-8bf7-ee597673a3e1", - "x-ms-ratelimit-remaining-subscription-reads": "11823", - "x-ms-request-id": "681f9bf7-2e32-4d3a-8bf7-ee597673a3e1", - "x-ms-routing-request-id": "WESTUS2:20210507T202522Z:681f9bf7-2e32-4d3a-8bf7-ee597673a3e1" + "x-ms-correlation-request-id": "ba89d70a-eb8c-4a3c-b4dd-52b5ab723474", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "ba89d70a-eb8c-4a3c-b4dd-52b5ab723474", + "x-ms-routing-request-id": "WESTUS2:20210519T185413Z:ba89d70a-eb8c-4a3c-b4dd-52b5ab723474" }, "ResponseBody": [] }, @@ -7744,7 +7769,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e4fdf8ddf82ccf182332ff6b3b53980", "x-ms-return-client-request-id": "true" }, @@ -7753,17 +7778,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:23 GMT", + "Date": "Wed, 19 May 2021 18:54:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b0b55ba-a4d4-4ebb-807f-ebc1f16d027b", - "x-ms-ratelimit-remaining-subscription-reads": "11822", - "x-ms-request-id": "4b0b55ba-a4d4-4ebb-807f-ebc1f16d027b", - "x-ms-routing-request-id": "WESTUS2:20210507T202523Z:4b0b55ba-a4d4-4ebb-807f-ebc1f16d027b" + "x-ms-correlation-request-id": "1800534e-5337-420d-9ea0-cf458f07a636", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "1800534e-5337-420d-9ea0-cf458f07a636", + "x-ms-routing-request-id": "WESTUS2:20210519T185414Z:1800534e-5337-420d-9ea0-cf458f07a636" }, "ResponseBody": [] }, @@ -7772,7 +7797,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a9f335a02ca885226faf9eeb1ccdb00a", "x-ms-return-client-request-id": "true" }, @@ -7781,17 +7806,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:24 GMT", + "Date": "Wed, 19 May 2021 18:54:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b243e361-da5c-4a59-b748-b7512ab78333", - "x-ms-ratelimit-remaining-subscription-reads": "11821", - "x-ms-request-id": "b243e361-da5c-4a59-b748-b7512ab78333", - "x-ms-routing-request-id": "WESTUS2:20210507T202524Z:b243e361-da5c-4a59-b748-b7512ab78333" + "x-ms-correlation-request-id": "0593b10b-ed53-43dd-ba6a-8bf8d598b763", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "0593b10b-ed53-43dd-ba6a-8bf8d598b763", + "x-ms-routing-request-id": "WESTUS2:20210519T185415Z:0593b10b-ed53-43dd-ba6a-8bf8d598b763" }, "ResponseBody": [] }, @@ -7800,7 +7825,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8e7f41c7b9420f6daafffd0c63bb3bee", "x-ms-return-client-request-id": "true" }, @@ -7809,17 +7834,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:25 GMT", + "Date": "Wed, 19 May 2021 18:54:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "061afc13-18ce-4efd-88d3-73df08192de1", - "x-ms-ratelimit-remaining-subscription-reads": "11820", - "x-ms-request-id": "061afc13-18ce-4efd-88d3-73df08192de1", - "x-ms-routing-request-id": "WESTUS2:20210507T202525Z:061afc13-18ce-4efd-88d3-73df08192de1" + "x-ms-correlation-request-id": "8b9c35a5-c67f-4aca-a140-87021aa54dfc", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "8b9c35a5-c67f-4aca-a140-87021aa54dfc", + "x-ms-routing-request-id": "WESTUS2:20210519T185416Z:8b9c35a5-c67f-4aca-a140-87021aa54dfc" }, "ResponseBody": [] }, @@ -7828,7 +7853,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "db15ef4a4ee560b6bdcaaed34006b0b4", "x-ms-return-client-request-id": "true" }, @@ -7837,17 +7862,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:26 GMT", + "Date": "Wed, 19 May 2021 18:54:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "924c6d1b-f694-4ed4-8e14-70e25732e0b2", - "x-ms-ratelimit-remaining-subscription-reads": "11819", - "x-ms-request-id": "924c6d1b-f694-4ed4-8e14-70e25732e0b2", - "x-ms-routing-request-id": "WESTUS2:20210507T202526Z:924c6d1b-f694-4ed4-8e14-70e25732e0b2" + "x-ms-correlation-request-id": "ad9e3337-279c-4228-ba9f-74e6dd95eb70", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "ad9e3337-279c-4228-ba9f-74e6dd95eb70", + "x-ms-routing-request-id": "WESTUS2:20210519T185417Z:ad9e3337-279c-4228-ba9f-74e6dd95eb70" }, "ResponseBody": [] }, @@ -7856,7 +7881,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "722f2483ab36e73ec7e4fea92e1621b3", "x-ms-return-client-request-id": "true" }, @@ -7865,17 +7890,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:27 GMT", + "Date": "Wed, 19 May 2021 18:54:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "063ff2a6-f50d-4d8c-98bb-8bd6900ee57e", - "x-ms-ratelimit-remaining-subscription-reads": "11818", - "x-ms-request-id": "063ff2a6-f50d-4d8c-98bb-8bd6900ee57e", - "x-ms-routing-request-id": "WESTUS2:20210507T202527Z:063ff2a6-f50d-4d8c-98bb-8bd6900ee57e" + "x-ms-correlation-request-id": "41710815-25fd-4043-b1c3-9fe39867a7f1", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "41710815-25fd-4043-b1c3-9fe39867a7f1", + "x-ms-routing-request-id": "WESTUS2:20210519T185418Z:41710815-25fd-4043-b1c3-9fe39867a7f1" }, "ResponseBody": [] }, @@ -7884,7 +7909,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2da0af73d5b879258b1ed1770a9acea4", "x-ms-return-client-request-id": "true" }, @@ -7893,17 +7918,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:28 GMT", + "Date": "Wed, 19 May 2021 18:54:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4ff361e-1739-4d3a-b61a-688aafaad203", - "x-ms-ratelimit-remaining-subscription-reads": "11817", - "x-ms-request-id": "f4ff361e-1739-4d3a-b61a-688aafaad203", - "x-ms-routing-request-id": "WESTUS2:20210507T202528Z:f4ff361e-1739-4d3a-b61a-688aafaad203" + "x-ms-correlation-request-id": "0a72d3fd-1f89-47bf-8d15-6b8d1a00225f", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "0a72d3fd-1f89-47bf-8d15-6b8d1a00225f", + "x-ms-routing-request-id": "WESTUS2:20210519T185419Z:0a72d3fd-1f89-47bf-8d15-6b8d1a00225f" }, "ResponseBody": [] }, @@ -7912,7 +7937,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3f89484ec88c9fb8b02d1300500c32a6", "x-ms-return-client-request-id": "true" }, @@ -7921,17 +7946,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:29 GMT", + "Date": "Wed, 19 May 2021 18:54:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a49c2ff9-7742-482f-886d-21ee14499867", - "x-ms-ratelimit-remaining-subscription-reads": "11816", - "x-ms-request-id": "a49c2ff9-7742-482f-886d-21ee14499867", - "x-ms-routing-request-id": "WESTUS2:20210507T202529Z:a49c2ff9-7742-482f-886d-21ee14499867" + "x-ms-correlation-request-id": "9c7c996e-28f2-4a53-a20b-8b581cb94fa9", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "9c7c996e-28f2-4a53-a20b-8b581cb94fa9", + "x-ms-routing-request-id": "WESTUS2:20210519T185420Z:9c7c996e-28f2-4a53-a20b-8b581cb94fa9" }, "ResponseBody": [] }, @@ -7940,7 +7965,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "915ffaa88265adfcfeb5e718dac6dd2d", "x-ms-return-client-request-id": "true" }, @@ -7949,17 +7974,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:30 GMT", + "Date": "Wed, 19 May 2021 18:54:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70cec5a2-3cbf-464a-9172-aef1512e1277", - "x-ms-ratelimit-remaining-subscription-reads": "11815", - "x-ms-request-id": "70cec5a2-3cbf-464a-9172-aef1512e1277", - "x-ms-routing-request-id": "WESTUS2:20210507T202530Z:70cec5a2-3cbf-464a-9172-aef1512e1277" + "x-ms-correlation-request-id": "953ceea7-0287-4a2f-be9d-8ff207048c38", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "953ceea7-0287-4a2f-be9d-8ff207048c38", + "x-ms-routing-request-id": "WESTUS2:20210519T185421Z:953ceea7-0287-4a2f-be9d-8ff207048c38" }, "ResponseBody": [] }, @@ -7968,7 +7993,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e55a5916e28dab27f7017c8ac224287e", "x-ms-return-client-request-id": "true" }, @@ -7977,17 +8002,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:31 GMT", + "Date": "Wed, 19 May 2021 18:54:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a654aa77-9292-443f-a2e0-b3a21e3c9926", - "x-ms-ratelimit-remaining-subscription-reads": "11814", - "x-ms-request-id": "a654aa77-9292-443f-a2e0-b3a21e3c9926", - "x-ms-routing-request-id": "WESTUS2:20210507T202531Z:a654aa77-9292-443f-a2e0-b3a21e3c9926" + "x-ms-correlation-request-id": "02607a08-62cb-43f4-87bb-95ebc664dc9f", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "02607a08-62cb-43f4-87bb-95ebc664dc9f", + "x-ms-routing-request-id": "WESTUS2:20210519T185422Z:02607a08-62cb-43f4-87bb-95ebc664dc9f" }, "ResponseBody": [] }, @@ -7996,7 +8021,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0fcf2aec3d3bcc3e4cdb40d6e1a0c4ea", "x-ms-return-client-request-id": "true" }, @@ -8005,17 +8030,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:32 GMT", + "Date": "Wed, 19 May 2021 18:54:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c861c3b-e503-42b3-b0cf-d58b5d9c4e4b", - "x-ms-ratelimit-remaining-subscription-reads": "11813", - "x-ms-request-id": "6c861c3b-e503-42b3-b0cf-d58b5d9c4e4b", - "x-ms-routing-request-id": "WESTUS2:20210507T202533Z:6c861c3b-e503-42b3-b0cf-d58b5d9c4e4b" + "x-ms-correlation-request-id": "12ed5e03-fd77-4adf-875f-68fa05382cd4", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "12ed5e03-fd77-4adf-875f-68fa05382cd4", + "x-ms-routing-request-id": "WESTUS2:20210519T185423Z:12ed5e03-fd77-4adf-875f-68fa05382cd4" }, "ResponseBody": [] }, @@ -8024,7 +8049,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f6eae6504cb1c519d3b499640671ebda", "x-ms-return-client-request-id": "true" }, @@ -8033,17 +8058,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:33 GMT", + "Date": "Wed, 19 May 2021 18:54:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2acfbdba-f325-4467-9123-8e585d970b10", - "x-ms-ratelimit-remaining-subscription-reads": "11812", - "x-ms-request-id": "2acfbdba-f325-4467-9123-8e585d970b10", - "x-ms-routing-request-id": "WESTUS2:20210507T202534Z:2acfbdba-f325-4467-9123-8e585d970b10" + "x-ms-correlation-request-id": "c34546df-58d9-40a0-8828-83e736c848fd", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "c34546df-58d9-40a0-8828-83e736c848fd", + "x-ms-routing-request-id": "WESTUS2:20210519T185424Z:c34546df-58d9-40a0-8828-83e736c848fd" }, "ResponseBody": [] }, @@ -8052,7 +8077,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af2b688dcdf7d9f11b8e99b1a151c957", "x-ms-return-client-request-id": "true" }, @@ -8061,17 +8086,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:34 GMT", + "Date": "Wed, 19 May 2021 18:54:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f0a2d40-3dbc-451b-ae26-f3e394d81143", - "x-ms-ratelimit-remaining-subscription-reads": "11811", - "x-ms-request-id": "9f0a2d40-3dbc-451b-ae26-f3e394d81143", - "x-ms-routing-request-id": "WESTUS2:20210507T202535Z:9f0a2d40-3dbc-451b-ae26-f3e394d81143" + "x-ms-correlation-request-id": "cfd2b075-eb52-4146-8e27-efa30fb324bd", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "cfd2b075-eb52-4146-8e27-efa30fb324bd", + "x-ms-routing-request-id": "WESTUS2:20210519T185425Z:cfd2b075-eb52-4146-8e27-efa30fb324bd" }, "ResponseBody": [] }, @@ -8080,7 +8105,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "db3a923c32399fcc11093c87a3dac5da", "x-ms-return-client-request-id": "true" }, @@ -8089,17 +8114,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:35 GMT", + "Date": "Wed, 19 May 2021 18:54:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "310b9b13-a700-4bed-9e65-35dbb6f51b8d", - "x-ms-ratelimit-remaining-subscription-reads": "11810", - "x-ms-request-id": "310b9b13-a700-4bed-9e65-35dbb6f51b8d", - "x-ms-routing-request-id": "WESTUS2:20210507T202536Z:310b9b13-a700-4bed-9e65-35dbb6f51b8d" + "x-ms-correlation-request-id": "2ec0eb2d-7ed1-4dc6-8c67-8aa0f16f76b4", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "2ec0eb2d-7ed1-4dc6-8c67-8aa0f16f76b4", + "x-ms-routing-request-id": "WESTUS2:20210519T185426Z:2ec0eb2d-7ed1-4dc6-8c67-8aa0f16f76b4" }, "ResponseBody": [] }, @@ -8108,7 +8133,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "794966ef157482f3f411db23b2672382", "x-ms-return-client-request-id": "true" }, @@ -8117,17 +8142,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:36 GMT", + "Date": "Wed, 19 May 2021 18:54:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9c4bf92-c7c6-4c11-b3ab-2bb25ea7a89a", - "x-ms-ratelimit-remaining-subscription-reads": "11809", - "x-ms-request-id": "b9c4bf92-c7c6-4c11-b3ab-2bb25ea7a89a", - "x-ms-routing-request-id": "WESTUS2:20210507T202537Z:b9c4bf92-c7c6-4c11-b3ab-2bb25ea7a89a" + "x-ms-correlation-request-id": "8d24d2c7-5f0b-4919-ad48-0ca16787682d", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "8d24d2c7-5f0b-4919-ad48-0ca16787682d", + "x-ms-routing-request-id": "WESTUS2:20210519T185428Z:8d24d2c7-5f0b-4919-ad48-0ca16787682d" }, "ResponseBody": [] }, @@ -8136,7 +8161,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "742741eb0f375aa09b8c9eed916a3540", "x-ms-return-client-request-id": "true" }, @@ -8145,17 +8170,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:37 GMT", + "Date": "Wed, 19 May 2021 18:54:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0f649d8-9c11-4265-b88d-bb8ae56a8f87", - "x-ms-ratelimit-remaining-subscription-reads": "11808", - "x-ms-request-id": "d0f649d8-9c11-4265-b88d-bb8ae56a8f87", - "x-ms-routing-request-id": "WESTUS2:20210507T202538Z:d0f649d8-9c11-4265-b88d-bb8ae56a8f87" + "x-ms-correlation-request-id": "b6d97c71-c21c-4a7f-8fdb-cda13ed68735", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "b6d97c71-c21c-4a7f-8fdb-cda13ed68735", + "x-ms-routing-request-id": "WESTUS2:20210519T185429Z:b6d97c71-c21c-4a7f-8fdb-cda13ed68735" }, "ResponseBody": [] }, @@ -8164,7 +8189,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3bc2bfc84f0727e39fb7e72856a9eca9", "x-ms-return-client-request-id": "true" }, @@ -8173,17 +8198,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:39 GMT", + "Date": "Wed, 19 May 2021 18:54:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e7aefd4-4bb0-466c-8a30-80229b700613", - "x-ms-ratelimit-remaining-subscription-reads": "11807", - "x-ms-request-id": "9e7aefd4-4bb0-466c-8a30-80229b700613", - "x-ms-routing-request-id": "WESTUS2:20210507T202539Z:9e7aefd4-4bb0-466c-8a30-80229b700613" + "x-ms-correlation-request-id": "2b86dcdd-a7c9-43e0-93cf-7d3562ba1e54", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "2b86dcdd-a7c9-43e0-93cf-7d3562ba1e54", + "x-ms-routing-request-id": "WESTUS2:20210519T185430Z:2b86dcdd-a7c9-43e0-93cf-7d3562ba1e54" }, "ResponseBody": [] }, @@ -8192,7 +8217,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "629cb9e551b3dfa2c5eedde77605f189", "x-ms-return-client-request-id": "true" }, @@ -8201,17 +8226,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:40 GMT", + "Date": "Wed, 19 May 2021 18:54:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b94a0dd7-0ef5-451b-9886-340562afb9c3", - "x-ms-ratelimit-remaining-subscription-reads": "11806", - "x-ms-request-id": "b94a0dd7-0ef5-451b-9886-340562afb9c3", - "x-ms-routing-request-id": "WESTUS2:20210507T202540Z:b94a0dd7-0ef5-451b-9886-340562afb9c3" + "x-ms-correlation-request-id": "f4d474dd-4ea3-4251-9ac0-a2db7c550099", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "f4d474dd-4ea3-4251-9ac0-a2db7c550099", + "x-ms-routing-request-id": "WESTUS2:20210519T185431Z:f4d474dd-4ea3-4251-9ac0-a2db7c550099" }, "ResponseBody": [] }, @@ -8220,7 +8245,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f35a9adbe8a59b7a5e00d480277704f2", "x-ms-return-client-request-id": "true" }, @@ -8229,17 +8254,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:41 GMT", + "Date": "Wed, 19 May 2021 18:54:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "54935325-e93f-4c13-9e3e-43bcbbf80abb", - "x-ms-ratelimit-remaining-subscription-reads": "11805", - "x-ms-request-id": "54935325-e93f-4c13-9e3e-43bcbbf80abb", - "x-ms-routing-request-id": "WESTUS2:20210507T202541Z:54935325-e93f-4c13-9e3e-43bcbbf80abb" + "x-ms-correlation-request-id": "98050427-12cd-43b8-bbb7-e7fb990b64fe", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "98050427-12cd-43b8-bbb7-e7fb990b64fe", + "x-ms-routing-request-id": "WESTUS2:20210519T185432Z:98050427-12cd-43b8-bbb7-e7fb990b64fe" }, "ResponseBody": [] }, @@ -8248,7 +8273,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d707f59fd3ce778d1ce2761972fbb199", "x-ms-return-client-request-id": "true" }, @@ -8257,17 +8282,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:42 GMT", + "Date": "Wed, 19 May 2021 18:54:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6415ff6a-2a9c-439c-84bb-f1298fdcd547", - "x-ms-ratelimit-remaining-subscription-reads": "11804", - "x-ms-request-id": "6415ff6a-2a9c-439c-84bb-f1298fdcd547", - "x-ms-routing-request-id": "WESTUS2:20210507T202542Z:6415ff6a-2a9c-439c-84bb-f1298fdcd547" + "x-ms-correlation-request-id": "e30c3486-dc90-415b-90d5-869a2950af30", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "e30c3486-dc90-415b-90d5-869a2950af30", + "x-ms-routing-request-id": "WESTUS2:20210519T185433Z:e30c3486-dc90-415b-90d5-869a2950af30" }, "ResponseBody": [] }, @@ -8276,7 +8301,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bb4c5ec6f94ffd043f0104b27c21b74d", "x-ms-return-client-request-id": "true" }, @@ -8285,17 +8310,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:43 GMT", + "Date": "Wed, 19 May 2021 18:54:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce4070d2-c043-419f-8f1d-d22d24580d94", - "x-ms-ratelimit-remaining-subscription-reads": "11803", - "x-ms-request-id": "ce4070d2-c043-419f-8f1d-d22d24580d94", - "x-ms-routing-request-id": "WESTUS2:20210507T202543Z:ce4070d2-c043-419f-8f1d-d22d24580d94" + "x-ms-correlation-request-id": "d1f0f091-04d4-4483-9fd3-38109f0436b4", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "d1f0f091-04d4-4483-9fd3-38109f0436b4", + "x-ms-routing-request-id": "WESTUS2:20210519T185434Z:d1f0f091-04d4-4483-9fd3-38109f0436b4" }, "ResponseBody": [] }, @@ -8304,7 +8329,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8148ebea19fe08bb0de3d7c271602862", "x-ms-return-client-request-id": "true" }, @@ -8313,17 +8338,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:44 GMT", + "Date": "Wed, 19 May 2021 18:54:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50e4f86b-c034-4457-ab17-0488ab063d7b", - "x-ms-ratelimit-remaining-subscription-reads": "11802", - "x-ms-request-id": "50e4f86b-c034-4457-ab17-0488ab063d7b", - "x-ms-routing-request-id": "WESTUS2:20210507T202544Z:50e4f86b-c034-4457-ab17-0488ab063d7b" + "x-ms-correlation-request-id": "c1007ec4-82ff-4b32-9429-66c1dd910289", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "c1007ec4-82ff-4b32-9429-66c1dd910289", + "x-ms-routing-request-id": "WESTUS2:20210519T185435Z:c1007ec4-82ff-4b32-9429-66c1dd910289" }, "ResponseBody": [] }, @@ -8332,7 +8357,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9ba3b4e482ba6a3f00998cdcfdafafa", "x-ms-return-client-request-id": "true" }, @@ -8341,17 +8366,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:45 GMT", + "Date": "Wed, 19 May 2021 18:54:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10b32572-b1c6-47a5-b286-283273c0c313", - "x-ms-ratelimit-remaining-subscription-reads": "11801", - "x-ms-request-id": "10b32572-b1c6-47a5-b286-283273c0c313", - "x-ms-routing-request-id": "WESTUS2:20210507T202545Z:10b32572-b1c6-47a5-b286-283273c0c313" + "x-ms-correlation-request-id": "257f0c78-791e-4fc1-b054-8d2c46988925", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "257f0c78-791e-4fc1-b054-8d2c46988925", + "x-ms-routing-request-id": "WESTUS2:20210519T185436Z:257f0c78-791e-4fc1-b054-8d2c46988925" }, "ResponseBody": [] }, @@ -8360,7 +8385,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "872f282a2fb2ac9ba343ae6b22418bdf", "x-ms-return-client-request-id": "true" }, @@ -8369,17 +8394,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:46 GMT", + "Date": "Wed, 19 May 2021 18:54:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d50776dc-8d21-4a08-a726-7331a12545ff", - "x-ms-ratelimit-remaining-subscription-reads": "11800", - "x-ms-request-id": "d50776dc-8d21-4a08-a726-7331a12545ff", - "x-ms-routing-request-id": "WESTUS2:20210507T202546Z:d50776dc-8d21-4a08-a726-7331a12545ff" + "x-ms-correlation-request-id": "6a4952fe-d676-464d-a9c3-f0f0aad805e3", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "6a4952fe-d676-464d-a9c3-f0f0aad805e3", + "x-ms-routing-request-id": "WESTUS2:20210519T185437Z:6a4952fe-d676-464d-a9c3-f0f0aad805e3" }, "ResponseBody": [] }, @@ -8388,7 +8413,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4163a1d8ee67a12247a290f480ed3933", "x-ms-return-client-request-id": "true" }, @@ -8397,17 +8422,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:47 GMT", + "Date": "Wed, 19 May 2021 18:54:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64f2195e-88d7-4195-8545-10acaf66f4a9", - "x-ms-ratelimit-remaining-subscription-reads": "11799", - "x-ms-request-id": "64f2195e-88d7-4195-8545-10acaf66f4a9", - "x-ms-routing-request-id": "WESTUS2:20210507T202547Z:64f2195e-88d7-4195-8545-10acaf66f4a9" + "x-ms-correlation-request-id": "14d49709-ecc7-44bd-b78f-b8b66f73b5f9", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "14d49709-ecc7-44bd-b78f-b8b66f73b5f9", + "x-ms-routing-request-id": "WESTUS2:20210519T185438Z:14d49709-ecc7-44bd-b78f-b8b66f73b5f9" }, "ResponseBody": [] }, @@ -8416,7 +8441,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4897dce9a1301fafa00d26e7993784ae", "x-ms-return-client-request-id": "true" }, @@ -8425,17 +8450,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:48 GMT", + "Date": "Wed, 19 May 2021 18:54:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "323a3bff-85f2-4dc3-bcc3-4bf8806c5a2f", - "x-ms-ratelimit-remaining-subscription-reads": "11798", - "x-ms-request-id": "323a3bff-85f2-4dc3-bcc3-4bf8806c5a2f", - "x-ms-routing-request-id": "WESTUS2:20210507T202548Z:323a3bff-85f2-4dc3-bcc3-4bf8806c5a2f" + "x-ms-correlation-request-id": "2415b51a-b0b6-4949-bf55-dbec6a9e27ce", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "2415b51a-b0b6-4949-bf55-dbec6a9e27ce", + "x-ms-routing-request-id": "WESTUS2:20210519T185439Z:2415b51a-b0b6-4949-bf55-dbec6a9e27ce" }, "ResponseBody": [] }, @@ -8444,7 +8469,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2df5b97eb9763c93068d3f109fa62bb5", "x-ms-return-client-request-id": "true" }, @@ -8453,17 +8478,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:49 GMT", + "Date": "Wed, 19 May 2021 18:54:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e9fa410-16b1-4d2e-b75f-23677b76e17d", - "x-ms-ratelimit-remaining-subscription-reads": "11797", - "x-ms-request-id": "7e9fa410-16b1-4d2e-b75f-23677b76e17d", - "x-ms-routing-request-id": "WESTUS2:20210507T202549Z:7e9fa410-16b1-4d2e-b75f-23677b76e17d" + "x-ms-correlation-request-id": "264d1f5d-3889-4791-a9d6-11ec47fe209b", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "264d1f5d-3889-4791-a9d6-11ec47fe209b", + "x-ms-routing-request-id": "WESTUS2:20210519T185440Z:264d1f5d-3889-4791-a9d6-11ec47fe209b" }, "ResponseBody": [] }, @@ -8472,7 +8497,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "45827b0a42a936aef144a059c73a0810", "x-ms-return-client-request-id": "true" }, @@ -8481,17 +8506,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:50 GMT", + "Date": "Wed, 19 May 2021 18:54:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36b3e83b-1572-4525-8210-51c4acf0d587", - "x-ms-ratelimit-remaining-subscription-reads": "11796", - "x-ms-request-id": "36b3e83b-1572-4525-8210-51c4acf0d587", - "x-ms-routing-request-id": "WESTUS2:20210507T202551Z:36b3e83b-1572-4525-8210-51c4acf0d587" + "x-ms-correlation-request-id": "d2c015db-38da-4e8e-9f26-63a471fbf26d", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "d2c015db-38da-4e8e-9f26-63a471fbf26d", + "x-ms-routing-request-id": "WESTUS2:20210519T185441Z:d2c015db-38da-4e8e-9f26-63a471fbf26d" }, "ResponseBody": [] }, @@ -8500,7 +8525,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c776e11e0cf82fbc485b42a3629e80f9", "x-ms-return-client-request-id": "true" }, @@ -8509,17 +8534,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:51 GMT", + "Date": "Wed, 19 May 2021 18:54:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b49343f9-7a11-48f8-a5ed-b0d91b45b97e", - "x-ms-ratelimit-remaining-subscription-reads": "11795", - "x-ms-request-id": "b49343f9-7a11-48f8-a5ed-b0d91b45b97e", - "x-ms-routing-request-id": "WESTUS2:20210507T202552Z:b49343f9-7a11-48f8-a5ed-b0d91b45b97e" + "x-ms-correlation-request-id": "bfdc7b0a-7417-44a1-9008-40f21ee26814", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "bfdc7b0a-7417-44a1-9008-40f21ee26814", + "x-ms-routing-request-id": "WESTUS2:20210519T185442Z:bfdc7b0a-7417-44a1-9008-40f21ee26814" }, "ResponseBody": [] }, @@ -8528,7 +8553,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1edd70e13eb43b050abe3b31183a74cb", "x-ms-return-client-request-id": "true" }, @@ -8537,17 +8562,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:52 GMT", + "Date": "Wed, 19 May 2021 18:54:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bfeb9ba0-ae62-4bb0-b7e9-c2418ba6cceb", - "x-ms-ratelimit-remaining-subscription-reads": "11794", - "x-ms-request-id": "bfeb9ba0-ae62-4bb0-b7e9-c2418ba6cceb", - "x-ms-routing-request-id": "WESTUS2:20210507T202553Z:bfeb9ba0-ae62-4bb0-b7e9-c2418ba6cceb" + "x-ms-correlation-request-id": "8b8538c1-c9e1-41a8-8413-4709723af5ca", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "8b8538c1-c9e1-41a8-8413-4709723af5ca", + "x-ms-routing-request-id": "WESTUS2:20210519T185443Z:8b8538c1-c9e1-41a8-8413-4709723af5ca" }, "ResponseBody": [] }, @@ -8556,7 +8581,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bdf22e856430fdbdbe52fd4e000bd452", "x-ms-return-client-request-id": "true" }, @@ -8565,17 +8590,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:53 GMT", + "Date": "Wed, 19 May 2021 18:54:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68b1b7fe-90fd-48c7-a944-6778ef229f3a", - "x-ms-ratelimit-remaining-subscription-reads": "11793", - "x-ms-request-id": "68b1b7fe-90fd-48c7-a944-6778ef229f3a", - "x-ms-routing-request-id": "WESTUS2:20210507T202554Z:68b1b7fe-90fd-48c7-a944-6778ef229f3a" + "x-ms-correlation-request-id": "0f12d932-738f-4962-b4c9-a8b9fef94f39", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "0f12d932-738f-4962-b4c9-a8b9fef94f39", + "x-ms-routing-request-id": "WESTUS2:20210519T185444Z:0f12d932-738f-4962-b4c9-a8b9fef94f39" }, "ResponseBody": [] }, @@ -8584,7 +8609,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5777a6c4e95ddf5bdc3bbc3ad08b170e", "x-ms-return-client-request-id": "true" }, @@ -8593,17 +8618,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:54 GMT", + "Date": "Wed, 19 May 2021 18:54:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e04cac7-f8e6-4aaf-ab38-3c257a3db629", - "x-ms-ratelimit-remaining-subscription-reads": "11792", - "x-ms-request-id": "4e04cac7-f8e6-4aaf-ab38-3c257a3db629", - "x-ms-routing-request-id": "WESTUS2:20210507T202555Z:4e04cac7-f8e6-4aaf-ab38-3c257a3db629" + "x-ms-correlation-request-id": "8cf514ed-35e8-4874-bc13-39c51ccbbfc3", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "8cf514ed-35e8-4874-bc13-39c51ccbbfc3", + "x-ms-routing-request-id": "WESTUS2:20210519T185445Z:8cf514ed-35e8-4874-bc13-39c51ccbbfc3" }, "ResponseBody": [] }, @@ -8612,7 +8637,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "331d76e6c2ac7dc9b3df606140b63aff", "x-ms-return-client-request-id": "true" }, @@ -8621,17 +8646,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:55 GMT", + "Date": "Wed, 19 May 2021 18:54:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48fde889-29a3-4d4d-85cc-33ad26da3c2a", - "x-ms-ratelimit-remaining-subscription-reads": "11791", - "x-ms-request-id": "48fde889-29a3-4d4d-85cc-33ad26da3c2a", - "x-ms-routing-request-id": "WESTUS2:20210507T202556Z:48fde889-29a3-4d4d-85cc-33ad26da3c2a" + "x-ms-correlation-request-id": "3c46cf6e-d227-465f-b6ee-f080174290f7", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "3c46cf6e-d227-465f-b6ee-f080174290f7", + "x-ms-routing-request-id": "WESTUS2:20210519T185446Z:3c46cf6e-d227-465f-b6ee-f080174290f7" }, "ResponseBody": [] }, @@ -8640,7 +8665,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "716de8e91dc29c6ed213e0f5a7832d33", "x-ms-return-client-request-id": "true" }, @@ -8649,17 +8674,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:56 GMT", + "Date": "Wed, 19 May 2021 18:54:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c4c6b63-6265-423e-9a9a-305070cf6169", - "x-ms-ratelimit-remaining-subscription-reads": "11790", - "x-ms-request-id": "2c4c6b63-6265-423e-9a9a-305070cf6169", - "x-ms-routing-request-id": "WESTUS2:20210507T202557Z:2c4c6b63-6265-423e-9a9a-305070cf6169" + "x-ms-correlation-request-id": "c61da5f8-fec7-4427-9a13-999b4f95e751", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "c61da5f8-fec7-4427-9a13-999b4f95e751", + "x-ms-routing-request-id": "WESTUS2:20210519T185447Z:c61da5f8-fec7-4427-9a13-999b4f95e751" }, "ResponseBody": [] }, @@ -8668,7 +8693,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8a68ef3ba0ed01a6ddfaa37d89fa9e26", "x-ms-return-client-request-id": "true" }, @@ -8677,17 +8702,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:58 GMT", + "Date": "Wed, 19 May 2021 18:54:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "126636c7-03df-466d-99cd-16322dca3a3d", - "x-ms-ratelimit-remaining-subscription-reads": "11789", - "x-ms-request-id": "126636c7-03df-466d-99cd-16322dca3a3d", - "x-ms-routing-request-id": "WESTUS2:20210507T202558Z:126636c7-03df-466d-99cd-16322dca3a3d" + "x-ms-correlation-request-id": "bd2cf7c0-4208-4b04-86e2-ad536807f34f", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "bd2cf7c0-4208-4b04-86e2-ad536807f34f", + "x-ms-routing-request-id": "WESTUS2:20210519T185448Z:bd2cf7c0-4208-4b04-86e2-ad536807f34f" }, "ResponseBody": [] }, @@ -8696,7 +8721,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e750bd00a51dc84b07816099e1d4d530", "x-ms-return-client-request-id": "true" }, @@ -8705,17 +8730,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:25:59 GMT", + "Date": "Wed, 19 May 2021 18:54:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27d564c6-3959-4c2d-9c48-8937f596a1aa", - "x-ms-ratelimit-remaining-subscription-reads": "11788", - "x-ms-request-id": "27d564c6-3959-4c2d-9c48-8937f596a1aa", - "x-ms-routing-request-id": "WESTUS2:20210507T202559Z:27d564c6-3959-4c2d-9c48-8937f596a1aa" + "x-ms-correlation-request-id": "223b26f8-508e-4410-9232-ea9d05101198", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "223b26f8-508e-4410-9232-ea9d05101198", + "x-ms-routing-request-id": "WESTUS2:20210519T185449Z:223b26f8-508e-4410-9232-ea9d05101198" }, "ResponseBody": [] }, @@ -8724,7 +8749,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "51252cb2b04d4811426b94c87af013d8", "x-ms-return-client-request-id": "true" }, @@ -8733,17 +8758,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:00 GMT", + "Date": "Wed, 19 May 2021 18:54:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6fda38e7-89a1-4738-80d5-ff13c8a72a60", - "x-ms-ratelimit-remaining-subscription-reads": "11787", - "x-ms-request-id": "6fda38e7-89a1-4738-80d5-ff13c8a72a60", - "x-ms-routing-request-id": "WESTUS2:20210507T202600Z:6fda38e7-89a1-4738-80d5-ff13c8a72a60" + "x-ms-correlation-request-id": "c53ebea4-8ed4-463b-a27d-fbdff3824bc8", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "c53ebea4-8ed4-463b-a27d-fbdff3824bc8", + "x-ms-routing-request-id": "WESTUS2:20210519T185450Z:c53ebea4-8ed4-463b-a27d-fbdff3824bc8" }, "ResponseBody": [] }, @@ -8752,7 +8777,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eaf4ba7445329615a3a0826c400d1f08", "x-ms-return-client-request-id": "true" }, @@ -8761,17 +8786,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:01 GMT", + "Date": "Wed, 19 May 2021 18:54:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af15e365-588d-40b1-b80f-ecb7bdb8d0c0", - "x-ms-ratelimit-remaining-subscription-reads": "11786", - "x-ms-request-id": "af15e365-588d-40b1-b80f-ecb7bdb8d0c0", - "x-ms-routing-request-id": "WESTUS2:20210507T202601Z:af15e365-588d-40b1-b80f-ecb7bdb8d0c0" + "x-ms-correlation-request-id": "dc81ccd5-dada-48b2-9485-a0a7e3eee829", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "dc81ccd5-dada-48b2-9485-a0a7e3eee829", + "x-ms-routing-request-id": "WESTUS2:20210519T185451Z:dc81ccd5-dada-48b2-9485-a0a7e3eee829" }, "ResponseBody": [] }, @@ -8780,7 +8805,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ccb73244dd450d8ab07a5b210834d16", "x-ms-return-client-request-id": "true" }, @@ -8789,17 +8814,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:02 GMT", + "Date": "Wed, 19 May 2021 18:54:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bac7c995-e78e-4a93-9b66-9cdc65c7e304", - "x-ms-ratelimit-remaining-subscription-reads": "11785", - "x-ms-request-id": "bac7c995-e78e-4a93-9b66-9cdc65c7e304", - "x-ms-routing-request-id": "WESTUS2:20210507T202602Z:bac7c995-e78e-4a93-9b66-9cdc65c7e304" + "x-ms-correlation-request-id": "197ec2a5-5c74-4685-86ab-b85388716e9f", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "197ec2a5-5c74-4685-86ab-b85388716e9f", + "x-ms-routing-request-id": "WESTUS2:20210519T185452Z:197ec2a5-5c74-4685-86ab-b85388716e9f" }, "ResponseBody": [] }, @@ -8808,7 +8833,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2725886eebdf6dfd178faead2da50834", "x-ms-return-client-request-id": "true" }, @@ -8817,17 +8842,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:03 GMT", + "Date": "Wed, 19 May 2021 18:54:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c166d264-4657-4b36-824d-413551946e70", - "x-ms-ratelimit-remaining-subscription-reads": "11784", - "x-ms-request-id": "c166d264-4657-4b36-824d-413551946e70", - "x-ms-routing-request-id": "WESTUS2:20210507T202603Z:c166d264-4657-4b36-824d-413551946e70" + "x-ms-correlation-request-id": "99f47ba9-fde8-4eb5-8703-25ae26f98953", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "99f47ba9-fde8-4eb5-8703-25ae26f98953", + "x-ms-routing-request-id": "WESTUS2:20210519T185453Z:99f47ba9-fde8-4eb5-8703-25ae26f98953" }, "ResponseBody": [] }, @@ -8836,7 +8861,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "06a38b4bb6252704e1a43f2b9f628620", "x-ms-return-client-request-id": "true" }, @@ -8845,17 +8870,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:04 GMT", + "Date": "Wed, 19 May 2021 18:54:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa1c91d2-c5e7-4f44-a96d-a78647fb579c", - "x-ms-ratelimit-remaining-subscription-reads": "11783", - "x-ms-request-id": "fa1c91d2-c5e7-4f44-a96d-a78647fb579c", - "x-ms-routing-request-id": "WESTUS2:20210507T202604Z:fa1c91d2-c5e7-4f44-a96d-a78647fb579c" + "x-ms-correlation-request-id": "8afedecd-1f26-4bd6-832e-140d4bf6bd4d", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "8afedecd-1f26-4bd6-832e-140d4bf6bd4d", + "x-ms-routing-request-id": "WESTUS2:20210519T185454Z:8afedecd-1f26-4bd6-832e-140d4bf6bd4d" }, "ResponseBody": [] }, @@ -8864,7 +8889,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b8fe6c52f8e83929765e44459e2b2305", "x-ms-return-client-request-id": "true" }, @@ -8873,17 +8898,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:05 GMT", + "Date": "Wed, 19 May 2021 18:54:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff2c621b-89af-4b70-88b6-308aea28ef9b", - "x-ms-ratelimit-remaining-subscription-reads": "11782", - "x-ms-request-id": "ff2c621b-89af-4b70-88b6-308aea28ef9b", - "x-ms-routing-request-id": "WESTUS2:20210507T202605Z:ff2c621b-89af-4b70-88b6-308aea28ef9b" + "x-ms-correlation-request-id": "fa5aadfe-9c60-4f43-9a72-f605dda8087c", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "fa5aadfe-9c60-4f43-9a72-f605dda8087c", + "x-ms-routing-request-id": "WESTUS2:20210519T185455Z:fa5aadfe-9c60-4f43-9a72-f605dda8087c" }, "ResponseBody": [] }, @@ -8892,7 +8917,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "846770fe46dfb7f183fd463aabd1cdb4", "x-ms-return-client-request-id": "true" }, @@ -8901,17 +8926,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:06 GMT", + "Date": "Wed, 19 May 2021 18:54:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfcdf484-fdeb-4ac6-9974-21828cccba99", - "x-ms-ratelimit-remaining-subscription-reads": "11781", - "x-ms-request-id": "dfcdf484-fdeb-4ac6-9974-21828cccba99", - "x-ms-routing-request-id": "WESTUS2:20210507T202606Z:dfcdf484-fdeb-4ac6-9974-21828cccba99" + "x-ms-correlation-request-id": "4c64ff55-3fa8-437d-8a81-2c01283e4b84", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "4c64ff55-3fa8-437d-8a81-2c01283e4b84", + "x-ms-routing-request-id": "WESTUS2:20210519T185456Z:4c64ff55-3fa8-437d-8a81-2c01283e4b84" }, "ResponseBody": [] }, @@ -8920,7 +8945,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c05a8e0850a7524c626a90c771bf88b5", "x-ms-return-client-request-id": "true" }, @@ -8929,17 +8954,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:07 GMT", + "Date": "Wed, 19 May 2021 18:54:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1a53e48-4988-479c-a7e5-933c85466cea", - "x-ms-ratelimit-remaining-subscription-reads": "11780", - "x-ms-request-id": "c1a53e48-4988-479c-a7e5-933c85466cea", - "x-ms-routing-request-id": "WESTUS2:20210507T202607Z:c1a53e48-4988-479c-a7e5-933c85466cea" + "x-ms-correlation-request-id": "d604fa42-5f85-491e-886c-503d9935d313", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "d604fa42-5f85-491e-886c-503d9935d313", + "x-ms-routing-request-id": "WESTUS2:20210519T185457Z:d604fa42-5f85-491e-886c-503d9935d313" }, "ResponseBody": [] }, @@ -8948,7 +8973,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2e2c3a8102fb0b407a4634eab2ee8da4", "x-ms-return-client-request-id": "true" }, @@ -8957,17 +8982,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:08 GMT", + "Date": "Wed, 19 May 2021 18:54:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2a987a3-6dea-4211-a2be-1ef080a45529", - "x-ms-ratelimit-remaining-subscription-reads": "11779", - "x-ms-request-id": "b2a987a3-6dea-4211-a2be-1ef080a45529", - "x-ms-routing-request-id": "WESTUS2:20210507T202609Z:b2a987a3-6dea-4211-a2be-1ef080a45529" + "x-ms-correlation-request-id": "a2cb02ae-5956-40e4-924d-f0758fbe7e3f", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "a2cb02ae-5956-40e4-924d-f0758fbe7e3f", + "x-ms-routing-request-id": "WESTUS2:20210519T185458Z:a2cb02ae-5956-40e4-924d-f0758fbe7e3f" }, "ResponseBody": [] }, @@ -8976,7 +9001,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "103c909062d1ae5d24142274b62a45c4", "x-ms-return-client-request-id": "true" }, @@ -8985,17 +9010,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:09 GMT", + "Date": "Wed, 19 May 2021 18:54:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b413673f-51c7-4d07-9677-09bb6fa889c9", - "x-ms-ratelimit-remaining-subscription-reads": "11778", - "x-ms-request-id": "b413673f-51c7-4d07-9677-09bb6fa889c9", - "x-ms-routing-request-id": "WESTUS2:20210507T202610Z:b413673f-51c7-4d07-9677-09bb6fa889c9" + "x-ms-correlation-request-id": "7bd92ae4-fd5f-481a-a06f-5f91d5222e72", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "7bd92ae4-fd5f-481a-a06f-5f91d5222e72", + "x-ms-routing-request-id": "WESTUS2:20210519T185500Z:7bd92ae4-fd5f-481a-a06f-5f91d5222e72" }, "ResponseBody": [] }, @@ -9004,7 +9029,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71b990759fa406b94d4e46611b62a073", "x-ms-return-client-request-id": "true" }, @@ -9013,17 +9038,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:10 GMT", + "Date": "Wed, 19 May 2021 18:55:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74fa532e-0c2e-4906-84d9-7aed61005e2c", - "x-ms-ratelimit-remaining-subscription-reads": "11777", - "x-ms-request-id": "74fa532e-0c2e-4906-84d9-7aed61005e2c", - "x-ms-routing-request-id": "WESTUS2:20210507T202611Z:74fa532e-0c2e-4906-84d9-7aed61005e2c" + "x-ms-correlation-request-id": "66a8dec1-f407-4cb6-b7e9-ed4721472aaa", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "66a8dec1-f407-4cb6-b7e9-ed4721472aaa", + "x-ms-routing-request-id": "WESTUS2:20210519T185501Z:66a8dec1-f407-4cb6-b7e9-ed4721472aaa" }, "ResponseBody": [] }, @@ -9032,7 +9057,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e136ecdd77821ee4dc7e0ae6e0cb5550", "x-ms-return-client-request-id": "true" }, @@ -9041,17 +9066,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:11 GMT", + "Date": "Wed, 19 May 2021 18:55:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e70e230-b1f3-43b6-81f9-d607199abafd", - "x-ms-ratelimit-remaining-subscription-reads": "11776", - "x-ms-request-id": "4e70e230-b1f3-43b6-81f9-d607199abafd", - "x-ms-routing-request-id": "WESTUS2:20210507T202612Z:4e70e230-b1f3-43b6-81f9-d607199abafd" + "x-ms-correlation-request-id": "817e46ea-44ef-48d5-80f5-3bff7d4fef9f", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "817e46ea-44ef-48d5-80f5-3bff7d4fef9f", + "x-ms-routing-request-id": "WESTUS2:20210519T185502Z:817e46ea-44ef-48d5-80f5-3bff7d4fef9f" }, "ResponseBody": [] }, @@ -9060,7 +9085,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "217470001b35f1ffd636c3821bfc92c1", "x-ms-return-client-request-id": "true" }, @@ -9069,17 +9094,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:12 GMT", + "Date": "Wed, 19 May 2021 18:55:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d64b023d-ec4f-4755-9d57-9da4ea55926c", - "x-ms-ratelimit-remaining-subscription-reads": "11775", - "x-ms-request-id": "d64b023d-ec4f-4755-9d57-9da4ea55926c", - "x-ms-routing-request-id": "WESTUS2:20210507T202613Z:d64b023d-ec4f-4755-9d57-9da4ea55926c" + "x-ms-correlation-request-id": "6207fad8-d823-4a87-90d7-628b6212261b", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "6207fad8-d823-4a87-90d7-628b6212261b", + "x-ms-routing-request-id": "WESTUS2:20210519T185503Z:6207fad8-d823-4a87-90d7-628b6212261b" }, "ResponseBody": [] }, @@ -9088,7 +9113,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c997ae7464f3fe41ac9a952694d32682", "x-ms-return-client-request-id": "true" }, @@ -9097,17 +9122,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:13 GMT", + "Date": "Wed, 19 May 2021 18:55:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e36d2c1-3db1-45ed-afe1-e8ac07d40224", - "x-ms-ratelimit-remaining-subscription-reads": "11774", - "x-ms-request-id": "2e36d2c1-3db1-45ed-afe1-e8ac07d40224", - "x-ms-routing-request-id": "WESTUS2:20210507T202614Z:2e36d2c1-3db1-45ed-afe1-e8ac07d40224" + "x-ms-correlation-request-id": "23a5e917-ee73-488a-9b9a-3922b660a799", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "23a5e917-ee73-488a-9b9a-3922b660a799", + "x-ms-routing-request-id": "WESTUS2:20210519T185504Z:23a5e917-ee73-488a-9b9a-3922b660a799" }, "ResponseBody": [] }, @@ -9116,7 +9141,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ab60f5f97eedc13eec450a4cb46102df", "x-ms-return-client-request-id": "true" }, @@ -9125,17 +9150,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:14 GMT", + "Date": "Wed, 19 May 2021 18:55:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1148cf0f-3834-4490-9743-224ce774979a", - "x-ms-ratelimit-remaining-subscription-reads": "11773", - "x-ms-request-id": "1148cf0f-3834-4490-9743-224ce774979a", - "x-ms-routing-request-id": "WESTUS2:20210507T202615Z:1148cf0f-3834-4490-9743-224ce774979a" + "x-ms-correlation-request-id": "0f7d212e-404b-466d-bd84-cddf49a20347", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "0f7d212e-404b-466d-bd84-cddf49a20347", + "x-ms-routing-request-id": "WESTUS2:20210519T185505Z:0f7d212e-404b-466d-bd84-cddf49a20347" }, "ResponseBody": [] }, @@ -9144,7 +9169,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "317248eb8b349c5c2e76759a86d95d03", "x-ms-return-client-request-id": "true" }, @@ -9153,17 +9178,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:15 GMT", + "Date": "Wed, 19 May 2021 18:55:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d9e12e2-69f4-4203-8fa6-73497b26ea3e", - "x-ms-ratelimit-remaining-subscription-reads": "11772", - "x-ms-request-id": "4d9e12e2-69f4-4203-8fa6-73497b26ea3e", - "x-ms-routing-request-id": "WESTUS2:20210507T202616Z:4d9e12e2-69f4-4203-8fa6-73497b26ea3e" + "x-ms-correlation-request-id": "e09022f0-6387-4ef3-9276-6f79707b1181", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "e09022f0-6387-4ef3-9276-6f79707b1181", + "x-ms-routing-request-id": "WESTUS2:20210519T185506Z:e09022f0-6387-4ef3-9276-6f79707b1181" }, "ResponseBody": [] }, @@ -9172,7 +9197,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2688400fe69cf5d470d5ddae59f4494a", "x-ms-return-client-request-id": "true" }, @@ -9181,17 +9206,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:16 GMT", + "Date": "Wed, 19 May 2021 18:55:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9d6dd43-fac1-42cc-8c8c-7925fa11612e", - "x-ms-ratelimit-remaining-subscription-reads": "11771", - "x-ms-request-id": "d9d6dd43-fac1-42cc-8c8c-7925fa11612e", - "x-ms-routing-request-id": "WESTUS2:20210507T202617Z:d9d6dd43-fac1-42cc-8c8c-7925fa11612e" + "x-ms-correlation-request-id": "0d58b753-4f24-4b36-840b-2463bf010b41", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "0d58b753-4f24-4b36-840b-2463bf010b41", + "x-ms-routing-request-id": "WESTUS2:20210519T185507Z:0d58b753-4f24-4b36-840b-2463bf010b41" }, "ResponseBody": [] }, @@ -9200,7 +9225,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4b3ab598f4606e4d98c47d7709a33a13", "x-ms-return-client-request-id": "true" }, @@ -9209,17 +9234,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:17 GMT", + "Date": "Wed, 19 May 2021 18:55:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d2c5040-23aa-4413-bb2f-1b3f2ec958be", - "x-ms-ratelimit-remaining-subscription-reads": "11770", - "x-ms-request-id": "2d2c5040-23aa-4413-bb2f-1b3f2ec958be", - "x-ms-routing-request-id": "WESTUS2:20210507T202618Z:2d2c5040-23aa-4413-bb2f-1b3f2ec958be" + "x-ms-correlation-request-id": "ba886917-ff1d-4994-9360-b6fd45ffc110", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "ba886917-ff1d-4994-9360-b6fd45ffc110", + "x-ms-routing-request-id": "WESTUS2:20210519T185508Z:ba886917-ff1d-4994-9360-b6fd45ffc110" }, "ResponseBody": [] }, @@ -9228,7 +9253,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "733c07e8dcd90543747dc05eaeae4239", "x-ms-return-client-request-id": "true" }, @@ -9237,17 +9262,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:18 GMT", + "Date": "Wed, 19 May 2021 18:55:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e6f76a1-d48f-40d8-9d54-87cdf035087c", - "x-ms-ratelimit-remaining-subscription-reads": "11769", - "x-ms-request-id": "0e6f76a1-d48f-40d8-9d54-87cdf035087c", - "x-ms-routing-request-id": "WESTUS2:20210507T202619Z:0e6f76a1-d48f-40d8-9d54-87cdf035087c" + "x-ms-correlation-request-id": "e95354a4-6aea-4f94-8d5f-913a207b1a72", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "e95354a4-6aea-4f94-8d5f-913a207b1a72", + "x-ms-routing-request-id": "WESTUS2:20210519T185509Z:e95354a4-6aea-4f94-8d5f-913a207b1a72" }, "ResponseBody": [] }, @@ -9256,7 +9281,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d1022b2c119e1aa2f31a8dd7695debcc", "x-ms-return-client-request-id": "true" }, @@ -9265,17 +9290,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:20 GMT", + "Date": "Wed, 19 May 2021 18:55:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b383204-a516-4852-b258-0d4f14871cfe", - "x-ms-ratelimit-remaining-subscription-reads": "11768", - "x-ms-request-id": "6b383204-a516-4852-b258-0d4f14871cfe", - "x-ms-routing-request-id": "WESTUS2:20210507T202620Z:6b383204-a516-4852-b258-0d4f14871cfe" + "x-ms-correlation-request-id": "ddead2ae-16a0-41ff-a28d-f48f02b4a713", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "ddead2ae-16a0-41ff-a28d-f48f02b4a713", + "x-ms-routing-request-id": "WESTUS2:20210519T185510Z:ddead2ae-16a0-41ff-a28d-f48f02b4a713" }, "ResponseBody": [] }, @@ -9284,7 +9309,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "52c5ca9ad6b8bb717135d7e333efc0ea", "x-ms-return-client-request-id": "true" }, @@ -9293,17 +9318,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:21 GMT", + "Date": "Wed, 19 May 2021 18:55:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5fbe1780-620e-4161-8d4d-419dcc8a2373", - "x-ms-ratelimit-remaining-subscription-reads": "11767", - "x-ms-request-id": "5fbe1780-620e-4161-8d4d-419dcc8a2373", - "x-ms-routing-request-id": "WESTUS2:20210507T202621Z:5fbe1780-620e-4161-8d4d-419dcc8a2373" + "x-ms-correlation-request-id": "4be6ad6f-2296-4a66-a7a9-86ea3f7be975", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "4be6ad6f-2296-4a66-a7a9-86ea3f7be975", + "x-ms-routing-request-id": "WESTUS2:20210519T185511Z:4be6ad6f-2296-4a66-a7a9-86ea3f7be975" }, "ResponseBody": [] }, @@ -9312,7 +9337,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "de4a438169a1d674642180be4f6c9b17", "x-ms-return-client-request-id": "true" }, @@ -9321,17 +9346,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:22 GMT", + "Date": "Wed, 19 May 2021 18:55:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46d51a81-57cc-45e6-8f05-b59f7f6f4090", - "x-ms-ratelimit-remaining-subscription-reads": "11766", - "x-ms-request-id": "46d51a81-57cc-45e6-8f05-b59f7f6f4090", - "x-ms-routing-request-id": "WESTUS2:20210507T202622Z:46d51a81-57cc-45e6-8f05-b59f7f6f4090" + "x-ms-correlation-request-id": "3ffd5dcf-d537-404d-afed-088255293228", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "3ffd5dcf-d537-404d-afed-088255293228", + "x-ms-routing-request-id": "WESTUS2:20210519T185512Z:3ffd5dcf-d537-404d-afed-088255293228" }, "ResponseBody": [] }, @@ -9340,7 +9365,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e3c3f491f0e85681b9475f693abfe703", "x-ms-return-client-request-id": "true" }, @@ -9349,17 +9374,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:23 GMT", + "Date": "Wed, 19 May 2021 18:55:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83021da8-e964-4a86-918f-e60866cbec76", - "x-ms-ratelimit-remaining-subscription-reads": "11765", - "x-ms-request-id": "83021da8-e964-4a86-918f-e60866cbec76", - "x-ms-routing-request-id": "WESTUS2:20210507T202623Z:83021da8-e964-4a86-918f-e60866cbec76" + "x-ms-correlation-request-id": "9f9ccc97-24b2-4cac-8076-e7812533ca2c", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "9f9ccc97-24b2-4cac-8076-e7812533ca2c", + "x-ms-routing-request-id": "WESTUS2:20210519T185513Z:9f9ccc97-24b2-4cac-8076-e7812533ca2c" }, "ResponseBody": [] }, @@ -9368,7 +9393,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2556a25a0c12312b55efee9656b36b05", "x-ms-return-client-request-id": "true" }, @@ -9377,17 +9402,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:24 GMT", + "Date": "Wed, 19 May 2021 18:55:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f37f3fa-26e5-4641-924e-536967cd585b", - "x-ms-ratelimit-remaining-subscription-reads": "11764", - "x-ms-request-id": "8f37f3fa-26e5-4641-924e-536967cd585b", - "x-ms-routing-request-id": "WESTUS2:20210507T202624Z:8f37f3fa-26e5-4641-924e-536967cd585b" + "x-ms-correlation-request-id": "2e32132f-24eb-4fee-a4b1-9e6891b4df60", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "2e32132f-24eb-4fee-a4b1-9e6891b4df60", + "x-ms-routing-request-id": "WESTUS2:20210519T185514Z:2e32132f-24eb-4fee-a4b1-9e6891b4df60" }, "ResponseBody": [] }, @@ -9396,7 +9421,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3f51bf99dc2b9001c2f4245a090a9ca4", "x-ms-return-client-request-id": "true" }, @@ -9405,17 +9430,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:25 GMT", + "Date": "Wed, 19 May 2021 18:55:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78a4846d-cc55-492b-8a14-17b4b4a889db", - "x-ms-ratelimit-remaining-subscription-reads": "11763", - "x-ms-request-id": "78a4846d-cc55-492b-8a14-17b4b4a889db", - "x-ms-routing-request-id": "WESTUS2:20210507T202626Z:78a4846d-cc55-492b-8a14-17b4b4a889db" + "x-ms-correlation-request-id": "3dad8799-80e0-4c56-9fab-0ab588b9ab62", + "x-ms-ratelimit-remaining-subscription-reads": "11548", + "x-ms-request-id": "3dad8799-80e0-4c56-9fab-0ab588b9ab62", + "x-ms-routing-request-id": "WESTUS2:20210519T185515Z:3dad8799-80e0-4c56-9fab-0ab588b9ab62" }, "ResponseBody": [] }, @@ -9424,7 +9449,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ac637c3a75158405c9928ef902ebff06", "x-ms-return-client-request-id": "true" }, @@ -9433,17 +9458,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:26 GMT", + "Date": "Wed, 19 May 2021 18:55:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9de7f598-f7ad-44e4-86d4-3bce64c25065", - "x-ms-ratelimit-remaining-subscription-reads": "11762", - "x-ms-request-id": "9de7f598-f7ad-44e4-86d4-3bce64c25065", - "x-ms-routing-request-id": "WESTUS2:20210507T202627Z:9de7f598-f7ad-44e4-86d4-3bce64c25065" + "x-ms-correlation-request-id": "f96f3ddb-8ff4-47db-8b22-150911439c0f", + "x-ms-ratelimit-remaining-subscription-reads": "11546", + "x-ms-request-id": "f96f3ddb-8ff4-47db-8b22-150911439c0f", + "x-ms-routing-request-id": "WESTUS2:20210519T185516Z:f96f3ddb-8ff4-47db-8b22-150911439c0f" }, "ResponseBody": [] }, @@ -9452,7 +9477,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7acf5adba76d7ed7a1c5631ee8d0274a", "x-ms-return-client-request-id": "true" }, @@ -9461,17 +9486,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:27 GMT", + "Date": "Wed, 19 May 2021 18:55:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f880c4f-7154-4192-92c9-c9395b8d91c8", - "x-ms-ratelimit-remaining-subscription-reads": "11761", - "x-ms-request-id": "4f880c4f-7154-4192-92c9-c9395b8d91c8", - "x-ms-routing-request-id": "WESTUS2:20210507T202628Z:4f880c4f-7154-4192-92c9-c9395b8d91c8" + "x-ms-correlation-request-id": "16778007-6db0-49fc-80a5-917eded17a8d", + "x-ms-ratelimit-remaining-subscription-reads": "11544", + "x-ms-request-id": "16778007-6db0-49fc-80a5-917eded17a8d", + "x-ms-routing-request-id": "WESTUS2:20210519T185517Z:16778007-6db0-49fc-80a5-917eded17a8d" }, "ResponseBody": [] }, @@ -9480,7 +9505,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d95b4952be4f23efbacd76994d078ed7", "x-ms-return-client-request-id": "true" }, @@ -9489,17 +9514,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:28 GMT", + "Date": "Wed, 19 May 2021 18:55:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c1a5e8a-35aa-4dbd-ab92-4d497258d7d9", - "x-ms-ratelimit-remaining-subscription-reads": "11760", - "x-ms-request-id": "6c1a5e8a-35aa-4dbd-ab92-4d497258d7d9", - "x-ms-routing-request-id": "WESTUS2:20210507T202629Z:6c1a5e8a-35aa-4dbd-ab92-4d497258d7d9" + "x-ms-correlation-request-id": "fcee811b-d7bc-4125-b196-51463bff54e5", + "x-ms-ratelimit-remaining-subscription-reads": "11542", + "x-ms-request-id": "fcee811b-d7bc-4125-b196-51463bff54e5", + "x-ms-routing-request-id": "WESTUS2:20210519T185518Z:fcee811b-d7bc-4125-b196-51463bff54e5" }, "ResponseBody": [] }, @@ -9508,7 +9533,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af7f1ef4213b9337a4e40b5012e79cf8", "x-ms-return-client-request-id": "true" }, @@ -9517,17 +9542,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:29 GMT", + "Date": "Wed, 19 May 2021 18:55:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3acb9dda-7b98-40fc-97a8-c8ffd0c5b1a3", - "x-ms-ratelimit-remaining-subscription-reads": "11759", - "x-ms-request-id": "3acb9dda-7b98-40fc-97a8-c8ffd0c5b1a3", - "x-ms-routing-request-id": "WESTUS2:20210507T202630Z:3acb9dda-7b98-40fc-97a8-c8ffd0c5b1a3" + "x-ms-correlation-request-id": "7e5c9524-039e-445c-be39-fdf1bd772aa8", + "x-ms-ratelimit-remaining-subscription-reads": "11540", + "x-ms-request-id": "7e5c9524-039e-445c-be39-fdf1bd772aa8", + "x-ms-routing-request-id": "WESTUS2:20210519T185519Z:7e5c9524-039e-445c-be39-fdf1bd772aa8" }, "ResponseBody": [] }, @@ -9536,7 +9561,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b9a7436a268f1cb66aacc0a0303e3099", "x-ms-return-client-request-id": "true" }, @@ -9545,17 +9570,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:30 GMT", + "Date": "Wed, 19 May 2021 18:55:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f2f2a1a-ca19-4c2f-bb5b-43286cbfc873", - "x-ms-ratelimit-remaining-subscription-reads": "11758", - "x-ms-request-id": "4f2f2a1a-ca19-4c2f-bb5b-43286cbfc873", - "x-ms-routing-request-id": "WESTUS2:20210507T202631Z:4f2f2a1a-ca19-4c2f-bb5b-43286cbfc873" + "x-ms-correlation-request-id": "45f79c8a-7d05-4f8c-bca5-fffe8535b810", + "x-ms-ratelimit-remaining-subscription-reads": "11538", + "x-ms-request-id": "45f79c8a-7d05-4f8c-bca5-fffe8535b810", + "x-ms-routing-request-id": "WESTUS2:20210519T185520Z:45f79c8a-7d05-4f8c-bca5-fffe8535b810" }, "ResponseBody": [] }, @@ -9564,7 +9589,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9298c367751310f11c7346ab39f11d3", "x-ms-return-client-request-id": "true" }, @@ -9573,17 +9598,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:31 GMT", + "Date": "Wed, 19 May 2021 18:55:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e336ace-e290-48ba-a750-f409c4fb28e9", - "x-ms-ratelimit-remaining-subscription-reads": "11757", - "x-ms-request-id": "8e336ace-e290-48ba-a750-f409c4fb28e9", - "x-ms-routing-request-id": "WESTUS2:20210507T202632Z:8e336ace-e290-48ba-a750-f409c4fb28e9" + "x-ms-correlation-request-id": "0cec7a1d-f2ac-4927-822b-590b5955d99b", + "x-ms-ratelimit-remaining-subscription-reads": "11536", + "x-ms-request-id": "0cec7a1d-f2ac-4927-822b-590b5955d99b", + "x-ms-routing-request-id": "WESTUS2:20210519T185521Z:0cec7a1d-f2ac-4927-822b-590b5955d99b" }, "ResponseBody": [] }, @@ -9592,7 +9617,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "092e7e30d560ce476762458e60966266", "x-ms-return-client-request-id": "true" }, @@ -9601,17 +9626,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:32 GMT", + "Date": "Wed, 19 May 2021 18:55:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5e25e5e-2e48-4576-b6c9-e25375ce5ccc", - "x-ms-ratelimit-remaining-subscription-reads": "11756", - "x-ms-request-id": "d5e25e5e-2e48-4576-b6c9-e25375ce5ccc", - "x-ms-routing-request-id": "WESTUS2:20210507T202633Z:d5e25e5e-2e48-4576-b6c9-e25375ce5ccc" + "x-ms-correlation-request-id": "4e9eba83-a6c7-4471-8620-fb7ef523f1ad", + "x-ms-ratelimit-remaining-subscription-reads": "11534", + "x-ms-request-id": "4e9eba83-a6c7-4471-8620-fb7ef523f1ad", + "x-ms-routing-request-id": "WESTUS2:20210519T185522Z:4e9eba83-a6c7-4471-8620-fb7ef523f1ad" }, "ResponseBody": [] }, @@ -9620,7 +9645,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "851972b3d3bdf3a63476a7c8f14c69cb", "x-ms-return-client-request-id": "true" }, @@ -9629,17 +9654,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:33 GMT", + "Date": "Wed, 19 May 2021 18:55:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a158cc0-1ca9-4067-a4c0-5f0f2f1b60fe", - "x-ms-ratelimit-remaining-subscription-reads": "11755", - "x-ms-request-id": "0a158cc0-1ca9-4067-a4c0-5f0f2f1b60fe", - "x-ms-routing-request-id": "WESTUS2:20210507T202634Z:0a158cc0-1ca9-4067-a4c0-5f0f2f1b60fe" + "x-ms-correlation-request-id": "b7674281-33ef-4650-8331-f67724726d16", + "x-ms-ratelimit-remaining-subscription-reads": "11532", + "x-ms-request-id": "b7674281-33ef-4650-8331-f67724726d16", + "x-ms-routing-request-id": "WESTUS2:20210519T185523Z:b7674281-33ef-4650-8331-f67724726d16" }, "ResponseBody": [] }, @@ -9648,7 +9673,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b270ed9a270f6138455b62ef3280d07b", "x-ms-return-client-request-id": "true" }, @@ -9657,17 +9682,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:34 GMT", + "Date": "Wed, 19 May 2021 18:55:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b195d08-e37a-4a8d-9481-a6f06437a8d2", - "x-ms-ratelimit-remaining-subscription-reads": "11754", - "x-ms-request-id": "3b195d08-e37a-4a8d-9481-a6f06437a8d2", - "x-ms-routing-request-id": "WESTUS2:20210507T202635Z:3b195d08-e37a-4a8d-9481-a6f06437a8d2" + "x-ms-correlation-request-id": "9b444bae-d364-474a-a7ef-c0d09bec5a5a", + "x-ms-ratelimit-remaining-subscription-reads": "11530", + "x-ms-request-id": "9b444bae-d364-474a-a7ef-c0d09bec5a5a", + "x-ms-routing-request-id": "WESTUS2:20210519T185524Z:9b444bae-d364-474a-a7ef-c0d09bec5a5a" }, "ResponseBody": [] }, @@ -9676,7 +9701,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "41b6ce648b855d15d73bd5ea2d7fdc1b", "x-ms-return-client-request-id": "true" }, @@ -9685,17 +9710,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:35 GMT", + "Date": "Wed, 19 May 2021 18:55:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10f81186-34a6-48a5-96e7-6f14c0bec211", - "x-ms-ratelimit-remaining-subscription-reads": "11753", - "x-ms-request-id": "10f81186-34a6-48a5-96e7-6f14c0bec211", - "x-ms-routing-request-id": "WESTUS2:20210507T202636Z:10f81186-34a6-48a5-96e7-6f14c0bec211" + "x-ms-correlation-request-id": "cb842e5e-9fdd-42c9-bf44-b209c8afd960", + "x-ms-ratelimit-remaining-subscription-reads": "11528", + "x-ms-request-id": "cb842e5e-9fdd-42c9-bf44-b209c8afd960", + "x-ms-routing-request-id": "WESTUS2:20210519T185525Z:cb842e5e-9fdd-42c9-bf44-b209c8afd960" }, "ResponseBody": [] }, @@ -9704,7 +9729,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "73f479f8b0268c5639b8406270b7c0b3", "x-ms-return-client-request-id": "true" }, @@ -9713,17 +9738,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:36 GMT", + "Date": "Wed, 19 May 2021 18:55:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0245722-a5f4-4ff3-bcee-46fbb5dbd72a", - "x-ms-ratelimit-remaining-subscription-reads": "11752", - "x-ms-request-id": "c0245722-a5f4-4ff3-bcee-46fbb5dbd72a", - "x-ms-routing-request-id": "WESTUS2:20210507T202637Z:c0245722-a5f4-4ff3-bcee-46fbb5dbd72a" + "x-ms-correlation-request-id": "d9d84591-206d-466d-9cd1-3f49afb70352", + "x-ms-ratelimit-remaining-subscription-reads": "11526", + "x-ms-request-id": "d9d84591-206d-466d-9cd1-3f49afb70352", + "x-ms-routing-request-id": "WESTUS2:20210519T185526Z:d9d84591-206d-466d-9cd1-3f49afb70352" }, "ResponseBody": [] }, @@ -9732,7 +9757,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23632ca528950f45d813dad4514e33c5", "x-ms-return-client-request-id": "true" }, @@ -9741,17 +9766,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:37 GMT", + "Date": "Wed, 19 May 2021 18:55:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64642b0e-8efe-4410-816d-c8d31919794d", - "x-ms-ratelimit-remaining-subscription-reads": "11751", - "x-ms-request-id": "64642b0e-8efe-4410-816d-c8d31919794d", - "x-ms-routing-request-id": "WESTUS2:20210507T202638Z:64642b0e-8efe-4410-816d-c8d31919794d" + "x-ms-correlation-request-id": "33e5094d-0bc6-425e-92a2-0e017011b500", + "x-ms-ratelimit-remaining-subscription-reads": "11524", + "x-ms-request-id": "33e5094d-0bc6-425e-92a2-0e017011b500", + "x-ms-routing-request-id": "WESTUS2:20210519T185527Z:33e5094d-0bc6-425e-92a2-0e017011b500" }, "ResponseBody": [] }, @@ -9760,7 +9785,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b8f6477e5d8cb454772907cd4ab2ec20", "x-ms-return-client-request-id": "true" }, @@ -9769,17 +9794,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:38 GMT", + "Date": "Wed, 19 May 2021 18:55:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e5f8c46-0d8b-45c4-9464-3827a0969006", - "x-ms-ratelimit-remaining-subscription-reads": "11750", - "x-ms-request-id": "5e5f8c46-0d8b-45c4-9464-3827a0969006", - "x-ms-routing-request-id": "WESTUS2:20210507T202639Z:5e5f8c46-0d8b-45c4-9464-3827a0969006" + "x-ms-correlation-request-id": "44d064f7-b13c-4dd0-a3fc-110e54376738", + "x-ms-ratelimit-remaining-subscription-reads": "11522", + "x-ms-request-id": "44d064f7-b13c-4dd0-a3fc-110e54376738", + "x-ms-routing-request-id": "WESTUS2:20210519T185528Z:44d064f7-b13c-4dd0-a3fc-110e54376738" }, "ResponseBody": [] }, @@ -9788,7 +9813,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0144227ab91cd08533e49a13d5813bea", "x-ms-return-client-request-id": "true" }, @@ -9797,17 +9822,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:26:39 GMT", + "Date": "Wed, 19 May 2021 18:55:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3329fb6-b1ee-4c29-9be5-301f982c56c0", - "x-ms-ratelimit-remaining-subscription-reads": "11749", - "x-ms-request-id": "b3329fb6-b1ee-4c29-9be5-301f982c56c0", - "x-ms-routing-request-id": "WESTUS2:20210507T202640Z:b3329fb6-b1ee-4c29-9be5-301f982c56c0" + "x-ms-correlation-request-id": "cb29dbb7-99f1-465b-8fa6-460516b3e8ec", + "x-ms-ratelimit-remaining-subscription-reads": "11520", + "x-ms-request-id": "cb29dbb7-99f1-465b-8fa6-460516b3e8ec", + "x-ms-routing-request-id": "WESTUS2:20210519T185529Z:cb29dbb7-99f1-465b-8fa6-460516b3e8ec" }, "ResponseBody": [] }, @@ -9816,23 +9841,163 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "29e37a8408c04826d7aeac6b2078c425", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:55:30 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4bcc54eb-53ef-4c8c-a986-f3f1465d753b", + "x-ms-ratelimit-remaining-subscription-reads": "11518", + "x-ms-request-id": "4bcc54eb-53ef-4c8c-a986-f3f1465d753b", + "x-ms-routing-request-id": "WESTUS2:20210519T185531Z:4bcc54eb-53ef-4c8c-a986-f3f1465d753b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2e5aba263209c5a9c12684a7c241def5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:55:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "db751c4a-a624-402f-8094-d818365f834e", + "x-ms-ratelimit-remaining-subscription-reads": "11516", + "x-ms-request-id": "db751c4a-a624-402f-8094-d818365f834e", + "x-ms-routing-request-id": "WESTUS2:20210519T185532Z:db751c4a-a624-402f-8094-d818365f834e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cf481deec2ce725ffbfb2a6d0c19afbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:55:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "01c15714-5511-4b84-b21a-18f6cd460ce7", + "x-ms-ratelimit-remaining-subscription-reads": "11514", + "x-ms-request-id": "01c15714-5511-4b84-b21a-18f6cd460ce7", + "x-ms-routing-request-id": "WESTUS2:20210519T185533Z:01c15714-5511-4b84-b21a-18f6cd460ce7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1bec75200c2751e0d01e679a837f8695", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:55:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e5769bc7-c7c9-4fc6-8dde-fa6ff6e7b846", + "x-ms-ratelimit-remaining-subscription-reads": "11512", + "x-ms-request-id": "e5769bc7-c7c9-4fc6-8dde-fa6ff6e7b846", + "x-ms-routing-request-id": "WESTUS2:20210519T185534Z:e5769bc7-c7c9-4fc6-8dde-fa6ff6e7b846" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "037db6d0f52f64565ae7330e083cb8a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:55:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "522cc452-22c8-480f-8e7e-e3d950e5660b", + "x-ms-ratelimit-remaining-subscription-reads": "11510", + "x-ms-request-id": "522cc452-22c8-480f-8e7e-e3d950e5660b", + "x-ms-routing-request-id": "WESTUS2:20210519T185535Z:522cc452-22c8-480f-8e7e-e3d950e5660b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4c87c976c255e1cd3cf6feb05ac4ee7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 07 May 2021 20:26:41 GMT", + "Date": "Wed, 19 May 2021 18:55:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f7a563d-eddd-4576-8f58-80c160352f89", - "x-ms-ratelimit-remaining-subscription-reads": "11748", - "x-ms-request-id": "0f7a563d-eddd-4576-8f58-80c160352f89", - "x-ms-routing-request-id": "WESTUS2:20210507T202641Z:0f7a563d-eddd-4576-8f58-80c160352f89" + "x-ms-correlation-request-id": "578d19a5-a5e5-4099-9c8e-2d437d1bec63", + "x-ms-ratelimit-remaining-subscription-reads": "11508", + "x-ms-request-id": "578d19a5-a5e5-4099-9c8e-2d437d1bec63", + "x-ms-routing-request-id": "WESTUS2:20210519T185536Z:578d19a5-a5e5-4099-9c8e-2d437d1bec63" }, "ResponseBody": [] }, @@ -9842,8 +10007,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2e5aba263209c5a9c12684a7c241def5", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "569d9474ac9c2b8b1f88c13fd9d24994", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -9852,15 +10017,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:26:41 GMT", + "Date": "Wed, 19 May 2021 18:55:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "caa23bc1-6d7a-469e-bd84-1b0e2fdd6f99", - "x-ms-ratelimit-remaining-subscription-reads": "11747", - "x-ms-request-id": "caa23bc1-6d7a-469e-bd84-1b0e2fdd6f99", - "x-ms-routing-request-id": "WESTUS2:20210507T202641Z:caa23bc1-6d7a-469e-bd84-1b0e2fdd6f99" + "x-ms-correlation-request-id": "213b29dc-98f4-480c-acbb-91f2e3e6751e", + "x-ms-ratelimit-remaining-subscription-reads": "11507", + "x-ms-request-id": "213b29dc-98f4-480c-acbb-91f2e3e6751e", + "x-ms-routing-request-id": "WESTUS2:20210519T185536Z:213b29dc-98f4-480c-acbb-91f2e3e6751e" }, "ResponseBody": { "value": [] @@ -9872,8 +10037,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cf481deec2ce725ffbfb2a6d0c19afbb", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ba24bf653af70d40e89cc638f6a50995", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -9882,15 +10047,15 @@ "Cache-Control": "no-cache", "Content-Length": "280", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:26:41 GMT", + "Date": "Wed, 19 May 2021 18:55:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c4e523a-c2a2-42b5-a546-734692a76b03", - "x-ms-ratelimit-remaining-subscription-reads": "11746", - "x-ms-request-id": "6c4e523a-c2a2-42b5-a546-734692a76b03", - "x-ms-routing-request-id": "WESTUS2:20210507T202641Z:6c4e523a-c2a2-42b5-a546-734692a76b03" + "x-ms-correlation-request-id": "d23c6c3d-9c7b-41a6-abfd-276a3d50cceb", + "x-ms-ratelimit-remaining-subscription-reads": "11506", + "x-ms-request-id": "d23c6c3d-9c7b-41a6-abfd-276a3d50cceb", + "x-ms-routing-request-id": "WESTUS2:20210519T185536Z:d23c6c3d-9c7b-41a6-abfd-276a3d50cceb" }, "ResponseBody": { "value": [ diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources()Async.json index 7dd031b8c9c7..538d65e18468 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources()Async.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:14:31 GMT", + "Date": "Wed, 19 May 2021 18:52:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd184de3-029e-43fc-9912-4f8e78209e20", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "fd184de3-029e-43fc-9912-4f8e78209e20", - "x-ms-routing-request-id": "WESTUS2:20210507T011431Z:fd184de3-029e-43fc-9912-4f8e78209e20" + "x-ms-correlation-request-id": "8ff363d9-e5a3-4112-bff2-3ebf2444647d", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "8ff363d9-e5a3-4112-bff2-3ebf2444647d", + "x-ms-routing-request-id": "WESTUS2:20210519T185202Z:8ff363d9-e5a3-4112-bff2-3ebf2444647d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-6e010113ff53d349acbd7098bf28e522-d631bb8325ba954e-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-00b66de4fc302b4690a5316fbbd3ca90-ca8afe786afda648-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dc8eef23cfea30c1fb28b62b73cf1a18", "x-ms-return-client-request-id": "true" }, @@ -63,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:14:31 GMT", + "Date": "Wed, 19 May 2021 18:52:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00e0aa37-dc62-4c89-96e8-a044a5b4242d", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "00e0aa37-dc62-4c89-96e8-a044a5b4242d", - "x-ms-routing-request-id": "WESTUS2:20210507T011432Z:00e0aa37-dc62-4c89-96e8-a044a5b4242d" + "x-ms-correlation-request-id": "83d5cbca-f0c9-456e-8871-8eb89f3e2e06", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "83d5cbca-f0c9-456e-8871-8eb89f3e2e06", + "x-ms-routing-request-id": "WESTUS2:20210519T185202Z:83d5cbca-f0c9-456e-8871-8eb89f3e2e06" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9606", @@ -92,8 +92,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-93a4012200e41442866bdb3446586a2b-b1a042d62ea7e740-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-dc76fdb199d3534697d0fb586922e9d1-55ec07a94328f341-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c652f79b3ba3ec286e2a2809467c513", "x-ms-return-client-request-id": "true" }, @@ -106,15 +106,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:14:32 GMT", + "Date": "Wed, 19 May 2021 18:52:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c5b95d6-1f87-4a33-8426-966816c7a1d1", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "3c5b95d6-1f87-4a33-8426-966816c7a1d1", - "x-ms-routing-request-id": "WESTUS2:20210507T011433Z:3c5b95d6-1f87-4a33-8426-966816c7a1d1" + "x-ms-correlation-request-id": "0dc0ec9e-8377-4bc2-a309-b0229960c33a", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "0dc0ec9e-8377-4bc2-a309-b0229960c33a", + "x-ms-routing-request-id": "WESTUS2:20210519T185203Z:0dc0ec9e-8377-4bc2-a309-b0229960c33a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656", @@ -133,6 +133,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-568ab3734115fe468f499a1ef1d486b4-f243afcca09afc4c-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "baa3f69e2fee3206ce33c107419c3e8e", "x-ms-return-client-request-id": "true" @@ -141,17 +142,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "52611", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:14:32 GMT", + "Date": "Wed, 19 May 2021 18:52:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8d7d947-a225-4934-8f42-f4d0b44cccea", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "c8d7d947-a225-4934-8f42-f4d0b44cccea", - "x-ms-routing-request-id": "WESTUS2:20210507T011433Z:c8d7d947-a225-4934-8f42-f4d0b44cccea" + "x-ms-correlation-request-id": "94423ecf-bea6-426e-8ccd-776b86130420", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "94423ecf-bea6-426e-8ccd-776b86130420", + "x-ms-routing-request-id": "WESTUS2:20210519T185203Z:94423ecf-bea6-426e-8ccd-776b86130420" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -475,6 +476,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -760,6 +765,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -2778,6 +2787,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -3186,6 +3199,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3846,6 +3863,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4034,6 +4055,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4051,7 +4076,8 @@ "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-568ab3734115fe468f499a1ef1d486b4-54b5e5a45f16694f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b495c3ad6864cb3c9d63ec1eb066c0f0", "x-ms-return-client-request-id": "true" }, @@ -4071,7 +4097,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:14:33 GMT", + "Date": "Wed, 19 May 2021 18:52:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4081,11 +4107,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b495c3ad6864cb3c9d63ec1eb066c0f0", - "x-ms-correlation-request-id": "34ed09b4-0266-4ec6-b99e-1a3157114092", + "x-ms-correlation-request-id": "464d4072-5256-4ebb-98ac-4d74d8ad1950", "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "f45375f4-8dfa-4007-92f4-9fe76155c296", - "x-ms-routing-request-id": "WESTUS2:20210507T011433Z:34ed09b4-0266-4ec6-b99e-1a3157114092" + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "9274db72-360a-4ea6-a5eb-39245107e35a", + "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:464d4072-5256-4ebb-98ac-4d74d8ad1950" }, "ResponseBody": [ "{\r\n", @@ -4110,7 +4136,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3e7f2645e2f35c9bad71d8a42e78267", "x-ms-return-client-request-id": "true" }, @@ -4120,15 +4146,15 @@ "Cache-Control": "no-cache", "Content-Length": "280", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:14:33 GMT", + "Date": "Wed, 19 May 2021 18:52:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55bf8c45-e466-4fbb-ba39-f9c02ff9d443", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "55bf8c45-e466-4fbb-ba39-f9c02ff9d443", - "x-ms-routing-request-id": "WESTUS2:20210507T011433Z:55bf8c45-e466-4fbb-ba39-f9c02ff9d443" + "x-ms-correlation-request-id": "97d08147-121a-41d8-9988-4b1e74e4f31b", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "97d08147-121a-41d8-9988-4b1e74e4f31b", + "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:97d08147-121a-41d8-9988-4b1e74e4f31b" }, "ResponseBody": { "value": [ @@ -4151,7 +4177,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fbefd072196a9519389554397cbcca65", "x-ms-return-client-request-id": "true" }, @@ -4161,15 +4187,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:14:33 GMT", + "Date": "Wed, 19 May 2021 18:52:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29762b4d-4a11-4463-9f57-37a8f1c97fe7", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "29762b4d-4a11-4463-9f57-37a8f1c97fe7", - "x-ms-routing-request-id": "WESTUS2:20210507T011433Z:29762b4d-4a11-4463-9f57-37a8f1c97fe7" + "x-ms-correlation-request-id": "af299e15-9f94-4789-83bc-559fce168436", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "af299e15-9f94-4789-83bc-559fce168436", + "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:af299e15-9f94-4789-83bc-559fce168436" }, "ResponseBody": { "value": [] @@ -4183,7 +4209,7 @@ "Authorization": "Sanitized", "Content-Length": "256", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bdb9a51e1d7fb9c07cfb6a9dfa00bd78", "x-ms-return-client-request-id": "true" }, @@ -4197,17 +4223,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:33 GMT", + "Date": "Wed, 19 May 2021 18:52:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d9f0ca7-fac5-4834-bcb5-e7547626d471", + "x-ms-correlation-request-id": "9f2bbbba-aaff-4b35-b874-5255a97b58bf", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "5d9f0ca7-fac5-4834-bcb5-e7547626d471", - "x-ms-routing-request-id": "WESTUS2:20210507T011434Z:5d9f0ca7-fac5-4834-bcb5-e7547626d471" + "x-ms-request-id": "9f2bbbba-aaff-4b35-b874-5255a97b58bf", + "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:9f2bbbba-aaff-4b35-b874-5255a97b58bf" }, "ResponseBody": [] }, @@ -4216,7 +4242,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c6cb70dc42d55e70f357e6faf7b9b38", "x-ms-return-client-request-id": "true" }, @@ -4225,17 +4251,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:33 GMT", + "Date": "Wed, 19 May 2021 18:52:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61a0b705-7b94-48dd-acac-1733f4d6a8e2", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "61a0b705-7b94-48dd-acac-1733f4d6a8e2", - "x-ms-routing-request-id": "WESTUS2:20210507T011434Z:61a0b705-7b94-48dd-acac-1733f4d6a8e2" + "x-ms-correlation-request-id": "3bd9b9f4-bda8-4fa1-b9cc-4edcbd498378", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "3bd9b9f4-bda8-4fa1-b9cc-4edcbd498378", + "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:3bd9b9f4-bda8-4fa1-b9cc-4edcbd498378" }, "ResponseBody": [] }, @@ -4244,7 +4270,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f891dcd799afd41dca6ee42eb226afec", "x-ms-return-client-request-id": "true" }, @@ -4253,17 +4279,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:35 GMT", + "Date": "Wed, 19 May 2021 18:52:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eac1a678-ad74-4847-a180-608252ad061b", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "eac1a678-ad74-4847-a180-608252ad061b", - "x-ms-routing-request-id": "WESTUS2:20210507T011435Z:eac1a678-ad74-4847-a180-608252ad061b" + "x-ms-correlation-request-id": "173bac71-562f-4986-a1fd-55be2bb3dc2d", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "173bac71-562f-4986-a1fd-55be2bb3dc2d", + "x-ms-routing-request-id": "WESTUS2:20210519T185205Z:173bac71-562f-4986-a1fd-55be2bb3dc2d" }, "ResponseBody": [] }, @@ -4272,7 +4298,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "438f6c422094e44b9cb82012cb6c9b5d", "x-ms-return-client-request-id": "true" }, @@ -4281,17 +4307,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:35 GMT", + "Date": "Wed, 19 May 2021 18:52:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7aa7f400-605a-4c07-9f31-86a0a0ebe966", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "7aa7f400-605a-4c07-9f31-86a0a0ebe966", - "x-ms-routing-request-id": "WESTUS2:20210507T011436Z:7aa7f400-605a-4c07-9f31-86a0a0ebe966" + "x-ms-correlation-request-id": "24a0a575-7fc9-43a9-8d39-517c823e8490", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "24a0a575-7fc9-43a9-8d39-517c823e8490", + "x-ms-routing-request-id": "WESTUS2:20210519T185206Z:24a0a575-7fc9-43a9-8d39-517c823e8490" }, "ResponseBody": [] }, @@ -4300,7 +4326,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ec332b5c1fe744e9997d2bedfb9a2e9", "x-ms-return-client-request-id": "true" }, @@ -4309,17 +4335,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:37 GMT", + "Date": "Wed, 19 May 2021 18:52:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d71bb0c3-fb9a-4199-8726-62f386b996af", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "d71bb0c3-fb9a-4199-8726-62f386b996af", - "x-ms-routing-request-id": "WESTUS2:20210507T011437Z:d71bb0c3-fb9a-4199-8726-62f386b996af" + "x-ms-correlation-request-id": "153c5d4c-1f0f-490f-9421-3e52bdd84744", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "153c5d4c-1f0f-490f-9421-3e52bdd84744", + "x-ms-routing-request-id": "WESTUS2:20210519T185207Z:153c5d4c-1f0f-490f-9421-3e52bdd84744" }, "ResponseBody": [] }, @@ -4328,7 +4354,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "432d928658ebb6a491ad5bf6780b095d", "x-ms-return-client-request-id": "true" }, @@ -4337,17 +4363,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:38 GMT", + "Date": "Wed, 19 May 2021 18:52:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7581e8e0-6293-4262-9d66-be65e060bf7f", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "7581e8e0-6293-4262-9d66-be65e060bf7f", - "x-ms-routing-request-id": "WESTUS2:20210507T011438Z:7581e8e0-6293-4262-9d66-be65e060bf7f" + "x-ms-correlation-request-id": "d91827e9-9dfd-4d77-8c45-e96742815b69", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "d91827e9-9dfd-4d77-8c45-e96742815b69", + "x-ms-routing-request-id": "WESTUS2:20210519T185208Z:d91827e9-9dfd-4d77-8c45-e96742815b69" }, "ResponseBody": [] }, @@ -4356,7 +4382,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "807887d3816281ee1e1ba9fc4d8c04e3", "x-ms-return-client-request-id": "true" }, @@ -4365,17 +4391,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:39 GMT", + "Date": "Wed, 19 May 2021 18:52:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "147e9096-3f57-43d2-ad7f-3e5553bd02b4", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "147e9096-3f57-43d2-ad7f-3e5553bd02b4", - "x-ms-routing-request-id": "WESTUS2:20210507T011439Z:147e9096-3f57-43d2-ad7f-3e5553bd02b4" + "x-ms-correlation-request-id": "bd839ac7-8a0d-4d9f-b62e-70a7f03de915", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "bd839ac7-8a0d-4d9f-b62e-70a7f03de915", + "x-ms-routing-request-id": "WESTUS2:20210519T185209Z:bd839ac7-8a0d-4d9f-b62e-70a7f03de915" }, "ResponseBody": [] }, @@ -4384,7 +4410,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "388c3715573f5d718d0c9d516557fb8e", "x-ms-return-client-request-id": "true" }, @@ -4393,17 +4419,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:40 GMT", + "Date": "Wed, 19 May 2021 18:52:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e578e98a-ee25-4607-aeec-0da94fe3e47d", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "e578e98a-ee25-4607-aeec-0da94fe3e47d", - "x-ms-routing-request-id": "WESTUS2:20210507T011440Z:e578e98a-ee25-4607-aeec-0da94fe3e47d" + "x-ms-correlation-request-id": "c78caaad-1a80-4a91-abea-7e8abf0f7293", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "c78caaad-1a80-4a91-abea-7e8abf0f7293", + "x-ms-routing-request-id": "WESTUS2:20210519T185210Z:c78caaad-1a80-4a91-abea-7e8abf0f7293" }, "ResponseBody": [] }, @@ -4412,7 +4438,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "57ea758d22400586a3ab24d0aea86804", "x-ms-return-client-request-id": "true" }, @@ -4421,17 +4447,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:41 GMT", + "Date": "Wed, 19 May 2021 18:52:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e51d24bf-a636-4cb4-8ef1-c6226a26d809", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "e51d24bf-a636-4cb4-8ef1-c6226a26d809", - "x-ms-routing-request-id": "WESTUS2:20210507T011441Z:e51d24bf-a636-4cb4-8ef1-c6226a26d809" + "x-ms-correlation-request-id": "600dabff-4af4-47cb-89d0-a893e531b4e6", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "600dabff-4af4-47cb-89d0-a893e531b4e6", + "x-ms-routing-request-id": "WESTUS2:20210519T185211Z:600dabff-4af4-47cb-89d0-a893e531b4e6" }, "ResponseBody": [] }, @@ -4440,7 +4466,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "41e177a8d07e7c1e151af256e39d1bc7", "x-ms-return-client-request-id": "true" }, @@ -4449,17 +4475,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:42 GMT", + "Date": "Wed, 19 May 2021 18:52:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b24b2178-19ad-4b81-b05a-dbe888bc521b", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "b24b2178-19ad-4b81-b05a-dbe888bc521b", - "x-ms-routing-request-id": "WESTUS2:20210507T011442Z:b24b2178-19ad-4b81-b05a-dbe888bc521b" + "x-ms-correlation-request-id": "d0dce8e4-e41c-4095-b0c9-f73dcdb847ab", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "d0dce8e4-e41c-4095-b0c9-f73dcdb847ab", + "x-ms-routing-request-id": "WESTUS2:20210519T185213Z:d0dce8e4-e41c-4095-b0c9-f73dcdb847ab" }, "ResponseBody": [] }, @@ -4468,7 +4494,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d86e1b1fada1f2a2b087959333a1aee5", "x-ms-return-client-request-id": "true" }, @@ -4477,17 +4503,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:43 GMT", + "Date": "Wed, 19 May 2021 18:52:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a336c4fb-e1e7-4e7e-89c4-59102a22f955", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "a336c4fb-e1e7-4e7e-89c4-59102a22f955", - "x-ms-routing-request-id": "WESTUS2:20210507T011443Z:a336c4fb-e1e7-4e7e-89c4-59102a22f955" + "x-ms-correlation-request-id": "c583dd5b-bad9-466a-9a6b-3fb048a3ec00", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "c583dd5b-bad9-466a-9a6b-3fb048a3ec00", + "x-ms-routing-request-id": "WESTUS2:20210519T185214Z:c583dd5b-bad9-466a-9a6b-3fb048a3ec00" }, "ResponseBody": [] }, @@ -4496,7 +4522,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eea898a3ba75bd0f566e412630302106", "x-ms-return-client-request-id": "true" }, @@ -4505,17 +4531,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:44 GMT", + "Date": "Wed, 19 May 2021 18:52:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "67a84417-ff98-450e-a8a5-ea70b8707c5b", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "67a84417-ff98-450e-a8a5-ea70b8707c5b", - "x-ms-routing-request-id": "WESTUS2:20210507T011444Z:67a84417-ff98-450e-a8a5-ea70b8707c5b" + "x-ms-correlation-request-id": "b707ed1e-16cf-4b89-9f89-b21c0b146fc8", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "b707ed1e-16cf-4b89-9f89-b21c0b146fc8", + "x-ms-routing-request-id": "WESTUS2:20210519T185215Z:b707ed1e-16cf-4b89-9f89-b21c0b146fc8" }, "ResponseBody": [] }, @@ -4524,7 +4550,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "93b05d909039fb62d4ee90f73b8b4974", "x-ms-return-client-request-id": "true" }, @@ -4533,17 +4559,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:45 GMT", + "Date": "Wed, 19 May 2021 18:52:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f1001f4-0fea-4246-9475-4e9aba0c5a47", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "8f1001f4-0fea-4246-9475-4e9aba0c5a47", - "x-ms-routing-request-id": "WESTUS2:20210507T011445Z:8f1001f4-0fea-4246-9475-4e9aba0c5a47" + "x-ms-correlation-request-id": "0f1f2c32-72fe-4273-8c71-4750bb806859", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "0f1f2c32-72fe-4273-8c71-4750bb806859", + "x-ms-routing-request-id": "WESTUS2:20210519T185216Z:0f1f2c32-72fe-4273-8c71-4750bb806859" }, "ResponseBody": [] }, @@ -4552,7 +4578,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4bb20d6b2cf465510cb182336b7cc280", "x-ms-return-client-request-id": "true" }, @@ -4561,17 +4587,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:46 GMT", + "Date": "Wed, 19 May 2021 18:52:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1b9e642-5db9-40e2-a212-ae0907766b45", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "e1b9e642-5db9-40e2-a212-ae0907766b45", - "x-ms-routing-request-id": "WESTUS2:20210507T011446Z:e1b9e642-5db9-40e2-a212-ae0907766b45" + "x-ms-correlation-request-id": "00887efe-5518-436c-84ca-6dacabc80986", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "00887efe-5518-436c-84ca-6dacabc80986", + "x-ms-routing-request-id": "WESTUS2:20210519T185217Z:00887efe-5518-436c-84ca-6dacabc80986" }, "ResponseBody": [] }, @@ -4580,7 +4606,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d5028f651bf013ab36ad19862a1781ca", "x-ms-return-client-request-id": "true" }, @@ -4589,17 +4615,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:47 GMT", + "Date": "Wed, 19 May 2021 18:52:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2cf287a-ee0a-44ba-b727-51fcf37c7587", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "c2cf287a-ee0a-44ba-b727-51fcf37c7587", - "x-ms-routing-request-id": "WESTUS2:20210507T011447Z:c2cf287a-ee0a-44ba-b727-51fcf37c7587" + "x-ms-correlation-request-id": "d86a589d-c4f2-49ef-a7d6-b45403a3a63e", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "d86a589d-c4f2-49ef-a7d6-b45403a3a63e", + "x-ms-routing-request-id": "WESTUS2:20210519T185218Z:d86a589d-c4f2-49ef-a7d6-b45403a3a63e" }, "ResponseBody": [] }, @@ -4608,7 +4634,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22bacc25d67d63110c4b86870d2f9058", "x-ms-return-client-request-id": "true" }, @@ -4617,17 +4643,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:48 GMT", + "Date": "Wed, 19 May 2021 18:52:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c36e9a0-d7a1-4cdd-9b7a-8a773c5f0935", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "8c36e9a0-d7a1-4cdd-9b7a-8a773c5f0935", - "x-ms-routing-request-id": "WESTUS2:20210507T011448Z:8c36e9a0-d7a1-4cdd-9b7a-8a773c5f0935" + "x-ms-correlation-request-id": "af739fe7-a000-456c-9618-b7035a90d92c", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "af739fe7-a000-456c-9618-b7035a90d92c", + "x-ms-routing-request-id": "WESTUS2:20210519T185219Z:af739fe7-a000-456c-9618-b7035a90d92c" }, "ResponseBody": [] }, @@ -4636,7 +4662,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ac910f2c73885084619e144713ca3af4", "x-ms-return-client-request-id": "true" }, @@ -4645,17 +4671,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:49 GMT", + "Date": "Wed, 19 May 2021 18:52:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c5692d0-e18c-4453-b630-bbc08d66b09a", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "8c5692d0-e18c-4453-b630-bbc08d66b09a", - "x-ms-routing-request-id": "WESTUS2:20210507T011449Z:8c5692d0-e18c-4453-b630-bbc08d66b09a" + "x-ms-correlation-request-id": "00bf5c06-303c-4f98-9050-1d1002de1c33", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "00bf5c06-303c-4f98-9050-1d1002de1c33", + "x-ms-routing-request-id": "WESTUS2:20210519T185220Z:00bf5c06-303c-4f98-9050-1d1002de1c33" }, "ResponseBody": [] }, @@ -4664,7 +4690,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9e0db7309fc28f027d9ec8a494240606", "x-ms-return-client-request-id": "true" }, @@ -4673,17 +4699,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:50 GMT", + "Date": "Wed, 19 May 2021 18:52:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7366b4a1-1884-4c4c-8b0c-6f7cde645d39", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "7366b4a1-1884-4c4c-8b0c-6f7cde645d39", - "x-ms-routing-request-id": "WESTUS2:20210507T011450Z:7366b4a1-1884-4c4c-8b0c-6f7cde645d39" + "x-ms-correlation-request-id": "2599e42f-b93c-4b7c-a484-2ea54160b02a", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "2599e42f-b93c-4b7c-a484-2ea54160b02a", + "x-ms-routing-request-id": "WESTUS2:20210519T185221Z:2599e42f-b93c-4b7c-a484-2ea54160b02a" }, "ResponseBody": [] }, @@ -4692,7 +4718,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a5ac01dd586b1414869c1dfc1c95041", "x-ms-return-client-request-id": "true" }, @@ -4701,17 +4727,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:51 GMT", + "Date": "Wed, 19 May 2021 18:52:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4975165e-9220-4bdd-b211-35feb1bbd1ff", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "4975165e-9220-4bdd-b211-35feb1bbd1ff", - "x-ms-routing-request-id": "WESTUS2:20210507T011451Z:4975165e-9220-4bdd-b211-35feb1bbd1ff" + "x-ms-correlation-request-id": "59a5ff33-93c9-4a1f-9476-f1369ef79975", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "59a5ff33-93c9-4a1f-9476-f1369ef79975", + "x-ms-routing-request-id": "WESTUS2:20210519T185222Z:59a5ff33-93c9-4a1f-9476-f1369ef79975" }, "ResponseBody": [] }, @@ -4720,7 +4746,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "56579210f1218c960c022eeaaadfbb3d", "x-ms-return-client-request-id": "true" }, @@ -4729,17 +4755,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:52 GMT", + "Date": "Wed, 19 May 2021 18:52:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e50e126-3dc6-436d-ad92-dc825a52543a", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "4e50e126-3dc6-436d-ad92-dc825a52543a", - "x-ms-routing-request-id": "WESTUS2:20210507T011452Z:4e50e126-3dc6-436d-ad92-dc825a52543a" + "x-ms-correlation-request-id": "86bfa2a7-1979-4b78-b9e2-5c656e279524", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "86bfa2a7-1979-4b78-b9e2-5c656e279524", + "x-ms-routing-request-id": "WESTUS2:20210519T185223Z:86bfa2a7-1979-4b78-b9e2-5c656e279524" }, "ResponseBody": [] }, @@ -4748,7 +4774,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "522a0d981f6f5a6e755b5558de23ceb4", "x-ms-return-client-request-id": "true" }, @@ -4757,17 +4783,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:53 GMT", + "Date": "Wed, 19 May 2021 18:52:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "37b21e75-939c-4e4a-aa5a-91ae34456d56", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "37b21e75-939c-4e4a-aa5a-91ae34456d56", - "x-ms-routing-request-id": "WESTUS2:20210507T011453Z:37b21e75-939c-4e4a-aa5a-91ae34456d56" + "x-ms-correlation-request-id": "ec98fd7b-6287-48ae-aed8-4ed73f0ca404", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "ec98fd7b-6287-48ae-aed8-4ed73f0ca404", + "x-ms-routing-request-id": "WESTUS2:20210519T185224Z:ec98fd7b-6287-48ae-aed8-4ed73f0ca404" }, "ResponseBody": [] }, @@ -4776,7 +4802,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0294874eafcc2be52acd0e83a7570768", "x-ms-return-client-request-id": "true" }, @@ -4785,17 +4811,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:54 GMT", + "Date": "Wed, 19 May 2021 18:52:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5db6b09d-ec6b-43e9-8da5-89e4746f6374", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "5db6b09d-ec6b-43e9-8da5-89e4746f6374", - "x-ms-routing-request-id": "WESTUS2:20210507T011454Z:5db6b09d-ec6b-43e9-8da5-89e4746f6374" + "x-ms-correlation-request-id": "997a84fe-cbb0-4170-8c36-1b1fff91662e", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "997a84fe-cbb0-4170-8c36-1b1fff91662e", + "x-ms-routing-request-id": "WESTUS2:20210519T185225Z:997a84fe-cbb0-4170-8c36-1b1fff91662e" }, "ResponseBody": [] }, @@ -4804,7 +4830,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b34684aefd9ff1d223fce0c59b3eaee9", "x-ms-return-client-request-id": "true" }, @@ -4813,17 +4839,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:55 GMT", + "Date": "Wed, 19 May 2021 18:52:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e10da09a-faa8-42a3-bd18-0d2cc5d30923", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "e10da09a-faa8-42a3-bd18-0d2cc5d30923", - "x-ms-routing-request-id": "WESTUS2:20210507T011456Z:e10da09a-faa8-42a3-bd18-0d2cc5d30923" + "x-ms-correlation-request-id": "3a892701-1b2c-4dc6-968e-011d2419ddfd", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "3a892701-1b2c-4dc6-968e-011d2419ddfd", + "x-ms-routing-request-id": "WESTUS2:20210519T185226Z:3a892701-1b2c-4dc6-968e-011d2419ddfd" }, "ResponseBody": [] }, @@ -4832,7 +4858,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "239b7a34b84be97028fe27a111eab31d", "x-ms-return-client-request-id": "true" }, @@ -4841,17 +4867,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:56 GMT", + "Date": "Wed, 19 May 2021 18:52:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f483907-0e96-4edb-ae73-823e55d57779", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "4f483907-0e96-4edb-ae73-823e55d57779", - "x-ms-routing-request-id": "WESTUS2:20210507T011457Z:4f483907-0e96-4edb-ae73-823e55d57779" + "x-ms-correlation-request-id": "1a43db3c-22f8-40ef-9b7f-9ba54989e9ba", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "1a43db3c-22f8-40ef-9b7f-9ba54989e9ba", + "x-ms-routing-request-id": "WESTUS2:20210519T185227Z:1a43db3c-22f8-40ef-9b7f-9ba54989e9ba" }, "ResponseBody": [] }, @@ -4860,7 +4886,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "59a9ec541add5014b4a2decfce1f8fec", "x-ms-return-client-request-id": "true" }, @@ -4869,17 +4895,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:57 GMT", + "Date": "Wed, 19 May 2021 18:52:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "003d9c09-1b68-4652-91a9-a32295827e52", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "003d9c09-1b68-4652-91a9-a32295827e52", - "x-ms-routing-request-id": "WESTUS2:20210507T011458Z:003d9c09-1b68-4652-91a9-a32295827e52" + "x-ms-correlation-request-id": "622ae42a-07d1-4eda-aa83-3537115784c4", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "622ae42a-07d1-4eda-aa83-3537115784c4", + "x-ms-routing-request-id": "WESTUS2:20210519T185228Z:622ae42a-07d1-4eda-aa83-3537115784c4" }, "ResponseBody": [] }, @@ -4888,7 +4914,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2c4f251fe3bcf51d135d8aa1d630df39", "x-ms-return-client-request-id": "true" }, @@ -4897,17 +4923,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:58 GMT", + "Date": "Wed, 19 May 2021 18:52:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19704214-8739-45e8-84b7-c87adbcaecb5", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "19704214-8739-45e8-84b7-c87adbcaecb5", - "x-ms-routing-request-id": "WESTUS2:20210507T011459Z:19704214-8739-45e8-84b7-c87adbcaecb5" + "x-ms-correlation-request-id": "7a68cf20-0815-4689-abbf-804524bf015d", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "7a68cf20-0815-4689-abbf-804524bf015d", + "x-ms-routing-request-id": "WESTUS2:20210519T185229Z:7a68cf20-0815-4689-abbf-804524bf015d" }, "ResponseBody": [] }, @@ -4916,7 +4942,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af70c3495494190b654a6ea8d9a11a08", "x-ms-return-client-request-id": "true" }, @@ -4925,17 +4951,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:14:59 GMT", + "Date": "Wed, 19 May 2021 18:52:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cdc66ec9-8393-456f-9134-d689c739890f", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "cdc66ec9-8393-456f-9134-d689c739890f", - "x-ms-routing-request-id": "WESTUS2:20210507T011500Z:cdc66ec9-8393-456f-9134-d689c739890f" + "x-ms-correlation-request-id": "a6b22fd0-5ffb-4eb3-af6b-5ecfc7ea4a52", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "a6b22fd0-5ffb-4eb3-af6b-5ecfc7ea4a52", + "x-ms-routing-request-id": "WESTUS2:20210519T185230Z:a6b22fd0-5ffb-4eb3-af6b-5ecfc7ea4a52" }, "ResponseBody": [] }, @@ -4944,7 +4970,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec823b6e869a7161cfb3467f8f727a84", "x-ms-return-client-request-id": "true" }, @@ -4953,17 +4979,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:00 GMT", + "Date": "Wed, 19 May 2021 18:52:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39ef83ed-0ea0-4f42-9187-80c450f7d823", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "39ef83ed-0ea0-4f42-9187-80c450f7d823", - "x-ms-routing-request-id": "WESTUS2:20210507T011501Z:39ef83ed-0ea0-4f42-9187-80c450f7d823" + "x-ms-correlation-request-id": "e25a372d-e3e0-4829-892b-39ede25ed1ee", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "e25a372d-e3e0-4829-892b-39ede25ed1ee", + "x-ms-routing-request-id": "WESTUS2:20210519T185231Z:e25a372d-e3e0-4829-892b-39ede25ed1ee" }, "ResponseBody": [] }, @@ -4972,7 +4998,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0b86a5c3e0afcb571936c77174751c72", "x-ms-return-client-request-id": "true" }, @@ -4981,17 +5007,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:01 GMT", + "Date": "Wed, 19 May 2021 18:52:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef74aa15-ef5f-4592-883d-e592ab912b21", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "ef74aa15-ef5f-4592-883d-e592ab912b21", - "x-ms-routing-request-id": "WESTUS2:20210507T011502Z:ef74aa15-ef5f-4592-883d-e592ab912b21" + "x-ms-correlation-request-id": "cdc0d2dc-da8c-483f-a1ba-354e24b45df2", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "cdc0d2dc-da8c-483f-a1ba-354e24b45df2", + "x-ms-routing-request-id": "WESTUS2:20210519T185232Z:cdc0d2dc-da8c-483f-a1ba-354e24b45df2" }, "ResponseBody": [] }, @@ -5000,7 +5026,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9a328243f3aec29e61ffdfe10e8b89f3", "x-ms-return-client-request-id": "true" }, @@ -5009,17 +5035,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:02 GMT", + "Date": "Wed, 19 May 2021 18:52:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8ed543a-12e4-4384-af50-fe4c46b05d75", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "b8ed543a-12e4-4384-af50-fe4c46b05d75", - "x-ms-routing-request-id": "WESTUS2:20210507T011503Z:b8ed543a-12e4-4384-af50-fe4c46b05d75" + "x-ms-correlation-request-id": "3ad19ed8-06a9-42fa-a1b2-b1f47070ca45", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "3ad19ed8-06a9-42fa-a1b2-b1f47070ca45", + "x-ms-routing-request-id": "WESTUS2:20210519T185233Z:3ad19ed8-06a9-42fa-a1b2-b1f47070ca45" }, "ResponseBody": [] }, @@ -5028,7 +5054,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "34e5ead00e1a8e59e3b7d264bff0fc5a", "x-ms-return-client-request-id": "true" }, @@ -5037,17 +5063,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:03 GMT", + "Date": "Wed, 19 May 2021 18:52:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18121651-d63e-4286-aa13-d880b0107e4b", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "18121651-d63e-4286-aa13-d880b0107e4b", - "x-ms-routing-request-id": "WESTUS2:20210507T011504Z:18121651-d63e-4286-aa13-d880b0107e4b" + "x-ms-correlation-request-id": "80e1ca30-b097-4b86-a180-1b7902cefb5a", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "80e1ca30-b097-4b86-a180-1b7902cefb5a", + "x-ms-routing-request-id": "WESTUS2:20210519T185234Z:80e1ca30-b097-4b86-a180-1b7902cefb5a" }, "ResponseBody": [] }, @@ -5056,7 +5082,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d3cd397e040cfd607c3aaaf0076bd8d", "x-ms-return-client-request-id": "true" }, @@ -5065,17 +5091,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:05 GMT", + "Date": "Wed, 19 May 2021 18:52:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6399e2f6-70bd-4bae-a900-ca63a10ae817", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "6399e2f6-70bd-4bae-a900-ca63a10ae817", - "x-ms-routing-request-id": "WESTUS2:20210507T011505Z:6399e2f6-70bd-4bae-a900-ca63a10ae817" + "x-ms-correlation-request-id": "5f908862-14f7-4f29-b626-b271229e1eea", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "5f908862-14f7-4f29-b626-b271229e1eea", + "x-ms-routing-request-id": "WESTUS2:20210519T185235Z:5f908862-14f7-4f29-b626-b271229e1eea" }, "ResponseBody": [] }, @@ -5084,7 +5110,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8aa0d4ace88f355728a4b6f7203a0270", "x-ms-return-client-request-id": "true" }, @@ -5093,17 +5119,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:05 GMT", + "Date": "Wed, 19 May 2021 18:52:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28d618c9-e849-4f2f-aa27-173b831c6467", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "28d618c9-e849-4f2f-aa27-173b831c6467", - "x-ms-routing-request-id": "WESTUS2:20210507T011506Z:28d618c9-e849-4f2f-aa27-173b831c6467" + "x-ms-correlation-request-id": "b46543e8-c66b-407b-a7e8-a42276df1f41", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "b46543e8-c66b-407b-a7e8-a42276df1f41", + "x-ms-routing-request-id": "WESTUS2:20210519T185236Z:b46543e8-c66b-407b-a7e8-a42276df1f41" }, "ResponseBody": [] }, @@ -5112,7 +5138,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3a4985027c4ef0b214152c5763a98d6d", "x-ms-return-client-request-id": "true" }, @@ -5121,17 +5147,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:07 GMT", + "Date": "Wed, 19 May 2021 18:52:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ff85cc9-6eaf-4c57-ab90-7ad60e42d935", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "0ff85cc9-6eaf-4c57-ab90-7ad60e42d935", - "x-ms-routing-request-id": "WESTUS2:20210507T011507Z:0ff85cc9-6eaf-4c57-ab90-7ad60e42d935" + "x-ms-correlation-request-id": "8e991efb-6886-40ac-9702-a9a72988b1b2", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "8e991efb-6886-40ac-9702-a9a72988b1b2", + "x-ms-routing-request-id": "WESTUS2:20210519T185237Z:8e991efb-6886-40ac-9702-a9a72988b1b2" }, "ResponseBody": [] }, @@ -5140,7 +5166,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ebb745f9724fafca7b07e59b29dfafcc", "x-ms-return-client-request-id": "true" }, @@ -5149,17 +5175,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:08 GMT", + "Date": "Wed, 19 May 2021 18:52:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "597bb723-afe8-40ae-893b-ad4e6968b846", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "597bb723-afe8-40ae-893b-ad4e6968b846", - "x-ms-routing-request-id": "WESTUS2:20210507T011508Z:597bb723-afe8-40ae-893b-ad4e6968b846" + "x-ms-correlation-request-id": "b89f918a-0a06-414a-9cc5-3cfb52d2fd4e", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "b89f918a-0a06-414a-9cc5-3cfb52d2fd4e", + "x-ms-routing-request-id": "WESTUS2:20210519T185238Z:b89f918a-0a06-414a-9cc5-3cfb52d2fd4e" }, "ResponseBody": [] }, @@ -5168,7 +5194,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7bad39c0822d303e21b0767abb00d17e", "x-ms-return-client-request-id": "true" }, @@ -5177,17 +5203,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:09 GMT", + "Date": "Wed, 19 May 2021 18:52:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28f1cb77-6526-40b6-86b7-da1a4c11a903", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "28f1cb77-6526-40b6-86b7-da1a4c11a903", - "x-ms-routing-request-id": "WESTUS2:20210507T011509Z:28f1cb77-6526-40b6-86b7-da1a4c11a903" + "x-ms-correlation-request-id": "07684979-81da-42ec-ac45-5f3363b4b374", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "07684979-81da-42ec-ac45-5f3363b4b374", + "x-ms-routing-request-id": "WESTUS2:20210519T185239Z:07684979-81da-42ec-ac45-5f3363b4b374" }, "ResponseBody": [] }, @@ -5196,7 +5222,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dbfd491617828f21bb99bf479717c634", "x-ms-return-client-request-id": "true" }, @@ -5205,17 +5231,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:10 GMT", + "Date": "Wed, 19 May 2021 18:52:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "355b514b-73e9-4387-887d-4383955ea8fa", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "355b514b-73e9-4387-887d-4383955ea8fa", - "x-ms-routing-request-id": "WESTUS2:20210507T011510Z:355b514b-73e9-4387-887d-4383955ea8fa" + "x-ms-correlation-request-id": "b9ffaafd-4bdf-4490-9883-81b954c1944c", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "b9ffaafd-4bdf-4490-9883-81b954c1944c", + "x-ms-routing-request-id": "WESTUS2:20210519T185240Z:b9ffaafd-4bdf-4490-9883-81b954c1944c" }, "ResponseBody": [] }, @@ -5224,7 +5250,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2a96606612fc77400686ca9ffc50f47a", "x-ms-return-client-request-id": "true" }, @@ -5233,17 +5259,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:11 GMT", + "Date": "Wed, 19 May 2021 18:52:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a914030f-217a-406d-a0cd-a238346e69cb", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "a914030f-217a-406d-a0cd-a238346e69cb", - "x-ms-routing-request-id": "WESTUS2:20210507T011511Z:a914030f-217a-406d-a0cd-a238346e69cb" + "x-ms-correlation-request-id": "c1716fdb-3fec-4d10-af41-280fd2adbf78", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "c1716fdb-3fec-4d10-af41-280fd2adbf78", + "x-ms-routing-request-id": "WESTUS2:20210519T185241Z:c1716fdb-3fec-4d10-af41-280fd2adbf78" }, "ResponseBody": [] }, @@ -5252,7 +5278,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e0846636d4e1a949181dbf93c3f7990a", "x-ms-return-client-request-id": "true" }, @@ -5261,17 +5287,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:12 GMT", + "Date": "Wed, 19 May 2021 18:52:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "890f601a-6bbd-4e1a-8f58-e86761e952e5", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "890f601a-6bbd-4e1a-8f58-e86761e952e5", - "x-ms-routing-request-id": "WESTUS2:20210507T011512Z:890f601a-6bbd-4e1a-8f58-e86761e952e5" + "x-ms-correlation-request-id": "c4e52045-920a-45b2-b6e6-a90ea07cf226", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "c4e52045-920a-45b2-b6e6-a90ea07cf226", + "x-ms-routing-request-id": "WESTUS2:20210519T185242Z:c4e52045-920a-45b2-b6e6-a90ea07cf226" }, "ResponseBody": [] }, @@ -5280,7 +5306,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a1341e9a76a04820985d4fc4c82936a", "x-ms-return-client-request-id": "true" }, @@ -5289,17 +5315,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:13 GMT", + "Date": "Wed, 19 May 2021 18:52:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c7faf24-5520-4c1e-a318-2a5a9bed535e", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "7c7faf24-5520-4c1e-a318-2a5a9bed535e", - "x-ms-routing-request-id": "WESTUS2:20210507T011513Z:7c7faf24-5520-4c1e-a318-2a5a9bed535e" + "x-ms-correlation-request-id": "44ac4ff2-9501-49bc-9485-65492fcb56e1", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "44ac4ff2-9501-49bc-9485-65492fcb56e1", + "x-ms-routing-request-id": "WESTUS2:20210519T185243Z:44ac4ff2-9501-49bc-9485-65492fcb56e1" }, "ResponseBody": [] }, @@ -5308,7 +5334,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "301044a5e692925216ed11de52acb40e", "x-ms-return-client-request-id": "true" }, @@ -5317,17 +5343,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:14 GMT", + "Date": "Wed, 19 May 2021 18:52:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c09c5c45-50e8-4174-bd27-b787bddc4302", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "c09c5c45-50e8-4174-bd27-b787bddc4302", - "x-ms-routing-request-id": "WESTUS2:20210507T011514Z:c09c5c45-50e8-4174-bd27-b787bddc4302" + "x-ms-correlation-request-id": "5e9f26bc-5c0e-44cd-9ebc-b38404e4a3bc", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "5e9f26bc-5c0e-44cd-9ebc-b38404e4a3bc", + "x-ms-routing-request-id": "WESTUS2:20210519T185245Z:5e9f26bc-5c0e-44cd-9ebc-b38404e4a3bc" }, "ResponseBody": [] }, @@ -5336,7 +5362,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bbb5c0ed993c8f10e380d65cff4d5c96", "x-ms-return-client-request-id": "true" }, @@ -5345,17 +5371,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:15 GMT", + "Date": "Wed, 19 May 2021 18:52:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ff79f9d-5105-4340-97b3-287f8e5f9b4d", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "7ff79f9d-5105-4340-97b3-287f8e5f9b4d", - "x-ms-routing-request-id": "WESTUS2:20210507T011515Z:7ff79f9d-5105-4340-97b3-287f8e5f9b4d" + "x-ms-correlation-request-id": "d4bb7663-64f0-4e93-91ff-9d6376afe31a", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "d4bb7663-64f0-4e93-91ff-9d6376afe31a", + "x-ms-routing-request-id": "WESTUS2:20210519T185246Z:d4bb7663-64f0-4e93-91ff-9d6376afe31a" }, "ResponseBody": [] }, @@ -5364,7 +5390,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7fed558a68e60378ee81447d95a4b15c", "x-ms-return-client-request-id": "true" }, @@ -5373,17 +5399,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:16 GMT", + "Date": "Wed, 19 May 2021 18:52:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ccd35656-4724-4bdd-b771-81e1a0bde7de", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "ccd35656-4724-4bdd-b771-81e1a0bde7de", - "x-ms-routing-request-id": "WESTUS2:20210507T011516Z:ccd35656-4724-4bdd-b771-81e1a0bde7de" + "x-ms-correlation-request-id": "9afac18a-2f01-42b9-99d2-63542e31d89f", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "9afac18a-2f01-42b9-99d2-63542e31d89f", + "x-ms-routing-request-id": "WESTUS2:20210519T185247Z:9afac18a-2f01-42b9-99d2-63542e31d89f" }, "ResponseBody": [] }, @@ -5392,7 +5418,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8c0ec5d1d8cd0b2d34814d110ff692c8", "x-ms-return-client-request-id": "true" }, @@ -5401,17 +5427,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:17 GMT", + "Date": "Wed, 19 May 2021 18:52:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ca62139-f69f-4cd6-abc4-a6d8e2a3f459", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "7ca62139-f69f-4cd6-abc4-a6d8e2a3f459", - "x-ms-routing-request-id": "WESTUS2:20210507T011517Z:7ca62139-f69f-4cd6-abc4-a6d8e2a3f459" + "x-ms-correlation-request-id": "589d967c-46f1-4cc2-9585-ded11efb1576", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "589d967c-46f1-4cc2-9585-ded11efb1576", + "x-ms-routing-request-id": "WESTUS2:20210519T185248Z:589d967c-46f1-4cc2-9585-ded11efb1576" }, "ResponseBody": [] }, @@ -5420,7 +5446,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd547b9034bf842848b1ccbb5593f93f", "x-ms-return-client-request-id": "true" }, @@ -5429,17 +5455,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:18 GMT", + "Date": "Wed, 19 May 2021 18:52:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5c9cde9-176a-4841-88f2-39efdfd06fbb", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "a5c9cde9-176a-4841-88f2-39efdfd06fbb", - "x-ms-routing-request-id": "WESTUS2:20210507T011518Z:a5c9cde9-176a-4841-88f2-39efdfd06fbb" + "x-ms-correlation-request-id": "7481da4b-81df-4f2e-8463-7312ec76c202", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "7481da4b-81df-4f2e-8463-7312ec76c202", + "x-ms-routing-request-id": "WESTUS2:20210519T185249Z:7481da4b-81df-4f2e-8463-7312ec76c202" }, "ResponseBody": [] }, @@ -5448,7 +5474,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "398a7acfd03fb2c927e24b651b66f3f7", "x-ms-return-client-request-id": "true" }, @@ -5457,17 +5483,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:19 GMT", + "Date": "Wed, 19 May 2021 18:52:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53c000d0-89e1-49d7-958d-ba190b7acb56", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "53c000d0-89e1-49d7-958d-ba190b7acb56", - "x-ms-routing-request-id": "WESTUS2:20210507T011519Z:53c000d0-89e1-49d7-958d-ba190b7acb56" + "x-ms-correlation-request-id": "8cb90fab-43ae-495d-aeeb-37a93544eb84", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "8cb90fab-43ae-495d-aeeb-37a93544eb84", + "x-ms-routing-request-id": "WESTUS2:20210519T185250Z:8cb90fab-43ae-495d-aeeb-37a93544eb84" }, "ResponseBody": [] }, @@ -5476,7 +5502,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "19ec7beeb44f9c9d9d89441b0b72b6a1", "x-ms-return-client-request-id": "true" }, @@ -5485,17 +5511,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:20 GMT", + "Date": "Wed, 19 May 2021 18:52:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e08d1f10-2f55-4342-b53c-e14f9f5f504a", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "e08d1f10-2f55-4342-b53c-e14f9f5f504a", - "x-ms-routing-request-id": "WESTUS2:20210507T011520Z:e08d1f10-2f55-4342-b53c-e14f9f5f504a" + "x-ms-correlation-request-id": "7a112e79-72f8-4b3b-9b2f-7f5d111f80ef", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "7a112e79-72f8-4b3b-9b2f-7f5d111f80ef", + "x-ms-routing-request-id": "WESTUS2:20210519T185251Z:7a112e79-72f8-4b3b-9b2f-7f5d111f80ef" }, "ResponseBody": [] }, @@ -5504,7 +5530,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95420d87596cc089b2a1d5dce9c269e1", "x-ms-return-client-request-id": "true" }, @@ -5513,17 +5539,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:21 GMT", + "Date": "Wed, 19 May 2021 18:52:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9486a7c9-8032-4cb2-a4c9-bf1c93c90738", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "9486a7c9-8032-4cb2-a4c9-bf1c93c90738", - "x-ms-routing-request-id": "WESTUS2:20210507T011521Z:9486a7c9-8032-4cb2-a4c9-bf1c93c90738" + "x-ms-correlation-request-id": "c6fffa8c-5774-49bf-a00b-754c7044f399", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "c6fffa8c-5774-49bf-a00b-754c7044f399", + "x-ms-routing-request-id": "WESTUS2:20210519T185252Z:c6fffa8c-5774-49bf-a00b-754c7044f399" }, "ResponseBody": [] }, @@ -5532,7 +5558,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "daccd5bee0a61aefdded9bb58bada6b4", "x-ms-return-client-request-id": "true" }, @@ -5541,17 +5567,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:22 GMT", + "Date": "Wed, 19 May 2021 18:52:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c36f218e-96d7-4364-918a-d699ac5d38fc", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "c36f218e-96d7-4364-918a-d699ac5d38fc", - "x-ms-routing-request-id": "WESTUS2:20210507T011522Z:c36f218e-96d7-4364-918a-d699ac5d38fc" + "x-ms-correlation-request-id": "af989d9d-495a-44b9-939a-752afa1cd8f6", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "af989d9d-495a-44b9-939a-752afa1cd8f6", + "x-ms-routing-request-id": "WESTUS2:20210519T185253Z:af989d9d-495a-44b9-939a-752afa1cd8f6" }, "ResponseBody": [] }, @@ -5560,7 +5586,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0eddaa2c5e24958bf12c66addec0b2da", "x-ms-return-client-request-id": "true" }, @@ -5569,17 +5595,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:23 GMT", + "Date": "Wed, 19 May 2021 18:52:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "524ea098-8831-44b8-9613-c02f979226eb", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "524ea098-8831-44b8-9613-c02f979226eb", - "x-ms-routing-request-id": "WESTUS2:20210507T011523Z:524ea098-8831-44b8-9613-c02f979226eb" + "x-ms-correlation-request-id": "699033ed-73b1-4845-b4c6-5df863925d84", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "699033ed-73b1-4845-b4c6-5df863925d84", + "x-ms-routing-request-id": "WESTUS2:20210519T185254Z:699033ed-73b1-4845-b4c6-5df863925d84" }, "ResponseBody": [] }, @@ -5588,7 +5614,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "365c6220dba6a7fa1d27b87ebdd43404", "x-ms-return-client-request-id": "true" }, @@ -5597,17 +5623,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:24 GMT", + "Date": "Wed, 19 May 2021 18:52:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "388f9366-4484-4798-835e-95b8bcce472b", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "388f9366-4484-4798-835e-95b8bcce472b", - "x-ms-routing-request-id": "WESTUS2:20210507T011524Z:388f9366-4484-4798-835e-95b8bcce472b" + "x-ms-correlation-request-id": "3ff65fc2-60b1-49f9-8a58-f249b0ce8371", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "3ff65fc2-60b1-49f9-8a58-f249b0ce8371", + "x-ms-routing-request-id": "WESTUS2:20210519T185255Z:3ff65fc2-60b1-49f9-8a58-f249b0ce8371" }, "ResponseBody": [] }, @@ -5616,7 +5642,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3fb021fb5ae560bd4936e87979413c1c", "x-ms-return-client-request-id": "true" }, @@ -5625,17 +5651,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:25 GMT", + "Date": "Wed, 19 May 2021 18:52:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "695ac296-1a54-493c-9230-a3ef5453fca3", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "695ac296-1a54-493c-9230-a3ef5453fca3", - "x-ms-routing-request-id": "WESTUS2:20210507T011526Z:695ac296-1a54-493c-9230-a3ef5453fca3" + "x-ms-correlation-request-id": "f66f4846-9239-485f-a905-f218157e9f24", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "f66f4846-9239-485f-a905-f218157e9f24", + "x-ms-routing-request-id": "WESTUS2:20210519T185256Z:f66f4846-9239-485f-a905-f218157e9f24" }, "ResponseBody": [] }, @@ -5644,7 +5670,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2895c13a7051500daf36f0fca60dd81d", "x-ms-return-client-request-id": "true" }, @@ -5653,17 +5679,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:26 GMT", + "Date": "Wed, 19 May 2021 18:52:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fdd81942-12bc-4e54-a980-633eec221282", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "fdd81942-12bc-4e54-a980-633eec221282", - "x-ms-routing-request-id": "WESTUS2:20210507T011527Z:fdd81942-12bc-4e54-a980-633eec221282" + "x-ms-correlation-request-id": "2dd4c999-6dc1-4611-876b-fef677be3e77", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "2dd4c999-6dc1-4611-876b-fef677be3e77", + "x-ms-routing-request-id": "WESTUS2:20210519T185257Z:2dd4c999-6dc1-4611-876b-fef677be3e77" }, "ResponseBody": [] }, @@ -5672,7 +5698,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bdb262f7730fc5f5a5fcec70f2802edb", "x-ms-return-client-request-id": "true" }, @@ -5681,17 +5707,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:27 GMT", + "Date": "Wed, 19 May 2021 18:52:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4984b7cf-952e-46f5-a392-b5e1d86ae1f1", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "4984b7cf-952e-46f5-a392-b5e1d86ae1f1", - "x-ms-routing-request-id": "WESTUS2:20210507T011528Z:4984b7cf-952e-46f5-a392-b5e1d86ae1f1" + "x-ms-correlation-request-id": "c09edefc-9a5b-4eb6-972b-2361dbb40c00", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "c09edefc-9a5b-4eb6-972b-2361dbb40c00", + "x-ms-routing-request-id": "WESTUS2:20210519T185258Z:c09edefc-9a5b-4eb6-972b-2361dbb40c00" }, "ResponseBody": [] }, @@ -5700,7 +5726,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fc439beb0b3f8ab3136090ae6ac0ba3b", "x-ms-return-client-request-id": "true" }, @@ -5709,17 +5735,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:28 GMT", + "Date": "Wed, 19 May 2021 18:52:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3865aaec-f36d-4895-93a4-299a19b777d0", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "3865aaec-f36d-4895-93a4-299a19b777d0", - "x-ms-routing-request-id": "WESTUS2:20210507T011529Z:3865aaec-f36d-4895-93a4-299a19b777d0" + "x-ms-correlation-request-id": "88fcb95c-fd54-41d6-9895-4b87c2f261e1", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "88fcb95c-fd54-41d6-9895-4b87c2f261e1", + "x-ms-routing-request-id": "WESTUS2:20210519T185259Z:88fcb95c-fd54-41d6-9895-4b87c2f261e1" }, "ResponseBody": [] }, @@ -5728,7 +5754,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1782cb5d7f8ec70dcbcf8354839d5d2e", "x-ms-return-client-request-id": "true" }, @@ -5737,17 +5763,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:29 GMT", + "Date": "Wed, 19 May 2021 18:52:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ebcbd4e-7704-4781-a3ce-a26bc8639d09", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "6ebcbd4e-7704-4781-a3ce-a26bc8639d09", - "x-ms-routing-request-id": "WESTUS2:20210507T011530Z:6ebcbd4e-7704-4781-a3ce-a26bc8639d09" + "x-ms-correlation-request-id": "20e611ed-1e13-4491-a982-6fb9c0347e6e", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "20e611ed-1e13-4491-a982-6fb9c0347e6e", + "x-ms-routing-request-id": "WESTUS2:20210519T185300Z:20e611ed-1e13-4491-a982-6fb9c0347e6e" }, "ResponseBody": [] }, @@ -5756,7 +5782,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0a111408dcc9ebdeae28a9aee2465be5", "x-ms-return-client-request-id": "true" }, @@ -5765,17 +5791,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:30 GMT", + "Date": "Wed, 19 May 2021 18:53:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d566a133-3381-4f20-b855-2fb058b31a69", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "d566a133-3381-4f20-b855-2fb058b31a69", - "x-ms-routing-request-id": "WESTUS2:20210507T011531Z:d566a133-3381-4f20-b855-2fb058b31a69" + "x-ms-correlation-request-id": "b58e00bc-542d-4321-b313-f6c271212696", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "b58e00bc-542d-4321-b313-f6c271212696", + "x-ms-routing-request-id": "WESTUS2:20210519T185301Z:b58e00bc-542d-4321-b313-f6c271212696" }, "ResponseBody": [] }, @@ -5784,7 +5810,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2713b04216fe6c4d8e7b306f885f0675", "x-ms-return-client-request-id": "true" }, @@ -5793,17 +5819,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:31 GMT", + "Date": "Wed, 19 May 2021 18:53:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f601512-3976-43af-ac56-b3c8342c928a", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "8f601512-3976-43af-ac56-b3c8342c928a", - "x-ms-routing-request-id": "WESTUS2:20210507T011532Z:8f601512-3976-43af-ac56-b3c8342c928a" + "x-ms-correlation-request-id": "e4ad9a2c-eee7-474b-8ea0-bb8b615f8ec8", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "e4ad9a2c-eee7-474b-8ea0-bb8b615f8ec8", + "x-ms-routing-request-id": "WESTUS2:20210519T185302Z:e4ad9a2c-eee7-474b-8ea0-bb8b615f8ec8" }, "ResponseBody": [] }, @@ -5812,7 +5838,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "55a66203afaf8071ed966866d55ee584", "x-ms-return-client-request-id": "true" }, @@ -5821,17 +5847,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:32 GMT", + "Date": "Wed, 19 May 2021 18:53:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78467916-e456-46b2-9180-3f4b02072557", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "78467916-e456-46b2-9180-3f4b02072557", - "x-ms-routing-request-id": "WESTUS2:20210507T011533Z:78467916-e456-46b2-9180-3f4b02072557" + "x-ms-correlation-request-id": "ca131f5a-ecbc-4df0-83a2-254de1af58d6", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "ca131f5a-ecbc-4df0-83a2-254de1af58d6", + "x-ms-routing-request-id": "WESTUS2:20210519T185303Z:ca131f5a-ecbc-4df0-83a2-254de1af58d6" }, "ResponseBody": [] }, @@ -5840,7 +5866,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2119e74358af130c7a47c4eac6e634e", "x-ms-return-client-request-id": "true" }, @@ -5849,17 +5875,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:33 GMT", + "Date": "Wed, 19 May 2021 18:53:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0370527d-c72a-4801-a87f-f12be79529f4", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "0370527d-c72a-4801-a87f-f12be79529f4", - "x-ms-routing-request-id": "WESTUS2:20210507T011534Z:0370527d-c72a-4801-a87f-f12be79529f4" + "x-ms-correlation-request-id": "a8b9380d-fed9-408d-9780-66b051c864ee", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "a8b9380d-fed9-408d-9780-66b051c864ee", + "x-ms-routing-request-id": "WESTUS2:20210519T185304Z:a8b9380d-fed9-408d-9780-66b051c864ee" }, "ResponseBody": [] }, @@ -5868,7 +5894,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80ab332105a092353e923a67aee6972f", "x-ms-return-client-request-id": "true" }, @@ -5877,17 +5903,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:34 GMT", + "Date": "Wed, 19 May 2021 18:53:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d03d8b7-d072-4057-9edc-355d006aeab7", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "8d03d8b7-d072-4057-9edc-355d006aeab7", - "x-ms-routing-request-id": "WESTUS2:20210507T011535Z:8d03d8b7-d072-4057-9edc-355d006aeab7" + "x-ms-correlation-request-id": "e26c139c-9c57-4eb4-89fb-b91a9325d678", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "e26c139c-9c57-4eb4-89fb-b91a9325d678", + "x-ms-routing-request-id": "WESTUS2:20210519T185305Z:e26c139c-9c57-4eb4-89fb-b91a9325d678" }, "ResponseBody": [] }, @@ -5896,7 +5922,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eafbab96344dcdeb31b58e0a3323d47e", "x-ms-return-client-request-id": "true" }, @@ -5905,17 +5931,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:35 GMT", + "Date": "Wed, 19 May 2021 18:53:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b616d54-f10b-4ca8-869e-ba5d714dc95d", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "9b616d54-f10b-4ca8-869e-ba5d714dc95d", - "x-ms-routing-request-id": "WESTUS2:20210507T011536Z:9b616d54-f10b-4ca8-869e-ba5d714dc95d" + "x-ms-correlation-request-id": "02a5d1ee-91f7-41fb-8ed7-106e1c38ebfe", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "02a5d1ee-91f7-41fb-8ed7-106e1c38ebfe", + "x-ms-routing-request-id": "WESTUS2:20210519T185306Z:02a5d1ee-91f7-41fb-8ed7-106e1c38ebfe" }, "ResponseBody": [] }, @@ -5924,7 +5950,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a145193365b26fe4687e93f8fbc843e1", "x-ms-return-client-request-id": "true" }, @@ -5933,17 +5959,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:36 GMT", + "Date": "Wed, 19 May 2021 18:53:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08fe348c-44e9-4429-ae74-743c87b93765", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "08fe348c-44e9-4429-ae74-743c87b93765", - "x-ms-routing-request-id": "WESTUS2:20210507T011537Z:08fe348c-44e9-4429-ae74-743c87b93765" + "x-ms-correlation-request-id": "6fe4ed97-2897-439a-8ab6-bdeb0de47298", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "6fe4ed97-2897-439a-8ab6-bdeb0de47298", + "x-ms-routing-request-id": "WESTUS2:20210519T185307Z:6fe4ed97-2897-439a-8ab6-bdeb0de47298" }, "ResponseBody": [] }, @@ -5952,7 +5978,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "00b84c0d7973ed0148dd4eeb762b5f1b", "x-ms-return-client-request-id": "true" }, @@ -5961,17 +5987,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:37 GMT", + "Date": "Wed, 19 May 2021 18:53:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d416ee29-e754-4274-af2d-53d305cf0403", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "d416ee29-e754-4274-af2d-53d305cf0403", - "x-ms-routing-request-id": "WESTUS2:20210507T011538Z:d416ee29-e754-4274-af2d-53d305cf0403" + "x-ms-correlation-request-id": "069d8468-3abb-441e-b7e1-cbd30a3697a1", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "069d8468-3abb-441e-b7e1-cbd30a3697a1", + "x-ms-routing-request-id": "WESTUS2:20210519T185308Z:069d8468-3abb-441e-b7e1-cbd30a3697a1" }, "ResponseBody": [] }, @@ -5980,7 +6006,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9434bbbdf5a0317cc68c81cea0f3d269", "x-ms-return-client-request-id": "true" }, @@ -5989,17 +6015,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:38 GMT", + "Date": "Wed, 19 May 2021 18:53:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c220c078-06e0-4fd0-ba7e-20da39c7dacb", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "c220c078-06e0-4fd0-ba7e-20da39c7dacb", - "x-ms-routing-request-id": "WESTUS2:20210507T011539Z:c220c078-06e0-4fd0-ba7e-20da39c7dacb" + "x-ms-correlation-request-id": "ec7aec7e-d6d9-4b3a-b85b-7ce4831658d3", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "ec7aec7e-d6d9-4b3a-b85b-7ce4831658d3", + "x-ms-routing-request-id": "WESTUS2:20210519T185309Z:ec7aec7e-d6d9-4b3a-b85b-7ce4831658d3" }, "ResponseBody": [] }, @@ -6008,7 +6034,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6fdad71d46bba0b185858d416f9f83d", "x-ms-return-client-request-id": "true" }, @@ -6017,17 +6043,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:39 GMT", + "Date": "Wed, 19 May 2021 18:53:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f07e4d4-421e-4f8b-8a12-b0740b7d85f7", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "9f07e4d4-421e-4f8b-8a12-b0740b7d85f7", - "x-ms-routing-request-id": "WESTUS2:20210507T011540Z:9f07e4d4-421e-4f8b-8a12-b0740b7d85f7" + "x-ms-correlation-request-id": "8dd46d4d-1429-4c41-92c9-b9d73bb1155b", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "8dd46d4d-1429-4c41-92c9-b9d73bb1155b", + "x-ms-routing-request-id": "WESTUS2:20210519T185310Z:8dd46d4d-1429-4c41-92c9-b9d73bb1155b" }, "ResponseBody": [] }, @@ -6036,7 +6062,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3f3a781fae941740cf8739e6f7324c55", "x-ms-return-client-request-id": "true" }, @@ -6045,17 +6071,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:40 GMT", + "Date": "Wed, 19 May 2021 18:53:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb277fb4-3a0d-40fb-a945-7b31f28e5683", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "cb277fb4-3a0d-40fb-a945-7b31f28e5683", - "x-ms-routing-request-id": "WESTUS2:20210507T011541Z:cb277fb4-3a0d-40fb-a945-7b31f28e5683" + "x-ms-correlation-request-id": "1c0332d9-f930-439c-a3dd-1166df074fe8", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "1c0332d9-f930-439c-a3dd-1166df074fe8", + "x-ms-routing-request-id": "WESTUS2:20210519T185311Z:1c0332d9-f930-439c-a3dd-1166df074fe8" }, "ResponseBody": [] }, @@ -6064,7 +6090,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c979e50b792de9b0b0797b489da71acd", "x-ms-return-client-request-id": "true" }, @@ -6073,17 +6099,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:41 GMT", + "Date": "Wed, 19 May 2021 18:53:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8899796-72b4-49ba-8845-7b510d631efd", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "e8899796-72b4-49ba-8845-7b510d631efd", - "x-ms-routing-request-id": "WESTUS2:20210507T011542Z:e8899796-72b4-49ba-8845-7b510d631efd" + "x-ms-correlation-request-id": "debccb7d-edb6-4155-9913-7d0ae832b866", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "debccb7d-edb6-4155-9913-7d0ae832b866", + "x-ms-routing-request-id": "WESTUS2:20210519T185312Z:debccb7d-edb6-4155-9913-7d0ae832b866" }, "ResponseBody": [] }, @@ -6092,7 +6118,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "28af449493b8c2d46de516e39a24c2e6", "x-ms-return-client-request-id": "true" }, @@ -6101,17 +6127,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:42 GMT", + "Date": "Wed, 19 May 2021 18:53:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8868a79c-8969-4ebe-9d65-8c33d8a09f79", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "8868a79c-8969-4ebe-9d65-8c33d8a09f79", - "x-ms-routing-request-id": "WESTUS2:20210507T011543Z:8868a79c-8969-4ebe-9d65-8c33d8a09f79" + "x-ms-correlation-request-id": "28012ce3-4cc7-45a6-8b3f-7804a155b4f6", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "28012ce3-4cc7-45a6-8b3f-7804a155b4f6", + "x-ms-routing-request-id": "WESTUS2:20210519T185313Z:28012ce3-4cc7-45a6-8b3f-7804a155b4f6" }, "ResponseBody": [] }, @@ -6120,7 +6146,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31c9030b2e80a50fc7518e1a32f77a28", "x-ms-return-client-request-id": "true" }, @@ -6129,17 +6155,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:43 GMT", + "Date": "Wed, 19 May 2021 18:53:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d995d1a7-3267-4677-b709-705445426fa5", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "d995d1a7-3267-4677-b709-705445426fa5", - "x-ms-routing-request-id": "WESTUS2:20210507T011544Z:d995d1a7-3267-4677-b709-705445426fa5" + "x-ms-correlation-request-id": "72c39980-a9a5-4120-b12c-49214683d42c", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "72c39980-a9a5-4120-b12c-49214683d42c", + "x-ms-routing-request-id": "WESTUS2:20210519T185314Z:72c39980-a9a5-4120-b12c-49214683d42c" }, "ResponseBody": [] }, @@ -6148,7 +6174,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3526c6c2482789c10b65c4762cc4e8b", "x-ms-return-client-request-id": "true" }, @@ -6157,17 +6183,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:44 GMT", + "Date": "Wed, 19 May 2021 18:53:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9610a9a-4495-48d6-acf8-c32e1a4689f7", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "a9610a9a-4495-48d6-acf8-c32e1a4689f7", - "x-ms-routing-request-id": "WESTUS2:20210507T011545Z:a9610a9a-4495-48d6-acf8-c32e1a4689f7" + "x-ms-correlation-request-id": "7711561b-025c-43ac-9bcb-50d882e37508", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "7711561b-025c-43ac-9bcb-50d882e37508", + "x-ms-routing-request-id": "WESTUS2:20210519T185315Z:7711561b-025c-43ac-9bcb-50d882e37508" }, "ResponseBody": [] }, @@ -6176,7 +6202,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "993d95b6e9de654d3409606704b99075", "x-ms-return-client-request-id": "true" }, @@ -6185,17 +6211,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:45 GMT", + "Date": "Wed, 19 May 2021 18:53:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc72be11-5333-4d22-a8ff-d5b2c7dd5245", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "dc72be11-5333-4d22-a8ff-d5b2c7dd5245", - "x-ms-routing-request-id": "WESTUS2:20210507T011546Z:dc72be11-5333-4d22-a8ff-d5b2c7dd5245" + "x-ms-correlation-request-id": "2b0c67b9-bc56-42ad-91e2-bf6c7dac4b10", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "2b0c67b9-bc56-42ad-91e2-bf6c7dac4b10", + "x-ms-routing-request-id": "WESTUS2:20210519T185316Z:2b0c67b9-bc56-42ad-91e2-bf6c7dac4b10" }, "ResponseBody": [] }, @@ -6204,7 +6230,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2e76ee6b0fd2e663675021c9d2c743fa", "x-ms-return-client-request-id": "true" }, @@ -6213,17 +6239,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:46 GMT", + "Date": "Wed, 19 May 2021 18:53:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "324106d4-5b4d-4737-80be-4734f5ba947d", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "324106d4-5b4d-4737-80be-4734f5ba947d", - "x-ms-routing-request-id": "WESTUS2:20210507T011547Z:324106d4-5b4d-4737-80be-4734f5ba947d" + "x-ms-correlation-request-id": "dfbf536d-a821-42b6-964a-02c53dac3658", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "dfbf536d-a821-42b6-964a-02c53dac3658", + "x-ms-routing-request-id": "WESTUS2:20210519T185317Z:dfbf536d-a821-42b6-964a-02c53dac3658" }, "ResponseBody": [] }, @@ -6232,7 +6258,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d640302e1ba83491eed7e78c4357456", "x-ms-return-client-request-id": "true" }, @@ -6241,17 +6267,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:47 GMT", + "Date": "Wed, 19 May 2021 18:53:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f916d4d-33e5-4688-8712-cd4baaf7584a", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-request-id": "5f916d4d-33e5-4688-8712-cd4baaf7584a", - "x-ms-routing-request-id": "WESTUS2:20210507T011548Z:5f916d4d-33e5-4688-8712-cd4baaf7584a" + "x-ms-correlation-request-id": "d8ffa7df-a774-40a2-86d1-50740ebc563f", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "d8ffa7df-a774-40a2-86d1-50740ebc563f", + "x-ms-routing-request-id": "WESTUS2:20210519T185319Z:d8ffa7df-a774-40a2-86d1-50740ebc563f" }, "ResponseBody": [] }, @@ -6260,7 +6286,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "73dce6262056a6b93256318dc883926c", "x-ms-return-client-request-id": "true" }, @@ -6269,17 +6295,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:49 GMT", + "Date": "Wed, 19 May 2021 18:53:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d977e268-c97e-4006-a5b5-a03f1f638ba2", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-request-id": "d977e268-c97e-4006-a5b5-a03f1f638ba2", - "x-ms-routing-request-id": "WESTUS2:20210507T011549Z:d977e268-c97e-4006-a5b5-a03f1f638ba2" + "x-ms-correlation-request-id": "6dd81838-6dee-4d3d-82f3-77a7cf24f999", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "6dd81838-6dee-4d3d-82f3-77a7cf24f999", + "x-ms-routing-request-id": "WESTUS2:20210519T185320Z:6dd81838-6dee-4d3d-82f3-77a7cf24f999" }, "ResponseBody": [] }, @@ -6288,7 +6314,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "016465c6f2558abba5f20fe491ea2231", "x-ms-return-client-request-id": "true" }, @@ -6297,17 +6323,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:50 GMT", + "Date": "Wed, 19 May 2021 18:53:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f8b320a-2e0d-40b4-adcd-4333b9730107", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "6f8b320a-2e0d-40b4-adcd-4333b9730107", - "x-ms-routing-request-id": "WESTUS2:20210507T011550Z:6f8b320a-2e0d-40b4-adcd-4333b9730107" + "x-ms-correlation-request-id": "8c911d1d-1824-4299-8a6e-92a5a4179213", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "8c911d1d-1824-4299-8a6e-92a5a4179213", + "x-ms-routing-request-id": "WESTUS2:20210519T185321Z:8c911d1d-1824-4299-8a6e-92a5a4179213" }, "ResponseBody": [] }, @@ -6316,7 +6342,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eba3cadccfebe2a44abd6a63afbbbb9b", "x-ms-return-client-request-id": "true" }, @@ -6325,17 +6351,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:51 GMT", + "Date": "Wed, 19 May 2021 18:53:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4608ebf8-6863-4842-8b6a-f916d6af845a", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-request-id": "4608ebf8-6863-4842-8b6a-f916d6af845a", - "x-ms-routing-request-id": "WESTUS2:20210507T011551Z:4608ebf8-6863-4842-8b6a-f916d6af845a" + "x-ms-correlation-request-id": "568caadc-c029-4f1b-879e-bfcbaeebccfa", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "568caadc-c029-4f1b-879e-bfcbaeebccfa", + "x-ms-routing-request-id": "WESTUS2:20210519T185322Z:568caadc-c029-4f1b-879e-bfcbaeebccfa" }, "ResponseBody": [] }, @@ -6344,7 +6370,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5eb2115b72d133002b52ce6311d41547", "x-ms-return-client-request-id": "true" }, @@ -6353,17 +6379,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:52 GMT", + "Date": "Wed, 19 May 2021 18:53:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d537460-a8ce-4b1b-a4af-2a3444e8875e", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-request-id": "3d537460-a8ce-4b1b-a4af-2a3444e8875e", - "x-ms-routing-request-id": "WESTUS2:20210507T011552Z:3d537460-a8ce-4b1b-a4af-2a3444e8875e" + "x-ms-correlation-request-id": "7b8c04bf-89c8-48d4-9f2c-0d28df2a06f7", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "7b8c04bf-89c8-48d4-9f2c-0d28df2a06f7", + "x-ms-routing-request-id": "WESTUS2:20210519T185323Z:7b8c04bf-89c8-48d4-9f2c-0d28df2a06f7" }, "ResponseBody": [] }, @@ -6372,7 +6398,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fdb0ff34a6dff681c081b6988758dae9", "x-ms-return-client-request-id": "true" }, @@ -6381,17 +6407,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:53 GMT", + "Date": "Wed, 19 May 2021 18:53:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6749144-bb03-4a4a-beee-537df14aae1a", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-request-id": "e6749144-bb03-4a4a-beee-537df14aae1a", - "x-ms-routing-request-id": "WESTUS2:20210507T011553Z:e6749144-bb03-4a4a-beee-537df14aae1a" + "x-ms-correlation-request-id": "4e26cfe7-d8d0-4fe9-a166-0910ce4aaafc", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "4e26cfe7-d8d0-4fe9-a166-0910ce4aaafc", + "x-ms-routing-request-id": "WESTUS2:20210519T185324Z:4e26cfe7-d8d0-4fe9-a166-0910ce4aaafc" }, "ResponseBody": [] }, @@ -6400,7 +6426,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f897337c3386960c970c0990141d176", "x-ms-return-client-request-id": "true" }, @@ -6409,17 +6435,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:54 GMT", + "Date": "Wed, 19 May 2021 18:53:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5cf05578-0fcb-4526-9527-47e55fae8a93", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "5cf05578-0fcb-4526-9527-47e55fae8a93", - "x-ms-routing-request-id": "WESTUS2:20210507T011554Z:5cf05578-0fcb-4526-9527-47e55fae8a93" + "x-ms-correlation-request-id": "7106d967-d16f-4262-8ba9-cac5f7eb8df8", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "7106d967-d16f-4262-8ba9-cac5f7eb8df8", + "x-ms-routing-request-id": "WESTUS2:20210519T185325Z:7106d967-d16f-4262-8ba9-cac5f7eb8df8" }, "ResponseBody": [] }, @@ -6428,7 +6454,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af2f23a7bd0bb4bb90bb9e4fbc68abd3", "x-ms-return-client-request-id": "true" }, @@ -6437,17 +6463,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:55 GMT", + "Date": "Wed, 19 May 2021 18:53:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4fd4737-546c-41f0-aced-596fa33eb2d6", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-request-id": "f4fd4737-546c-41f0-aced-596fa33eb2d6", - "x-ms-routing-request-id": "WESTUS2:20210507T011555Z:f4fd4737-546c-41f0-aced-596fa33eb2d6" + "x-ms-correlation-request-id": "9960f324-e94b-447e-83ec-9c8b3f108a37", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "9960f324-e94b-447e-83ec-9c8b3f108a37", + "x-ms-routing-request-id": "WESTUS2:20210519T185326Z:9960f324-e94b-447e-83ec-9c8b3f108a37" }, "ResponseBody": [] }, @@ -6456,7 +6482,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d2be577964a700f9f46346fe6e8f57e", "x-ms-return-client-request-id": "true" }, @@ -6465,17 +6491,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:56 GMT", + "Date": "Wed, 19 May 2021 18:53:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1a6d055-cdb8-4d03-9bbf-cbc7d137ef24", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-request-id": "d1a6d055-cdb8-4d03-9bbf-cbc7d137ef24", - "x-ms-routing-request-id": "WESTUS2:20210507T011557Z:d1a6d055-cdb8-4d03-9bbf-cbc7d137ef24" + "x-ms-correlation-request-id": "60e43b87-7a8a-4c93-88bd-3fb35faf3b09", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "60e43b87-7a8a-4c93-88bd-3fb35faf3b09", + "x-ms-routing-request-id": "WESTUS2:20210519T185327Z:60e43b87-7a8a-4c93-88bd-3fb35faf3b09" }, "ResponseBody": [] }, @@ -6484,7 +6510,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "64f140b02b2879deb7d5ee7c2511ad60", "x-ms-return-client-request-id": "true" }, @@ -6493,17 +6519,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:57 GMT", + "Date": "Wed, 19 May 2021 18:53:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b59938d3-5868-4611-8003-7e816b080d6c", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "b59938d3-5868-4611-8003-7e816b080d6c", - "x-ms-routing-request-id": "WESTUS2:20210507T011558Z:b59938d3-5868-4611-8003-7e816b080d6c" + "x-ms-correlation-request-id": "7c99eaab-d3fa-4b1b-b3cb-2fba40eeef59", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "7c99eaab-d3fa-4b1b-b3cb-2fba40eeef59", + "x-ms-routing-request-id": "WESTUS2:20210519T185328Z:7c99eaab-d3fa-4b1b-b3cb-2fba40eeef59" }, "ResponseBody": [] }, @@ -6512,7 +6538,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1b22edc43415102b13be10c4894ccea8", "x-ms-return-client-request-id": "true" }, @@ -6521,17 +6547,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:58 GMT", + "Date": "Wed, 19 May 2021 18:53:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41148c87-c745-4c7a-a951-d7a3b9628748", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-request-id": "41148c87-c745-4c7a-a951-d7a3b9628748", - "x-ms-routing-request-id": "WESTUS2:20210507T011559Z:41148c87-c745-4c7a-a951-d7a3b9628748" + "x-ms-correlation-request-id": "f50938db-635c-4f20-a9cd-91db030e83d4", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "f50938db-635c-4f20-a9cd-91db030e83d4", + "x-ms-routing-request-id": "WESTUS2:20210519T185329Z:f50938db-635c-4f20-a9cd-91db030e83d4" }, "ResponseBody": [] }, @@ -6540,7 +6566,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7b9e1fc646774baa06b2e574a8924b8d", "x-ms-return-client-request-id": "true" }, @@ -6549,17 +6575,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:15:59 GMT", + "Date": "Wed, 19 May 2021 18:53:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b5e9358-f13d-4d10-89a8-12b35b495994", - "x-ms-ratelimit-remaining-subscription-reads": "11863", - "x-ms-request-id": "2b5e9358-f13d-4d10-89a8-12b35b495994", - "x-ms-routing-request-id": "WESTUS2:20210507T011600Z:2b5e9358-f13d-4d10-89a8-12b35b495994" + "x-ms-correlation-request-id": "d5bc95fe-b645-4a59-8c2d-8ebbe8bf52d7", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "d5bc95fe-b645-4a59-8c2d-8ebbe8bf52d7", + "x-ms-routing-request-id": "WESTUS2:20210519T185330Z:d5bc95fe-b645-4a59-8c2d-8ebbe8bf52d7" }, "ResponseBody": [] }, @@ -6568,7 +6594,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8abd399d9c67c6914e0506a1b1aef6b", "x-ms-return-client-request-id": "true" }, @@ -6577,17 +6603,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:01 GMT", + "Date": "Wed, 19 May 2021 18:53:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52c1ed13-7da5-48e1-87ea-f9295ea69df1", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-request-id": "52c1ed13-7da5-48e1-87ea-f9295ea69df1", - "x-ms-routing-request-id": "WESTUS2:20210507T011601Z:52c1ed13-7da5-48e1-87ea-f9295ea69df1" + "x-ms-correlation-request-id": "e99a6ec2-b05a-41f6-a64f-4cdffe16e041", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "e99a6ec2-b05a-41f6-a64f-4cdffe16e041", + "x-ms-routing-request-id": "WESTUS2:20210519T185331Z:e99a6ec2-b05a-41f6-a64f-4cdffe16e041" }, "ResponseBody": [] }, @@ -6596,7 +6622,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "05b6460732727de942d615634eb76881", "x-ms-return-client-request-id": "true" }, @@ -6605,17 +6631,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:02 GMT", + "Date": "Wed, 19 May 2021 18:53:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "910b54f4-7676-4b9a-a50c-cd471bf56587", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-request-id": "910b54f4-7676-4b9a-a50c-cd471bf56587", - "x-ms-routing-request-id": "WESTUS2:20210507T011602Z:910b54f4-7676-4b9a-a50c-cd471bf56587" + "x-ms-correlation-request-id": "efec94c1-9ba9-451f-a189-bafca2c12fe8", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "efec94c1-9ba9-451f-a189-bafca2c12fe8", + "x-ms-routing-request-id": "WESTUS2:20210519T185332Z:efec94c1-9ba9-451f-a189-bafca2c12fe8" }, "ResponseBody": [] }, @@ -6624,7 +6650,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b62b8272d5a1ece2b6226697f64030ec", "x-ms-return-client-request-id": "true" }, @@ -6633,17 +6659,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:03 GMT", + "Date": "Wed, 19 May 2021 18:53:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1575699-2622-4f9a-b94b-b966978082ef", - "x-ms-ratelimit-remaining-subscription-reads": "11857", - "x-ms-request-id": "e1575699-2622-4f9a-b94b-b966978082ef", - "x-ms-routing-request-id": "WESTUS2:20210507T011603Z:e1575699-2622-4f9a-b94b-b966978082ef" + "x-ms-correlation-request-id": "b8d53f61-2b95-44c2-9f30-72f8d5ee06fe", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "b8d53f61-2b95-44c2-9f30-72f8d5ee06fe", + "x-ms-routing-request-id": "WESTUS2:20210519T185333Z:b8d53f61-2b95-44c2-9f30-72f8d5ee06fe" }, "ResponseBody": [] }, @@ -6652,7 +6678,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "616d7ac246dc661bea2db6efc4052e5d", "x-ms-return-client-request-id": "true" }, @@ -6661,17 +6687,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:04 GMT", + "Date": "Wed, 19 May 2021 18:53:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88cc0ece-5a66-4ae0-bc66-a3b87f64fd89", - "x-ms-ratelimit-remaining-subscription-reads": "11855", - "x-ms-request-id": "88cc0ece-5a66-4ae0-bc66-a3b87f64fd89", - "x-ms-routing-request-id": "WESTUS2:20210507T011604Z:88cc0ece-5a66-4ae0-bc66-a3b87f64fd89" + "x-ms-correlation-request-id": "d2b833c4-f7ad-493b-9791-8a352e25a9bd", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "d2b833c4-f7ad-493b-9791-8a352e25a9bd", + "x-ms-routing-request-id": "WESTUS2:20210519T185334Z:d2b833c4-f7ad-493b-9791-8a352e25a9bd" }, "ResponseBody": [] }, @@ -6680,7 +6706,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "98f7cf7739ef32ca64c94f50cb518702", "x-ms-return-client-request-id": "true" }, @@ -6689,17 +6715,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:05 GMT", + "Date": "Wed, 19 May 2021 18:53:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d5671e2-ee69-4d2b-892a-552eb3a98c7c", - "x-ms-ratelimit-remaining-subscription-reads": "11853", - "x-ms-request-id": "7d5671e2-ee69-4d2b-892a-552eb3a98c7c", - "x-ms-routing-request-id": "WESTUS2:20210507T011605Z:7d5671e2-ee69-4d2b-892a-552eb3a98c7c" + "x-ms-correlation-request-id": "cd2e40f6-aafa-46f0-bdcd-6a3e64fa0eec", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "cd2e40f6-aafa-46f0-bdcd-6a3e64fa0eec", + "x-ms-routing-request-id": "WESTUS2:20210519T185335Z:cd2e40f6-aafa-46f0-bdcd-6a3e64fa0eec" }, "ResponseBody": [] }, @@ -6708,7 +6734,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d4a028a506492ca467c4cc731ff227b0", "x-ms-return-client-request-id": "true" }, @@ -6717,17 +6743,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:06 GMT", + "Date": "Wed, 19 May 2021 18:53:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "473a8d69-1853-48c5-bf47-fb6e431c6d42", - "x-ms-ratelimit-remaining-subscription-reads": "11851", - "x-ms-request-id": "473a8d69-1853-48c5-bf47-fb6e431c6d42", - "x-ms-routing-request-id": "WESTUS2:20210507T011606Z:473a8d69-1853-48c5-bf47-fb6e431c6d42" + "x-ms-correlation-request-id": "52452592-d0ed-4e23-b647-2314979c6821", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "52452592-d0ed-4e23-b647-2314979c6821", + "x-ms-routing-request-id": "WESTUS2:20210519T185336Z:52452592-d0ed-4e23-b647-2314979c6821" }, "ResponseBody": [] }, @@ -6736,7 +6762,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "261f09f3984889fdaf3bfd12f6ca9b98", "x-ms-return-client-request-id": "true" }, @@ -6745,17 +6771,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:07 GMT", + "Date": "Wed, 19 May 2021 18:53:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2facab96-17f7-4090-827e-7f9583fae9c5", - "x-ms-ratelimit-remaining-subscription-reads": "11849", - "x-ms-request-id": "2facab96-17f7-4090-827e-7f9583fae9c5", - "x-ms-routing-request-id": "WESTUS2:20210507T011607Z:2facab96-17f7-4090-827e-7f9583fae9c5" + "x-ms-correlation-request-id": "f5b9a0f1-e223-4643-9d56-e936298df42e", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "f5b9a0f1-e223-4643-9d56-e936298df42e", + "x-ms-routing-request-id": "WESTUS2:20210519T185337Z:f5b9a0f1-e223-4643-9d56-e936298df42e" }, "ResponseBody": [] }, @@ -6764,7 +6790,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c4ab3a6596471132acb312a6d561371", "x-ms-return-client-request-id": "true" }, @@ -6773,17 +6799,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:08 GMT", + "Date": "Wed, 19 May 2021 18:53:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb23805c-1c20-41cd-9533-e9c04b77df06", - "x-ms-ratelimit-remaining-subscription-reads": "11847", - "x-ms-request-id": "bb23805c-1c20-41cd-9533-e9c04b77df06", - "x-ms-routing-request-id": "WESTUS2:20210507T011608Z:bb23805c-1c20-41cd-9533-e9c04b77df06" + "x-ms-correlation-request-id": "704419f9-96b0-4bf2-9a5b-43404b993d87", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "704419f9-96b0-4bf2-9a5b-43404b993d87", + "x-ms-routing-request-id": "WESTUS2:20210519T185338Z:704419f9-96b0-4bf2-9a5b-43404b993d87" }, "ResponseBody": [] }, @@ -6792,7 +6818,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c25c9ea260320cba2a17240e0992359d", "x-ms-return-client-request-id": "true" }, @@ -6801,17 +6827,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:09 GMT", + "Date": "Wed, 19 May 2021 18:53:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b64cb3e-436e-41d5-b693-a94dc1e41f6c", - "x-ms-ratelimit-remaining-subscription-reads": "11845", - "x-ms-request-id": "4b64cb3e-436e-41d5-b693-a94dc1e41f6c", - "x-ms-routing-request-id": "WESTUS2:20210507T011609Z:4b64cb3e-436e-41d5-b693-a94dc1e41f6c" + "x-ms-correlation-request-id": "82522d78-bfd2-4a16-82fd-ea8a5ff86665", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "82522d78-bfd2-4a16-82fd-ea8a5ff86665", + "x-ms-routing-request-id": "WESTUS2:20210519T185339Z:82522d78-bfd2-4a16-82fd-ea8a5ff86665" }, "ResponseBody": [] }, @@ -6820,7 +6846,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6bcd33288ba79a4bf5adfb7d66d21b59", "x-ms-return-client-request-id": "true" }, @@ -6829,17 +6855,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:10 GMT", + "Date": "Wed, 19 May 2021 18:53:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab0f5edb-76ee-42bc-895e-e74f4c0a17fd", - "x-ms-ratelimit-remaining-subscription-reads": "11843", - "x-ms-request-id": "ab0f5edb-76ee-42bc-895e-e74f4c0a17fd", - "x-ms-routing-request-id": "WESTUS2:20210507T011610Z:ab0f5edb-76ee-42bc-895e-e74f4c0a17fd" + "x-ms-correlation-request-id": "ad9c3c99-20ad-418e-bf43-57e4f4d0e04b", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "ad9c3c99-20ad-418e-bf43-57e4f4d0e04b", + "x-ms-routing-request-id": "WESTUS2:20210519T185340Z:ad9c3c99-20ad-418e-bf43-57e4f4d0e04b" }, "ResponseBody": [] }, @@ -6848,7 +6874,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "58708c28d86d4565f93d714c35046898", "x-ms-return-client-request-id": "true" }, @@ -6857,17 +6883,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:11 GMT", + "Date": "Wed, 19 May 2021 18:53:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa9fa125-85f2-4082-8c84-4a1ae2fa979c", - "x-ms-ratelimit-remaining-subscription-reads": "11841", - "x-ms-request-id": "aa9fa125-85f2-4082-8c84-4a1ae2fa979c", - "x-ms-routing-request-id": "WESTUS2:20210507T011611Z:aa9fa125-85f2-4082-8c84-4a1ae2fa979c" + "x-ms-correlation-request-id": "ca4bb3b1-d075-40c1-9478-fb15dd2e5923", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "ca4bb3b1-d075-40c1-9478-fb15dd2e5923", + "x-ms-routing-request-id": "WESTUS2:20210519T185341Z:ca4bb3b1-d075-40c1-9478-fb15dd2e5923" }, "ResponseBody": [] }, @@ -6876,7 +6902,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "39029495a78816c952c2cc84653da657", "x-ms-return-client-request-id": "true" }, @@ -6885,17 +6911,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:12 GMT", + "Date": "Wed, 19 May 2021 18:53:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "718b4b56-c6a8-4aae-81a0-1e9837da411c", - "x-ms-ratelimit-remaining-subscription-reads": "11839", - "x-ms-request-id": "718b4b56-c6a8-4aae-81a0-1e9837da411c", - "x-ms-routing-request-id": "WESTUS2:20210507T011612Z:718b4b56-c6a8-4aae-81a0-1e9837da411c" + "x-ms-correlation-request-id": "39099c07-becb-453b-8a4f-d5bcabcde051", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "39099c07-becb-453b-8a4f-d5bcabcde051", + "x-ms-routing-request-id": "WESTUS2:20210519T185342Z:39099c07-becb-453b-8a4f-d5bcabcde051" }, "ResponseBody": [] }, @@ -6904,7 +6930,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7ce6cafcdd224f2fce88726919ff65f0", "x-ms-return-client-request-id": "true" }, @@ -6913,17 +6939,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:13 GMT", + "Date": "Wed, 19 May 2021 18:53:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a192ea3-c6ee-4fbd-9546-b844fb9f2af4", - "x-ms-ratelimit-remaining-subscription-reads": "11837", - "x-ms-request-id": "2a192ea3-c6ee-4fbd-9546-b844fb9f2af4", - "x-ms-routing-request-id": "WESTUS2:20210507T011613Z:2a192ea3-c6ee-4fbd-9546-b844fb9f2af4" + "x-ms-correlation-request-id": "7ff226b1-ab6b-470d-a9ad-fc0446410d57", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "7ff226b1-ab6b-470d-a9ad-fc0446410d57", + "x-ms-routing-request-id": "WESTUS2:20210519T185343Z:7ff226b1-ab6b-470d-a9ad-fc0446410d57" }, "ResponseBody": [] }, @@ -6932,7 +6958,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2e76345e1d080d1c25905aa0ce0e0bb", "x-ms-return-client-request-id": "true" }, @@ -6941,17 +6967,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:14 GMT", + "Date": "Wed, 19 May 2021 18:53:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a90c21ff-3fb3-49d7-bf29-f17496226af2", - "x-ms-ratelimit-remaining-subscription-reads": "11835", - "x-ms-request-id": "a90c21ff-3fb3-49d7-bf29-f17496226af2", - "x-ms-routing-request-id": "WESTUS2:20210507T011614Z:a90c21ff-3fb3-49d7-bf29-f17496226af2" + "x-ms-correlation-request-id": "eef9d712-30bb-42ef-bc70-61ba9f78df4b", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "eef9d712-30bb-42ef-bc70-61ba9f78df4b", + "x-ms-routing-request-id": "WESTUS2:20210519T185344Z:eef9d712-30bb-42ef-bc70-61ba9f78df4b" }, "ResponseBody": [] }, @@ -6960,7 +6986,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a501a97eb1eb87664b26b003560fd53", "x-ms-return-client-request-id": "true" }, @@ -6969,17 +6995,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:15 GMT", + "Date": "Wed, 19 May 2021 18:53:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b2012a8-bc47-49d5-a354-b40e64194b4c", - "x-ms-ratelimit-remaining-subscription-reads": "11833", - "x-ms-request-id": "1b2012a8-bc47-49d5-a354-b40e64194b4c", - "x-ms-routing-request-id": "WESTUS2:20210507T011615Z:1b2012a8-bc47-49d5-a354-b40e64194b4c" + "x-ms-correlation-request-id": "4e2d7759-549b-4d77-83a8-d1daad6c0f24", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "4e2d7759-549b-4d77-83a8-d1daad6c0f24", + "x-ms-routing-request-id": "WESTUS2:20210519T185345Z:4e2d7759-549b-4d77-83a8-d1daad6c0f24" }, "ResponseBody": [] }, @@ -6988,7 +7014,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "013fdb5dd3551a86f966bac8d78543ed", "x-ms-return-client-request-id": "true" }, @@ -6997,17 +7023,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:16 GMT", + "Date": "Wed, 19 May 2021 18:53:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28cdeb25-6e83-426c-b4a1-511b918ce20d", - "x-ms-ratelimit-remaining-subscription-reads": "11831", - "x-ms-request-id": "28cdeb25-6e83-426c-b4a1-511b918ce20d", - "x-ms-routing-request-id": "WESTUS2:20210507T011616Z:28cdeb25-6e83-426c-b4a1-511b918ce20d" + "x-ms-correlation-request-id": "2c1940be-d276-48cb-8443-851f4b535ef1", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "2c1940be-d276-48cb-8443-851f4b535ef1", + "x-ms-routing-request-id": "WESTUS2:20210519T185346Z:2c1940be-d276-48cb-8443-851f4b535ef1" }, "ResponseBody": [] }, @@ -7016,7 +7042,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ffd2b6a7faae5ad2ec2f6e1e76d04b62", "x-ms-return-client-request-id": "true" }, @@ -7025,17 +7051,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:17 GMT", + "Date": "Wed, 19 May 2021 18:53:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82a268d8-6a3e-44b5-a0a7-d2c2f3d7039b", - "x-ms-ratelimit-remaining-subscription-reads": "11829", - "x-ms-request-id": "82a268d8-6a3e-44b5-a0a7-d2c2f3d7039b", - "x-ms-routing-request-id": "WESTUS2:20210507T011617Z:82a268d8-6a3e-44b5-a0a7-d2c2f3d7039b" + "x-ms-correlation-request-id": "79a3497a-6f2a-4c69-8afa-f3e4ac4d0301", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "79a3497a-6f2a-4c69-8afa-f3e4ac4d0301", + "x-ms-routing-request-id": "WESTUS2:20210519T185347Z:79a3497a-6f2a-4c69-8afa-f3e4ac4d0301" }, "ResponseBody": [] }, @@ -7044,7 +7070,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "304db25cdea1c466933670b830aee1df", "x-ms-return-client-request-id": "true" }, @@ -7053,17 +7079,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:18 GMT", + "Date": "Wed, 19 May 2021 18:53:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e68b2ec-ee48-464a-b828-3656d97fe902", - "x-ms-ratelimit-remaining-subscription-reads": "11827", - "x-ms-request-id": "4e68b2ec-ee48-464a-b828-3656d97fe902", - "x-ms-routing-request-id": "WESTUS2:20210507T011618Z:4e68b2ec-ee48-464a-b828-3656d97fe902" + "x-ms-correlation-request-id": "e10997c0-72e9-4151-9ab8-384d43963ac0", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "e10997c0-72e9-4151-9ab8-384d43963ac0", + "x-ms-routing-request-id": "WESTUS2:20210519T185348Z:e10997c0-72e9-4151-9ab8-384d43963ac0" }, "ResponseBody": [] }, @@ -7072,7 +7098,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7e587d6efd8d62a409e415266468a429", "x-ms-return-client-request-id": "true" }, @@ -7081,17 +7107,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:19 GMT", + "Date": "Wed, 19 May 2021 18:53:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18a064b5-4fa5-406d-a063-8ec41b8d556c", - "x-ms-ratelimit-remaining-subscription-reads": "11825", - "x-ms-request-id": "18a064b5-4fa5-406d-a063-8ec41b8d556c", - "x-ms-routing-request-id": "WESTUS2:20210507T011619Z:18a064b5-4fa5-406d-a063-8ec41b8d556c" + "x-ms-correlation-request-id": "705358d8-8c60-472a-a7c3-3f8754681325", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "705358d8-8c60-472a-a7c3-3f8754681325", + "x-ms-routing-request-id": "WESTUS2:20210519T185349Z:705358d8-8c60-472a-a7c3-3f8754681325" }, "ResponseBody": [] }, @@ -7100,7 +7126,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "246b581a1337c94b500d6b788a1a293e", "x-ms-return-client-request-id": "true" }, @@ -7109,17 +7135,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:20 GMT", + "Date": "Wed, 19 May 2021 18:53:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e811dd4-22a6-432d-884f-15dce1937b48", - "x-ms-ratelimit-remaining-subscription-reads": "11823", - "x-ms-request-id": "0e811dd4-22a6-432d-884f-15dce1937b48", - "x-ms-routing-request-id": "WESTUS2:20210507T011620Z:0e811dd4-22a6-432d-884f-15dce1937b48" + "x-ms-correlation-request-id": "cddd39ce-23dc-4c28-8cc3-b984ad1aa428", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "cddd39ce-23dc-4c28-8cc3-b984ad1aa428", + "x-ms-routing-request-id": "WESTUS2:20210519T185351Z:cddd39ce-23dc-4c28-8cc3-b984ad1aa428" }, "ResponseBody": [] }, @@ -7128,7 +7154,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8b08f4ecc785fd40deb27bdc93f5f2b", "x-ms-return-client-request-id": "true" }, @@ -7137,17 +7163,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:21 GMT", + "Date": "Wed, 19 May 2021 18:53:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89ebe685-53eb-4d41-9a69-f0c328103b2e", - "x-ms-ratelimit-remaining-subscription-reads": "11821", - "x-ms-request-id": "89ebe685-53eb-4d41-9a69-f0c328103b2e", - "x-ms-routing-request-id": "WESTUS2:20210507T011621Z:89ebe685-53eb-4d41-9a69-f0c328103b2e" + "x-ms-correlation-request-id": "1ac61339-8965-4c5f-a4bc-ee049bf01249", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "1ac61339-8965-4c5f-a4bc-ee049bf01249", + "x-ms-routing-request-id": "WESTUS2:20210519T185352Z:1ac61339-8965-4c5f-a4bc-ee049bf01249" }, "ResponseBody": [] }, @@ -7156,7 +7182,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d79d4792bc425aa7328e2e7f912cd7ee", "x-ms-return-client-request-id": "true" }, @@ -7165,17 +7191,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:22 GMT", + "Date": "Wed, 19 May 2021 18:53:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2be488bd-9ac4-4de8-8d0b-ff77531cfdb8", - "x-ms-ratelimit-remaining-subscription-reads": "11819", - "x-ms-request-id": "2be488bd-9ac4-4de8-8d0b-ff77531cfdb8", - "x-ms-routing-request-id": "WESTUS2:20210507T011622Z:2be488bd-9ac4-4de8-8d0b-ff77531cfdb8" + "x-ms-correlation-request-id": "8b1c34c5-79ff-4415-8598-fb29f620949b", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "8b1c34c5-79ff-4415-8598-fb29f620949b", + "x-ms-routing-request-id": "WESTUS2:20210519T185353Z:8b1c34c5-79ff-4415-8598-fb29f620949b" }, "ResponseBody": [] }, @@ -7184,7 +7210,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d5d8d6baabb74db0840c174cec8e0010", "x-ms-return-client-request-id": "true" }, @@ -7193,17 +7219,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:23 GMT", + "Date": "Wed, 19 May 2021 18:53:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b6ed470-84b3-4723-9002-b242b110683b", - "x-ms-ratelimit-remaining-subscription-reads": "11817", - "x-ms-request-id": "2b6ed470-84b3-4723-9002-b242b110683b", - "x-ms-routing-request-id": "WESTUS2:20210507T011623Z:2b6ed470-84b3-4723-9002-b242b110683b" + "x-ms-correlation-request-id": "eff4d376-3c72-4065-ad55-c16e010defe7", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "eff4d376-3c72-4065-ad55-c16e010defe7", + "x-ms-routing-request-id": "WESTUS2:20210519T185354Z:eff4d376-3c72-4065-ad55-c16e010defe7" }, "ResponseBody": [] }, @@ -7212,7 +7238,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "43e640ae527d91fbe755c6e99e54cde1", "x-ms-return-client-request-id": "true" }, @@ -7221,17 +7247,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:24 GMT", + "Date": "Wed, 19 May 2021 18:53:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68acb889-ae1b-4d09-9f18-4a7ff60cdd7c", - "x-ms-ratelimit-remaining-subscription-reads": "11815", - "x-ms-request-id": "68acb889-ae1b-4d09-9f18-4a7ff60cdd7c", - "x-ms-routing-request-id": "WESTUS2:20210507T011624Z:68acb889-ae1b-4d09-9f18-4a7ff60cdd7c" + "x-ms-correlation-request-id": "09bd1ed8-ff74-41dc-aafc-d77b2711cc7f", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "09bd1ed8-ff74-41dc-aafc-d77b2711cc7f", + "x-ms-routing-request-id": "WESTUS2:20210519T185355Z:09bd1ed8-ff74-41dc-aafc-d77b2711cc7f" }, "ResponseBody": [] }, @@ -7240,7 +7266,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f20238138967e673964f5336a45b6ea3", "x-ms-return-client-request-id": "true" }, @@ -7249,17 +7275,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:25 GMT", + "Date": "Wed, 19 May 2021 18:53:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82e70dec-5dbe-4fa8-ae58-a3447b36c6e6", - "x-ms-ratelimit-remaining-subscription-reads": "11813", - "x-ms-request-id": "82e70dec-5dbe-4fa8-ae58-a3447b36c6e6", - "x-ms-routing-request-id": "WESTUS2:20210507T011626Z:82e70dec-5dbe-4fa8-ae58-a3447b36c6e6" + "x-ms-correlation-request-id": "d4c1238e-2d21-4c32-b8b9-82cb7d93c220", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "d4c1238e-2d21-4c32-b8b9-82cb7d93c220", + "x-ms-routing-request-id": "WESTUS2:20210519T185356Z:d4c1238e-2d21-4c32-b8b9-82cb7d93c220" }, "ResponseBody": [] }, @@ -7268,7 +7294,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "51d11d8e94456871db46ee61e5c7ae30", "x-ms-return-client-request-id": "true" }, @@ -7277,17 +7303,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:26 GMT", + "Date": "Wed, 19 May 2021 18:53:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27e233c2-c742-4ce3-9095-7f0f9d9ef4e2", - "x-ms-ratelimit-remaining-subscription-reads": "11811", - "x-ms-request-id": "27e233c2-c742-4ce3-9095-7f0f9d9ef4e2", - "x-ms-routing-request-id": "WESTUS2:20210507T011627Z:27e233c2-c742-4ce3-9095-7f0f9d9ef4e2" + "x-ms-correlation-request-id": "ed533611-50b3-4bb5-838a-553455f77ba1", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "ed533611-50b3-4bb5-838a-553455f77ba1", + "x-ms-routing-request-id": "WESTUS2:20210519T185357Z:ed533611-50b3-4bb5-838a-553455f77ba1" }, "ResponseBody": [] }, @@ -7296,7 +7322,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b339363f0d8c24a8cc00ac2dfec5ec8c", "x-ms-return-client-request-id": "true" }, @@ -7305,17 +7331,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:27 GMT", + "Date": "Wed, 19 May 2021 18:53:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36551007-1cfc-4f97-be47-5d2231bcc8b5", - "x-ms-ratelimit-remaining-subscription-reads": "11809", - "x-ms-request-id": "36551007-1cfc-4f97-be47-5d2231bcc8b5", - "x-ms-routing-request-id": "WESTUS2:20210507T011628Z:36551007-1cfc-4f97-be47-5d2231bcc8b5" + "x-ms-correlation-request-id": "e7d184cc-382e-45c7-878d-0c3b5e39f772", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "e7d184cc-382e-45c7-878d-0c3b5e39f772", + "x-ms-routing-request-id": "WESTUS2:20210519T185358Z:e7d184cc-382e-45c7-878d-0c3b5e39f772" }, "ResponseBody": [] }, @@ -7324,7 +7350,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "815a22e77b827e9bc79917219b1201cf", "x-ms-return-client-request-id": "true" }, @@ -7333,17 +7359,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:28 GMT", + "Date": "Wed, 19 May 2021 18:53:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13de3bf8-026b-4a29-abfe-d6d21835513c", - "x-ms-ratelimit-remaining-subscription-reads": "11807", - "x-ms-request-id": "13de3bf8-026b-4a29-abfe-d6d21835513c", - "x-ms-routing-request-id": "WESTUS2:20210507T011629Z:13de3bf8-026b-4a29-abfe-d6d21835513c" + "x-ms-correlation-request-id": "8075b23e-4375-4afb-9c77-4571773da587", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "8075b23e-4375-4afb-9c77-4571773da587", + "x-ms-routing-request-id": "WESTUS2:20210519T185359Z:8075b23e-4375-4afb-9c77-4571773da587" }, "ResponseBody": [] }, @@ -7352,7 +7378,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ef622a0ba22811774ad8545e8436915", "x-ms-return-client-request-id": "true" }, @@ -7361,17 +7387,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:29 GMT", + "Date": "Wed, 19 May 2021 18:53:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0769d2d-5f67-4b72-8ecc-9163b7c1d72a", - "x-ms-ratelimit-remaining-subscription-reads": "11805", - "x-ms-request-id": "c0769d2d-5f67-4b72-8ecc-9163b7c1d72a", - "x-ms-routing-request-id": "WESTUS2:20210507T011630Z:c0769d2d-5f67-4b72-8ecc-9163b7c1d72a" + "x-ms-correlation-request-id": "23967fc8-4545-462e-aa93-21155aed489f", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "23967fc8-4545-462e-aa93-21155aed489f", + "x-ms-routing-request-id": "WESTUS2:20210519T185400Z:23967fc8-4545-462e-aa93-21155aed489f" }, "ResponseBody": [] }, @@ -7380,7 +7406,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c27a62592d6cc3ad9bbaecf2f68788ba", "x-ms-return-client-request-id": "true" }, @@ -7389,17 +7415,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:30 GMT", + "Date": "Wed, 19 May 2021 18:54:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f816171-a536-447a-9cc2-3b5e6bcb46e6", - "x-ms-ratelimit-remaining-subscription-reads": "11803", - "x-ms-request-id": "1f816171-a536-447a-9cc2-3b5e6bcb46e6", - "x-ms-routing-request-id": "WESTUS2:20210507T011631Z:1f816171-a536-447a-9cc2-3b5e6bcb46e6" + "x-ms-correlation-request-id": "85464246-f26d-4072-98fa-7d84c904dd34", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "85464246-f26d-4072-98fa-7d84c904dd34", + "x-ms-routing-request-id": "WESTUS2:20210519T185401Z:85464246-f26d-4072-98fa-7d84c904dd34" }, "ResponseBody": [] }, @@ -7408,7 +7434,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "db8dddfe7ece2c690bd90cd5f6559683", "x-ms-return-client-request-id": "true" }, @@ -7417,17 +7443,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:31 GMT", + "Date": "Wed, 19 May 2021 18:54:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "572f816e-cf18-40a9-ae6e-77ee3612eb23", - "x-ms-ratelimit-remaining-subscription-reads": "11801", - "x-ms-request-id": "572f816e-cf18-40a9-ae6e-77ee3612eb23", - "x-ms-routing-request-id": "WESTUS2:20210507T011632Z:572f816e-cf18-40a9-ae6e-77ee3612eb23" + "x-ms-correlation-request-id": "f93c6bbf-c51d-4191-8e6e-7e38b52c4da6", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "f93c6bbf-c51d-4191-8e6e-7e38b52c4da6", + "x-ms-routing-request-id": "WESTUS2:20210519T185402Z:f93c6bbf-c51d-4191-8e6e-7e38b52c4da6" }, "ResponseBody": [] }, @@ -7436,7 +7462,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "39c7012f3e9872627533d367cd248bed", "x-ms-return-client-request-id": "true" }, @@ -7445,17 +7471,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:32 GMT", + "Date": "Wed, 19 May 2021 18:54:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cdfeb189-ffa3-4cbf-bc66-8dc54c42a3ff", - "x-ms-ratelimit-remaining-subscription-reads": "11799", - "x-ms-request-id": "cdfeb189-ffa3-4cbf-bc66-8dc54c42a3ff", - "x-ms-routing-request-id": "WESTUS2:20210507T011633Z:cdfeb189-ffa3-4cbf-bc66-8dc54c42a3ff" + "x-ms-correlation-request-id": "b724fc74-18b4-49b4-a5ac-395a988edafa", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "b724fc74-18b4-49b4-a5ac-395a988edafa", + "x-ms-routing-request-id": "WESTUS2:20210519T185403Z:b724fc74-18b4-49b4-a5ac-395a988edafa" }, "ResponseBody": [] }, @@ -7464,7 +7490,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0b47cb248eb6db47f84db69321d7cd46", "x-ms-return-client-request-id": "true" }, @@ -7473,17 +7499,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:33 GMT", + "Date": "Wed, 19 May 2021 18:54:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd1820ea-ee49-4a21-80e4-81cde2495586", - "x-ms-ratelimit-remaining-subscription-reads": "11797", - "x-ms-request-id": "cd1820ea-ee49-4a21-80e4-81cde2495586", - "x-ms-routing-request-id": "WESTUS2:20210507T011634Z:cd1820ea-ee49-4a21-80e4-81cde2495586" + "x-ms-correlation-request-id": "811603e0-8ea6-4d65-95e6-0e1d40c1be48", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "811603e0-8ea6-4d65-95e6-0e1d40c1be48", + "x-ms-routing-request-id": "WESTUS2:20210519T185404Z:811603e0-8ea6-4d65-95e6-0e1d40c1be48" }, "ResponseBody": [] }, @@ -7492,7 +7518,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f4c268244fc0c0217a1a669baa025ee6", "x-ms-return-client-request-id": "true" }, @@ -7501,17 +7527,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:34 GMT", + "Date": "Wed, 19 May 2021 18:54:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f55ff99-4c42-468d-981a-07b43d32e9ab", - "x-ms-ratelimit-remaining-subscription-reads": "11795", - "x-ms-request-id": "2f55ff99-4c42-468d-981a-07b43d32e9ab", - "x-ms-routing-request-id": "WESTUS2:20210507T011635Z:2f55ff99-4c42-468d-981a-07b43d32e9ab" + "x-ms-correlation-request-id": "795f3bc5-403e-45ff-a62d-1052f71d625e", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "795f3bc5-403e-45ff-a62d-1052f71d625e", + "x-ms-routing-request-id": "WESTUS2:20210519T185405Z:795f3bc5-403e-45ff-a62d-1052f71d625e" }, "ResponseBody": [] }, @@ -7520,7 +7546,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2bb11e4e8b0ea1cdbaeb414a87cf519d", "x-ms-return-client-request-id": "true" }, @@ -7529,17 +7555,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:35 GMT", + "Date": "Wed, 19 May 2021 18:54:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3fff3157-cf32-4f54-8c71-c7720b036424", - "x-ms-ratelimit-remaining-subscription-reads": "11793", - "x-ms-request-id": "3fff3157-cf32-4f54-8c71-c7720b036424", - "x-ms-routing-request-id": "WESTUS2:20210507T011636Z:3fff3157-cf32-4f54-8c71-c7720b036424" + "x-ms-correlation-request-id": "d8bba296-12e1-4112-b3bc-7f8effb8410e", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "d8bba296-12e1-4112-b3bc-7f8effb8410e", + "x-ms-routing-request-id": "WESTUS2:20210519T185406Z:d8bba296-12e1-4112-b3bc-7f8effb8410e" }, "ResponseBody": [] }, @@ -7548,7 +7574,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "65428d669661d52ca986909b27ac30f5", "x-ms-return-client-request-id": "true" }, @@ -7557,17 +7583,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:36 GMT", + "Date": "Wed, 19 May 2021 18:54:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5398f7ba-a7e3-4138-adad-493eb6ebd6c7", - "x-ms-ratelimit-remaining-subscription-reads": "11791", - "x-ms-request-id": "5398f7ba-a7e3-4138-adad-493eb6ebd6c7", - "x-ms-routing-request-id": "WESTUS2:20210507T011637Z:5398f7ba-a7e3-4138-adad-493eb6ebd6c7" + "x-ms-correlation-request-id": "67a120a8-020a-4f1d-9056-3c367942d429", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "67a120a8-020a-4f1d-9056-3c367942d429", + "x-ms-routing-request-id": "WESTUS2:20210519T185407Z:67a120a8-020a-4f1d-9056-3c367942d429" }, "ResponseBody": [] }, @@ -7576,7 +7602,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0245d0eea12699389b203ad50dd738ab", "x-ms-return-client-request-id": "true" }, @@ -7585,17 +7611,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:37 GMT", + "Date": "Wed, 19 May 2021 18:54:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af3ac545-b03d-4067-b420-1ca9290ac6e6", - "x-ms-ratelimit-remaining-subscription-reads": "11789", - "x-ms-request-id": "af3ac545-b03d-4067-b420-1ca9290ac6e6", - "x-ms-routing-request-id": "WESTUS2:20210507T011638Z:af3ac545-b03d-4067-b420-1ca9290ac6e6" + "x-ms-correlation-request-id": "83231dd2-a06f-4826-b4df-39bd819800d6", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "83231dd2-a06f-4826-b4df-39bd819800d6", + "x-ms-routing-request-id": "WESTUS2:20210519T185408Z:83231dd2-a06f-4826-b4df-39bd819800d6" }, "ResponseBody": [] }, @@ -7604,7 +7630,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d34c8c9f9bfb785f2dc8287fa317a0d", "x-ms-return-client-request-id": "true" }, @@ -7613,17 +7639,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:38 GMT", + "Date": "Wed, 19 May 2021 18:54:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28b085a5-5392-42b1-b95c-9b2a8f308092", - "x-ms-ratelimit-remaining-subscription-reads": "11787", - "x-ms-request-id": "28b085a5-5392-42b1-b95c-9b2a8f308092", - "x-ms-routing-request-id": "WESTUS2:20210507T011639Z:28b085a5-5392-42b1-b95c-9b2a8f308092" + "x-ms-correlation-request-id": "4a661ba9-3987-4a2c-b40d-2007d5c2b599", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "4a661ba9-3987-4a2c-b40d-2007d5c2b599", + "x-ms-routing-request-id": "WESTUS2:20210519T185409Z:4a661ba9-3987-4a2c-b40d-2007d5c2b599" }, "ResponseBody": [] }, @@ -7632,7 +7658,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b75c4bba4e89c47755a9ca405c57c7d1", "x-ms-return-client-request-id": "true" }, @@ -7641,17 +7667,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:39 GMT", + "Date": "Wed, 19 May 2021 18:54:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76b1912b-0453-45ad-b5ca-af3d54224555", - "x-ms-ratelimit-remaining-subscription-reads": "11785", - "x-ms-request-id": "76b1912b-0453-45ad-b5ca-af3d54224555", - "x-ms-routing-request-id": "WESTUS2:20210507T011640Z:76b1912b-0453-45ad-b5ca-af3d54224555" + "x-ms-correlation-request-id": "c01d265b-e0fd-4626-a3de-bfa75badc5b2", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "c01d265b-e0fd-4626-a3de-bfa75badc5b2", + "x-ms-routing-request-id": "WESTUS2:20210519T185410Z:c01d265b-e0fd-4626-a3de-bfa75badc5b2" }, "ResponseBody": [] }, @@ -7660,7 +7686,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ed2e54e1377f4364a8d104a1fb09f69", "x-ms-return-client-request-id": "true" }, @@ -7669,17 +7695,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:40 GMT", + "Date": "Wed, 19 May 2021 18:54:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "623b4a63-7cd6-422c-a34b-7af2c6d49660", - "x-ms-ratelimit-remaining-subscription-reads": "11783", - "x-ms-request-id": "623b4a63-7cd6-422c-a34b-7af2c6d49660", - "x-ms-routing-request-id": "WESTUS2:20210507T011641Z:623b4a63-7cd6-422c-a34b-7af2c6d49660" + "x-ms-correlation-request-id": "23200143-ca9a-4396-9314-1d64494b97f8", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "23200143-ca9a-4396-9314-1d64494b97f8", + "x-ms-routing-request-id": "WESTUS2:20210519T185411Z:23200143-ca9a-4396-9314-1d64494b97f8" }, "ResponseBody": [] }, @@ -7688,7 +7714,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c11a2ca6807a7a215170c8162f445a9a", "x-ms-return-client-request-id": "true" }, @@ -7697,17 +7723,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:41 GMT", + "Date": "Wed, 19 May 2021 18:54:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3add32e-2371-4199-9294-decafa7daa63", - "x-ms-ratelimit-remaining-subscription-reads": "11781", - "x-ms-request-id": "c3add32e-2371-4199-9294-decafa7daa63", - "x-ms-routing-request-id": "WESTUS2:20210507T011642Z:c3add32e-2371-4199-9294-decafa7daa63" + "x-ms-correlation-request-id": "dad6464f-4583-40e2-a06a-0e7222ea300e", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "dad6464f-4583-40e2-a06a-0e7222ea300e", + "x-ms-routing-request-id": "WESTUS2:20210519T185412Z:dad6464f-4583-40e2-a06a-0e7222ea300e" }, "ResponseBody": [] }, @@ -7716,7 +7742,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1538b0141b5fa79615676cfb3d2da4a4", "x-ms-return-client-request-id": "true" }, @@ -7725,17 +7751,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:42 GMT", + "Date": "Wed, 19 May 2021 18:54:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0762b28-928d-4a34-9f4b-a1b942099ccd", - "x-ms-ratelimit-remaining-subscription-reads": "11779", - "x-ms-request-id": "b0762b28-928d-4a34-9f4b-a1b942099ccd", - "x-ms-routing-request-id": "WESTUS2:20210507T011643Z:b0762b28-928d-4a34-9f4b-a1b942099ccd" + "x-ms-correlation-request-id": "0c7ca27f-1ec6-4bdc-9be7-db1536362a98", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "0c7ca27f-1ec6-4bdc-9be7-db1536362a98", + "x-ms-routing-request-id": "WESTUS2:20210519T185413Z:0c7ca27f-1ec6-4bdc-9be7-db1536362a98" }, "ResponseBody": [] }, @@ -7744,7 +7770,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "309a600a053dcd56c3570d064a20c506", "x-ms-return-client-request-id": "true" }, @@ -7753,17 +7779,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:43 GMT", + "Date": "Wed, 19 May 2021 18:54:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9aa3ee5-b2f4-454c-8cd6-529bcf17c4e4", - "x-ms-ratelimit-remaining-subscription-reads": "11777", - "x-ms-request-id": "f9aa3ee5-b2f4-454c-8cd6-529bcf17c4e4", - "x-ms-routing-request-id": "WESTUS2:20210507T011644Z:f9aa3ee5-b2f4-454c-8cd6-529bcf17c4e4" + "x-ms-correlation-request-id": "c5baa3c2-3c47-464d-9153-ce08ba895d63", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "c5baa3c2-3c47-464d-9153-ce08ba895d63", + "x-ms-routing-request-id": "WESTUS2:20210519T185414Z:c5baa3c2-3c47-464d-9153-ce08ba895d63" }, "ResponseBody": [] }, @@ -7772,7 +7798,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f35763389788b0a9572ac1314253d24", "x-ms-return-client-request-id": "true" }, @@ -7781,17 +7807,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:45 GMT", + "Date": "Wed, 19 May 2021 18:54:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "407fda21-044d-4be5-9a31-cb92da479e06", - "x-ms-ratelimit-remaining-subscription-reads": "11775", - "x-ms-request-id": "407fda21-044d-4be5-9a31-cb92da479e06", - "x-ms-routing-request-id": "WESTUS2:20210507T011645Z:407fda21-044d-4be5-9a31-cb92da479e06" + "x-ms-correlation-request-id": "07cb3904-aae5-4667-ab1b-f9436cc34282", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "07cb3904-aae5-4667-ab1b-f9436cc34282", + "x-ms-routing-request-id": "WESTUS2:20210519T185415Z:07cb3904-aae5-4667-ab1b-f9436cc34282" }, "ResponseBody": [] }, @@ -7800,7 +7826,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ce0b24cc2aa90e5d596a52070e8f5df5", "x-ms-return-client-request-id": "true" }, @@ -7809,17 +7835,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:46 GMT", + "Date": "Wed, 19 May 2021 18:54:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48ca7aa6-3873-4dbf-b99e-9f4eba4ce55f", - "x-ms-ratelimit-remaining-subscription-reads": "11773", - "x-ms-request-id": "48ca7aa6-3873-4dbf-b99e-9f4eba4ce55f", - "x-ms-routing-request-id": "WESTUS2:20210507T011646Z:48ca7aa6-3873-4dbf-b99e-9f4eba4ce55f" + "x-ms-correlation-request-id": "a43f9bda-b7b9-4d6c-9e37-ec93fd2b9c6b", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "a43f9bda-b7b9-4d6c-9e37-ec93fd2b9c6b", + "x-ms-routing-request-id": "WESTUS2:20210519T185416Z:a43f9bda-b7b9-4d6c-9e37-ec93fd2b9c6b" }, "ResponseBody": [] }, @@ -7828,7 +7854,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c7c865a235f7802b560e9aca5943b99d", "x-ms-return-client-request-id": "true" }, @@ -7837,17 +7863,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:47 GMT", + "Date": "Wed, 19 May 2021 18:54:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89a67589-74ee-4f79-9933-10813f49085c", - "x-ms-ratelimit-remaining-subscription-reads": "11771", - "x-ms-request-id": "89a67589-74ee-4f79-9933-10813f49085c", - "x-ms-routing-request-id": "WESTUS2:20210507T011647Z:89a67589-74ee-4f79-9933-10813f49085c" + "x-ms-correlation-request-id": "dd881706-716b-4d4e-acd2-dab4b15d5969", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "dd881706-716b-4d4e-acd2-dab4b15d5969", + "x-ms-routing-request-id": "WESTUS2:20210519T185417Z:dd881706-716b-4d4e-acd2-dab4b15d5969" }, "ResponseBody": [] }, @@ -7856,7 +7882,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "263ae91af714095c1826150d37027d05", "x-ms-return-client-request-id": "true" }, @@ -7865,17 +7891,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:48 GMT", + "Date": "Wed, 19 May 2021 18:54:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "821f1dd0-e31e-4dc4-a4c6-b71bcc3bd5c7", - "x-ms-ratelimit-remaining-subscription-reads": "11769", - "x-ms-request-id": "821f1dd0-e31e-4dc4-a4c6-b71bcc3bd5c7", - "x-ms-routing-request-id": "WESTUS2:20210507T011648Z:821f1dd0-e31e-4dc4-a4c6-b71bcc3bd5c7" + "x-ms-correlation-request-id": "28f0378a-8242-4bfa-b36c-58e315eb7bc3", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "28f0378a-8242-4bfa-b36c-58e315eb7bc3", + "x-ms-routing-request-id": "WESTUS2:20210519T185418Z:28f0378a-8242-4bfa-b36c-58e315eb7bc3" }, "ResponseBody": [] }, @@ -7884,7 +7910,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ae71b615755d962cf88a779b8f92b415", "x-ms-return-client-request-id": "true" }, @@ -7893,17 +7919,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:49 GMT", + "Date": "Wed, 19 May 2021 18:54:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f83b21d-8311-490e-b16a-d002d9142e6d", - "x-ms-ratelimit-remaining-subscription-reads": "11767", - "x-ms-request-id": "9f83b21d-8311-490e-b16a-d002d9142e6d", - "x-ms-routing-request-id": "WESTUS2:20210507T011649Z:9f83b21d-8311-490e-b16a-d002d9142e6d" + "x-ms-correlation-request-id": "6a4c8f58-9b6a-4e17-b7f9-6f62aeeb6018", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "6a4c8f58-9b6a-4e17-b7f9-6f62aeeb6018", + "x-ms-routing-request-id": "WESTUS2:20210519T185419Z:6a4c8f58-9b6a-4e17-b7f9-6f62aeeb6018" }, "ResponseBody": [] }, @@ -7912,7 +7938,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "24ecb4b13655abe008bfaed01f1e4954", "x-ms-return-client-request-id": "true" }, @@ -7921,17 +7947,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:50 GMT", + "Date": "Wed, 19 May 2021 18:54:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7129336b-5fe0-4356-9d57-070fd34af7f9", - "x-ms-ratelimit-remaining-subscription-reads": "11765", - "x-ms-request-id": "7129336b-5fe0-4356-9d57-070fd34af7f9", - "x-ms-routing-request-id": "WESTUS2:20210507T011650Z:7129336b-5fe0-4356-9d57-070fd34af7f9" + "x-ms-correlation-request-id": "6c9d1691-aa00-4c65-a179-2e9bd9d8d062", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "6c9d1691-aa00-4c65-a179-2e9bd9d8d062", + "x-ms-routing-request-id": "WESTUS2:20210519T185420Z:6c9d1691-aa00-4c65-a179-2e9bd9d8d062" }, "ResponseBody": [] }, @@ -7940,7 +7966,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3b594910bd2a540bca32d897fc17986", "x-ms-return-client-request-id": "true" }, @@ -7949,17 +7975,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:51 GMT", + "Date": "Wed, 19 May 2021 18:54:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d07b325-0e6e-40dd-949f-7e60988299e6", - "x-ms-ratelimit-remaining-subscription-reads": "11763", - "x-ms-request-id": "2d07b325-0e6e-40dd-949f-7e60988299e6", - "x-ms-routing-request-id": "WESTUS2:20210507T011651Z:2d07b325-0e6e-40dd-949f-7e60988299e6" + "x-ms-correlation-request-id": "42522dcb-67d5-4985-b25b-dfbb4a53dd92", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "42522dcb-67d5-4985-b25b-dfbb4a53dd92", + "x-ms-routing-request-id": "WESTUS2:20210519T185422Z:42522dcb-67d5-4985-b25b-dfbb4a53dd92" }, "ResponseBody": [] }, @@ -7968,7 +7994,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "835cff725815deb0d5c6a59dc65b77da", "x-ms-return-client-request-id": "true" }, @@ -7977,17 +8003,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:52 GMT", + "Date": "Wed, 19 May 2021 18:54:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14c60617-36ae-4bda-b1cb-b1c080f3c4b3", - "x-ms-ratelimit-remaining-subscription-reads": "11761", - "x-ms-request-id": "14c60617-36ae-4bda-b1cb-b1c080f3c4b3", - "x-ms-routing-request-id": "WESTUS2:20210507T011652Z:14c60617-36ae-4bda-b1cb-b1c080f3c4b3" + "x-ms-correlation-request-id": "5ed6580d-09aa-4ceb-af08-5650cfb625e4", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "5ed6580d-09aa-4ceb-af08-5650cfb625e4", + "x-ms-routing-request-id": "WESTUS2:20210519T185423Z:5ed6580d-09aa-4ceb-af08-5650cfb625e4" }, "ResponseBody": [] }, @@ -7996,7 +8022,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fa09234111dca543734768b208572b47", "x-ms-return-client-request-id": "true" }, @@ -8005,17 +8031,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:53 GMT", + "Date": "Wed, 19 May 2021 18:54:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d896f2a-9d53-40c4-b794-c95446a36499", - "x-ms-ratelimit-remaining-subscription-reads": "11759", - "x-ms-request-id": "7d896f2a-9d53-40c4-b794-c95446a36499", - "x-ms-routing-request-id": "WESTUS2:20210507T011653Z:7d896f2a-9d53-40c4-b794-c95446a36499" + "x-ms-correlation-request-id": "73798a3c-4b99-4741-bc6a-8cb72f200945", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "73798a3c-4b99-4741-bc6a-8cb72f200945", + "x-ms-routing-request-id": "WESTUS2:20210519T185424Z:73798a3c-4b99-4741-bc6a-8cb72f200945" }, "ResponseBody": [] }, @@ -8024,7 +8050,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1f5e2845c6c1393ee4d6cd0c65a2de60", "x-ms-return-client-request-id": "true" }, @@ -8033,17 +8059,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:54 GMT", + "Date": "Wed, 19 May 2021 18:54:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db2b4967-87f5-4ee2-ac5e-a83c870ef6f0", - "x-ms-ratelimit-remaining-subscription-reads": "11757", - "x-ms-request-id": "db2b4967-87f5-4ee2-ac5e-a83c870ef6f0", - "x-ms-routing-request-id": "WESTUS2:20210507T011655Z:db2b4967-87f5-4ee2-ac5e-a83c870ef6f0" + "x-ms-correlation-request-id": "12c61b55-04fe-4dcf-97ee-cba92e16ffbe", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "12c61b55-04fe-4dcf-97ee-cba92e16ffbe", + "x-ms-routing-request-id": "WESTUS2:20210519T185425Z:12c61b55-04fe-4dcf-97ee-cba92e16ffbe" }, "ResponseBody": [] }, @@ -8052,7 +8078,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c48532c7eb860a9bcb60fcdeffed67e", "x-ms-return-client-request-id": "true" }, @@ -8061,17 +8087,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:55 GMT", + "Date": "Wed, 19 May 2021 18:54:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d5f298d-42ee-482a-a5d8-0b025bab2691", - "x-ms-ratelimit-remaining-subscription-reads": "11755", - "x-ms-request-id": "3d5f298d-42ee-482a-a5d8-0b025bab2691", - "x-ms-routing-request-id": "WESTUS2:20210507T011656Z:3d5f298d-42ee-482a-a5d8-0b025bab2691" + "x-ms-correlation-request-id": "1868aabd-b9ed-4289-b7e9-2c1787b1ed91", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "1868aabd-b9ed-4289-b7e9-2c1787b1ed91", + "x-ms-routing-request-id": "WESTUS2:20210519T185426Z:1868aabd-b9ed-4289-b7e9-2c1787b1ed91" }, "ResponseBody": [] }, @@ -8080,7 +8106,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9e585e9a57fd7b18e4d0160644373fd1", "x-ms-return-client-request-id": "true" }, @@ -8089,17 +8115,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:56 GMT", + "Date": "Wed, 19 May 2021 18:54:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "852ba0b5-3112-44d3-a5c2-8590493cc8d8", - "x-ms-ratelimit-remaining-subscription-reads": "11753", - "x-ms-request-id": "852ba0b5-3112-44d3-a5c2-8590493cc8d8", - "x-ms-routing-request-id": "WESTUS2:20210507T011657Z:852ba0b5-3112-44d3-a5c2-8590493cc8d8" + "x-ms-correlation-request-id": "f4c1194d-46b1-465a-803b-cfbcebd135c0", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "f4c1194d-46b1-465a-803b-cfbcebd135c0", + "x-ms-routing-request-id": "WESTUS2:20210519T185427Z:f4c1194d-46b1-465a-803b-cfbcebd135c0" }, "ResponseBody": [] }, @@ -8108,7 +8134,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b4860769cf0fc78e7efe630bb77049e6", "x-ms-return-client-request-id": "true" }, @@ -8117,17 +8143,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:57 GMT", + "Date": "Wed, 19 May 2021 18:54:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3ab06b1-2597-4832-a0f9-df31a28684a2", - "x-ms-ratelimit-remaining-subscription-reads": "11751", - "x-ms-request-id": "a3ab06b1-2597-4832-a0f9-df31a28684a2", - "x-ms-routing-request-id": "WESTUS2:20210507T011658Z:a3ab06b1-2597-4832-a0f9-df31a28684a2" + "x-ms-correlation-request-id": "f65aa965-3e3f-4e89-a73a-ceb80184d0bf", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "f65aa965-3e3f-4e89-a73a-ceb80184d0bf", + "x-ms-routing-request-id": "WESTUS2:20210519T185428Z:f65aa965-3e3f-4e89-a73a-ceb80184d0bf" }, "ResponseBody": [] }, @@ -8136,7 +8162,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "07714f00404ad4633bcd78e868a31c85", "x-ms-return-client-request-id": "true" }, @@ -8145,17 +8171,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:58 GMT", + "Date": "Wed, 19 May 2021 18:54:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "768000c4-d0fb-4ee9-9506-0ba6f4fad94d", - "x-ms-ratelimit-remaining-subscription-reads": "11749", - "x-ms-request-id": "768000c4-d0fb-4ee9-9506-0ba6f4fad94d", - "x-ms-routing-request-id": "WESTUS2:20210507T011659Z:768000c4-d0fb-4ee9-9506-0ba6f4fad94d" + "x-ms-correlation-request-id": "2a693ad5-1277-4610-8470-a82c7f86e070", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "2a693ad5-1277-4610-8470-a82c7f86e070", + "x-ms-routing-request-id": "WESTUS2:20210519T185429Z:2a693ad5-1277-4610-8470-a82c7f86e070" }, "ResponseBody": [] }, @@ -8164,7 +8190,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8643d762178cb6fcf901ffff40cc373", "x-ms-return-client-request-id": "true" }, @@ -8173,17 +8199,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:16:59 GMT", + "Date": "Wed, 19 May 2021 18:54:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09273714-1cef-4b38-b98e-c2314db3cd67", - "x-ms-ratelimit-remaining-subscription-reads": "11747", - "x-ms-request-id": "09273714-1cef-4b38-b98e-c2314db3cd67", - "x-ms-routing-request-id": "WESTUS2:20210507T011700Z:09273714-1cef-4b38-b98e-c2314db3cd67" + "x-ms-correlation-request-id": "24a096a3-2e97-41e4-8855-83f07c0f93d0", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "24a096a3-2e97-41e4-8855-83f07c0f93d0", + "x-ms-routing-request-id": "WESTUS2:20210519T185430Z:24a096a3-2e97-41e4-8855-83f07c0f93d0" }, "ResponseBody": [] }, @@ -8192,7 +8218,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f5062f8738c52886a4b1794157a65edb", "x-ms-return-client-request-id": "true" }, @@ -8201,17 +8227,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:00 GMT", + "Date": "Wed, 19 May 2021 18:54:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5339b94a-a85d-491c-956c-60fc4805226c", - "x-ms-ratelimit-remaining-subscription-reads": "11745", - "x-ms-request-id": "5339b94a-a85d-491c-956c-60fc4805226c", - "x-ms-routing-request-id": "WESTUS2:20210507T011701Z:5339b94a-a85d-491c-956c-60fc4805226c" + "x-ms-correlation-request-id": "ec6b68e0-f018-4835-a7b0-d802d7865bcd", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "ec6b68e0-f018-4835-a7b0-d802d7865bcd", + "x-ms-routing-request-id": "WESTUS2:20210519T185431Z:ec6b68e0-f018-4835-a7b0-d802d7865bcd" }, "ResponseBody": [] }, @@ -8220,7 +8246,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7995dee1610bdf6edfa638b92164df2f", "x-ms-return-client-request-id": "true" }, @@ -8229,17 +8255,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:01 GMT", + "Date": "Wed, 19 May 2021 18:54:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "485ad7f7-a559-4264-9b81-393ed9e204a0", - "x-ms-ratelimit-remaining-subscription-reads": "11743", - "x-ms-request-id": "485ad7f7-a559-4264-9b81-393ed9e204a0", - "x-ms-routing-request-id": "WESTUS2:20210507T011702Z:485ad7f7-a559-4264-9b81-393ed9e204a0" + "x-ms-correlation-request-id": "cdbc8bea-5a6f-4255-a549-e42219f10f09", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "cdbc8bea-5a6f-4255-a549-e42219f10f09", + "x-ms-routing-request-id": "WESTUS2:20210519T185432Z:cdbc8bea-5a6f-4255-a549-e42219f10f09" }, "ResponseBody": [] }, @@ -8248,7 +8274,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38610409279c3ebfb63c43c6a82d7428", "x-ms-return-client-request-id": "true" }, @@ -8257,17 +8283,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:02 GMT", + "Date": "Wed, 19 May 2021 18:54:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d32c86df-58a1-49a9-a0c8-2f9ced18505d", - "x-ms-ratelimit-remaining-subscription-reads": "11741", - "x-ms-request-id": "d32c86df-58a1-49a9-a0c8-2f9ced18505d", - "x-ms-routing-request-id": "WESTUS2:20210507T011703Z:d32c86df-58a1-49a9-a0c8-2f9ced18505d" + "x-ms-correlation-request-id": "244fd1a7-0caf-437a-b9e8-8260ece48380", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "244fd1a7-0caf-437a-b9e8-8260ece48380", + "x-ms-routing-request-id": "WESTUS2:20210519T185433Z:244fd1a7-0caf-437a-b9e8-8260ece48380" }, "ResponseBody": [] }, @@ -8276,7 +8302,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "161d43324a772567c127151f00cd073f", "x-ms-return-client-request-id": "true" }, @@ -8285,17 +8311,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:04 GMT", + "Date": "Wed, 19 May 2021 18:54:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dbc0771f-4ef9-4102-acb2-0f859bac6179", - "x-ms-ratelimit-remaining-subscription-reads": "11739", - "x-ms-request-id": "dbc0771f-4ef9-4102-acb2-0f859bac6179", - "x-ms-routing-request-id": "WESTUS2:20210507T011704Z:dbc0771f-4ef9-4102-acb2-0f859bac6179" + "x-ms-correlation-request-id": "65d5aa20-ba03-474e-8eb4-7968c37f413e", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "65d5aa20-ba03-474e-8eb4-7968c37f413e", + "x-ms-routing-request-id": "WESTUS2:20210519T185434Z:65d5aa20-ba03-474e-8eb4-7968c37f413e" }, "ResponseBody": [] }, @@ -8304,7 +8330,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "523849d12645ba3e1e57c2cf1da736b2", "x-ms-return-client-request-id": "true" }, @@ -8313,17 +8339,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:05 GMT", + "Date": "Wed, 19 May 2021 18:54:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64d9ea7a-bead-4ebe-8134-86fc1bd09326", - "x-ms-ratelimit-remaining-subscription-reads": "11737", - "x-ms-request-id": "64d9ea7a-bead-4ebe-8134-86fc1bd09326", - "x-ms-routing-request-id": "WESTUS2:20210507T011705Z:64d9ea7a-bead-4ebe-8134-86fc1bd09326" + "x-ms-correlation-request-id": "d6cc24b0-79bc-4e9e-bacf-e921c412f05b", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "d6cc24b0-79bc-4e9e-bacf-e921c412f05b", + "x-ms-routing-request-id": "WESTUS2:20210519T185435Z:d6cc24b0-79bc-4e9e-bacf-e921c412f05b" }, "ResponseBody": [] }, @@ -8332,7 +8358,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dd870f31c947beb79c3b7675119f3de9", "x-ms-return-client-request-id": "true" }, @@ -8341,17 +8367,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:06 GMT", + "Date": "Wed, 19 May 2021 18:54:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "403f77cc-90fb-49ed-b3d2-dabba95f7fda", - "x-ms-ratelimit-remaining-subscription-reads": "11735", - "x-ms-request-id": "403f77cc-90fb-49ed-b3d2-dabba95f7fda", - "x-ms-routing-request-id": "WESTUS2:20210507T011706Z:403f77cc-90fb-49ed-b3d2-dabba95f7fda" + "x-ms-correlation-request-id": "bb96bed5-c0ef-4560-819e-dcf5dc92922c", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "bb96bed5-c0ef-4560-819e-dcf5dc92922c", + "x-ms-routing-request-id": "WESTUS2:20210519T185436Z:bb96bed5-c0ef-4560-819e-dcf5dc92922c" }, "ResponseBody": [] }, @@ -8360,7 +8386,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ef4043521f50be30463f72088980819", "x-ms-return-client-request-id": "true" }, @@ -8369,17 +8395,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:07 GMT", + "Date": "Wed, 19 May 2021 18:54:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6bedace8-d8e9-4f5d-b5e0-8e3c4f462a48", - "x-ms-ratelimit-remaining-subscription-reads": "11733", - "x-ms-request-id": "6bedace8-d8e9-4f5d-b5e0-8e3c4f462a48", - "x-ms-routing-request-id": "WESTUS2:20210507T011707Z:6bedace8-d8e9-4f5d-b5e0-8e3c4f462a48" + "x-ms-correlation-request-id": "b6ed67d6-2337-4d8e-b8e9-19046be6109e", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "b6ed67d6-2337-4d8e-b8e9-19046be6109e", + "x-ms-routing-request-id": "WESTUS2:20210519T185437Z:b6ed67d6-2337-4d8e-b8e9-19046be6109e" }, "ResponseBody": [] }, @@ -8388,7 +8414,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f0ed63f0294508f89179b60aafc8a87e", "x-ms-return-client-request-id": "true" }, @@ -8397,17 +8423,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:08 GMT", + "Date": "Wed, 19 May 2021 18:54:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "093412ad-64f6-45f7-b490-df22fd2b626c", - "x-ms-ratelimit-remaining-subscription-reads": "11731", - "x-ms-request-id": "093412ad-64f6-45f7-b490-df22fd2b626c", - "x-ms-routing-request-id": "WESTUS2:20210507T011708Z:093412ad-64f6-45f7-b490-df22fd2b626c" + "x-ms-correlation-request-id": "6c259b42-0f3b-4f20-8bd9-50085bb6645a", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "6c259b42-0f3b-4f20-8bd9-50085bb6645a", + "x-ms-routing-request-id": "WESTUS2:20210519T185438Z:6c259b42-0f3b-4f20-8bd9-50085bb6645a" }, "ResponseBody": [] }, @@ -8416,7 +8442,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "189ad819d8b310bc2c7bd8e4d1973604", "x-ms-return-client-request-id": "true" }, @@ -8425,17 +8451,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:09 GMT", + "Date": "Wed, 19 May 2021 18:54:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe7f9b0c-268f-4b75-800d-00ff0c9b660d", - "x-ms-ratelimit-remaining-subscription-reads": "11729", - "x-ms-request-id": "fe7f9b0c-268f-4b75-800d-00ff0c9b660d", - "x-ms-routing-request-id": "WESTUS2:20210507T011709Z:fe7f9b0c-268f-4b75-800d-00ff0c9b660d" + "x-ms-correlation-request-id": "1d31e3ad-d068-4f30-8a31-ee87c53b753d", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "1d31e3ad-d068-4f30-8a31-ee87c53b753d", + "x-ms-routing-request-id": "WESTUS2:20210519T185439Z:1d31e3ad-d068-4f30-8a31-ee87c53b753d" }, "ResponseBody": [] }, @@ -8444,7 +8470,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ae855c324db10ba40bebcc7b6bd85c3b", "x-ms-return-client-request-id": "true" }, @@ -8453,17 +8479,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:10 GMT", + "Date": "Wed, 19 May 2021 18:54:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0ccd715-9cda-47c1-8ad5-bcfd35c560c7", - "x-ms-ratelimit-remaining-subscription-reads": "11727", - "x-ms-request-id": "d0ccd715-9cda-47c1-8ad5-bcfd35c560c7", - "x-ms-routing-request-id": "WESTUS2:20210507T011710Z:d0ccd715-9cda-47c1-8ad5-bcfd35c560c7" + "x-ms-correlation-request-id": "d658f8e5-2e79-4ed1-ae86-09bb27d64346", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "d658f8e5-2e79-4ed1-ae86-09bb27d64346", + "x-ms-routing-request-id": "WESTUS2:20210519T185440Z:d658f8e5-2e79-4ed1-ae86-09bb27d64346" }, "ResponseBody": [] }, @@ -8472,7 +8498,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af0778baeffd1866a6ddc4c9501437fa", "x-ms-return-client-request-id": "true" }, @@ -8481,17 +8507,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:11 GMT", + "Date": "Wed, 19 May 2021 18:54:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3744a4f-0ccf-4495-885f-2a15e34ca6d6", - "x-ms-ratelimit-remaining-subscription-reads": "11725", - "x-ms-request-id": "c3744a4f-0ccf-4495-885f-2a15e34ca6d6", - "x-ms-routing-request-id": "WESTUS2:20210507T011711Z:c3744a4f-0ccf-4495-885f-2a15e34ca6d6" + "x-ms-correlation-request-id": "31721718-95b4-4205-b779-63bb40869bfa", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "31721718-95b4-4205-b779-63bb40869bfa", + "x-ms-routing-request-id": "WESTUS2:20210519T185441Z:31721718-95b4-4205-b779-63bb40869bfa" }, "ResponseBody": [] }, @@ -8500,7 +8526,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "52d8b142f943cbcc348e0dc70b41a454", "x-ms-return-client-request-id": "true" }, @@ -8509,17 +8535,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:12 GMT", + "Date": "Wed, 19 May 2021 18:54:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a81902f3-d323-41fb-a6ab-c5b51b3b5a68", - "x-ms-ratelimit-remaining-subscription-reads": "11723", - "x-ms-request-id": "a81902f3-d323-41fb-a6ab-c5b51b3b5a68", - "x-ms-routing-request-id": "WESTUS2:20210507T011712Z:a81902f3-d323-41fb-a6ab-c5b51b3b5a68" + "x-ms-correlation-request-id": "488f404f-a08a-45f0-9481-13fca160f59f", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "488f404f-a08a-45f0-9481-13fca160f59f", + "x-ms-routing-request-id": "WESTUS2:20210519T185442Z:488f404f-a08a-45f0-9481-13fca160f59f" }, "ResponseBody": [] }, @@ -8528,7 +8554,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "58299c1f87904206f56d08d488dabaf6", "x-ms-return-client-request-id": "true" }, @@ -8537,17 +8563,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:13 GMT", + "Date": "Wed, 19 May 2021 18:54:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33e826c2-15e5-4a54-ad94-d97f7d701349", - "x-ms-ratelimit-remaining-subscription-reads": "11721", - "x-ms-request-id": "33e826c2-15e5-4a54-ad94-d97f7d701349", - "x-ms-routing-request-id": "WESTUS2:20210507T011713Z:33e826c2-15e5-4a54-ad94-d97f7d701349" + "x-ms-correlation-request-id": "e4940d4e-5769-4446-8dbf-1b18d85db93c", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "e4940d4e-5769-4446-8dbf-1b18d85db93c", + "x-ms-routing-request-id": "WESTUS2:20210519T185443Z:e4940d4e-5769-4446-8dbf-1b18d85db93c" }, "ResponseBody": [] }, @@ -8556,7 +8582,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b938d2b309ffc0f8ac3b7b6fe29f0c65", "x-ms-return-client-request-id": "true" }, @@ -8565,17 +8591,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:14 GMT", + "Date": "Wed, 19 May 2021 18:54:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74a158d0-7d21-4d9d-8231-1e5542002426", - "x-ms-ratelimit-remaining-subscription-reads": "11719", - "x-ms-request-id": "74a158d0-7d21-4d9d-8231-1e5542002426", - "x-ms-routing-request-id": "WESTUS2:20210507T011714Z:74a158d0-7d21-4d9d-8231-1e5542002426" + "x-ms-correlation-request-id": "c2124ae9-a61b-404d-bd0a-fa7cecae760f", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "c2124ae9-a61b-404d-bd0a-fa7cecae760f", + "x-ms-routing-request-id": "WESTUS2:20210519T185444Z:c2124ae9-a61b-404d-bd0a-fa7cecae760f" }, "ResponseBody": [] }, @@ -8584,7 +8610,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3a97038dfebbb69ab965cd5f1f84359", "x-ms-return-client-request-id": "true" }, @@ -8593,17 +8619,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:15 GMT", + "Date": "Wed, 19 May 2021 18:54:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d261e5e8-949b-40cd-bf93-f1d754cd92f7", - "x-ms-ratelimit-remaining-subscription-reads": "11717", - "x-ms-request-id": "d261e5e8-949b-40cd-bf93-f1d754cd92f7", - "x-ms-routing-request-id": "WESTUS2:20210507T011715Z:d261e5e8-949b-40cd-bf93-f1d754cd92f7" + "x-ms-correlation-request-id": "c0f6d600-86eb-4db0-b573-784be34da042", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "c0f6d600-86eb-4db0-b573-784be34da042", + "x-ms-routing-request-id": "WESTUS2:20210519T185445Z:c0f6d600-86eb-4db0-b573-784be34da042" }, "ResponseBody": [] }, @@ -8612,7 +8638,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "381316d4ea081654a468ac550b976056", "x-ms-return-client-request-id": "true" }, @@ -8621,17 +8647,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:16 GMT", + "Date": "Wed, 19 May 2021 18:54:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a4ec4d0-f64f-4362-9590-ed32cda80aeb", - "x-ms-ratelimit-remaining-subscription-reads": "11715", - "x-ms-request-id": "1a4ec4d0-f64f-4362-9590-ed32cda80aeb", - "x-ms-routing-request-id": "WESTUS2:20210507T011716Z:1a4ec4d0-f64f-4362-9590-ed32cda80aeb" + "x-ms-correlation-request-id": "a84984dd-79c2-42fa-8302-3ad618682817", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "a84984dd-79c2-42fa-8302-3ad618682817", + "x-ms-routing-request-id": "WESTUS2:20210519T185446Z:a84984dd-79c2-42fa-8302-3ad618682817" }, "ResponseBody": [] }, @@ -8640,7 +8666,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "189ba2600631d40b697d0e69ac22cfb3", "x-ms-return-client-request-id": "true" }, @@ -8649,17 +8675,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:17 GMT", + "Date": "Wed, 19 May 2021 18:54:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6cc6c13a-58d8-4570-b92b-2a2f28f924a5", - "x-ms-ratelimit-remaining-subscription-reads": "11713", - "x-ms-request-id": "6cc6c13a-58d8-4570-b92b-2a2f28f924a5", - "x-ms-routing-request-id": "WESTUS2:20210507T011717Z:6cc6c13a-58d8-4570-b92b-2a2f28f924a5" + "x-ms-correlation-request-id": "6bc6298c-f746-4a8a-a5a9-dac0dff5dec8", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "6bc6298c-f746-4a8a-a5a9-dac0dff5dec8", + "x-ms-routing-request-id": "WESTUS2:20210519T185447Z:6bc6298c-f746-4a8a-a5a9-dac0dff5dec8" }, "ResponseBody": [] }, @@ -8668,7 +8694,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb9b22f8d48b4e5d1c930f823314af14", "x-ms-return-client-request-id": "true" }, @@ -8677,17 +8703,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:18 GMT", + "Date": "Wed, 19 May 2021 18:54:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1d1b611-ef93-4e2c-a277-c09c8cb12ba1", - "x-ms-ratelimit-remaining-subscription-reads": "11711", - "x-ms-request-id": "e1d1b611-ef93-4e2c-a277-c09c8cb12ba1", - "x-ms-routing-request-id": "WESTUS2:20210507T011718Z:e1d1b611-ef93-4e2c-a277-c09c8cb12ba1" + "x-ms-correlation-request-id": "efac4e2d-1176-4535-b1a7-5a2786300833", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "efac4e2d-1176-4535-b1a7-5a2786300833", + "x-ms-routing-request-id": "WESTUS2:20210519T185448Z:efac4e2d-1176-4535-b1a7-5a2786300833" }, "ResponseBody": [] }, @@ -8696,7 +8722,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e7505352a5dcd280a3fcf8bdcea6981", "x-ms-return-client-request-id": "true" }, @@ -8705,17 +8731,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:19 GMT", + "Date": "Wed, 19 May 2021 18:54:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "166f2068-51b7-4a81-9684-f8394865d0f9", - "x-ms-ratelimit-remaining-subscription-reads": "11709", - "x-ms-request-id": "166f2068-51b7-4a81-9684-f8394865d0f9", - "x-ms-routing-request-id": "WESTUS2:20210507T011719Z:166f2068-51b7-4a81-9684-f8394865d0f9" + "x-ms-correlation-request-id": "c22d6d81-06dc-4f39-bf74-1100ab9f0aa3", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "c22d6d81-06dc-4f39-bf74-1100ab9f0aa3", + "x-ms-routing-request-id": "WESTUS2:20210519T185449Z:c22d6d81-06dc-4f39-bf74-1100ab9f0aa3" }, "ResponseBody": [] }, @@ -8724,7 +8750,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e95df89894fc8ccb454dfc9df788a054", "x-ms-return-client-request-id": "true" }, @@ -8733,17 +8759,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:20 GMT", + "Date": "Wed, 19 May 2021 18:54:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b11706c8-8c98-409e-92a9-1fe599f3ed21", - "x-ms-ratelimit-remaining-subscription-reads": "11707", - "x-ms-request-id": "b11706c8-8c98-409e-92a9-1fe599f3ed21", - "x-ms-routing-request-id": "WESTUS2:20210507T011720Z:b11706c8-8c98-409e-92a9-1fe599f3ed21" + "x-ms-correlation-request-id": "922175b9-4a33-4514-8a2e-5d6aeddd254b", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "922175b9-4a33-4514-8a2e-5d6aeddd254b", + "x-ms-routing-request-id": "WESTUS2:20210519T185450Z:922175b9-4a33-4514-8a2e-5d6aeddd254b" }, "ResponseBody": [] }, @@ -8752,7 +8778,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a633facd80adcd56facdc04b04d27231", "x-ms-return-client-request-id": "true" }, @@ -8761,17 +8787,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:21 GMT", + "Date": "Wed, 19 May 2021 18:54:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "644f65e2-9925-43cc-8455-a300be964175", - "x-ms-ratelimit-remaining-subscription-reads": "11705", - "x-ms-request-id": "644f65e2-9925-43cc-8455-a300be964175", - "x-ms-routing-request-id": "WESTUS2:20210507T011721Z:644f65e2-9925-43cc-8455-a300be964175" + "x-ms-correlation-request-id": "f8ebd35e-d67b-480b-8759-f80907a05ea7", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "f8ebd35e-d67b-480b-8759-f80907a05ea7", + "x-ms-routing-request-id": "WESTUS2:20210519T185451Z:f8ebd35e-d67b-480b-8759-f80907a05ea7" }, "ResponseBody": [] }, @@ -8780,7 +8806,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3ae98d29c6b7a1183ae8080f2d8ad582", "x-ms-return-client-request-id": "true" }, @@ -8789,17 +8815,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:22 GMT", + "Date": "Wed, 19 May 2021 18:54:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8975c0df-f197-4079-8cde-3e0dae1f16fc", - "x-ms-ratelimit-remaining-subscription-reads": "11703", - "x-ms-request-id": "8975c0df-f197-4079-8cde-3e0dae1f16fc", - "x-ms-routing-request-id": "WESTUS2:20210507T011722Z:8975c0df-f197-4079-8cde-3e0dae1f16fc" + "x-ms-correlation-request-id": "2a5b8e9a-ad90-4391-81ec-4135e8d1897e", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "2a5b8e9a-ad90-4391-81ec-4135e8d1897e", + "x-ms-routing-request-id": "WESTUS2:20210519T185452Z:2a5b8e9a-ad90-4391-81ec-4135e8d1897e" }, "ResponseBody": [] }, @@ -8808,7 +8834,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1bd7a9ec3b618d4a28fef2ed37f8773", "x-ms-return-client-request-id": "true" }, @@ -8817,17 +8843,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:23 GMT", + "Date": "Wed, 19 May 2021 18:54:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78272028-7171-4de5-b6af-fec21cfea0c4", - "x-ms-ratelimit-remaining-subscription-reads": "11701", - "x-ms-request-id": "78272028-7171-4de5-b6af-fec21cfea0c4", - "x-ms-routing-request-id": "WESTUS2:20210507T011723Z:78272028-7171-4de5-b6af-fec21cfea0c4" + "x-ms-correlation-request-id": "523ef3be-0117-4b71-a7ee-4689e7ca3f72", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "523ef3be-0117-4b71-a7ee-4689e7ca3f72", + "x-ms-routing-request-id": "WESTUS2:20210519T185454Z:523ef3be-0117-4b71-a7ee-4689e7ca3f72" }, "ResponseBody": [] }, @@ -8836,7 +8862,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6973cadb659e069de2926cc57746a06f", "x-ms-return-client-request-id": "true" }, @@ -8845,17 +8871,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:24 GMT", + "Date": "Wed, 19 May 2021 18:54:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a7c48b9-e9e0-4166-b0b8-7715eb5e0942", - "x-ms-ratelimit-remaining-subscription-reads": "11699", - "x-ms-request-id": "7a7c48b9-e9e0-4166-b0b8-7715eb5e0942", - "x-ms-routing-request-id": "WESTUS2:20210507T011725Z:7a7c48b9-e9e0-4166-b0b8-7715eb5e0942" + "x-ms-correlation-request-id": "e640cb7d-9471-43ae-87f6-327f12df68b2", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "e640cb7d-9471-43ae-87f6-327f12df68b2", + "x-ms-routing-request-id": "WESTUS2:20210519T185455Z:e640cb7d-9471-43ae-87f6-327f12df68b2" }, "ResponseBody": [] }, @@ -8864,7 +8890,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8aac3ef89014667bb9d19828d6e9cdba", "x-ms-return-client-request-id": "true" }, @@ -8873,17 +8899,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:25 GMT", + "Date": "Wed, 19 May 2021 18:54:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c3798ce-6bba-47ea-828e-4b88bf7a9f61", - "x-ms-ratelimit-remaining-subscription-reads": "11697", - "x-ms-request-id": "4c3798ce-6bba-47ea-828e-4b88bf7a9f61", - "x-ms-routing-request-id": "WESTUS2:20210507T011726Z:4c3798ce-6bba-47ea-828e-4b88bf7a9f61" + "x-ms-correlation-request-id": "81cdce0e-a069-4a9a-b757-8aa9c9fa1d63", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "81cdce0e-a069-4a9a-b757-8aa9c9fa1d63", + "x-ms-routing-request-id": "WESTUS2:20210519T185456Z:81cdce0e-a069-4a9a-b757-8aa9c9fa1d63" }, "ResponseBody": [] }, @@ -8892,7 +8918,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "623495606c1638e3dcb6fe24560fa05c", "x-ms-return-client-request-id": "true" }, @@ -8901,17 +8927,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:26 GMT", + "Date": "Wed, 19 May 2021 18:54:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50303072-8ed9-45c4-91f0-eca35b0997dc", - "x-ms-ratelimit-remaining-subscription-reads": "11695", - "x-ms-request-id": "50303072-8ed9-45c4-91f0-eca35b0997dc", - "x-ms-routing-request-id": "WESTUS2:20210507T011727Z:50303072-8ed9-45c4-91f0-eca35b0997dc" + "x-ms-correlation-request-id": "95663df9-7170-48fe-9ff0-74ba63bc4e82", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "95663df9-7170-48fe-9ff0-74ba63bc4e82", + "x-ms-routing-request-id": "WESTUS2:20210519T185457Z:95663df9-7170-48fe-9ff0-74ba63bc4e82" }, "ResponseBody": [] }, @@ -8920,7 +8946,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "953580effdd34a5f4f0db0cdcd7530f8", "x-ms-return-client-request-id": "true" }, @@ -8929,17 +8955,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:27 GMT", + "Date": "Wed, 19 May 2021 18:54:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "515a83fc-5117-4b50-9077-b4a32abf12cd", - "x-ms-ratelimit-remaining-subscription-reads": "11693", - "x-ms-request-id": "515a83fc-5117-4b50-9077-b4a32abf12cd", - "x-ms-routing-request-id": "WESTUS2:20210507T011728Z:515a83fc-5117-4b50-9077-b4a32abf12cd" + "x-ms-correlation-request-id": "83be2800-199d-49e9-a218-cdc291ccc717", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "83be2800-199d-49e9-a218-cdc291ccc717", + "x-ms-routing-request-id": "WESTUS2:20210519T185458Z:83be2800-199d-49e9-a218-cdc291ccc717" }, "ResponseBody": [] }, @@ -8948,7 +8974,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e264b1c43d118c585b73ad5d91570faa", "x-ms-return-client-request-id": "true" }, @@ -8957,17 +8983,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:28 GMT", + "Date": "Wed, 19 May 2021 18:54:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e61b17d-2a09-4497-bed1-b00d3c8d1626", - "x-ms-ratelimit-remaining-subscription-reads": "11691", - "x-ms-request-id": "3e61b17d-2a09-4497-bed1-b00d3c8d1626", - "x-ms-routing-request-id": "WESTUS2:20210507T011729Z:3e61b17d-2a09-4497-bed1-b00d3c8d1626" + "x-ms-correlation-request-id": "c2b8b2be-c719-4c19-8021-b67e5bc2c94e", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "c2b8b2be-c719-4c19-8021-b67e5bc2c94e", + "x-ms-routing-request-id": "WESTUS2:20210519T185459Z:c2b8b2be-c719-4c19-8021-b67e5bc2c94e" }, "ResponseBody": [] }, @@ -8976,7 +9002,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "56383c3138b463e735ea1309bb166b67", "x-ms-return-client-request-id": "true" }, @@ -8985,17 +9011,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:29 GMT", + "Date": "Wed, 19 May 2021 18:54:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f99b75eb-99db-4e96-bd00-e6bc8461c709", - "x-ms-ratelimit-remaining-subscription-reads": "11689", - "x-ms-request-id": "f99b75eb-99db-4e96-bd00-e6bc8461c709", - "x-ms-routing-request-id": "WESTUS2:20210507T011730Z:f99b75eb-99db-4e96-bd00-e6bc8461c709" + "x-ms-correlation-request-id": "f08bb644-b4a6-44c4-9080-9e593a3729c2", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "f08bb644-b4a6-44c4-9080-9e593a3729c2", + "x-ms-routing-request-id": "WESTUS2:20210519T185500Z:f08bb644-b4a6-44c4-9080-9e593a3729c2" }, "ResponseBody": [] }, @@ -9004,7 +9030,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a55f0686bdabb14a27a9395f4f01b9f8", "x-ms-return-client-request-id": "true" }, @@ -9013,17 +9039,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:30 GMT", + "Date": "Wed, 19 May 2021 18:55:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53b7aed1-ba70-4861-9fc9-063d3c692836", - "x-ms-ratelimit-remaining-subscription-reads": "11687", - "x-ms-request-id": "53b7aed1-ba70-4861-9fc9-063d3c692836", - "x-ms-routing-request-id": "WESTUS2:20210507T011731Z:53b7aed1-ba70-4861-9fc9-063d3c692836" + "x-ms-correlation-request-id": "0aad8b70-e5f0-448c-8e18-8dfd35608446", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "0aad8b70-e5f0-448c-8e18-8dfd35608446", + "x-ms-routing-request-id": "WESTUS2:20210519T185501Z:0aad8b70-e5f0-448c-8e18-8dfd35608446" }, "ResponseBody": [] }, @@ -9032,7 +9058,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "919b06fdd93c8b44ca00ac27294ed045", "x-ms-return-client-request-id": "true" }, @@ -9041,17 +9067,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:31 GMT", + "Date": "Wed, 19 May 2021 18:55:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57973bda-dce6-45ea-8df1-ef36c138f1b7", - "x-ms-ratelimit-remaining-subscription-reads": "11685", - "x-ms-request-id": "57973bda-dce6-45ea-8df1-ef36c138f1b7", - "x-ms-routing-request-id": "WESTUS2:20210507T011732Z:57973bda-dce6-45ea-8df1-ef36c138f1b7" + "x-ms-correlation-request-id": "075b7089-4b52-4700-b73e-5dbed986793f", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "075b7089-4b52-4700-b73e-5dbed986793f", + "x-ms-routing-request-id": "WESTUS2:20210519T185502Z:075b7089-4b52-4700-b73e-5dbed986793f" }, "ResponseBody": [] }, @@ -9060,7 +9086,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8bd746086af774fff1872f0afe881434", "x-ms-return-client-request-id": "true" }, @@ -9069,17 +9095,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:33 GMT", + "Date": "Wed, 19 May 2021 18:55:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a18da61-8fbe-4c66-be58-bf56e653fd96", - "x-ms-ratelimit-remaining-subscription-reads": "11683", - "x-ms-request-id": "6a18da61-8fbe-4c66-be58-bf56e653fd96", - "x-ms-routing-request-id": "WESTUS2:20210507T011733Z:6a18da61-8fbe-4c66-be58-bf56e653fd96" + "x-ms-correlation-request-id": "63bbe605-9ad9-4518-8611-64da328198c7", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "63bbe605-9ad9-4518-8611-64da328198c7", + "x-ms-routing-request-id": "WESTUS2:20210519T185503Z:63bbe605-9ad9-4518-8611-64da328198c7" }, "ResponseBody": [] }, @@ -9088,7 +9114,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b50c1b31d97aad2ac1d3dbaa102388d8", "x-ms-return-client-request-id": "true" }, @@ -9097,17 +9123,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:34 GMT", + "Date": "Wed, 19 May 2021 18:55:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef622d93-9268-4ee2-8ea1-90c36ebc7124", - "x-ms-ratelimit-remaining-subscription-reads": "11681", - "x-ms-request-id": "ef622d93-9268-4ee2-8ea1-90c36ebc7124", - "x-ms-routing-request-id": "WESTUS2:20210507T011734Z:ef622d93-9268-4ee2-8ea1-90c36ebc7124" + "x-ms-correlation-request-id": "d09a7358-9a41-4261-aa1c-508d47416aaa", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "d09a7358-9a41-4261-aa1c-508d47416aaa", + "x-ms-routing-request-id": "WESTUS2:20210519T185504Z:d09a7358-9a41-4261-aa1c-508d47416aaa" }, "ResponseBody": [] }, @@ -9116,7 +9142,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0856f4d92d2a92000727a0b5a93a8d41", "x-ms-return-client-request-id": "true" }, @@ -9125,17 +9151,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:35 GMT", + "Date": "Wed, 19 May 2021 18:55:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dca12697-517e-4f32-a50f-cbe9f5c15b0d", - "x-ms-ratelimit-remaining-subscription-reads": "11679", - "x-ms-request-id": "dca12697-517e-4f32-a50f-cbe9f5c15b0d", - "x-ms-routing-request-id": "WESTUS2:20210507T011735Z:dca12697-517e-4f32-a50f-cbe9f5c15b0d" + "x-ms-correlation-request-id": "f72b074c-a7a8-4639-8551-e0ce72211e86", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "f72b074c-a7a8-4639-8551-e0ce72211e86", + "x-ms-routing-request-id": "WESTUS2:20210519T185505Z:f72b074c-a7a8-4639-8551-e0ce72211e86" }, "ResponseBody": [] }, @@ -9144,7 +9170,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0ef678ec1b422eca1c29c9238f5463ce", "x-ms-return-client-request-id": "true" }, @@ -9153,17 +9179,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:36 GMT", + "Date": "Wed, 19 May 2021 18:55:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf7fd15e-0e48-40fd-aa1c-280dc1c233ad", - "x-ms-ratelimit-remaining-subscription-reads": "11677", - "x-ms-request-id": "bf7fd15e-0e48-40fd-aa1c-280dc1c233ad", - "x-ms-routing-request-id": "WESTUS2:20210507T011736Z:bf7fd15e-0e48-40fd-aa1c-280dc1c233ad" + "x-ms-correlation-request-id": "e8e77717-d8f1-4ba1-80df-ca170188a762", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "e8e77717-d8f1-4ba1-80df-ca170188a762", + "x-ms-routing-request-id": "WESTUS2:20210519T185506Z:e8e77717-d8f1-4ba1-80df-ca170188a762" }, "ResponseBody": [] }, @@ -9172,7 +9198,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "093156fe0b3103091a7aae5239740387", "x-ms-return-client-request-id": "true" }, @@ -9181,17 +9207,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:37 GMT", + "Date": "Wed, 19 May 2021 18:55:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "912ed8f3-d0ac-4d35-8fb0-7f66e246c99a", - "x-ms-ratelimit-remaining-subscription-reads": "11675", - "x-ms-request-id": "912ed8f3-d0ac-4d35-8fb0-7f66e246c99a", - "x-ms-routing-request-id": "WESTUS2:20210507T011737Z:912ed8f3-d0ac-4d35-8fb0-7f66e246c99a" + "x-ms-correlation-request-id": "9d6a302d-c6a8-4b8d-8d9c-e15594e1e8b4", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "9d6a302d-c6a8-4b8d-8d9c-e15594e1e8b4", + "x-ms-routing-request-id": "WESTUS2:20210519T185507Z:9d6a302d-c6a8-4b8d-8d9c-e15594e1e8b4" }, "ResponseBody": [] }, @@ -9200,7 +9226,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97bd9946792dbe962a27ec0064dc03b2", "x-ms-return-client-request-id": "true" }, @@ -9209,17 +9235,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:38 GMT", + "Date": "Wed, 19 May 2021 18:55:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41c9c5f6-195b-4bde-af33-95f31b55a54f", - "x-ms-ratelimit-remaining-subscription-reads": "11673", - "x-ms-request-id": "41c9c5f6-195b-4bde-af33-95f31b55a54f", - "x-ms-routing-request-id": "WESTUS2:20210507T011738Z:41c9c5f6-195b-4bde-af33-95f31b55a54f" + "x-ms-correlation-request-id": "74feb5b0-6e51-4ee4-8ba4-e3aade813205", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "74feb5b0-6e51-4ee4-8ba4-e3aade813205", + "x-ms-routing-request-id": "WESTUS2:20210519T185508Z:74feb5b0-6e51-4ee4-8ba4-e3aade813205" }, "ResponseBody": [] }, @@ -9228,7 +9254,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53b6d2c48309e1106ff2f4c86d77f5a7", "x-ms-return-client-request-id": "true" }, @@ -9237,17 +9263,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:39 GMT", + "Date": "Wed, 19 May 2021 18:55:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28e87f51-8787-45a5-8c93-7e76a6fad692", - "x-ms-ratelimit-remaining-subscription-reads": "11671", - "x-ms-request-id": "28e87f51-8787-45a5-8c93-7e76a6fad692", - "x-ms-routing-request-id": "WESTUS2:20210507T011739Z:28e87f51-8787-45a5-8c93-7e76a6fad692" + "x-ms-correlation-request-id": "ebb756e0-172f-418f-9a28-8018f9db921e", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "ebb756e0-172f-418f-9a28-8018f9db921e", + "x-ms-routing-request-id": "WESTUS2:20210519T185509Z:ebb756e0-172f-418f-9a28-8018f9db921e" }, "ResponseBody": [] }, @@ -9256,7 +9282,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f5dd4126cb9685a0bf72df0a1f089e3d", "x-ms-return-client-request-id": "true" }, @@ -9265,17 +9291,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:40 GMT", + "Date": "Wed, 19 May 2021 18:55:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e126375-45fb-4225-8fec-e887c81bd9f6", - "x-ms-ratelimit-remaining-subscription-reads": "11669", - "x-ms-request-id": "9e126375-45fb-4225-8fec-e887c81bd9f6", - "x-ms-routing-request-id": "WESTUS2:20210507T011740Z:9e126375-45fb-4225-8fec-e887c81bd9f6" + "x-ms-correlation-request-id": "90e5221d-73a8-4cb5-a2ae-04b09250a48d", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "90e5221d-73a8-4cb5-a2ae-04b09250a48d", + "x-ms-routing-request-id": "WESTUS2:20210519T185510Z:90e5221d-73a8-4cb5-a2ae-04b09250a48d" }, "ResponseBody": [] }, @@ -9284,7 +9310,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "678efb76b0bdc37e89dc283a85ce50b2", "x-ms-return-client-request-id": "true" }, @@ -9293,17 +9319,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:41 GMT", + "Date": "Wed, 19 May 2021 18:55:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea205dda-2d52-4c1c-9282-cd40d9faf5da", - "x-ms-ratelimit-remaining-subscription-reads": "11667", - "x-ms-request-id": "ea205dda-2d52-4c1c-9282-cd40d9faf5da", - "x-ms-routing-request-id": "WESTUS2:20210507T011741Z:ea205dda-2d52-4c1c-9282-cd40d9faf5da" + "x-ms-correlation-request-id": "b0ec44f5-a1e4-4b06-ade2-808177b74da1", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "b0ec44f5-a1e4-4b06-ade2-808177b74da1", + "x-ms-routing-request-id": "WESTUS2:20210519T185511Z:b0ec44f5-a1e4-4b06-ade2-808177b74da1" }, "ResponseBody": [] }, @@ -9312,7 +9338,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23da44320dfff81b31319396a305c266", "x-ms-return-client-request-id": "true" }, @@ -9321,17 +9347,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:42 GMT", + "Date": "Wed, 19 May 2021 18:55:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2a65c52-52a5-498a-a283-160fa2e921cd", - "x-ms-ratelimit-remaining-subscription-reads": "11665", - "x-ms-request-id": "b2a65c52-52a5-498a-a283-160fa2e921cd", - "x-ms-routing-request-id": "WESTUS2:20210507T011742Z:b2a65c52-52a5-498a-a283-160fa2e921cd" + "x-ms-correlation-request-id": "4637ea85-3635-4130-ab3b-193b67cd812e", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "4637ea85-3635-4130-ab3b-193b67cd812e", + "x-ms-routing-request-id": "WESTUS2:20210519T185512Z:4637ea85-3635-4130-ab3b-193b67cd812e" }, "ResponseBody": [] }, @@ -9340,7 +9366,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7151b6548ee976eac21a6cbaa366fff1", "x-ms-return-client-request-id": "true" }, @@ -9349,17 +9375,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:43 GMT", + "Date": "Wed, 19 May 2021 18:55:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13649cbd-c010-4706-bafc-0bed66e0f663", - "x-ms-ratelimit-remaining-subscription-reads": "11663", - "x-ms-request-id": "13649cbd-c010-4706-bafc-0bed66e0f663", - "x-ms-routing-request-id": "WESTUS2:20210507T011743Z:13649cbd-c010-4706-bafc-0bed66e0f663" + "x-ms-correlation-request-id": "01524389-0966-4660-94de-39f070f0406f", + "x-ms-ratelimit-remaining-subscription-reads": "11551", + "x-ms-request-id": "01524389-0966-4660-94de-39f070f0406f", + "x-ms-routing-request-id": "WESTUS2:20210519T185513Z:01524389-0966-4660-94de-39f070f0406f" }, "ResponseBody": [] }, @@ -9368,7 +9394,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dad72d227b2e693edf96368c1ce81f83", "x-ms-return-client-request-id": "true" }, @@ -9377,17 +9403,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:44 GMT", + "Date": "Wed, 19 May 2021 18:55:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "512267f5-6317-47f2-8658-d6327f52d9c2", - "x-ms-ratelimit-remaining-subscription-reads": "11661", - "x-ms-request-id": "512267f5-6317-47f2-8658-d6327f52d9c2", - "x-ms-routing-request-id": "WESTUS2:20210507T011744Z:512267f5-6317-47f2-8658-d6327f52d9c2" + "x-ms-correlation-request-id": "e47f47dd-4ca0-4f8e-9f58-ae14926b97a3", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "e47f47dd-4ca0-4f8e-9f58-ae14926b97a3", + "x-ms-routing-request-id": "WESTUS2:20210519T185514Z:e47f47dd-4ca0-4f8e-9f58-ae14926b97a3" }, "ResponseBody": [] }, @@ -9396,7 +9422,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cee5c21adf7da4c95a6460e4a06154ca", "x-ms-return-client-request-id": "true" }, @@ -9405,17 +9431,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:45 GMT", + "Date": "Wed, 19 May 2021 18:55:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71cba56c-28b3-4709-840f-afbfa915caa9", - "x-ms-ratelimit-remaining-subscription-reads": "11659", - "x-ms-request-id": "71cba56c-28b3-4709-840f-afbfa915caa9", - "x-ms-routing-request-id": "WESTUS2:20210507T011745Z:71cba56c-28b3-4709-840f-afbfa915caa9" + "x-ms-correlation-request-id": "1c06323c-43ef-4fb9-aabb-f28aa2b446c9", + "x-ms-ratelimit-remaining-subscription-reads": "11547", + "x-ms-request-id": "1c06323c-43ef-4fb9-aabb-f28aa2b446c9", + "x-ms-routing-request-id": "WESTUS2:20210519T185515Z:1c06323c-43ef-4fb9-aabb-f28aa2b446c9" }, "ResponseBody": [] }, @@ -9424,7 +9450,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7674a231e72ed93777e79252575d59da", "x-ms-return-client-request-id": "true" }, @@ -9433,17 +9459,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:46 GMT", + "Date": "Wed, 19 May 2021 18:55:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f92eeeb-a62b-44d7-8397-961a997cf428", - "x-ms-ratelimit-remaining-subscription-reads": "11657", - "x-ms-request-id": "9f92eeeb-a62b-44d7-8397-961a997cf428", - "x-ms-routing-request-id": "WESTUS2:20210507T011746Z:9f92eeeb-a62b-44d7-8397-961a997cf428" + "x-ms-correlation-request-id": "aa530add-6150-4253-a036-2386d0baeb1b", + "x-ms-ratelimit-remaining-subscription-reads": "11545", + "x-ms-request-id": "aa530add-6150-4253-a036-2386d0baeb1b", + "x-ms-routing-request-id": "WESTUS2:20210519T185516Z:aa530add-6150-4253-a036-2386d0baeb1b" }, "ResponseBody": [] }, @@ -9452,7 +9478,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1a0e8fb31814274643380c91a5ac87e", "x-ms-return-client-request-id": "true" }, @@ -9461,17 +9487,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:47 GMT", + "Date": "Wed, 19 May 2021 18:55:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dbbaf9d0-f230-43ab-9b14-0793721ef26c", - "x-ms-ratelimit-remaining-subscription-reads": "11655", - "x-ms-request-id": "dbbaf9d0-f230-43ab-9b14-0793721ef26c", - "x-ms-routing-request-id": "WESTUS2:20210507T011747Z:dbbaf9d0-f230-43ab-9b14-0793721ef26c" + "x-ms-correlation-request-id": "9fe4b379-e370-4f97-be6d-ca546a15b861", + "x-ms-ratelimit-remaining-subscription-reads": "11543", + "x-ms-request-id": "9fe4b379-e370-4f97-be6d-ca546a15b861", + "x-ms-routing-request-id": "WESTUS2:20210519T185517Z:9fe4b379-e370-4f97-be6d-ca546a15b861" }, "ResponseBody": [] }, @@ -9480,7 +9506,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a5a6c41a97432558a0c57954c764cfc", "x-ms-return-client-request-id": "true" }, @@ -9489,17 +9515,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:48 GMT", + "Date": "Wed, 19 May 2021 18:55:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49cbe686-e5ef-4378-ba4b-d86ecf1e58c3", - "x-ms-ratelimit-remaining-subscription-reads": "11653", - "x-ms-request-id": "49cbe686-e5ef-4378-ba4b-d86ecf1e58c3", - "x-ms-routing-request-id": "WESTUS2:20210507T011748Z:49cbe686-e5ef-4378-ba4b-d86ecf1e58c3" + "x-ms-correlation-request-id": "221179ac-5394-417d-ad6f-dc17c329019e", + "x-ms-ratelimit-remaining-subscription-reads": "11541", + "x-ms-request-id": "221179ac-5394-417d-ad6f-dc17c329019e", + "x-ms-routing-request-id": "WESTUS2:20210519T185518Z:221179ac-5394-417d-ad6f-dc17c329019e" }, "ResponseBody": [] }, @@ -9508,7 +9534,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b7e9860b73c000492d3111fa676ebe1d", "x-ms-return-client-request-id": "true" }, @@ -9517,17 +9543,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:49 GMT", + "Date": "Wed, 19 May 2021 18:55:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "367080c0-9097-4d4b-8a55-ba0db5dd4a1f", - "x-ms-ratelimit-remaining-subscription-reads": "11651", - "x-ms-request-id": "367080c0-9097-4d4b-8a55-ba0db5dd4a1f", - "x-ms-routing-request-id": "WESTUS2:20210507T011749Z:367080c0-9097-4d4b-8a55-ba0db5dd4a1f" + "x-ms-correlation-request-id": "17b6b18c-6ce7-4333-94ee-835dedff4541", + "x-ms-ratelimit-remaining-subscription-reads": "11539", + "x-ms-request-id": "17b6b18c-6ce7-4333-94ee-835dedff4541", + "x-ms-routing-request-id": "WESTUS2:20210519T185519Z:17b6b18c-6ce7-4333-94ee-835dedff4541" }, "ResponseBody": [] }, @@ -9536,7 +9562,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eb11131ede035165936d5674dadef5ed", "x-ms-return-client-request-id": "true" }, @@ -9545,17 +9571,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:50 GMT", + "Date": "Wed, 19 May 2021 18:55:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "423eeafc-b7ba-45aa-9190-58165fcd1ea4", - "x-ms-ratelimit-remaining-subscription-reads": "11649", - "x-ms-request-id": "423eeafc-b7ba-45aa-9190-58165fcd1ea4", - "x-ms-routing-request-id": "WESTUS2:20210507T011750Z:423eeafc-b7ba-45aa-9190-58165fcd1ea4" + "x-ms-correlation-request-id": "22cc7d36-3d9d-4540-a70c-e1f2f1b1dc52", + "x-ms-ratelimit-remaining-subscription-reads": "11537", + "x-ms-request-id": "22cc7d36-3d9d-4540-a70c-e1f2f1b1dc52", + "x-ms-routing-request-id": "WESTUS2:20210519T185520Z:22cc7d36-3d9d-4540-a70c-e1f2f1b1dc52" }, "ResponseBody": [] }, @@ -9564,7 +9590,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94be83e71070cdbe225a4c43975acb1c", "x-ms-return-client-request-id": "true" }, @@ -9573,17 +9599,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:51 GMT", + "Date": "Wed, 19 May 2021 18:55:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10cd6c29-3299-492a-b5a2-0ca727af0300", - "x-ms-ratelimit-remaining-subscription-reads": "11647", - "x-ms-request-id": "10cd6c29-3299-492a-b5a2-0ca727af0300", - "x-ms-routing-request-id": "WESTUS2:20210507T011751Z:10cd6c29-3299-492a-b5a2-0ca727af0300" + "x-ms-correlation-request-id": "dc219914-0970-45f1-831a-c7bba9604063", + "x-ms-ratelimit-remaining-subscription-reads": "11535", + "x-ms-request-id": "dc219914-0970-45f1-831a-c7bba9604063", + "x-ms-routing-request-id": "WESTUS2:20210519T185521Z:dc219914-0970-45f1-831a-c7bba9604063" }, "ResponseBody": [] }, @@ -9592,7 +9618,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3976394d60652cf9219724521dd4264f", "x-ms-return-client-request-id": "true" }, @@ -9601,17 +9627,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:52 GMT", + "Date": "Wed, 19 May 2021 18:55:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c54df176-0112-48c7-a610-b53a37c99972", - "x-ms-ratelimit-remaining-subscription-reads": "11645", - "x-ms-request-id": "c54df176-0112-48c7-a610-b53a37c99972", - "x-ms-routing-request-id": "WESTUS2:20210507T011753Z:c54df176-0112-48c7-a610-b53a37c99972" + "x-ms-correlation-request-id": "a72aab61-bfdd-4ff6-a077-18ae7fa3f08c", + "x-ms-ratelimit-remaining-subscription-reads": "11533", + "x-ms-request-id": "a72aab61-bfdd-4ff6-a077-18ae7fa3f08c", + "x-ms-routing-request-id": "WESTUS2:20210519T185522Z:a72aab61-bfdd-4ff6-a077-18ae7fa3f08c" }, "ResponseBody": [] }, @@ -9620,7 +9646,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e313233b2aaf0ead5543c8a89121b938", "x-ms-return-client-request-id": "true" }, @@ -9629,17 +9655,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:53 GMT", + "Date": "Wed, 19 May 2021 18:55:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4ece5f0-d3dc-4084-91c5-3b6fec600f33", - "x-ms-ratelimit-remaining-subscription-reads": "11643", - "x-ms-request-id": "d4ece5f0-d3dc-4084-91c5-3b6fec600f33", - "x-ms-routing-request-id": "WESTUS2:20210507T011754Z:d4ece5f0-d3dc-4084-91c5-3b6fec600f33" + "x-ms-correlation-request-id": "e1cd11be-1ec2-42a6-9d45-43ce4b0f4181", + "x-ms-ratelimit-remaining-subscription-reads": "11531", + "x-ms-request-id": "e1cd11be-1ec2-42a6-9d45-43ce4b0f4181", + "x-ms-routing-request-id": "WESTUS2:20210519T185523Z:e1cd11be-1ec2-42a6-9d45-43ce4b0f4181" }, "ResponseBody": [] }, @@ -9648,7 +9674,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a0263aa2bc6786888a9272d8ec6bb04e", "x-ms-return-client-request-id": "true" }, @@ -9657,17 +9683,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:54 GMT", + "Date": "Wed, 19 May 2021 18:55:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae10bf6c-0ffb-4d56-a607-3611b38d25af", - "x-ms-ratelimit-remaining-subscription-reads": "11641", - "x-ms-request-id": "ae10bf6c-0ffb-4d56-a607-3611b38d25af", - "x-ms-routing-request-id": "WESTUS2:20210507T011755Z:ae10bf6c-0ffb-4d56-a607-3611b38d25af" + "x-ms-correlation-request-id": "05402b03-b570-4193-9412-0ee6df8fee2a", + "x-ms-ratelimit-remaining-subscription-reads": "11529", + "x-ms-request-id": "05402b03-b570-4193-9412-0ee6df8fee2a", + "x-ms-routing-request-id": "WESTUS2:20210519T185524Z:05402b03-b570-4193-9412-0ee6df8fee2a" }, "ResponseBody": [] }, @@ -9676,7 +9702,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7408fd33e847236d8c68e32298509aff", "x-ms-return-client-request-id": "true" }, @@ -9685,17 +9711,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:55 GMT", + "Date": "Wed, 19 May 2021 18:55:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a2e2f64-328b-4001-84bd-fbc3b2a2168f", - "x-ms-ratelimit-remaining-subscription-reads": "11639", - "x-ms-request-id": "1a2e2f64-328b-4001-84bd-fbc3b2a2168f", - "x-ms-routing-request-id": "WESTUS2:20210507T011756Z:1a2e2f64-328b-4001-84bd-fbc3b2a2168f" + "x-ms-correlation-request-id": "950e486e-5bb0-44ba-bd0f-cc051302f80d", + "x-ms-ratelimit-remaining-subscription-reads": "11527", + "x-ms-request-id": "950e486e-5bb0-44ba-bd0f-cc051302f80d", + "x-ms-routing-request-id": "WESTUS2:20210519T185526Z:950e486e-5bb0-44ba-bd0f-cc051302f80d" }, "ResponseBody": [] }, @@ -9704,7 +9730,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e2b0ebdd85ad7ee79b8d581db7d421ea", "x-ms-return-client-request-id": "true" }, @@ -9713,17 +9739,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:56 GMT", + "Date": "Wed, 19 May 2021 18:55:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38d0232f-e9ee-48a9-9b32-53a460ccd624", - "x-ms-ratelimit-remaining-subscription-reads": "11637", - "x-ms-request-id": "38d0232f-e9ee-48a9-9b32-53a460ccd624", - "x-ms-routing-request-id": "WESTUS2:20210507T011757Z:38d0232f-e9ee-48a9-9b32-53a460ccd624" + "x-ms-correlation-request-id": "f23bbb66-65d3-4a15-a439-5a7b4c3244c3", + "x-ms-ratelimit-remaining-subscription-reads": "11525", + "x-ms-request-id": "f23bbb66-65d3-4a15-a439-5a7b4c3244c3", + "x-ms-routing-request-id": "WESTUS2:20210519T185527Z:f23bbb66-65d3-4a15-a439-5a7b4c3244c3" }, "ResponseBody": [] }, @@ -9732,7 +9758,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94757a924519b9f1cd0314ffd866ed3a", "x-ms-return-client-request-id": "true" }, @@ -9741,17 +9767,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:57 GMT", + "Date": "Wed, 19 May 2021 18:55:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39643d47-82bb-458d-b72e-7fcd2d3f5952", - "x-ms-ratelimit-remaining-subscription-reads": "11635", - "x-ms-request-id": "39643d47-82bb-458d-b72e-7fcd2d3f5952", - "x-ms-routing-request-id": "WESTUS2:20210507T011758Z:39643d47-82bb-458d-b72e-7fcd2d3f5952" + "x-ms-correlation-request-id": "d9227c48-66f2-4355-ad59-75e7a24f9573", + "x-ms-ratelimit-remaining-subscription-reads": "11523", + "x-ms-request-id": "d9227c48-66f2-4355-ad59-75e7a24f9573", + "x-ms-routing-request-id": "WESTUS2:20210519T185528Z:d9227c48-66f2-4355-ad59-75e7a24f9573" }, "ResponseBody": [] }, @@ -9760,7 +9786,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "00fb73f7cebaaea01589d8ba904f6bb7", "x-ms-return-client-request-id": "true" }, @@ -9769,17 +9795,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:58 GMT", + "Date": "Wed, 19 May 2021 18:55:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07a9ab31-feb4-4dc0-a74e-8719b59ec044", - "x-ms-ratelimit-remaining-subscription-reads": "11633", - "x-ms-request-id": "07a9ab31-feb4-4dc0-a74e-8719b59ec044", - "x-ms-routing-request-id": "WESTUS2:20210507T011759Z:07a9ab31-feb4-4dc0-a74e-8719b59ec044" + "x-ms-correlation-request-id": "25d55d76-7491-4592-8eee-ad189d9fd6f6", + "x-ms-ratelimit-remaining-subscription-reads": "11521", + "x-ms-request-id": "25d55d76-7491-4592-8eee-ad189d9fd6f6", + "x-ms-routing-request-id": "WESTUS2:20210519T185529Z:25d55d76-7491-4592-8eee-ad189d9fd6f6" }, "ResponseBody": [] }, @@ -9788,7 +9814,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d8ff94606db97e5faf614a970e8a635", "x-ms-return-client-request-id": "true" }, @@ -9797,17 +9823,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:17:59 GMT", + "Date": "Wed, 19 May 2021 18:55:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "067fe3b7-a4de-402c-94a6-fea58fb2c77d", - "x-ms-ratelimit-remaining-subscription-reads": "11631", - "x-ms-request-id": "067fe3b7-a4de-402c-94a6-fea58fb2c77d", - "x-ms-routing-request-id": "WESTUS2:20210507T011800Z:067fe3b7-a4de-402c-94a6-fea58fb2c77d" + "x-ms-correlation-request-id": "8790047f-1747-4dc8-ac28-fd3b7568f8ed", + "x-ms-ratelimit-remaining-subscription-reads": "11519", + "x-ms-request-id": "8790047f-1747-4dc8-ac28-fd3b7568f8ed", + "x-ms-routing-request-id": "WESTUS2:20210519T185530Z:8790047f-1747-4dc8-ac28-fd3b7568f8ed" }, "ResponseBody": [] }, @@ -9816,7 +9842,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44251e9f20d9c42fd9c77f906d37297d", "x-ms-return-client-request-id": "true" }, @@ -9825,17 +9851,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:00 GMT", + "Date": "Wed, 19 May 2021 18:55:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a68878b6-4321-4ba9-8eb6-93419d019abc", - "x-ms-ratelimit-remaining-subscription-reads": "11629", - "x-ms-request-id": "a68878b6-4321-4ba9-8eb6-93419d019abc", - "x-ms-routing-request-id": "WESTUS2:20210507T011801Z:a68878b6-4321-4ba9-8eb6-93419d019abc" + "x-ms-correlation-request-id": "00b4f64e-025a-4f1e-b765-79249ed5d09f", + "x-ms-ratelimit-remaining-subscription-reads": "11517", + "x-ms-request-id": "00b4f64e-025a-4f1e-b765-79249ed5d09f", + "x-ms-routing-request-id": "WESTUS2:20210519T185531Z:00b4f64e-025a-4f1e-b765-79249ed5d09f" }, "ResponseBody": [] }, @@ -9844,7 +9870,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "deb85c98cfd6f15f8e6306c4b9f63d2d", "x-ms-return-client-request-id": "true" }, @@ -9853,17 +9879,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:01 GMT", + "Date": "Wed, 19 May 2021 18:55:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c3c88e1-1b50-4e7f-bccd-2e074f13f10f", - "x-ms-ratelimit-remaining-subscription-reads": "11627", - "x-ms-request-id": "0c3c88e1-1b50-4e7f-bccd-2e074f13f10f", - "x-ms-routing-request-id": "WESTUS2:20210507T011802Z:0c3c88e1-1b50-4e7f-bccd-2e074f13f10f" + "x-ms-correlation-request-id": "bd50bcb8-2fb4-4265-a8a8-7464fd18c8cc", + "x-ms-ratelimit-remaining-subscription-reads": "11515", + "x-ms-request-id": "bd50bcb8-2fb4-4265-a8a8-7464fd18c8cc", + "x-ms-routing-request-id": "WESTUS2:20210519T185532Z:bd50bcb8-2fb4-4265-a8a8-7464fd18c8cc" }, "ResponseBody": [] }, @@ -9872,7 +9898,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "711aa3e3272a26decaca441487552ac3", "x-ms-return-client-request-id": "true" }, @@ -9881,17 +9907,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:02 GMT", + "Date": "Wed, 19 May 2021 18:55:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a3e8829-f81f-4b04-b165-b564ce88c32e", - "x-ms-ratelimit-remaining-subscription-reads": "11625", - "x-ms-request-id": "3a3e8829-f81f-4b04-b165-b564ce88c32e", - "x-ms-routing-request-id": "WESTUS2:20210507T011803Z:3a3e8829-f81f-4b04-b165-b564ce88c32e" + "x-ms-correlation-request-id": "a147c5e6-36bc-475a-9513-58d7656e3a49", + "x-ms-ratelimit-remaining-subscription-reads": "11513", + "x-ms-request-id": "a147c5e6-36bc-475a-9513-58d7656e3a49", + "x-ms-routing-request-id": "WESTUS2:20210519T185533Z:a147c5e6-36bc-475a-9513-58d7656e3a49" }, "ResponseBody": [] }, @@ -9900,7 +9926,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "131197cdc730cf5ebf34b6751a6b0be3", "x-ms-return-client-request-id": "true" }, @@ -9909,17 +9935,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:03 GMT", + "Date": "Wed, 19 May 2021 18:55:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09e0eb43-3be6-49cd-9857-2c3834e4aaa2", - "x-ms-ratelimit-remaining-subscription-reads": "11623", - "x-ms-request-id": "09e0eb43-3be6-49cd-9857-2c3834e4aaa2", - "x-ms-routing-request-id": "WESTUS2:20210507T011804Z:09e0eb43-3be6-49cd-9857-2c3834e4aaa2" + "x-ms-correlation-request-id": "75eb5cf6-897f-4128-95e2-f4766d6d8c68", + "x-ms-ratelimit-remaining-subscription-reads": "11511", + "x-ms-request-id": "75eb5cf6-897f-4128-95e2-f4766d6d8c68", + "x-ms-routing-request-id": "WESTUS2:20210519T185534Z:75eb5cf6-897f-4128-95e2-f4766d6d8c68" }, "ResponseBody": [] }, @@ -9928,7 +9954,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9ac5189b71c71537e91140c8b4b6a38", "x-ms-return-client-request-id": "true" }, @@ -9937,17 +9963,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:04 GMT", + "Date": "Wed, 19 May 2021 18:55:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9325b332-4cd5-40f2-b137-4b124e47cae7", - "x-ms-ratelimit-remaining-subscription-reads": "11621", - "x-ms-request-id": "9325b332-4cd5-40f2-b137-4b124e47cae7", - "x-ms-routing-request-id": "WESTUS2:20210507T011805Z:9325b332-4cd5-40f2-b137-4b124e47cae7" + "x-ms-correlation-request-id": "4df00ec0-cae2-4dde-be39-c8326dbd7bb3", + "x-ms-ratelimit-remaining-subscription-reads": "11509", + "x-ms-request-id": "4df00ec0-cae2-4dde-be39-c8326dbd7bb3", + "x-ms-routing-request-id": "WESTUS2:20210519T185535Z:4df00ec0-cae2-4dde-be39-c8326dbd7bb3" }, "ResponseBody": [] }, @@ -9956,52 +9982,23 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "21f6433829e51cfd454bb2f570680c5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:05 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2972763-0293-4448-9085-936f370c7f5f", - "x-ms-ratelimit-remaining-subscription-reads": "11615", - "x-ms-request-id": "e2972763-0293-4448-9085-936f370c7f5f", - "x-ms-routing-request-id": "WESTUS2:20210507T011806Z:e2972763-0293-4448-9085-936f370c7f5f" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-2d92f7294f62d1499f51b54ed889a137-51093cbf8c511a46-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "358a60be61a815a744a0959eb3514374", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 07 May 2021 01:18:06 GMT", + "Date": "Wed, 19 May 2021 18:55:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "284c6293-08e9-498e-b6d9-976005dc93e3", - "x-ms-ratelimit-remaining-subscription-reads": "11613", - "x-ms-request-id": "284c6293-08e9-498e-b6d9-976005dc93e3", - "x-ms-routing-request-id": "WESTUS2:20210507T011807Z:284c6293-08e9-498e-b6d9-976005dc93e3" + "x-ms-correlation-request-id": "3b54431a-6abb-434a-89c6-5d38d4877620", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "3b54431a-6abb-434a-89c6-5d38d4877620", + "x-ms-routing-request-id": "WESTUS2:20210519T185536Z:3b54431a-6abb-434a-89c6-5d38d4877620" }, "ResponseBody": [] }, @@ -10011,9 +10008,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ff98e2d389bc55418035d5d4a73bad4e-9288e339a6c86945-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d63d7dcaea7460fe549084d0045d0015", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "358a60be61a815a744a0959eb3514374", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -10022,15 +10018,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:18:06 GMT", + "Date": "Wed, 19 May 2021 18:55:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4bc1cb30-8599-498b-8cc3-c28b6c70db0d", - "x-ms-ratelimit-remaining-subscription-reads": "11612", - "x-ms-request-id": "4bc1cb30-8599-498b-8cc3-c28b6c70db0d", - "x-ms-routing-request-id": "WESTUS2:20210507T011807Z:4bc1cb30-8599-498b-8cc3-c28b6c70db0d" + "x-ms-correlation-request-id": "43ca78d5-a471-4549-b3c8-ab5e52854607", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "43ca78d5-a471-4549-b3c8-ab5e52854607", + "x-ms-routing-request-id": "WESTUS2:20210519T185536Z:43ca78d5-a471-4549-b3c8-ab5e52854607" }, "ResponseBody": { "value": [] @@ -10042,9 +10038,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0cda59ba0295e842bce9a147d6601318-33a6217067c3154d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2b4db48534c0d78f9ce1dd45935e68f3", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d63d7dcaea7460fe549084d0045d0015", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -10053,15 +10048,15 @@ "Cache-Control": "no-cache", "Content-Length": "280", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:18:06 GMT", + "Date": "Wed, 19 May 2021 18:55:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ad0a28d-2a76-4917-afc3-039d784f3c46", - "x-ms-ratelimit-remaining-subscription-reads": "11611", - "x-ms-request-id": "3ad0a28d-2a76-4917-afc3-039d784f3c46", - "x-ms-routing-request-id": "WESTUS2:20210507T011807Z:3ad0a28d-2a76-4917-afc3-039d784f3c46" + "x-ms-correlation-request-id": "ed184686-cf06-40ce-83f9-b34941c633bc", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "ed184686-cf06-40ce-83f9-b34941c633bc", + "x-ms-routing-request-id": "WESTUS2:20210519T185536Z:ed184686-cf06-40ce-83f9-b34941c633bc" }, "ResponseBody": { "value": [ diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag().json index 509ecebdebed..d2302facb6f8 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:08 GMT", + "Date": "Wed, 19 May 2021 18:55:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9bea3923-6bd3-4e86-a02b-7c220f65cb39", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "9bea3923-6bd3-4e86-a02b-7c220f65cb39", - "x-ms-routing-request-id": "WESTUS2:20210507T002309Z:9bea3923-6bd3-4e86-a02b-7c220f65cb39" + "x-ms-correlation-request-id": "103cec85-092a-4ab6-b565-c230f76e4346", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "103cec85-092a-4ab6-b565-c230f76e4346", + "x-ms-routing-request-id": "WESTUS2:20210519T185537Z:103cec85-092a-4ab6-b565-c230f76e4346" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-27ad75fe3335b8468c2fed08d697d2c6-6bc03447ddb7dd41-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fb13be64cf9b6649af51ce3288000fbb-d4ef720b0380eb40-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ae685874b4fa1ded043fd3fec017466", "x-ms-return-client-request-id": "true" }, @@ -58,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:09 GMT", + "Date": "Wed, 19 May 2021 18:55:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91d96e54-7909-427a-bc32-2ca8ae0a1017", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "91d96e54-7909-427a-bc32-2ca8ae0a1017", - "x-ms-routing-request-id": "WESTUS2:20210507T002310Z:91d96e54-7909-427a-bc32-2ca8ae0a1017" + "x-ms-correlation-request-id": "caad52f4-d33e-480b-8fc5-ed10e379e795", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "caad52f4-d33e-480b-8fc5-ed10e379e795", + "x-ms-routing-request-id": "WESTUS2:20210519T185537Z:caad52f4-d33e-480b-8fc5-ed10e379e795" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9790", @@ -92,8 +92,8 @@ "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "traceparent": "00-2af41ae566ebc649b455bb888652d962-651c88dd51f50747-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-34c1354ef64f074c9f8b3b850c3c047a-a1eb70b87e75354e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7ee5a98cdfdc93bf65c292f4014dbfd6", "x-ms-return-client-request-id": "true" }, @@ -108,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:09 GMT", + "Date": "Wed, 19 May 2021 18:55:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc2e3151-3882-428f-93fd-2084784b0c0c", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "fc2e3151-3882-428f-93fd-2084784b0c0c", - "x-ms-routing-request-id": "WESTUS2:20210507T002310Z:fc2e3151-3882-428f-93fd-2084784b0c0c" + "x-ms-correlation-request-id": "3e4e631a-3cc7-494c-bd04-cf59d3f1428e", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "3e4e631a-3cc7-494c-bd04-cf59d3f1428e", + "x-ms-routing-request-id": "WESTUS2:20210519T185538Z:3e4e631a-3cc7-494c-bd04-cf59d3f1428e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9790", @@ -140,8 +140,7 @@ "Authorization": "Sanitized", "Content-Length": "20", "Content-Type": "application/json", - "traceparent": "00-67973e3342e580438529e44bfdb8903f-aab531587a048149-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a58c0fdfe0ad7cf72054e36bd41ae801", "x-ms-return-client-request-id": "true" }, @@ -155,15 +154,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:10 GMT", + "Date": "Wed, 19 May 2021 18:55:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5173c3cd-dc6f-45fd-ac55-6265b18858e4", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "5173c3cd-dc6f-45fd-ac55-6265b18858e4", - "x-ms-routing-request-id": "WESTUS2:20210507T002310Z:5173c3cd-dc6f-45fd-ac55-6265b18858e4" + "x-ms-correlation-request-id": "e1f6c2da-2dd1-4f48-811e-5873fe355df9", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "e1f6c2da-2dd1-4f48-811e-5873fe355df9", + "x-ms-routing-request-id": "WESTUS2:20210519T185538Z:e1f6c2da-2dd1-4f48-811e-5873fe355df9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9790", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag()Async.json index 19055fd8017e..469ce034f592 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag()Async.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:05 GMT", + "Date": "Wed, 19 May 2021 18:55:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e584063e-5cb2-4934-8992-6ad1dc336c18", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "e584063e-5cb2-4934-8992-6ad1dc336c18", - "x-ms-routing-request-id": "WESTUS2:20210507T002306Z:e584063e-5cb2-4934-8992-6ad1dc336c18" + "x-ms-correlation-request-id": "50792b8e-2d0f-4ded-ac04-38b4599f95f0", + "x-ms-ratelimit-remaining-subscription-reads": "11500", + "x-ms-request-id": "50792b8e-2d0f-4ded-ac04-38b4599f95f0", + "x-ms-routing-request-id": "WESTUS2:20210519T185537Z:50792b8e-2d0f-4ded-ac04-38b4599f95f0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-82c64f6fc978de4ea43f42c5b8db73cd-17f46164ab37a743-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-88b51bae440baf41bbf6d2934d9ab6df-2d58c40a1f4c1641-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "70a60d763441813b3a1352c2e4d4c5d7", "x-ms-return-client-request-id": "true" }, @@ -58,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:06 GMT", + "Date": "Wed, 19 May 2021 18:55:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "919a2611-e96e-434d-80ae-6fec22c036ec", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "919a2611-e96e-434d-80ae-6fec22c036ec", - "x-ms-routing-request-id": "WESTUS2:20210507T002307Z:919a2611-e96e-434d-80ae-6fec22c036ec" + "x-ms-correlation-request-id": "6066a068-b1aa-44c4-9306-675c950b5edb", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "6066a068-b1aa-44c4-9306-675c950b5edb", + "x-ms-routing-request-id": "WESTUS2:20210519T185537Z:6066a068-b1aa-44c4-9306-675c950b5edb" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3485", @@ -92,7 +92,7 @@ "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0345283fa353f83460591dfed7bc2e6f", "x-ms-return-client-request-id": "true" }, @@ -107,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:07 GMT", + "Date": "Wed, 19 May 2021 18:55:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "064384a4-f1df-4256-9c8c-c6a2a018736e", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "064384a4-f1df-4256-9c8c-c6a2a018736e", - "x-ms-routing-request-id": "WESTUS2:20210507T002307Z:064384a4-f1df-4256-9c8c-c6a2a018736e" + "x-ms-correlation-request-id": "eac98ac2-b79f-4313-9d5c-98d40402d63f", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "eac98ac2-b79f-4313-9d5c-98d40402d63f", + "x-ms-routing-request-id": "WESTUS2:20210519T185538Z:eac98ac2-b79f-4313-9d5c-98d40402d63f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3485", @@ -139,7 +139,7 @@ "Authorization": "Sanitized", "Content-Length": "20", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cf89515e39cd4ad040d0cb8a767d932a", "x-ms-return-client-request-id": "true" }, @@ -153,15 +153,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:07 GMT", + "Date": "Wed, 19 May 2021 18:55:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c04d323c-6cb5-4a0a-a3a6-9d7447a2a6d5", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "c04d323c-6cb5-4a0a-a3a6-9d7447a2a6d5", - "x-ms-routing-request-id": "WESTUS2:20210507T002307Z:c04d323c-6cb5-4a0a-a3a6-9d7447a2a6d5" + "x-ms-correlation-request-id": "8e3ab042-b08a-4fcd-9481-8771159dbe57", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "8e3ab042-b08a-4fcd-9481-8771159dbe57", + "x-ms-routing-request-id": "WESTUS2:20210519T185538Z:8e3ab042-b08a-4fcd-9481-8771159dbe57" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3485", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags().json index 394aa3c48cff..a7627b027482 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:10 GMT", + "Date": "Wed, 19 May 2021 18:55:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1421e8ba-8156-4114-9af0-d4250f4be4f4", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "1421e8ba-8156-4114-9af0-d4250f4be4f4", - "x-ms-routing-request-id": "WESTUS2:20210507T002311Z:1421e8ba-8156-4114-9af0-d4250f4be4f4" + "x-ms-correlation-request-id": "fb8fd135-d043-406c-939b-b335993647dc", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "fb8fd135-d043-406c-939b-b335993647dc", + "x-ms-routing-request-id": "WESTUS2:20210519T185538Z:fb8fd135-d043-406c-939b-b335993647dc" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-660fc39fe0e5a44b8266a7af7add7ab6-c0f3a77efffc3f45-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-df1ca08f5a4eee4ab9142f25b1d0c77e-ea651f38c8ef1447-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b2d52f2d95f5bed589c19fc232d5cdbd", "x-ms-return-client-request-id": "true" }, @@ -58,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:11 GMT", + "Date": "Wed, 19 May 2021 18:55:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6012a780-c3dc-4027-aeb3-9ff76b9fa39d", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "6012a780-c3dc-4027-aeb3-9ff76b9fa39d", - "x-ms-routing-request-id": "WESTUS2:20210507T002312Z:6012a780-c3dc-4027-aeb3-9ff76b9fa39d" + "x-ms-correlation-request-id": "1a5ddf27-2bcf-4ea3-afed-f92a397d0f4a", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "1a5ddf27-2bcf-4ea3-afed-f92a397d0f4a", + "x-ms-routing-request-id": "WESTUS2:20210519T185539Z:1a5ddf27-2bcf-4ea3-afed-f92a397d0f4a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3012", @@ -92,8 +92,8 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "traceparent": "00-e962bbbf8df1684ea379af18ea2910e1-1a76721b9f3c5246-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-59c9e2210b4335429ee412f37a8e652e-19e7febbd6b6004b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a56870f0dc79c820c2c237b1a6f0af0", "x-ms-return-client-request-id": "true" }, @@ -107,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:11 GMT", + "Date": "Wed, 19 May 2021 18:55:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb92b8a8-cf9e-407d-9f01-84a758b3145f", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-request-id": "cb92b8a8-cf9e-407d-9f01-84a758b3145f", - "x-ms-routing-request-id": "WESTUS2:20210507T002312Z:cb92b8a8-cf9e-407d-9f01-84a758b3145f" + "x-ms-correlation-request-id": "f01b46d6-ad35-4aa9-b32c-2ed604291948", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "f01b46d6-ad35-4aa9-b32c-2ed604291948", + "x-ms-routing-request-id": "WESTUS2:20210519T185540Z:f01b46d6-ad35-4aa9-b32c-2ed604291948" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3012", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags()Async.json index b82aedab7ba1..22d1ffb4e43e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags()Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-4f58fc9333cf55468c6e7ebff64bf38d-682a2281b2728a4a-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d8e4bf2fbb2c517db2bcb3a532889d1", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:07 GMT", + "Date": "Wed, 19 May 2021 18:55:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ad8073f-4c02-4b0e-88ba-70345e2d0629", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "2ad8073f-4c02-4b0e-88ba-70345e2d0629", - "x-ms-routing-request-id": "WESTUS2:20210507T002308Z:2ad8073f-4c02-4b0e-88ba-70345e2d0629" + "x-ms-correlation-request-id": "83403c58-7e4e-408a-88c4-56ff4ab44c75", + "x-ms-ratelimit-remaining-subscription-reads": "11497", + "x-ms-request-id": "83403c58-7e4e-408a-88c4-56ff4ab44c75", + "x-ms-routing-request-id": "WESTUS2:20210519T185539Z:83403c58-7e4e-408a-88c4-56ff4ab44c75" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-0de720ec566a6245aefc9d7f8c25d35f-1d77cb9a0706844c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f322e15ac597b6498f52a8120e11d679-e6d7cec1a1a1d54e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed49031a4ea60df2c3ad9483acaff1e7", "x-ms-return-client-request-id": "true" }, @@ -58,20 +59,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:08 GMT", + "Date": "Wed, 19 May 2021 18:55:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c33ae0f-2bb5-4cf2-b55d-e2197b7e4a77", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "4c33ae0f-2bb5-4cf2-b55d-e2197b7e4a77", - "x-ms-routing-request-id": "WESTUS2:20210507T002308Z:4c33ae0f-2bb5-4cf2-b55d-e2197b7e4a77" + "x-ms-correlation-request-id": "b422dece-d151-47f7-a6a0-c30174ed64d9", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "b422dece-d151-47f7-a6a0-c30174ed64d9", + "x-ms-routing-request-id": "WESTUS2:20210519T185540Z:b422dece-d151-47f7-a6a0-c30174ed64d9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg844", @@ -92,7 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e46d9d60aed241c1f536821f1922e93", "x-ms-return-client-request-id": "true" }, @@ -106,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:08 GMT", + "Date": "Wed, 19 May 2021 18:55:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46a71f59-5147-4c8e-bc76-6a2841369965", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "46a71f59-5147-4c8e-bc76-6a2841369965", - "x-ms-routing-request-id": "WESTUS2:20210507T002309Z:46a71f59-5147-4c8e-bc76-6a2841369965" + "x-ms-correlation-request-id": "067885c1-2dc3-48b0-8d74-959c3eb47ad2", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "067885c1-2dc3-48b0-8d74-959c3eb47ad2", + "x-ms-routing-request-id": "WESTUS2:20210519T185540Z:067885c1-2dc3-48b0-8d74-959c3eb47ad2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg844", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag().json index c9b454cd83ad..d6e1565df35b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag().json @@ -6,7 +6,6 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|ad80da2c-4d0c713138b5070e.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e2e2980aa5db3bb6186f13aeb46a6b1c", "x-ms-return-client-request-id": "true" @@ -17,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:12 GMT", + "Date": "Wed, 19 May 2021 18:55:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3dde388-6051-4db7-b794-4f162997ec9d", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "d3dde388-6051-4db7-b794-4f162997ec9d", - "x-ms-routing-request-id": "WESTUS2:20210507T002312Z:d3dde388-6051-4db7-b794-4f162997ec9d" + "x-ms-correlation-request-id": "a3988cbd-7f5c-4c3b-b509-519ec3ba7250", + "x-ms-ratelimit-remaining-subscription-reads": "11492", + "x-ms-request-id": "a3988cbd-7f5c-4c3b-b509-519ec3ba7250", + "x-ms-routing-request-id": "WESTUS2:20210519T185541Z:a3988cbd-7f5c-4c3b-b509-519ec3ba7250" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-1b0a338cce35f744866c10aec3001cb9-edfc2eb5818e9842-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-6df84d52a6d1284abc3e7e306a76da77-c687429c7d287e41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e31e8ad546bc8035dec983139602b517", "x-ms-return-client-request-id": "true" }, @@ -59,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:13 GMT", + "Date": "Wed, 19 May 2021 18:55:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17907476-97e8-4f29-afc0-977a64769f12", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "17907476-97e8-4f29-afc0-977a64769f12", - "x-ms-routing-request-id": "WESTUS2:20210507T002313Z:17907476-97e8-4f29-afc0-977a64769f12" + "x-ms-correlation-request-id": "1801a460-7718-40df-8563-5ddaec553659", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "1801a460-7718-40df-8563-5ddaec553659", + "x-ms-routing-request-id": "WESTUS2:20210519T185542Z:1801a460-7718-40df-8563-5ddaec553659" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3562", @@ -93,8 +92,8 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "traceparent": "00-d1bfb6e1a2bf3b48803382cdcd01ac78-6ea2a65835a6d345-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e5eee81c7130a145b257b7cbe97322ff-d19c0bee728f8447-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "747dbaa8b242fa489077270d4590a8c7", "x-ms-return-client-request-id": "true" }, @@ -108,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:13 GMT", + "Date": "Wed, 19 May 2021 18:55:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6dbf56e4-0756-4e84-959e-463b5704548a", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "6dbf56e4-0756-4e84-959e-463b5704548a", - "x-ms-routing-request-id": "WESTUS2:20210507T002313Z:6dbf56e4-0756-4e84-959e-463b5704548a" + "x-ms-correlation-request-id": "ffa300d8-6165-4e67-9fa6-7984c7718e27", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "ffa300d8-6165-4e67-9fa6-7984c7718e27", + "x-ms-routing-request-id": "WESTUS2:20210519T185542Z:ffa300d8-6165-4e67-9fa6-7984c7718e27" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3562", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag()Async.json index 811a646193a4..76389d003a31 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|ad80da2a-4d0c713138b5070e.", + "Request-Id": "|b84bef2a-4e1fac3c59f9802f.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "419b0507b48c89952eb8bc9ebc8fdf26", "x-ms-return-client-request-id": "true" @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:09 GMT", + "Date": "Wed, 19 May 2021 18:55:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8337c72-1868-4c47-89dd-16686c483cb2", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "e8337c72-1868-4c47-89dd-16686c483cb2", - "x-ms-routing-request-id": "WESTUS2:20210507T002309Z:e8337c72-1868-4c47-89dd-16686c483cb2" + "x-ms-correlation-request-id": "f17b7bf7-a678-4ea8-b8b7-d169eadd4fa4", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "f17b7bf7-a678-4ea8-b8b7-d169eadd4fa4", + "x-ms-routing-request-id": "WESTUS2:20210519T185541Z:f17b7bf7-a678-4ea8-b8b7-d169eadd4fa4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-03cdde7b61ebe444961afa10c2ce87b8-f689903ba523cb4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-5231795d6fdeae4da0f96fde3692df2f-ad1f5a63d6553f49-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04e7864d2a4d3a9c15f6443d32990891", "x-ms-return-client-request-id": "true" }, @@ -59,20 +59,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:09 GMT", + "Date": "Wed, 19 May 2021 18:55:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a94dd329-40e4-441d-9332-f3af6f42b045", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "a94dd329-40e4-441d-9332-f3af6f42b045", - "x-ms-routing-request-id": "WESTUS2:20210507T002310Z:a94dd329-40e4-441d-9332-f3af6f42b045" + "x-ms-correlation-request-id": "d7c1e199-c194-4f2a-a64a-c220b7b8426d", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "d7c1e199-c194-4f2a-a64a-c220b7b8426d", + "x-ms-routing-request-id": "WESTUS2:20210519T185542Z:d7c1e199-c194-4f2a-a64a-c220b7b8426d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg325", @@ -93,8 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "traceparent": "00-6a7904e8dcf5ba47ba42bbb352d1210a-e93561b6ded60a47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-dccbba3a1a3f3f4cb66747e650eb25c2-7ddf3417ad578b44-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8b4c68b5040bc1aa29beea545e73cfa0", "x-ms-return-client-request-id": "true" }, @@ -108,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:10 GMT", + "Date": "Wed, 19 May 2021 18:55:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4215de4c-78f0-451a-b548-1da1a8ac6e4c", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "4215de4c-78f0-451a-b548-1da1a8ac6e4c", - "x-ms-routing-request-id": "WESTUS2:20210507T002310Z:4215de4c-78f0-451a-b548-1da1a8ac6e4c" + "x-ms-correlation-request-id": "4aa7f521-68e1-42f0-ba4e-c3f64ed63f5e", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "4aa7f521-68e1-42f0-ba4e-c3f64ed63f5e", + "x-ms-routing-request-id": "WESTUS2:20210519T185542Z:4aa7f521-68e1-42f0-ba4e-c3f64ed63f5e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg325", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg().json index b549869189b6..6587b0c22bb2 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:26:43 GMT", + "Date": "Wed, 19 May 2021 18:55:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87d83ca3-bb43-4c25-8445-db2b72d9fae6", - "x-ms-ratelimit-remaining-subscription-reads": "11742", - "x-ms-request-id": "87d83ca3-bb43-4c25-8445-db2b72d9fae6", - "x-ms-routing-request-id": "WESTUS2:20210507T202643Z:87d83ca3-bb43-4c25-8445-db2b72d9fae6" + "x-ms-correlation-request-id": "798ee8fb-6d64-41d1-84ae-1d346303e706", + "x-ms-ratelimit-remaining-subscription-reads": "11488", + "x-ms-request-id": "798ee8fb-6d64-41d1-84ae-1d346303e706", + "x-ms-routing-request-id": "WESTUS2:20210519T185543Z:798ee8fb-6d64-41d1-84ae-1d346303e706" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,8 +47,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-36be26c83f1a61458b8be0d609564809-438e0f504d7f4948-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-3181f999557ea440a9b661d300177aaf-b06d5c88743bb546-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23a8f49b6e1c00635d75b25673df6e9d", "x-ms-return-client-request-id": "true" }, @@ -58,16 +58,16 @@ "Cache-Control": "no-cache", "Content-Length": "96", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:26:43 GMT", + "Date": "Wed, 19 May 2021 18:55:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d6dc28a-32e9-4e8f-a784-a097f40cf05c", + "x-ms-correlation-request-id": "144dbbbc-1907-48cb-928f-4e980990715f", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-deletes": "14991", - "x-ms-request-id": "3d6dc28a-32e9-4e8f-a784-a097f40cf05c", - "x-ms-routing-request-id": "WESTUS2:20210507T202643Z:3d6dc28a-32e9-4e8f-a784-a097f40cf05c" + "x-ms-ratelimit-remaining-subscription-deletes": "14987", + "x-ms-request-id": "144dbbbc-1907-48cb-928f-4e980990715f", + "x-ms-routing-request-id": "WESTUS2:20210519T185543Z:144dbbbc-1907-48cb-928f-4e980990715f" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg()Async.json index 3d5172a22f71..209eebf193d9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg()Async.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:10 GMT", + "Date": "Wed, 19 May 2021 18:55:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bbd12905-e8bd-4a9c-9699-e031806ada15", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "bbd12905-e8bd-4a9c-9699-e031806ada15", - "x-ms-routing-request-id": "WESTUS2:20210507T002311Z:bbd12905-e8bd-4a9c-9699-e031806ada15" + "x-ms-correlation-request-id": "069627dc-37db-4295-9720-91c6b81a4313", + "x-ms-ratelimit-remaining-subscription-reads": "11487", + "x-ms-request-id": "069627dc-37db-4295-9720-91c6b81a4313", + "x-ms-routing-request-id": "WESTUS2:20210519T185543Z:069627dc-37db-4295-9720-91c6b81a4313" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,8 +47,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d70a760fe5144248b0b0f246085b44e0-13f015cd23a02b42-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-0f22bd79bbb91e48a12fed3af239bcc6-549b064163852e4b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "59da4c8c96951def4aed1446f27b5729", "x-ms-return-client-request-id": "true" }, @@ -58,16 +58,16 @@ "Cache-Control": "no-cache", "Content-Length": "96", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:10 GMT", + "Date": "Wed, 19 May 2021 18:55:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e1b1a53-94dd-4592-a912-cc3531268cee", + "x-ms-correlation-request-id": "46645bc6-7355-4dfc-8cec-bd853eac57ef", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-request-id": "5e1b1a53-94dd-4592-a912-cc3531268cee", - "x-ms-routing-request-id": "WESTUS2:20210507T002311Z:5e1b1a53-94dd-4592-a912-cc3531268cee" + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-request-id": "46645bc6-7355-4dfc-8cec-bd853eac57ef", + "x-ms-routing-request-id": "WESTUS2:20210519T185543Z:46645bc6-7355-4dfc-8cec-bd853eac57ef" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json index bd12b2fe5a9c..104690954d8a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "Request-Id": "|b84bef2b-4e1fac3c59f9802f.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6624df4553424cb014a2ffa04c465e3", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 22:39:45 GMT", + "Date": "Wed, 19 May 2021 18:55:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2f92c9a-e73f-481e-8db8-99cb64a4e01a", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "a2f92c9a-e73f-481e-8db8-99cb64a4e01a", - "x-ms-routing-request-id": "WESTUS2:20210512T223945Z:a2f92c9a-e73f-481e-8db8-99cb64a4e01a" + "x-ms-correlation-request-id": "8b79b3ae-ea5f-4c50-b545-87a78f915d4d", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "8b79b3ae-ea5f-4c50-b545-87a78f915d4d", + "x-ms-routing-request-id": "WESTUS2:20210519T185543Z:8b79b3ae-ea5f-4c50-b545-87a78f915d4d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-7646c3ebdf963542b791988b033d99c2-2125189c5658414a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c353bbd378dc9b43a912c1b1b15c628b-dac1134587716e45-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8a57f07703ff96683d7c799dcc470c10", "x-ms-return-client-request-id": "true" }, @@ -63,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 22:39:46 GMT", + "Date": "Wed, 19 May 2021 18:55:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "411f2159-3707-4dde-87c1-dfc7a1f336ca", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "411f2159-3707-4dde-87c1-dfc7a1f336ca", - "x-ms-routing-request-id": "WESTUS2:20210512T223947Z:411f2159-3707-4dde-87c1-dfc7a1f336ca" + "x-ms-correlation-request-id": "5345baa2-0f0a-4a29-8559-62e1b66f6c95", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "5345baa2-0f0a-4a29-8559-62e1b66f6c95", + "x-ms-routing-request-id": "WESTUS2:20210519T185544Z:5345baa2-0f0a-4a29-8559-62e1b66f6c95" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1124", @@ -90,8 +91,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7b49467b9f04e641b92de6a56d8956c8-6437ec20ab3ec745-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-9072cda31960044faab848453412a6e9-5200e484f37f7249-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dfad7924b0960026bc4d2b775987eb11", "x-ms-return-client-request-id": "true" }, @@ -100,17 +101,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:46 GMT", + "Date": "Wed, 19 May 2021 18:55:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efc25279-cb31-449b-af4a-161212f930fb", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "efc25279-cb31-449b-af4a-161212f930fb", - "x-ms-routing-request-id": "WESTUS2:20210512T223947Z:efc25279-cb31-449b-af4a-161212f930fb" + "x-ms-correlation-request-id": "d4fa1286-406c-43f4-848f-bfc08ca8b3cb", + "x-ms-ratelimit-remaining-subscription-deletes": "14982", + "x-ms-request-id": "d4fa1286-406c-43f4-848f-bfc08ca8b3cb", + "x-ms-routing-request-id": "WESTUS2:20210519T185544Z:d4fa1286-406c-43f4-848f-bfc08ca8b3cb" }, "ResponseBody": [] }, @@ -119,8 +120,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d2992da3a02185439533d6a10558e48f-32b0db514765344c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4bdfea2303b8c681c957ceb2d7f13cb5", "x-ms-return-client-request-id": "true" }, @@ -129,17 +129,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:46 GMT", + "Date": "Wed, 19 May 2021 18:55:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "288c73fe-8c00-488c-b144-35471895cc08", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "288c73fe-8c00-488c-b144-35471895cc08", - "x-ms-routing-request-id": "WESTUS2:20210512T223947Z:288c73fe-8c00-488c-b144-35471895cc08" + "x-ms-correlation-request-id": "d5ebf988-dc04-4b58-9db0-72f9e39b7c3c", + "x-ms-ratelimit-remaining-subscription-reads": "11482", + "x-ms-request-id": "d5ebf988-dc04-4b58-9db0-72f9e39b7c3c", + "x-ms-routing-request-id": "WESTUS2:20210519T185544Z:d5ebf988-dc04-4b58-9db0-72f9e39b7c3c" }, "ResponseBody": [] }, @@ -148,7 +148,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ef168903acf3e8f8462e545b94dae34", "x-ms-return-client-request-id": "true" }, @@ -157,17 +157,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:47 GMT", + "Date": "Wed, 19 May 2021 18:55:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f82f5a1d-63eb-4adf-85ab-cef07782b37a", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "f82f5a1d-63eb-4adf-85ab-cef07782b37a", - "x-ms-routing-request-id": "WESTUS2:20210512T223948Z:f82f5a1d-63eb-4adf-85ab-cef07782b37a" + "x-ms-correlation-request-id": "fee7299e-0763-4d99-9c77-b4a50695b44e", + "x-ms-ratelimit-remaining-subscription-reads": "11480", + "x-ms-request-id": "fee7299e-0763-4d99-9c77-b4a50695b44e", + "x-ms-routing-request-id": "WESTUS2:20210519T185545Z:fee7299e-0763-4d99-9c77-b4a50695b44e" }, "ResponseBody": [] }, @@ -176,7 +176,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f5328189fa7a859dcb0082917427208", "x-ms-return-client-request-id": "true" }, @@ -185,17 +185,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:48 GMT", + "Date": "Wed, 19 May 2021 18:55:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26fcf848-ea47-40d2-b205-1f7ccb375672", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "26fcf848-ea47-40d2-b205-1f7ccb375672", - "x-ms-routing-request-id": "WESTUS2:20210512T223949Z:26fcf848-ea47-40d2-b205-1f7ccb375672" + "x-ms-correlation-request-id": "86828625-50e5-47f1-98ff-e9e1d8ef4ab1", + "x-ms-ratelimit-remaining-subscription-reads": "11478", + "x-ms-request-id": "86828625-50e5-47f1-98ff-e9e1d8ef4ab1", + "x-ms-routing-request-id": "WESTUS2:20210519T185546Z:86828625-50e5-47f1-98ff-e9e1d8ef4ab1" }, "ResponseBody": [] }, @@ -204,7 +204,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea484113c695e9335aa1c6551d3b0d7c", "x-ms-return-client-request-id": "true" }, @@ -213,17 +213,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:49 GMT", + "Date": "Wed, 19 May 2021 18:55:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8cb5d36-8c4a-4153-97c4-434b48ac2852", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "d8cb5d36-8c4a-4153-97c4-434b48ac2852", - "x-ms-routing-request-id": "WESTUS2:20210512T223950Z:d8cb5d36-8c4a-4153-97c4-434b48ac2852" + "x-ms-correlation-request-id": "121e7ad6-752f-4248-b35e-e671c26eaa86", + "x-ms-ratelimit-remaining-subscription-reads": "11476", + "x-ms-request-id": "121e7ad6-752f-4248-b35e-e671c26eaa86", + "x-ms-routing-request-id": "WESTUS2:20210519T185547Z:121e7ad6-752f-4248-b35e-e671c26eaa86" }, "ResponseBody": [] }, @@ -232,7 +232,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af9a99a9cd9df00d0e48911e32662642", "x-ms-return-client-request-id": "true" }, @@ -241,17 +241,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:50 GMT", + "Date": "Wed, 19 May 2021 18:55:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "279d6967-d134-4e9a-842f-bbb8725a41a8", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "279d6967-d134-4e9a-842f-bbb8725a41a8", - "x-ms-routing-request-id": "WESTUS2:20210512T223951Z:279d6967-d134-4e9a-842f-bbb8725a41a8" + "x-ms-correlation-request-id": "5ee2dc14-8e60-4e65-b587-6e30caab6916", + "x-ms-ratelimit-remaining-subscription-reads": "11474", + "x-ms-request-id": "5ee2dc14-8e60-4e65-b587-6e30caab6916", + "x-ms-routing-request-id": "WESTUS2:20210519T185548Z:5ee2dc14-8e60-4e65-b587-6e30caab6916" }, "ResponseBody": [] }, @@ -260,7 +260,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7732ddefc305519ef56a1506d8038aa0", "x-ms-return-client-request-id": "true" }, @@ -269,17 +269,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:51 GMT", + "Date": "Wed, 19 May 2021 18:55:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "411e32a5-6c63-4c26-8e41-fd9cf017c2ea", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "411e32a5-6c63-4c26-8e41-fd9cf017c2ea", - "x-ms-routing-request-id": "WESTUS2:20210512T223952Z:411e32a5-6c63-4c26-8e41-fd9cf017c2ea" + "x-ms-correlation-request-id": "99de3f99-bfb7-43fe-8c92-5a4d32c43989", + "x-ms-ratelimit-remaining-subscription-reads": "11472", + "x-ms-request-id": "99de3f99-bfb7-43fe-8c92-5a4d32c43989", + "x-ms-routing-request-id": "WESTUS2:20210519T185549Z:99de3f99-bfb7-43fe-8c92-5a4d32c43989" }, "ResponseBody": [] }, @@ -288,7 +288,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7e7f8ba3c3a8466b3357db4d3514b7f3", "x-ms-return-client-request-id": "true" }, @@ -297,17 +297,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:52 GMT", + "Date": "Wed, 19 May 2021 18:55:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4dc20e9b-f9b3-4bdc-9e77-3ebc663a4bb3", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "4dc20e9b-f9b3-4bdc-9e77-3ebc663a4bb3", - "x-ms-routing-request-id": "WESTUS2:20210512T223953Z:4dc20e9b-f9b3-4bdc-9e77-3ebc663a4bb3" + "x-ms-correlation-request-id": "be045964-638f-45c0-a653-63c76cc01f11", + "x-ms-ratelimit-remaining-subscription-reads": "11470", + "x-ms-request-id": "be045964-638f-45c0-a653-63c76cc01f11", + "x-ms-routing-request-id": "WESTUS2:20210519T185550Z:be045964-638f-45c0-a653-63c76cc01f11" }, "ResponseBody": [] }, @@ -316,7 +316,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4065847a9509e576fa48ba32b806180b", "x-ms-return-client-request-id": "true" }, @@ -325,17 +325,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:53 GMT", + "Date": "Wed, 19 May 2021 18:55:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02c542b5-7273-42e9-ae2a-8b0761e76bfc", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "02c542b5-7273-42e9-ae2a-8b0761e76bfc", - "x-ms-routing-request-id": "WESTUS2:20210512T223954Z:02c542b5-7273-42e9-ae2a-8b0761e76bfc" + "x-ms-correlation-request-id": "fc47c9fa-44bf-4406-a5bc-f25907ba4996", + "x-ms-ratelimit-remaining-subscription-reads": "11468", + "x-ms-request-id": "fc47c9fa-44bf-4406-a5bc-f25907ba4996", + "x-ms-routing-request-id": "WESTUS2:20210519T185551Z:fc47c9fa-44bf-4406-a5bc-f25907ba4996" }, "ResponseBody": [] }, @@ -344,7 +344,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a67bf0bea8e72c9971ec44aee8511ce0", "x-ms-return-client-request-id": "true" }, @@ -353,17 +353,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:54 GMT", + "Date": "Wed, 19 May 2021 18:55:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdc48d5a-982e-4160-b32a-c0000d3fd97e", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "bdc48d5a-982e-4160-b32a-c0000d3fd97e", - "x-ms-routing-request-id": "WESTUS2:20210512T223955Z:bdc48d5a-982e-4160-b32a-c0000d3fd97e" + "x-ms-correlation-request-id": "6219f92b-5962-4fd0-bb3d-8801bd2c63a3", + "x-ms-ratelimit-remaining-subscription-reads": "11466", + "x-ms-request-id": "6219f92b-5962-4fd0-bb3d-8801bd2c63a3", + "x-ms-routing-request-id": "WESTUS2:20210519T185552Z:6219f92b-5962-4fd0-bb3d-8801bd2c63a3" }, "ResponseBody": [] }, @@ -372,7 +372,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "548c21b24a9e0e97159a835f09388d2c", "x-ms-return-client-request-id": "true" }, @@ -381,17 +381,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:55 GMT", + "Date": "Wed, 19 May 2021 18:55:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a726d154-e4c4-43b0-a7af-b60d7a78e043", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "a726d154-e4c4-43b0-a7af-b60d7a78e043", - "x-ms-routing-request-id": "WESTUS2:20210512T223956Z:a726d154-e4c4-43b0-a7af-b60d7a78e043" + "x-ms-correlation-request-id": "05cce2e0-c742-4a98-9db5-f4c9c2c8d36e", + "x-ms-ratelimit-remaining-subscription-reads": "11464", + "x-ms-request-id": "05cce2e0-c742-4a98-9db5-f4c9c2c8d36e", + "x-ms-routing-request-id": "WESTUS2:20210519T185554Z:05cce2e0-c742-4a98-9db5-f4c9c2c8d36e" }, "ResponseBody": [] }, @@ -400,7 +400,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "448ed03f1199d10ceb39cf1d51c8fda9", "x-ms-return-client-request-id": "true" }, @@ -409,17 +409,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:56 GMT", + "Date": "Wed, 19 May 2021 18:55:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff49ae60-cb7d-4f7b-8326-f9c69f806552", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "ff49ae60-cb7d-4f7b-8326-f9c69f806552", - "x-ms-routing-request-id": "WESTUS2:20210512T223957Z:ff49ae60-cb7d-4f7b-8326-f9c69f806552" + "x-ms-correlation-request-id": "6cfa32cf-ce4a-4332-bc1f-7bb8aada487e", + "x-ms-ratelimit-remaining-subscription-reads": "11462", + "x-ms-request-id": "6cfa32cf-ce4a-4332-bc1f-7bb8aada487e", + "x-ms-routing-request-id": "WESTUS2:20210519T185555Z:6cfa32cf-ce4a-4332-bc1f-7bb8aada487e" }, "ResponseBody": [] }, @@ -428,7 +428,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "967fd92cc47a746d596c904c25392338", "x-ms-return-client-request-id": "true" }, @@ -437,17 +437,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:57 GMT", + "Date": "Wed, 19 May 2021 18:55:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ddec2ee-e78a-4d5e-8df8-61c9f9dcd43a", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "7ddec2ee-e78a-4d5e-8df8-61c9f9dcd43a", - "x-ms-routing-request-id": "WESTUS2:20210512T223958Z:7ddec2ee-e78a-4d5e-8df8-61c9f9dcd43a" + "x-ms-correlation-request-id": "7fdd1d3d-bfeb-4b1b-986d-892e9b5b2f9c", + "x-ms-ratelimit-remaining-subscription-reads": "11460", + "x-ms-request-id": "7fdd1d3d-bfeb-4b1b-986d-892e9b5b2f9c", + "x-ms-routing-request-id": "WESTUS2:20210519T185556Z:7fdd1d3d-bfeb-4b1b-986d-892e9b5b2f9c" }, "ResponseBody": [] }, @@ -456,7 +456,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "186e175ed7c2a14715bb68647a7abd4d", "x-ms-return-client-request-id": "true" }, @@ -465,17 +465,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:58 GMT", + "Date": "Wed, 19 May 2021 18:55:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cefd0b83-2b94-4e6d-b90e-28ca7bd75d2f", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "cefd0b83-2b94-4e6d-b90e-28ca7bd75d2f", - "x-ms-routing-request-id": "WESTUS2:20210512T223959Z:cefd0b83-2b94-4e6d-b90e-28ca7bd75d2f" + "x-ms-correlation-request-id": "a13ea482-b990-4314-adaf-d31b1b5c9dc0", + "x-ms-ratelimit-remaining-subscription-reads": "11458", + "x-ms-request-id": "a13ea482-b990-4314-adaf-d31b1b5c9dc0", + "x-ms-routing-request-id": "WESTUS2:20210519T185557Z:a13ea482-b990-4314-adaf-d31b1b5c9dc0" }, "ResponseBody": [] }, @@ -484,7 +484,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f33da9df6b87bb2621aeb2c80bfabb1", "x-ms-return-client-request-id": "true" }, @@ -493,17 +493,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:59 GMT", + "Date": "Wed, 19 May 2021 18:55:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30fe3514-1ce0-4469-83d6-9213b3279666", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "30fe3514-1ce0-4469-83d6-9213b3279666", - "x-ms-routing-request-id": "WESTUS2:20210512T224000Z:30fe3514-1ce0-4469-83d6-9213b3279666" + "x-ms-correlation-request-id": "04f16734-7b7f-42d7-9c1a-9ad1364e1161", + "x-ms-ratelimit-remaining-subscription-reads": "11456", + "x-ms-request-id": "04f16734-7b7f-42d7-9c1a-9ad1364e1161", + "x-ms-routing-request-id": "WESTUS2:20210519T185558Z:04f16734-7b7f-42d7-9c1a-9ad1364e1161" }, "ResponseBody": [] }, @@ -512,7 +512,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "39be9615e45955e692de81be5b08f9de", "x-ms-return-client-request-id": "true" }, @@ -521,17 +521,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:00 GMT", + "Date": "Wed, 19 May 2021 18:55:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d586e0e6-5954-4cac-995f-754d9d7a35a5", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "d586e0e6-5954-4cac-995f-754d9d7a35a5", - "x-ms-routing-request-id": "WESTUS2:20210512T224001Z:d586e0e6-5954-4cac-995f-754d9d7a35a5" + "x-ms-correlation-request-id": "f8deaea4-09d6-4fd7-b4d9-ab8ff4247225", + "x-ms-ratelimit-remaining-subscription-reads": "11454", + "x-ms-request-id": "f8deaea4-09d6-4fd7-b4d9-ab8ff4247225", + "x-ms-routing-request-id": "WESTUS2:20210519T185559Z:f8deaea4-09d6-4fd7-b4d9-ab8ff4247225" }, "ResponseBody": [] }, @@ -540,7 +540,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4baf43aff406677f64f3b5a8eb1b2156", "x-ms-return-client-request-id": "true" }, @@ -549,17 +549,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:01 GMT", + "Date": "Wed, 19 May 2021 18:55:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7dd6f0d-517b-4fb4-a101-fd1f4a67d0dc", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "f7dd6f0d-517b-4fb4-a101-fd1f4a67d0dc", - "x-ms-routing-request-id": "WESTUS2:20210512T224002Z:f7dd6f0d-517b-4fb4-a101-fd1f4a67d0dc" + "x-ms-correlation-request-id": "83a7100f-12fb-403f-bc71-b73dee94953c", + "x-ms-ratelimit-remaining-subscription-reads": "11452", + "x-ms-request-id": "83a7100f-12fb-403f-bc71-b73dee94953c", + "x-ms-routing-request-id": "WESTUS2:20210519T185600Z:83a7100f-12fb-403f-bc71-b73dee94953c" }, "ResponseBody": [] }, @@ -568,7 +568,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e44eb70f83bbb8f4f3dd9cda75f4205a", "x-ms-return-client-request-id": "true" }, @@ -577,17 +577,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:02 GMT", + "Date": "Wed, 19 May 2021 18:56:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dbb05be1-945e-4a95-833f-0461a16f19be", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "dbb05be1-945e-4a95-833f-0461a16f19be", - "x-ms-routing-request-id": "WESTUS2:20210512T224003Z:dbb05be1-945e-4a95-833f-0461a16f19be" + "x-ms-correlation-request-id": "5435a754-fb57-4249-a311-9f3a9458dd78", + "x-ms-ratelimit-remaining-subscription-reads": "11450", + "x-ms-request-id": "5435a754-fb57-4249-a311-9f3a9458dd78", + "x-ms-routing-request-id": "WESTUS2:20210519T185601Z:5435a754-fb57-4249-a311-9f3a9458dd78" }, "ResponseBody": [] }, @@ -596,7 +596,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3d7c0d21600f21aa1656d4652f3e6977", "x-ms-return-client-request-id": "true" }, @@ -605,17 +605,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:03 GMT", + "Date": "Wed, 19 May 2021 18:56:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6e16261-6dde-42dd-ba9e-385e05545ccf", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "f6e16261-6dde-42dd-ba9e-385e05545ccf", - "x-ms-routing-request-id": "WESTUS2:20210512T224004Z:f6e16261-6dde-42dd-ba9e-385e05545ccf" + "x-ms-correlation-request-id": "1a0fbdc6-e324-4263-b042-35548a59a1d5", + "x-ms-ratelimit-remaining-subscription-reads": "11448", + "x-ms-request-id": "1a0fbdc6-e324-4263-b042-35548a59a1d5", + "x-ms-routing-request-id": "WESTUS2:20210519T185602Z:1a0fbdc6-e324-4263-b042-35548a59a1d5" }, "ResponseBody": [] }, @@ -624,7 +624,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3ae2abc15b92b224ff7572957a5f170", "x-ms-return-client-request-id": "true" }, @@ -633,17 +633,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:04 GMT", + "Date": "Wed, 19 May 2021 18:56:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55ddb336-7698-4786-aaaa-eacebb780fc3", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "55ddb336-7698-4786-aaaa-eacebb780fc3", - "x-ms-routing-request-id": "WESTUS2:20210512T224005Z:55ddb336-7698-4786-aaaa-eacebb780fc3" + "x-ms-correlation-request-id": "51907eff-5d59-4dca-84ae-280ac509e860", + "x-ms-ratelimit-remaining-subscription-reads": "11446", + "x-ms-request-id": "51907eff-5d59-4dca-84ae-280ac509e860", + "x-ms-routing-request-id": "WESTUS2:20210519T185603Z:51907eff-5d59-4dca-84ae-280ac509e860" }, "ResponseBody": [] }, @@ -652,7 +652,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "de865ad3e49eaf460d2ccd65ae8e89b5", "x-ms-return-client-request-id": "true" }, @@ -661,17 +661,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:06 GMT", + "Date": "Wed, 19 May 2021 18:56:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0dd79f55-84ec-4c8d-ae11-3dd8ab57e327", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "0dd79f55-84ec-4c8d-ae11-3dd8ab57e327", - "x-ms-routing-request-id": "WESTUS2:20210512T224006Z:0dd79f55-84ec-4c8d-ae11-3dd8ab57e327" + "x-ms-correlation-request-id": "b77726b1-42e1-406a-82d5-dd76664f84a2", + "x-ms-ratelimit-remaining-subscription-reads": "11444", + "x-ms-request-id": "b77726b1-42e1-406a-82d5-dd76664f84a2", + "x-ms-routing-request-id": "WESTUS2:20210519T185604Z:b77726b1-42e1-406a-82d5-dd76664f84a2" }, "ResponseBody": [] }, @@ -680,7 +680,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a1d25747c450ca1ea50ed180981ca71", "x-ms-return-client-request-id": "true" }, @@ -689,17 +689,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:07 GMT", + "Date": "Wed, 19 May 2021 18:56:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d17f2d3d-60bd-4b7a-9f56-0d74bf56e701", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "d17f2d3d-60bd-4b7a-9f56-0d74bf56e701", - "x-ms-routing-request-id": "WESTUS2:20210512T224007Z:d17f2d3d-60bd-4b7a-9f56-0d74bf56e701" + "x-ms-correlation-request-id": "40f2cf9a-9b18-4efb-98e3-1ff892576f60", + "x-ms-ratelimit-remaining-subscription-reads": "11442", + "x-ms-request-id": "40f2cf9a-9b18-4efb-98e3-1ff892576f60", + "x-ms-routing-request-id": "WESTUS2:20210519T185605Z:40f2cf9a-9b18-4efb-98e3-1ff892576f60" }, "ResponseBody": [] }, @@ -708,7 +708,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d49264648bb7d8d8e4ff968c47bd7dc0", "x-ms-return-client-request-id": "true" }, @@ -717,17 +717,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:08 GMT", + "Date": "Wed, 19 May 2021 18:56:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fef5b48d-a2f6-41b0-815d-ad9b68e278ab", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "fef5b48d-a2f6-41b0-815d-ad9b68e278ab", - "x-ms-routing-request-id": "WESTUS2:20210512T224008Z:fef5b48d-a2f6-41b0-815d-ad9b68e278ab" + "x-ms-correlation-request-id": "c7198b05-0f9d-4abb-8999-54e1d49b2cb1", + "x-ms-ratelimit-remaining-subscription-reads": "11440", + "x-ms-request-id": "c7198b05-0f9d-4abb-8999-54e1d49b2cb1", + "x-ms-routing-request-id": "WESTUS2:20210519T185606Z:c7198b05-0f9d-4abb-8999-54e1d49b2cb1" }, "ResponseBody": [] }, @@ -736,7 +736,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31b5a16da787562bb97af44df62da58c", "x-ms-return-client-request-id": "true" }, @@ -745,17 +745,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:09 GMT", + "Date": "Wed, 19 May 2021 18:56:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a4c10ac-9d82-4268-8123-4355ddccf7c7", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "0a4c10ac-9d82-4268-8123-4355ddccf7c7", - "x-ms-routing-request-id": "WESTUS2:20210512T224009Z:0a4c10ac-9d82-4268-8123-4355ddccf7c7" + "x-ms-correlation-request-id": "0436797f-5c04-4214-84f6-4babbf27ba10", + "x-ms-ratelimit-remaining-subscription-reads": "11438", + "x-ms-request-id": "0436797f-5c04-4214-84f6-4babbf27ba10", + "x-ms-routing-request-id": "WESTUS2:20210519T185607Z:0436797f-5c04-4214-84f6-4babbf27ba10" }, "ResponseBody": [] }, @@ -764,7 +764,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a005c62b5fce8fe4c446645e614c52c", "x-ms-return-client-request-id": "true" }, @@ -773,17 +773,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:11 GMT", + "Date": "Wed, 19 May 2021 18:56:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0c10623-75d5-44c0-9a2a-99325f8fc9f1", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "d0c10623-75d5-44c0-9a2a-99325f8fc9f1", - "x-ms-routing-request-id": "WESTUS2:20210512T224011Z:d0c10623-75d5-44c0-9a2a-99325f8fc9f1" + "x-ms-correlation-request-id": "2f2a2374-16ca-4629-8316-e6fc3e296b74", + "x-ms-ratelimit-remaining-subscription-reads": "11436", + "x-ms-request-id": "2f2a2374-16ca-4629-8316-e6fc3e296b74", + "x-ms-routing-request-id": "WESTUS2:20210519T185608Z:2f2a2374-16ca-4629-8316-e6fc3e296b74" }, "ResponseBody": [] }, @@ -792,7 +792,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "67ab2cd398ccbde9393b1a3c978ae2b6", "x-ms-return-client-request-id": "true" }, @@ -801,17 +801,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:12 GMT", + "Date": "Wed, 19 May 2021 18:56:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e40de7b5-7b54-44df-9b72-2e87ac7d3bfb", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "e40de7b5-7b54-44df-9b72-2e87ac7d3bfb", - "x-ms-routing-request-id": "WESTUS2:20210512T224012Z:e40de7b5-7b54-44df-9b72-2e87ac7d3bfb" + "x-ms-correlation-request-id": "933f576b-5ae9-41aa-b996-c81a342f784f", + "x-ms-ratelimit-remaining-subscription-reads": "11434", + "x-ms-request-id": "933f576b-5ae9-41aa-b996-c81a342f784f", + "x-ms-routing-request-id": "WESTUS2:20210519T185609Z:933f576b-5ae9-41aa-b996-c81a342f784f" }, "ResponseBody": [] }, @@ -820,7 +820,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea2a095a33bdb8c4a3cce44240e56fa4", "x-ms-return-client-request-id": "true" }, @@ -829,17 +829,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:13 GMT", + "Date": "Wed, 19 May 2021 18:56:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6498a8e1-6400-449f-9047-5ed1e428416d", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "6498a8e1-6400-449f-9047-5ed1e428416d", - "x-ms-routing-request-id": "WESTUS2:20210512T224013Z:6498a8e1-6400-449f-9047-5ed1e428416d" + "x-ms-correlation-request-id": "9f8ff494-681a-44ee-bc78-f427cd061b62", + "x-ms-ratelimit-remaining-subscription-reads": "11432", + "x-ms-request-id": "9f8ff494-681a-44ee-bc78-f427cd061b62", + "x-ms-routing-request-id": "WESTUS2:20210519T185610Z:9f8ff494-681a-44ee-bc78-f427cd061b62" }, "ResponseBody": [] }, @@ -848,7 +848,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c97ac7b53d82c9bf724210c09ac151c2", "x-ms-return-client-request-id": "true" }, @@ -857,17 +857,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:14 GMT", + "Date": "Wed, 19 May 2021 18:56:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "318b0010-c012-4d57-8f0c-8bbdbb6c61ec", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "318b0010-c012-4d57-8f0c-8bbdbb6c61ec", - "x-ms-routing-request-id": "WESTUS2:20210512T224014Z:318b0010-c012-4d57-8f0c-8bbdbb6c61ec" + "x-ms-correlation-request-id": "43aae968-c635-4302-84ce-0922b845988b", + "x-ms-ratelimit-remaining-subscription-reads": "11430", + "x-ms-request-id": "43aae968-c635-4302-84ce-0922b845988b", + "x-ms-routing-request-id": "WESTUS2:20210519T185611Z:43aae968-c635-4302-84ce-0922b845988b" }, "ResponseBody": [] }, @@ -876,7 +876,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dcebb062daeaa06f68f2c4ffb4a77d53", "x-ms-return-client-request-id": "true" }, @@ -885,17 +885,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:15 GMT", + "Date": "Wed, 19 May 2021 18:56:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27b74655-3b1a-4a6f-8c42-9250b0045cc8", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "27b74655-3b1a-4a6f-8c42-9250b0045cc8", - "x-ms-routing-request-id": "WESTUS2:20210512T224015Z:27b74655-3b1a-4a6f-8c42-9250b0045cc8" + "x-ms-correlation-request-id": "9fcb711c-11c2-47cc-b136-d0f339d91f4a", + "x-ms-ratelimit-remaining-subscription-reads": "11428", + "x-ms-request-id": "9fcb711c-11c2-47cc-b136-d0f339d91f4a", + "x-ms-routing-request-id": "WESTUS2:20210519T185612Z:9fcb711c-11c2-47cc-b136-d0f339d91f4a" }, "ResponseBody": [] }, @@ -904,7 +904,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cf8775cb19101c334960787b22041ee1", "x-ms-return-client-request-id": "true" }, @@ -913,17 +913,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:15 GMT", + "Date": "Wed, 19 May 2021 18:56:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f026179-8809-4280-ace6-813fa200fbcd", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "9f026179-8809-4280-ace6-813fa200fbcd", - "x-ms-routing-request-id": "WESTUS2:20210512T224016Z:9f026179-8809-4280-ace6-813fa200fbcd" + "x-ms-correlation-request-id": "3c410c2c-56e1-46c1-a463-848493c4e16f", + "x-ms-ratelimit-remaining-subscription-reads": "11426", + "x-ms-request-id": "3c410c2c-56e1-46c1-a463-848493c4e16f", + "x-ms-routing-request-id": "WESTUS2:20210519T185613Z:3c410c2c-56e1-46c1-a463-848493c4e16f" }, "ResponseBody": [] }, @@ -932,7 +932,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90e0227a92fadbba58da619079c015cb", "x-ms-return-client-request-id": "true" }, @@ -941,17 +941,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:17 GMT", + "Date": "Wed, 19 May 2021 18:56:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "644592b0-0beb-4cbe-a052-985887963baf", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "644592b0-0beb-4cbe-a052-985887963baf", - "x-ms-routing-request-id": "WESTUS2:20210512T224017Z:644592b0-0beb-4cbe-a052-985887963baf" + "x-ms-correlation-request-id": "3c6e3cfb-2d74-44cc-83a0-96fe771eefef", + "x-ms-ratelimit-remaining-subscription-reads": "11424", + "x-ms-request-id": "3c6e3cfb-2d74-44cc-83a0-96fe771eefef", + "x-ms-routing-request-id": "WESTUS2:20210519T185614Z:3c6e3cfb-2d74-44cc-83a0-96fe771eefef" }, "ResponseBody": [] }, @@ -960,52 +960,24 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "24f4bcc4823948b17ccf928962f37e63", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:18 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5cd8a50-d27c-428c-8360-bbc6e09975cb", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "b5cd8a50-d27c-428c-8360-bbc6e09975cb", - "x-ms-routing-request-id": "WESTUS2:20210512T224018Z:b5cd8a50-d27c-428c-8360-bbc6e09975cb" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9185e3d4edc63859bbac7735b7a3a289", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:18 GMT", + "Date": "Wed, 19 May 2021 18:56:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "357a728d-487d-471f-b679-aad44279c3ca", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "357a728d-487d-471f-b679-aad44279c3ca", - "x-ms-routing-request-id": "WESTUS2:20210512T224019Z:357a728d-487d-471f-b679-aad44279c3ca" + "x-ms-correlation-request-id": "3324500a-4637-4518-b78f-ad877678091b", + "x-ms-ratelimit-remaining-subscription-reads": "11422", + "x-ms-request-id": "3324500a-4637-4518-b78f-ad877678091b", + "x-ms-routing-request-id": "WESTUS2:20210519T185615Z:3324500a-4637-4518-b78f-ad877678091b" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json index 5bffa96785ea..7530467ffb04 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg()Async.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 22:39:45 GMT", + "Date": "Wed, 19 May 2021 18:55:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ba5bda8-2563-4382-b9e8-8c6ecaa68c9b", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "5ba5bda8-2563-4382-b9e8-8c6ecaa68c9b", - "x-ms-routing-request-id": "WESTUS2:20210512T223945Z:5ba5bda8-2563-4382-b9e8-8c6ecaa68c9b" + "x-ms-correlation-request-id": "24346344-1504-4142-a67e-8b4faa7dfc9f", + "x-ms-ratelimit-remaining-subscription-reads": "11484", + "x-ms-request-id": "24346344-1504-4142-a67e-8b4faa7dfc9f", + "x-ms-routing-request-id": "WESTUS2:20210519T185543Z:24346344-1504-4142-a67e-8b4faa7dfc9f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-a4cfd661abb90642afcbe78f79634ae1-ed918daac2b2eb4b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-6ebf6f093183db4bbef9808b1a382f39-24b132976eff8f4d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5186692cac050d7d79a4b9d1fe39028a", "x-ms-return-client-request-id": "true" }, @@ -63,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 22:39:46 GMT", + "Date": "Wed, 19 May 2021 18:55:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a88fb42-e6ca-44c0-9f2a-9c3d445de215", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "2a88fb42-e6ca-44c0-9f2a-9c3d445de215", - "x-ms-routing-request-id": "WESTUS2:20210512T223947Z:2a88fb42-e6ca-44c0-9f2a-9c3d445de215" + "x-ms-correlation-request-id": "d32491a8-8edb-4a52-8696-08e7422d8c18", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "d32491a8-8edb-4a52-8696-08e7422d8c18", + "x-ms-routing-request-id": "WESTUS2:20210519T185544Z:d32491a8-8edb-4a52-8696-08e7422d8c18" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9243", @@ -90,8 +90,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-485a0788497c5c4799daa749ec0d2506-a817c5613d9a6644-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-314534141502204b90bc176b1b7ec971-7d24f6bbb71f0441-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "42ec7da7387011849116b5a7432ed035", "x-ms-return-client-request-id": "true" }, @@ -100,17 +100,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:46 GMT", + "Date": "Wed, 19 May 2021 18:55:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17fc29a6-a608-4ac4-a3d0-86240492562e", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "17fc29a6-a608-4ac4-a3d0-86240492562e", - "x-ms-routing-request-id": "WESTUS2:20210512T223947Z:17fc29a6-a608-4ac4-a3d0-86240492562e" + "x-ms-correlation-request-id": "e16a0750-c40e-4b12-b810-285cad23c464", + "x-ms-ratelimit-remaining-subscription-deletes": "14983", + "x-ms-request-id": "e16a0750-c40e-4b12-b810-285cad23c464", + "x-ms-routing-request-id": "WESTUS2:20210519T185544Z:e16a0750-c40e-4b12-b810-285cad23c464" }, "ResponseBody": [] }, @@ -119,7 +119,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-264c8a0a3881804cb810511790b87de6-940e96a62966f640-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "222fb0b64ff9f45ce475c0eff7d5c94a", "x-ms-return-client-request-id": "true" }, @@ -128,17 +129,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:46 GMT", + "Date": "Wed, 19 May 2021 18:55:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d7847b8-0029-4dfb-8237-1e9a6529f1ff", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "5d7847b8-0029-4dfb-8237-1e9a6529f1ff", - "x-ms-routing-request-id": "WESTUS2:20210512T223947Z:5d7847b8-0029-4dfb-8237-1e9a6529f1ff" + "x-ms-correlation-request-id": "84e41da8-d272-488f-848e-1eeda39ecfa4", + "x-ms-ratelimit-remaining-subscription-reads": "11483", + "x-ms-request-id": "84e41da8-d272-488f-848e-1eeda39ecfa4", + "x-ms-routing-request-id": "WESTUS2:20210519T185544Z:84e41da8-d272-488f-848e-1eeda39ecfa4" }, "ResponseBody": [] }, @@ -147,7 +148,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b51783d4b226eaef2ba5918333b487c8", "x-ms-return-client-request-id": "true" }, @@ -156,17 +157,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:47 GMT", + "Date": "Wed, 19 May 2021 18:55:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59929bb8-dcb9-429c-a8b2-26217aaf1f4c", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "59929bb8-dcb9-429c-a8b2-26217aaf1f4c", - "x-ms-routing-request-id": "WESTUS2:20210512T223948Z:59929bb8-dcb9-429c-a8b2-26217aaf1f4c" + "x-ms-correlation-request-id": "eb0d91c9-06c9-4075-b5ea-fbc6394fc3fa", + "x-ms-ratelimit-remaining-subscription-reads": "11481", + "x-ms-request-id": "eb0d91c9-06c9-4075-b5ea-fbc6394fc3fa", + "x-ms-routing-request-id": "WESTUS2:20210519T185545Z:eb0d91c9-06c9-4075-b5ea-fbc6394fc3fa" }, "ResponseBody": [] }, @@ -175,7 +176,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "93f1d1e8aeff6a3cec1e6c25fc6250dc", "x-ms-return-client-request-id": "true" }, @@ -184,17 +185,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:48 GMT", + "Date": "Wed, 19 May 2021 18:55:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83c00ae8-0c41-44e5-a66b-18e4b994df39", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "83c00ae8-0c41-44e5-a66b-18e4b994df39", - "x-ms-routing-request-id": "WESTUS2:20210512T223949Z:83c00ae8-0c41-44e5-a66b-18e4b994df39" + "x-ms-correlation-request-id": "862889e2-022d-4c5a-bcc9-6c638b970be2", + "x-ms-ratelimit-remaining-subscription-reads": "11479", + "x-ms-request-id": "862889e2-022d-4c5a-bcc9-6c638b970be2", + "x-ms-routing-request-id": "WESTUS2:20210519T185546Z:862889e2-022d-4c5a-bcc9-6c638b970be2" }, "ResponseBody": [] }, @@ -203,7 +204,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "06fbb92378b104bdc044f654bed8c12f", "x-ms-return-client-request-id": "true" }, @@ -212,17 +213,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:49 GMT", + "Date": "Wed, 19 May 2021 18:55:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3e16cdb-68a5-4ed6-bceb-896177adf505", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "b3e16cdb-68a5-4ed6-bceb-896177adf505", - "x-ms-routing-request-id": "WESTUS2:20210512T223950Z:b3e16cdb-68a5-4ed6-bceb-896177adf505" + "x-ms-correlation-request-id": "e49f45d5-36ef-4cd7-a589-20176a726801", + "x-ms-ratelimit-remaining-subscription-reads": "11477", + "x-ms-request-id": "e49f45d5-36ef-4cd7-a589-20176a726801", + "x-ms-routing-request-id": "WESTUS2:20210519T185547Z:e49f45d5-36ef-4cd7-a589-20176a726801" }, "ResponseBody": [] }, @@ -231,7 +232,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2506f7ed36e3264b47adc90845c9edc8", "x-ms-return-client-request-id": "true" }, @@ -240,17 +241,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:50 GMT", + "Date": "Wed, 19 May 2021 18:55:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6277399-3d9c-4d49-96ac-5b5a3deb7ca3", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "e6277399-3d9c-4d49-96ac-5b5a3deb7ca3", - "x-ms-routing-request-id": "WESTUS2:20210512T223951Z:e6277399-3d9c-4d49-96ac-5b5a3deb7ca3" + "x-ms-correlation-request-id": "7c100e3b-8b06-4b0d-b678-8944c2c094f8", + "x-ms-ratelimit-remaining-subscription-reads": "11475", + "x-ms-request-id": "7c100e3b-8b06-4b0d-b678-8944c2c094f8", + "x-ms-routing-request-id": "WESTUS2:20210519T185548Z:7c100e3b-8b06-4b0d-b678-8944c2c094f8" }, "ResponseBody": [] }, @@ -259,7 +260,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "795fb45480b86f1613edd2bab7e8ab13", "x-ms-return-client-request-id": "true" }, @@ -268,17 +269,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:51 GMT", + "Date": "Wed, 19 May 2021 18:55:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "806d8b56-a2a4-4085-bad2-f3d8b26a47ef", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "806d8b56-a2a4-4085-bad2-f3d8b26a47ef", - "x-ms-routing-request-id": "WESTUS2:20210512T223952Z:806d8b56-a2a4-4085-bad2-f3d8b26a47ef" + "x-ms-correlation-request-id": "a851bd77-99f1-4e01-b066-798efa9bdc5f", + "x-ms-ratelimit-remaining-subscription-reads": "11473", + "x-ms-request-id": "a851bd77-99f1-4e01-b066-798efa9bdc5f", + "x-ms-routing-request-id": "WESTUS2:20210519T185549Z:a851bd77-99f1-4e01-b066-798efa9bdc5f" }, "ResponseBody": [] }, @@ -287,7 +288,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04373c5c2b5bedf96ed5be04aeb5bef6", "x-ms-return-client-request-id": "true" }, @@ -296,17 +297,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:52 GMT", + "Date": "Wed, 19 May 2021 18:55:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f038985d-cee0-492e-80a9-a2c720d852a3", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "f038985d-cee0-492e-80a9-a2c720d852a3", - "x-ms-routing-request-id": "WESTUS2:20210512T223953Z:f038985d-cee0-492e-80a9-a2c720d852a3" + "x-ms-correlation-request-id": "4a696903-a036-47ba-950e-761085a5fb52", + "x-ms-ratelimit-remaining-subscription-reads": "11471", + "x-ms-request-id": "4a696903-a036-47ba-950e-761085a5fb52", + "x-ms-routing-request-id": "WESTUS2:20210519T185550Z:4a696903-a036-47ba-950e-761085a5fb52" }, "ResponseBody": [] }, @@ -315,7 +316,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0aff2d5647796c76e19611f663906e5f", "x-ms-return-client-request-id": "true" }, @@ -324,17 +325,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:53 GMT", + "Date": "Wed, 19 May 2021 18:55:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86a97667-35f1-4aed-b2b9-78b2e93c2504", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "86a97667-35f1-4aed-b2b9-78b2e93c2504", - "x-ms-routing-request-id": "WESTUS2:20210512T223954Z:86a97667-35f1-4aed-b2b9-78b2e93c2504" + "x-ms-correlation-request-id": "a9cd52bd-1b1d-4ff4-86da-2103333e3af5", + "x-ms-ratelimit-remaining-subscription-reads": "11469", + "x-ms-request-id": "a9cd52bd-1b1d-4ff4-86da-2103333e3af5", + "x-ms-routing-request-id": "WESTUS2:20210519T185551Z:a9cd52bd-1b1d-4ff4-86da-2103333e3af5" }, "ResponseBody": [] }, @@ -343,7 +344,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09abb602e892296dbb720ae3c212c05e", "x-ms-return-client-request-id": "true" }, @@ -352,17 +353,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:54 GMT", + "Date": "Wed, 19 May 2021 18:55:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "363329ee-58ea-4629-b656-19805b87e0a3", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "363329ee-58ea-4629-b656-19805b87e0a3", - "x-ms-routing-request-id": "WESTUS2:20210512T223955Z:363329ee-58ea-4629-b656-19805b87e0a3" + "x-ms-correlation-request-id": "afc8529c-11f3-4876-aee6-f53f567bfefc", + "x-ms-ratelimit-remaining-subscription-reads": "11467", + "x-ms-request-id": "afc8529c-11f3-4876-aee6-f53f567bfefc", + "x-ms-routing-request-id": "WESTUS2:20210519T185552Z:afc8529c-11f3-4876-aee6-f53f567bfefc" }, "ResponseBody": [] }, @@ -371,7 +372,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8963db2ea1e8159ac5ca23c5190289de", "x-ms-return-client-request-id": "true" }, @@ -380,17 +381,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:55 GMT", + "Date": "Wed, 19 May 2021 18:55:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "329ac97b-faa7-4276-ae5c-9320b633ec3b", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "329ac97b-faa7-4276-ae5c-9320b633ec3b", - "x-ms-routing-request-id": "WESTUS2:20210512T223956Z:329ac97b-faa7-4276-ae5c-9320b633ec3b" + "x-ms-correlation-request-id": "a8310960-1de4-43bf-bcfd-36cda6363c74", + "x-ms-ratelimit-remaining-subscription-reads": "11465", + "x-ms-request-id": "a8310960-1de4-43bf-bcfd-36cda6363c74", + "x-ms-routing-request-id": "WESTUS2:20210519T185553Z:a8310960-1de4-43bf-bcfd-36cda6363c74" }, "ResponseBody": [] }, @@ -399,7 +400,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8015f66b5096e64c0d64e063c93aacf", "x-ms-return-client-request-id": "true" }, @@ -408,17 +409,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:56 GMT", + "Date": "Wed, 19 May 2021 18:55:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9c90b0b-a2e5-489a-915e-2598b59bd0a8", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "b9c90b0b-a2e5-489a-915e-2598b59bd0a8", - "x-ms-routing-request-id": "WESTUS2:20210512T223957Z:b9c90b0b-a2e5-489a-915e-2598b59bd0a8" + "x-ms-correlation-request-id": "6aef45e2-f5f7-48aa-95d3-fccea9f1d516", + "x-ms-ratelimit-remaining-subscription-reads": "11463", + "x-ms-request-id": "6aef45e2-f5f7-48aa-95d3-fccea9f1d516", + "x-ms-routing-request-id": "WESTUS2:20210519T185554Z:6aef45e2-f5f7-48aa-95d3-fccea9f1d516" }, "ResponseBody": [] }, @@ -427,7 +428,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "88c7b2d5e52c61761b9643c7c5a70fb8", "x-ms-return-client-request-id": "true" }, @@ -436,17 +437,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:57 GMT", + "Date": "Wed, 19 May 2021 18:55:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "16e3228f-2553-4202-bd29-34e16db90d39", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "16e3228f-2553-4202-bd29-34e16db90d39", - "x-ms-routing-request-id": "WESTUS2:20210512T223958Z:16e3228f-2553-4202-bd29-34e16db90d39" + "x-ms-correlation-request-id": "06ba15d4-9d79-441d-bbdf-a759a7e0da9a", + "x-ms-ratelimit-remaining-subscription-reads": "11461", + "x-ms-request-id": "06ba15d4-9d79-441d-bbdf-a759a7e0da9a", + "x-ms-routing-request-id": "WESTUS2:20210519T185555Z:06ba15d4-9d79-441d-bbdf-a759a7e0da9a" }, "ResponseBody": [] }, @@ -455,7 +456,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "627c2ce8c810795476f5c9125293d831", "x-ms-return-client-request-id": "true" }, @@ -464,17 +465,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:58 GMT", + "Date": "Wed, 19 May 2021 18:55:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91427bb8-2f12-446a-b780-b51ba6b76180", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "91427bb8-2f12-446a-b780-b51ba6b76180", - "x-ms-routing-request-id": "WESTUS2:20210512T223959Z:91427bb8-2f12-446a-b780-b51ba6b76180" + "x-ms-correlation-request-id": "674dbbd2-ade4-40cb-8313-73c43f46ad23", + "x-ms-ratelimit-remaining-subscription-reads": "11459", + "x-ms-request-id": "674dbbd2-ade4-40cb-8313-73c43f46ad23", + "x-ms-routing-request-id": "WESTUS2:20210519T185556Z:674dbbd2-ade4-40cb-8313-73c43f46ad23" }, "ResponseBody": [] }, @@ -483,7 +484,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "67ef5320013b81b1e8a0dc73729da818", "x-ms-return-client-request-id": "true" }, @@ -492,17 +493,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:39:59 GMT", + "Date": "Wed, 19 May 2021 18:55:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "516a31aa-906f-43f2-9568-3333b9b77042", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "516a31aa-906f-43f2-9568-3333b9b77042", - "x-ms-routing-request-id": "WESTUS2:20210512T224000Z:516a31aa-906f-43f2-9568-3333b9b77042" + "x-ms-correlation-request-id": "396b8ae7-76d0-41c8-a89e-6b565f9078b2", + "x-ms-ratelimit-remaining-subscription-reads": "11457", + "x-ms-request-id": "396b8ae7-76d0-41c8-a89e-6b565f9078b2", + "x-ms-routing-request-id": "WESTUS2:20210519T185557Z:396b8ae7-76d0-41c8-a89e-6b565f9078b2" }, "ResponseBody": [] }, @@ -511,7 +512,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "101d95c648170dbe5d4e11361b640e88", "x-ms-return-client-request-id": "true" }, @@ -520,17 +521,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:00 GMT", + "Date": "Wed, 19 May 2021 18:55:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d89fa6cd-7923-49cd-87ca-361f80696ab1", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "d89fa6cd-7923-49cd-87ca-361f80696ab1", - "x-ms-routing-request-id": "WESTUS2:20210512T224001Z:d89fa6cd-7923-49cd-87ca-361f80696ab1" + "x-ms-correlation-request-id": "7fd5805a-0cf1-41d0-ae97-2a08a793c794", + "x-ms-ratelimit-remaining-subscription-reads": "11455", + "x-ms-request-id": "7fd5805a-0cf1-41d0-ae97-2a08a793c794", + "x-ms-routing-request-id": "WESTUS2:20210519T185558Z:7fd5805a-0cf1-41d0-ae97-2a08a793c794" }, "ResponseBody": [] }, @@ -539,7 +540,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71a711bda8b8e77d7afa7a6febe107d9", "x-ms-return-client-request-id": "true" }, @@ -548,17 +549,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:01 GMT", + "Date": "Wed, 19 May 2021 18:55:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fafb9212-20a0-4043-8205-b1a55e5f2abf", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "fafb9212-20a0-4043-8205-b1a55e5f2abf", - "x-ms-routing-request-id": "WESTUS2:20210512T224002Z:fafb9212-20a0-4043-8205-b1a55e5f2abf" + "x-ms-correlation-request-id": "66a9a3b7-8c2a-4396-a626-d19c713755e6", + "x-ms-ratelimit-remaining-subscription-reads": "11453", + "x-ms-request-id": "66a9a3b7-8c2a-4396-a626-d19c713755e6", + "x-ms-routing-request-id": "WESTUS2:20210519T185600Z:66a9a3b7-8c2a-4396-a626-d19c713755e6" }, "ResponseBody": [] }, @@ -567,7 +568,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc4cb04dc875d81a94e109edf07b6583", "x-ms-return-client-request-id": "true" }, @@ -576,17 +577,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:02 GMT", + "Date": "Wed, 19 May 2021 18:56:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "342b587b-b58b-4f8a-b985-c2797a061eca", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "342b587b-b58b-4f8a-b985-c2797a061eca", - "x-ms-routing-request-id": "WESTUS2:20210512T224003Z:342b587b-b58b-4f8a-b985-c2797a061eca" + "x-ms-correlation-request-id": "f383888a-0434-4f9a-b1ad-cc12e5765170", + "x-ms-ratelimit-remaining-subscription-reads": "11451", + "x-ms-request-id": "f383888a-0434-4f9a-b1ad-cc12e5765170", + "x-ms-routing-request-id": "WESTUS2:20210519T185601Z:f383888a-0434-4f9a-b1ad-cc12e5765170" }, "ResponseBody": [] }, @@ -595,7 +596,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "60b6549136f61d601836951dcd4f227c", "x-ms-return-client-request-id": "true" }, @@ -604,17 +605,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:03 GMT", + "Date": "Wed, 19 May 2021 18:56:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cbdcff29-6e7e-4797-973f-1b918b8bb5bd", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "cbdcff29-6e7e-4797-973f-1b918b8bb5bd", - "x-ms-routing-request-id": "WESTUS2:20210512T224004Z:cbdcff29-6e7e-4797-973f-1b918b8bb5bd" + "x-ms-correlation-request-id": "988b0b71-3b2c-4803-b235-7ad21d08fb7f", + "x-ms-ratelimit-remaining-subscription-reads": "11449", + "x-ms-request-id": "988b0b71-3b2c-4803-b235-7ad21d08fb7f", + "x-ms-routing-request-id": "WESTUS2:20210519T185602Z:988b0b71-3b2c-4803-b235-7ad21d08fb7f" }, "ResponseBody": [] }, @@ -623,7 +624,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6be937465218f513f7cfdcd69f90f6ff", "x-ms-return-client-request-id": "true" }, @@ -632,17 +633,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:04 GMT", + "Date": "Wed, 19 May 2021 18:56:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86179b35-2d25-4d17-a463-ee2b939442f3", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "86179b35-2d25-4d17-a463-ee2b939442f3", - "x-ms-routing-request-id": "WESTUS2:20210512T224005Z:86179b35-2d25-4d17-a463-ee2b939442f3" + "x-ms-correlation-request-id": "017b4467-4bef-4fa7-9551-644ccf28610e", + "x-ms-ratelimit-remaining-subscription-reads": "11447", + "x-ms-request-id": "017b4467-4bef-4fa7-9551-644ccf28610e", + "x-ms-routing-request-id": "WESTUS2:20210519T185603Z:017b4467-4bef-4fa7-9551-644ccf28610e" }, "ResponseBody": [] }, @@ -651,7 +652,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "96ddf694a62b16e3502ea43e33fd0a45", "x-ms-return-client-request-id": "true" }, @@ -660,17 +661,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:06 GMT", + "Date": "Wed, 19 May 2021 18:56:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb82dc52-3d41-4452-97a9-38c0d780fe36", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "fb82dc52-3d41-4452-97a9-38c0d780fe36", - "x-ms-routing-request-id": "WESTUS2:20210512T224006Z:fb82dc52-3d41-4452-97a9-38c0d780fe36" + "x-ms-correlation-request-id": "fec1e77c-26e3-400d-a091-340f5178328f", + "x-ms-ratelimit-remaining-subscription-reads": "11445", + "x-ms-request-id": "fec1e77c-26e3-400d-a091-340f5178328f", + "x-ms-routing-request-id": "WESTUS2:20210519T185604Z:fec1e77c-26e3-400d-a091-340f5178328f" }, "ResponseBody": [] }, @@ -679,7 +680,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b8a68cbffa923f6b41c069265a897d87", "x-ms-return-client-request-id": "true" }, @@ -688,17 +689,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:07 GMT", + "Date": "Wed, 19 May 2021 18:56:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32311653-0068-46df-a4bb-98b616e92790", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "32311653-0068-46df-a4bb-98b616e92790", - "x-ms-routing-request-id": "WESTUS2:20210512T224007Z:32311653-0068-46df-a4bb-98b616e92790" + "x-ms-correlation-request-id": "9d1b6540-802c-41ac-828e-a49c6ead4157", + "x-ms-ratelimit-remaining-subscription-reads": "11443", + "x-ms-request-id": "9d1b6540-802c-41ac-828e-a49c6ead4157", + "x-ms-routing-request-id": "WESTUS2:20210519T185605Z:9d1b6540-802c-41ac-828e-a49c6ead4157" }, "ResponseBody": [] }, @@ -707,7 +708,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d78895408b719f5154d21ae9add4c2fa", "x-ms-return-client-request-id": "true" }, @@ -716,17 +717,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:08 GMT", + "Date": "Wed, 19 May 2021 18:56:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77be3d8c-a54e-46a6-a100-317781c352c4", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "77be3d8c-a54e-46a6-a100-317781c352c4", - "x-ms-routing-request-id": "WESTUS2:20210512T224008Z:77be3d8c-a54e-46a6-a100-317781c352c4" + "x-ms-correlation-request-id": "4798e974-d7d4-4121-8598-f96832e4a4dc", + "x-ms-ratelimit-remaining-subscription-reads": "11441", + "x-ms-request-id": "4798e974-d7d4-4121-8598-f96832e4a4dc", + "x-ms-routing-request-id": "WESTUS2:20210519T185606Z:4798e974-d7d4-4121-8598-f96832e4a4dc" }, "ResponseBody": [] }, @@ -735,7 +736,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "121797c53de99a6d8a9e556a3dbcbcc7", "x-ms-return-client-request-id": "true" }, @@ -744,17 +745,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:10 GMT", + "Date": "Wed, 19 May 2021 18:56:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55bfe1f3-9bea-4062-b232-9bdf86d5c54c", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "55bfe1f3-9bea-4062-b232-9bdf86d5c54c", - "x-ms-routing-request-id": "WESTUS2:20210512T224010Z:55bfe1f3-9bea-4062-b232-9bdf86d5c54c" + "x-ms-correlation-request-id": "acdd8f4e-d303-4431-bdb1-1055c6f761a9", + "x-ms-ratelimit-remaining-subscription-reads": "11439", + "x-ms-request-id": "acdd8f4e-d303-4431-bdb1-1055c6f761a9", + "x-ms-routing-request-id": "WESTUS2:20210519T185607Z:acdd8f4e-d303-4431-bdb1-1055c6f761a9" }, "ResponseBody": [] }, @@ -763,7 +764,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9dfe1cb0327433d43b0664bfdf81916c", "x-ms-return-client-request-id": "true" }, @@ -772,17 +773,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:11 GMT", + "Date": "Wed, 19 May 2021 18:56:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f59e233b-7571-42ad-9704-af63cf88515c", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "f59e233b-7571-42ad-9704-af63cf88515c", - "x-ms-routing-request-id": "WESTUS2:20210512T224011Z:f59e233b-7571-42ad-9704-af63cf88515c" + "x-ms-correlation-request-id": "5b5cd5aa-f80d-43ee-8f4d-076df5ac04af", + "x-ms-ratelimit-remaining-subscription-reads": "11437", + "x-ms-request-id": "5b5cd5aa-f80d-43ee-8f4d-076df5ac04af", + "x-ms-routing-request-id": "WESTUS2:20210519T185608Z:5b5cd5aa-f80d-43ee-8f4d-076df5ac04af" }, "ResponseBody": [] }, @@ -791,7 +792,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c3616efe6b71029d27ee4cd336e76298", "x-ms-return-client-request-id": "true" }, @@ -800,17 +801,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:12 GMT", + "Date": "Wed, 19 May 2021 18:56:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b7bec94-4103-49fe-ae71-43388614a708", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "1b7bec94-4103-49fe-ae71-43388614a708", - "x-ms-routing-request-id": "WESTUS2:20210512T224012Z:1b7bec94-4103-49fe-ae71-43388614a708" + "x-ms-correlation-request-id": "bf834054-84cb-4ead-b8c4-fede3a361bf1", + "x-ms-ratelimit-remaining-subscription-reads": "11435", + "x-ms-request-id": "bf834054-84cb-4ead-b8c4-fede3a361bf1", + "x-ms-routing-request-id": "WESTUS2:20210519T185609Z:bf834054-84cb-4ead-b8c4-fede3a361bf1" }, "ResponseBody": [] }, @@ -819,7 +820,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9139531524d59285c2e4d7e3d9adba09", "x-ms-return-client-request-id": "true" }, @@ -828,17 +829,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:13 GMT", + "Date": "Wed, 19 May 2021 18:56:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98b96e41-b034-45f2-94f4-02c758051043", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "98b96e41-b034-45f2-94f4-02c758051043", - "x-ms-routing-request-id": "WESTUS2:20210512T224013Z:98b96e41-b034-45f2-94f4-02c758051043" + "x-ms-correlation-request-id": "1f93740a-0608-4665-b569-21acca75d6f8", + "x-ms-ratelimit-remaining-subscription-reads": "11433", + "x-ms-request-id": "1f93740a-0608-4665-b569-21acca75d6f8", + "x-ms-routing-request-id": "WESTUS2:20210519T185610Z:1f93740a-0608-4665-b569-21acca75d6f8" }, "ResponseBody": [] }, @@ -847,7 +848,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ce6be80cf95a45567efc7586e601fd54", "x-ms-return-client-request-id": "true" }, @@ -856,17 +857,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:13 GMT", + "Date": "Wed, 19 May 2021 18:56:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1190b14-3fb3-4c39-a71d-f0efbad5c33d", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "e1190b14-3fb3-4c39-a71d-f0efbad5c33d", - "x-ms-routing-request-id": "WESTUS2:20210512T224014Z:e1190b14-3fb3-4c39-a71d-f0efbad5c33d" + "x-ms-correlation-request-id": "19b60160-bf12-435f-8cda-01121d2b2948", + "x-ms-ratelimit-remaining-subscription-reads": "11431", + "x-ms-request-id": "19b60160-bf12-435f-8cda-01121d2b2948", + "x-ms-routing-request-id": "WESTUS2:20210519T185611Z:19b60160-bf12-435f-8cda-01121d2b2948" }, "ResponseBody": [] }, @@ -875,7 +876,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8ca9cba40048da97e9cf008d93ba2879", "x-ms-return-client-request-id": "true" }, @@ -884,17 +885,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:14 GMT", + "Date": "Wed, 19 May 2021 18:56:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e7d7ffc-92ee-4aa8-8b9d-695a9f13f092", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "5e7d7ffc-92ee-4aa8-8b9d-695a9f13f092", - "x-ms-routing-request-id": "WESTUS2:20210512T224015Z:5e7d7ffc-92ee-4aa8-8b9d-695a9f13f092" + "x-ms-correlation-request-id": "454d2489-e844-4079-a1b8-9e29a71d6125", + "x-ms-ratelimit-remaining-subscription-reads": "11429", + "x-ms-request-id": "454d2489-e844-4079-a1b8-9e29a71d6125", + "x-ms-routing-request-id": "WESTUS2:20210519T185612Z:454d2489-e844-4079-a1b8-9e29a71d6125" }, "ResponseBody": [] }, @@ -903,7 +904,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4dc64234937b1c3dfdf312d9aeffabc0", "x-ms-return-client-request-id": "true" }, @@ -912,17 +913,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:16 GMT", + "Date": "Wed, 19 May 2021 18:56:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a10b2e6d-8c17-43cd-8d00-b9612b5ff696", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "a10b2e6d-8c17-43cd-8d00-b9612b5ff696", - "x-ms-routing-request-id": "WESTUS2:20210512T224016Z:a10b2e6d-8c17-43cd-8d00-b9612b5ff696" + "x-ms-correlation-request-id": "d6e8c528-3160-4a7a-875c-fa4cd0299122", + "x-ms-ratelimit-remaining-subscription-reads": "11427", + "x-ms-request-id": "d6e8c528-3160-4a7a-875c-fa4cd0299122", + "x-ms-routing-request-id": "WESTUS2:20210519T185613Z:d6e8c528-3160-4a7a-875c-fa4cd0299122" }, "ResponseBody": [] }, @@ -931,7 +932,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d3e83e62d030bc15191e58af9c8b1c3", "x-ms-return-client-request-id": "true" }, @@ -940,17 +941,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:16 GMT", + "Date": "Wed, 19 May 2021 18:56:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e5061103-8f7c-41ae-a1a8-c5caaf607905", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "e5061103-8f7c-41ae-a1a8-c5caaf607905", - "x-ms-routing-request-id": "WESTUS2:20210512T224017Z:e5061103-8f7c-41ae-a1a8-c5caaf607905" + "x-ms-correlation-request-id": "940d2d7c-15de-444d-8a54-1c26074ff454", + "x-ms-ratelimit-remaining-subscription-reads": "11425", + "x-ms-request-id": "940d2d7c-15de-444d-8a54-1c26074ff454", + "x-ms-routing-request-id": "WESTUS2:20210519T185614Z:940d2d7c-15de-444d-8a54-1c26074ff454" }, "ResponseBody": [] }, @@ -959,7 +960,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a352fbd4b03a10d88e8d8f54edbd2bea", "x-ms-return-client-request-id": "true" }, @@ -968,17 +969,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:17 GMT", + "Date": "Wed, 19 May 2021 18:56:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d91ed7d1-62c8-4e1e-ab7c-b2bf2e7deef2", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "d91ed7d1-62c8-4e1e-ab7c-b2bf2e7deef2", - "x-ms-routing-request-id": "WESTUS2:20210512T224018Z:d91ed7d1-62c8-4e1e-ab7c-b2bf2e7deef2" + "x-ms-correlation-request-id": "c0c904a4-cca8-41b1-9b9b-afe71699305e", + "x-ms-ratelimit-remaining-subscription-reads": "11423", + "x-ms-request-id": "c0c904a4-cca8-41b1-9b9b-afe71699305e", + "x-ms-routing-request-id": "WESTUS2:20210519T185615Z:c0c904a4-cca8-41b1-9b9b-afe71699305e" }, "ResponseBody": [] }, @@ -987,52 +988,25 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-9747a22eca7490459d9b22ae94976168-fd3fd80d63590048-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "10a63f241a7c067681bafbeaaeb22234", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:19 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da1adc4c-feb1-4772-9215-bb34147b1a7e", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "da1adc4c-feb1-4772-9215-bb34147b1a7e", - "x-ms-routing-request-id": "WESTUS2:20210512T224019Z:da1adc4c-feb1-4772-9215-bb34147b1a7e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b3054f4108ac3686aa2d7f769d6c1e94", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 12 May 2021 22:40:20 GMT", + "Date": "Wed, 19 May 2021 18:56:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb7117cd-d5bf-4e0b-ab9e-339bde4c608b", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "fb7117cd-d5bf-4e0b-ab9e-339bde4c608b", - "x-ms-routing-request-id": "WESTUS2:20210512T224020Z:fb7117cd-d5bf-4e0b-ab9e-339bde4c608b" + "x-ms-correlation-request-id": "24545274-1542-4ac6-b6ae-5eee74d0818e", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "24545274-1542-4ac6-b6ae-5eee74d0818e", + "x-ms-routing-request-id": "WESTUS2:20210519T185616Z:24545274-1542-4ac6-b6ae-5eee74d0818e" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate().json index a83815b364d5..137441fb946f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 23:49:42 GMT", + "Date": "Wed, 19 May 2021 18:56:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c93ce79d-d37e-42f1-9863-03d65c0f36c6", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "c93ce79d-d37e-42f1-9863-03d65c0f36c6", - "x-ms-routing-request-id": "WESTUS2:20210512T234942Z:c93ce79d-d37e-42f1-9863-03d65c0f36c6" + "x-ms-correlation-request-id": "24866039-bdb2-42a8-85db-73393e545795", + "x-ms-ratelimit-remaining-subscription-reads": "11419", + "x-ms-request-id": "24866039-bdb2-42a8-85db-73393e545795", + "x-ms-routing-request-id": "WESTUS2:20210519T185616Z:24866039-bdb2-42a8-85db-73393e545795" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-cba1945cf40aa945a147ede73c9e29b5-f4fe4e5232ee494d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-54d6eee8d34b75488e5f74133d7ed097-62a0b2544d0f2b4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53b790c2f14b89997a170d4863d6892d", "x-ms-return-client-request-id": "true" }, @@ -58,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 23:49:43 GMT", + "Date": "Wed, 19 May 2021 18:56:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a086963-b664-4c2f-ab61-e48099dda320", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "2a086963-b664-4c2f-ab61-e48099dda320", - "x-ms-routing-request-id": "WESTUS2:20210512T234943Z:2a086963-b664-4c2f-ab61-e48099dda320" + "x-ms-correlation-request-id": "32d56a13-2c7e-4e7c-bff2-9586efce96c7", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "32d56a13-2c7e-4e7c-bff2-9586efce96c7", + "x-ms-routing-request-id": "WESTUS2:20210519T185617Z:32d56a13-2c7e-4e7c-bff2-9586efce96c7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1347", @@ -92,8 +92,8 @@ "Authorization": "Sanitized", "Content-Length": "19", "Content-Type": "application/json", - "traceparent": "00-aee9c06c39147c459838f636d33b94a9-463b4cc647854846-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-6b7bb641bc1a1e47bb5ea0be4f0312c7-6c23eaed394af941-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "594eecb68e34fce18b82be33459d882a", "x-ms-return-client-request-id": "true" }, @@ -107,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "179", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 23:49:43 GMT", + "Date": "Wed, 19 May 2021 18:56:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e674a85d-30fb-43b9-a1eb-c2f2026e4a6b", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "e674a85d-30fb-43b9-a1eb-c2f2026e4a6b", - "x-ms-routing-request-id": "WESTUS2:20210512T234944Z:e674a85d-30fb-43b9-a1eb-c2f2026e4a6b" + "x-ms-correlation-request-id": "5ecd79da-b492-41b8-9bd3-208b8a2fb606", + "x-ms-ratelimit-remaining-subscription-reads": "11418", + "x-ms-request-id": "5ecd79da-b492-41b8-9bd3-208b8a2fb606", + "x-ms-routing-request-id": "WESTUS2:20210519T185617Z:5ecd79da-b492-41b8-9bd3-208b8a2fb606" }, "ResponseBody": { "template": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate()Async.json index 248ba9ac1215..ab113d8a53cb 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate()Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-1aebadd69bdc074d8f468ccb315ab6b2-938c6964403d3e40-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6fee38b4babbfcaed8d6e0de49334574", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 23:49:42 GMT", + "Date": "Wed, 19 May 2021 18:56:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f064cf20-e793-4c90-aaa1-486b68e2e617", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "f064cf20-e793-4c90-aaa1-486b68e2e617", - "x-ms-routing-request-id": "WESTUS2:20210512T234942Z:f064cf20-e793-4c90-aaa1-486b68e2e617" + "x-ms-correlation-request-id": "42d1b315-c48b-4a80-877b-439900a6ac05", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "42d1b315-c48b-4a80-877b-439900a6ac05", + "x-ms-routing-request-id": "WESTUS2:20210519T185616Z:42d1b315-c48b-4a80-877b-439900a6ac05" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-c7eced9d98b7f54b9579c5b7d795b9d2-f0a5753321275341-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-5a1bc55c510eeb41bb3017ebad7ef316-94073c587db95b4f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "173239ec56adb4fe4f511ef05d6e531a", "x-ms-return-client-request-id": "true" }, @@ -63,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 23:49:43 GMT", + "Date": "Wed, 19 May 2021 18:56:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e63f0346-114e-45ee-a01f-8ec9a0082bc3", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "e63f0346-114e-45ee-a01f-8ec9a0082bc3", - "x-ms-routing-request-id": "WESTUS2:20210512T234943Z:e63f0346-114e-45ee-a01f-8ec9a0082bc3" + "x-ms-correlation-request-id": "3ee88cae-b970-4d1a-997e-95b03d360b08", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "3ee88cae-b970-4d1a-997e-95b03d360b08", + "x-ms-routing-request-id": "WESTUS2:20210519T185617Z:3ee88cae-b970-4d1a-997e-95b03d360b08" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7061", @@ -92,7 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "19", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-1cb9b683c1179a44baffa17785b75200-0163a97ee4658648-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8e11aade18050faea4503f6ac6e148b6", "x-ms-return-client-request-id": "true" }, @@ -106,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "179", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 23:49:44 GMT", + "Date": "Wed, 19 May 2021 18:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c59675c1-18ea-49bf-9b88-812069fe7a90", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "c59675c1-18ea-49bf-9b88-812069fe7a90", - "x-ms-routing-request-id": "WESTUS2:20210512T234944Z:c59675c1-18ea-49bf-9b88-812069fe7a90" + "x-ms-correlation-request-id": "4e811081-7fc1-4a35-882b-c4192a15e4c0", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "4e811081-7fc1-4a35-882b-c4192a15e4c0", + "x-ms-routing-request-id": "WESTUS2:20210519T185618Z:4e811081-7fc1-4a35-882b-c4192a15e4c0" }, "ResponseBody": { "template": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources().json index 52761d332f37..aa7bdced6a58 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources().json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-87baaa27e038584fae9ada7ed6dd4146-ef035c6f58f9dc4f-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "91d70e0a7788948f7e0fc9fc5dbbc1e1", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:27:16 GMT", + "Date": "Wed, 19 May 2021 18:56:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51744296-c12e-4728-9763-54abf965a62d", - "x-ms-ratelimit-remaining-subscription-reads": "11705", - "x-ms-request-id": "51744296-c12e-4728-9763-54abf965a62d", - "x-ms-routing-request-id": "WESTUS2:20210507T202717Z:51744296-c12e-4728-9763-54abf965a62d" + "x-ms-correlation-request-id": "fe7293da-1e94-4df2-8591-d243a72fa2cd", + "x-ms-ratelimit-remaining-subscription-reads": "11415", + "x-ms-request-id": "fe7293da-1e94-4df2-8591-d243a72fa2cd", + "x-ms-routing-request-id": "WESTUS2:20210519T185617Z:fe7293da-1e94-4df2-8591-d243a72fa2cd" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-8d37969e9fca834a898822b93c879e8b-d2e31c48399a7540-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-298c13928780b84abce630067fac20c5-98b5ee246d833347-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8bbda83f96d7a9c5cdc082bd6987308", "x-ms-return-client-request-id": "true" }, @@ -63,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:27:17 GMT", + "Date": "Wed, 19 May 2021 18:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab872356-0897-425a-9b9b-0eefa7d507c2", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "ab872356-0897-425a-9b9b-0eefa7d507c2", - "x-ms-routing-request-id": "WESTUS2:20210507T202717Z:ab872356-0897-425a-9b9b-0eefa7d507c2" + "x-ms-correlation-request-id": "b4ce34b2-c64b-4746-b2ed-3bc46685a161", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "b4ce34b2-c64b-4746-b2ed-3bc46685a161", + "x-ms-routing-request-id": "WESTUS2:20210519T185618Z:b4ce34b2-c64b-4746-b2ed-3bc46685a161" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg294", @@ -92,8 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-c0caf1654375e040ba4eb1807f5af056-25d4c529996dea4e-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-3812967b372c9241a61e48896347c747-8508eb409886704f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "81a2762e1bff00918680e4b79f3f0711", "x-ms-return-client-request-id": "true" }, @@ -106,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:27:18 GMT", + "Date": "Wed, 19 May 2021 18:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ace1a00-c26d-42d2-976b-23f0f4e512d2", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "0ace1a00-c26d-42d2-976b-23f0f4e512d2", - "x-ms-routing-request-id": "WESTUS2:20210507T202718Z:0ace1a00-c26d-42d2-976b-23f0f4e512d2" + "x-ms-correlation-request-id": "d197ac6a-77ca-4a21-b516-4b310865c4d7", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "d197ac6a-77ca-4a21-b516-4b310865c4d7", + "x-ms-routing-request-id": "WESTUS2:20210519T185618Z:d197ac6a-77ca-4a21-b516-4b310865c4d7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481", @@ -133,6 +134,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-1a75be14797a62468670a5b0ab8d6ca4-45f3b55c3f69724c-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "878b943c159d163b2c9b8769a77656f4", "x-ms-return-client-request-id": "true" @@ -141,17 +143,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "52611", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:27:18 GMT", + "Date": "Wed, 19 May 2021 18:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62d4c3c1-c86f-49c8-94ff-04ab7e914313", - "x-ms-ratelimit-remaining-subscription-reads": "11704", - "x-ms-request-id": "62d4c3c1-c86f-49c8-94ff-04ab7e914313", - "x-ms-routing-request-id": "WESTUS2:20210507T202719Z:62d4c3c1-c86f-49c8-94ff-04ab7e914313" + "x-ms-correlation-request-id": "cc239a53-d986-40a5-897c-ac6c439ba115", + "x-ms-ratelimit-remaining-subscription-reads": "11414", + "x-ms-request-id": "cc239a53-d986-40a5-897c-ac6c439ba115", + "x-ms-routing-request-id": "WESTUS2:20210519T185618Z:cc239a53-d986-40a5-897c-ac6c439ba115" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -475,6 +477,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -760,6 +766,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -2778,6 +2788,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -3186,6 +3200,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3846,6 +3864,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4034,6 +4056,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4051,7 +4077,8 @@ "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-1a75be14797a62468670a5b0ab8d6ca4-9166befbbaeb874a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3e4b8c5784632abfe7e679b8c3bd9c01", "x-ms-return-client-request-id": "true" }, @@ -4071,7 +4098,7 @@ "Cache-Control": "no-cache", "Content-Length": "407", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:27:19 GMT", + "Date": "Wed, 19 May 2021 18:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4081,11 +4108,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3e4b8c5784632abfe7e679b8c3bd9c01", - "x-ms-correlation-request-id": "3fc72960-edc1-4f07-97a5-8a21979f74fa", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1196", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "312a3f34-f24d-400e-a447-1c5ae10e2293", - "x-ms-routing-request-id": "WESTUS2:20210507T202719Z:3fc72960-edc1-4f07-97a5-8a21979f74fa" + "x-ms-correlation-request-id": "9a9dc947-42b7-42c8-b918-dfc202db7498", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-request-id": "db945764-3dfe-41ba-9f07-76ae71ad073d", + "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:9a9dc947-42b7-42c8-b918-dfc202db7498" }, "ResponseBody": [ "{\r\n", @@ -4110,7 +4137,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-3477d3caa1d1964ea3759f47ab88078b-ef904e75a6ea4948-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b247c38ed3bbb88dd5619fb69b82526f", "x-ms-return-client-request-id": "true" }, @@ -4120,15 +4148,15 @@ "Cache-Control": "no-cache", "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:27:19 GMT", + "Date": "Wed, 19 May 2021 18:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "16cba8b3-059d-46c8-9b1c-dbee8aba0e89", - "x-ms-ratelimit-remaining-subscription-reads": "11703", - "x-ms-request-id": "16cba8b3-059d-46c8-9b1c-dbee8aba0e89", - "x-ms-routing-request-id": "WESTUS2:20210507T202719Z:16cba8b3-059d-46c8-9b1c-dbee8aba0e89" + "x-ms-correlation-request-id": "b615d100-b60a-44db-b9bc-5b5f0d97cd29", + "x-ms-ratelimit-remaining-subscription-reads": "11413", + "x-ms-request-id": "b615d100-b60a-44db-b9bc-5b5f0d97cd29", + "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:b615d100-b60a-44db-b9bc-5b5f0d97cd29" }, "ResponseBody": { "value": [ @@ -4151,7 +4179,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-016ae6c70d4f4f4d847f9e88224c410d-1c69c44329af3847-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c25085fe771ad977fbead7f8b13f1f4f", "x-ms-return-client-request-id": "true" }, @@ -4161,15 +4190,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:27:19 GMT", + "Date": "Wed, 19 May 2021 18:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "579a107d-d823-49cc-abfd-086f6cad6314", - "x-ms-ratelimit-remaining-subscription-reads": "11702", - "x-ms-request-id": "579a107d-d823-49cc-abfd-086f6cad6314", - "x-ms-routing-request-id": "WESTUS2:20210507T202719Z:579a107d-d823-49cc-abfd-086f6cad6314" + "x-ms-correlation-request-id": "1f9cf8de-af7b-4b8d-8a9f-5fea9490d3fe", + "x-ms-ratelimit-remaining-subscription-reads": "11412", + "x-ms-request-id": "1f9cf8de-af7b-4b8d-8a9f-5fea9490d3fe", + "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:1f9cf8de-af7b-4b8d-8a9f-5fea9490d3fe" }, "ResponseBody": { "value": [] @@ -4183,8 +4212,8 @@ "Authorization": "Sanitized", "Content-Length": "255", "Content-Type": "application/json", - "traceparent": "00-40d44715728b724b9e065d4bf33f851c-5fbe079ec4fad542-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e2510bdbe8fea048b5248c4c85b9d92a-b1f32f9463a34943-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "002a6f08ea75464657a4091bdedbc5e4", "x-ms-return-client-request-id": "true" }, @@ -4198,17 +4227,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:19 GMT", + "Date": "Wed, 19 May 2021 18:56:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d05cc6fb-4bc6-4098-81eb-e9700d9af6ac", + "x-ms-correlation-request-id": "05f3bea9-f959-48de-9a18-304592e6371e", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "d05cc6fb-4bc6-4098-81eb-e9700d9af6ac", - "x-ms-routing-request-id": "WESTUS2:20210507T202719Z:d05cc6fb-4bc6-4098-81eb-e9700d9af6ac" + "x-ms-request-id": "05f3bea9-f959-48de-9a18-304592e6371e", + "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:05f3bea9-f959-48de-9a18-304592e6371e" }, "ResponseBody": [] }, @@ -4217,7 +4246,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2bad4f42525814f93f0a6b756e5bfa20", "x-ms-return-client-request-id": "true" }, @@ -4226,17 +4255,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:19 GMT", + "Date": "Wed, 19 May 2021 18:56:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31165377-373d-4dc7-833f-4857cc81f50f", - "x-ms-ratelimit-remaining-subscription-reads": "11701", - "x-ms-request-id": "31165377-373d-4dc7-833f-4857cc81f50f", - "x-ms-routing-request-id": "WESTUS2:20210507T202719Z:31165377-373d-4dc7-833f-4857cc81f50f" + "x-ms-correlation-request-id": "1afc527d-1746-429b-9778-afe25780ecc2", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "1afc527d-1746-429b-9778-afe25780ecc2", + "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:1afc527d-1746-429b-9778-afe25780ecc2" }, "ResponseBody": [] }, @@ -4245,7 +4274,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4ddff32599bdec088013b40732754ac2", "x-ms-return-client-request-id": "true" }, @@ -4254,17 +4283,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:20 GMT", + "Date": "Wed, 19 May 2021 18:56:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f3d6b00-291d-4b02-b1e3-bfbba88a6cd5", - "x-ms-ratelimit-remaining-subscription-reads": "11700", - "x-ms-request-id": "2f3d6b00-291d-4b02-b1e3-bfbba88a6cd5", - "x-ms-routing-request-id": "WESTUS2:20210507T202720Z:2f3d6b00-291d-4b02-b1e3-bfbba88a6cd5" + "x-ms-correlation-request-id": "7d535ecc-559d-41fd-b48e-9d331208f135", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "7d535ecc-559d-41fd-b48e-9d331208f135", + "x-ms-routing-request-id": "WESTUS2:20210519T185620Z:7d535ecc-559d-41fd-b48e-9d331208f135" }, "ResponseBody": [] }, @@ -4273,7 +4302,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8ed9729d992dc68b6a6d463db07aa8ef", "x-ms-return-client-request-id": "true" }, @@ -4282,17 +4311,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:21 GMT", + "Date": "Wed, 19 May 2021 18:56:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eebb3071-cd41-4bec-9ffe-2ec59579078f", - "x-ms-ratelimit-remaining-subscription-reads": "11699", - "x-ms-request-id": "eebb3071-cd41-4bec-9ffe-2ec59579078f", - "x-ms-routing-request-id": "WESTUS2:20210507T202722Z:eebb3071-cd41-4bec-9ffe-2ec59579078f" + "x-ms-correlation-request-id": "e07af682-d091-442c-9983-be33ff109e1b", + "x-ms-ratelimit-remaining-subscription-reads": "11407", + "x-ms-request-id": "e07af682-d091-442c-9983-be33ff109e1b", + "x-ms-routing-request-id": "WESTUS2:20210519T185621Z:e07af682-d091-442c-9983-be33ff109e1b" }, "ResponseBody": [] }, @@ -4301,7 +4330,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "08ab9773b9b5a8d847c1ab459df1e1c9", "x-ms-return-client-request-id": "true" }, @@ -4310,17 +4339,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:22 GMT", + "Date": "Wed, 19 May 2021 18:56:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "874a5626-3782-4330-a93b-26ef10fa7b8a", - "x-ms-ratelimit-remaining-subscription-reads": "11698", - "x-ms-request-id": "874a5626-3782-4330-a93b-26ef10fa7b8a", - "x-ms-routing-request-id": "WESTUS2:20210507T202723Z:874a5626-3782-4330-a93b-26ef10fa7b8a" + "x-ms-correlation-request-id": "950d992a-33df-47b1-a0fd-ba72bc4e8361", + "x-ms-ratelimit-remaining-subscription-reads": "11405", + "x-ms-request-id": "950d992a-33df-47b1-a0fd-ba72bc4e8361", + "x-ms-routing-request-id": "WESTUS2:20210519T185622Z:950d992a-33df-47b1-a0fd-ba72bc4e8361" }, "ResponseBody": [] }, @@ -4329,7 +4358,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fbd7a9bf6b828bf36719e25053cb3b06", "x-ms-return-client-request-id": "true" }, @@ -4337,18 +4366,19 @@ "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", + "Connection": "close", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:23 GMT", + "Date": "Wed, 19 May 2021 18:56:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "015f2eda-b912-4d17-8275-d3c84ed24896", - "x-ms-ratelimit-remaining-subscription-reads": "11697", - "x-ms-request-id": "015f2eda-b912-4d17-8275-d3c84ed24896", - "x-ms-routing-request-id": "WESTUS2:20210507T202724Z:015f2eda-b912-4d17-8275-d3c84ed24896" + "x-ms-correlation-request-id": "174b63d9-71de-4a48-ab2b-849331072409", + "x-ms-ratelimit-remaining-subscription-reads": "11403", + "x-ms-request-id": "174b63d9-71de-4a48-ab2b-849331072409", + "x-ms-routing-request-id": "WESTUS2:20210519T185623Z:174b63d9-71de-4a48-ab2b-849331072409" }, "ResponseBody": [] }, @@ -4357,7 +4387,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9b94c46a42cae30c9931476bee462879", "x-ms-return-client-request-id": "true" }, @@ -4366,17 +4396,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:24 GMT", + "Date": "Wed, 19 May 2021 18:56:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65298469-f499-4470-b659-70b36f6316af", - "x-ms-ratelimit-remaining-subscription-reads": "11696", - "x-ms-request-id": "65298469-f499-4470-b659-70b36f6316af", - "x-ms-routing-request-id": "WESTUS2:20210507T202725Z:65298469-f499-4470-b659-70b36f6316af" + "x-ms-correlation-request-id": "9bcf5d2c-e272-4f2a-9581-404d0a4812e6", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "9bcf5d2c-e272-4f2a-9581-404d0a4812e6", + "x-ms-routing-request-id": "WESTUS2:20210519T185624Z:9bcf5d2c-e272-4f2a-9581-404d0a4812e6" }, "ResponseBody": [] }, @@ -4385,7 +4415,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "077d7d8baca2086da41fa09cd788547b", "x-ms-return-client-request-id": "true" }, @@ -4394,17 +4424,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:25 GMT", + "Date": "Wed, 19 May 2021 18:56:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11aed94a-e5ee-4cdf-82f9-08547af2dc2c", - "x-ms-ratelimit-remaining-subscription-reads": "11695", - "x-ms-request-id": "11aed94a-e5ee-4cdf-82f9-08547af2dc2c", - "x-ms-routing-request-id": "WESTUS2:20210507T202726Z:11aed94a-e5ee-4cdf-82f9-08547af2dc2c" + "x-ms-correlation-request-id": "9c3d0016-3815-45c0-85b6-05ab08928351", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "9c3d0016-3815-45c0-85b6-05ab08928351", + "x-ms-routing-request-id": "WESTUS2:20210519T185625Z:9c3d0016-3815-45c0-85b6-05ab08928351" }, "ResponseBody": [] }, @@ -4413,7 +4443,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d8daa585465d7dfe9cf3625124879d21", "x-ms-return-client-request-id": "true" }, @@ -4422,17 +4452,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:26 GMT", + "Date": "Wed, 19 May 2021 18:56:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "614e214a-6be3-421a-bb3a-45a6005bc763", - "x-ms-ratelimit-remaining-subscription-reads": "11694", - "x-ms-request-id": "614e214a-6be3-421a-bb3a-45a6005bc763", - "x-ms-routing-request-id": "WESTUS2:20210507T202727Z:614e214a-6be3-421a-bb3a-45a6005bc763" + "x-ms-correlation-request-id": "ea2cf554-593f-4ad5-a074-783d1c6d260b", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "ea2cf554-593f-4ad5-a074-783d1c6d260b", + "x-ms-routing-request-id": "WESTUS2:20210519T185626Z:ea2cf554-593f-4ad5-a074-783d1c6d260b" }, "ResponseBody": [] }, @@ -4441,7 +4471,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d6c468f0334ebe63578cf7aba1700c10", "x-ms-return-client-request-id": "true" }, @@ -4450,17 +4480,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:27 GMT", + "Date": "Wed, 19 May 2021 18:56:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0010e1a9-0ad0-4b1c-bf68-71320617a694", - "x-ms-ratelimit-remaining-subscription-reads": "11693", - "x-ms-request-id": "0010e1a9-0ad0-4b1c-bf68-71320617a694", - "x-ms-routing-request-id": "WESTUS2:20210507T202728Z:0010e1a9-0ad0-4b1c-bf68-71320617a694" + "x-ms-correlation-request-id": "9b6656f0-13ff-4637-a1fa-5a5e4a8ee3e4", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "9b6656f0-13ff-4637-a1fa-5a5e4a8ee3e4", + "x-ms-routing-request-id": "WESTUS2:20210519T185627Z:9b6656f0-13ff-4637-a1fa-5a5e4a8ee3e4" }, "ResponseBody": [] }, @@ -4469,7 +4499,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "48e5cbdc506b451c7eff6bae4a1ce31c", "x-ms-return-client-request-id": "true" }, @@ -4477,19 +4507,18 @@ "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Connection": "close", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:28 GMT", + "Date": "Wed, 19 May 2021 18:56:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3aceb97-9e12-4c65-a62f-e5ff40cb5653", - "x-ms-ratelimit-remaining-subscription-reads": "11692", - "x-ms-request-id": "e3aceb97-9e12-4c65-a62f-e5ff40cb5653", - "x-ms-routing-request-id": "WESTUS2:20210507T202729Z:e3aceb97-9e12-4c65-a62f-e5ff40cb5653" + "x-ms-correlation-request-id": "20278497-410a-465c-a458-cf892f548867", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "20278497-410a-465c-a458-cf892f548867", + "x-ms-routing-request-id": "WESTUS2:20210519T185628Z:20278497-410a-465c-a458-cf892f548867" }, "ResponseBody": [] }, @@ -4498,7 +4527,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6eab7f827ec4522d411c81d14e53dc2c", "x-ms-return-client-request-id": "true" }, @@ -4507,17 +4536,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:29 GMT", + "Date": "Wed, 19 May 2021 18:56:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa602fa9-8db2-447b-a882-f15b85a33601", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "fa602fa9-8db2-447b-a882-f15b85a33601", - "x-ms-routing-request-id": "WESTUS2:20210507T202730Z:fa602fa9-8db2-447b-a882-f15b85a33601" + "x-ms-correlation-request-id": "591f0394-936a-480f-bf93-90ed9470ee02", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "591f0394-936a-480f-bf93-90ed9470ee02", + "x-ms-routing-request-id": "WESTUS2:20210519T185629Z:591f0394-936a-480f-bf93-90ed9470ee02" }, "ResponseBody": [] }, @@ -4526,7 +4555,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "587451e754a1a0b54c7e574ec8b5743a", "x-ms-return-client-request-id": "true" }, @@ -4535,17 +4564,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:30 GMT", + "Date": "Wed, 19 May 2021 18:56:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4cdf242-b6e9-437c-8c08-c52fb83e0d82", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "f4cdf242-b6e9-437c-8c08-c52fb83e0d82", - "x-ms-routing-request-id": "WESTUS2:20210507T202731Z:f4cdf242-b6e9-437c-8c08-c52fb83e0d82" + "x-ms-correlation-request-id": "85df691f-460e-4706-81ff-701a7df345a1", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "85df691f-460e-4706-81ff-701a7df345a1", + "x-ms-routing-request-id": "WESTUS2:20210519T185630Z:85df691f-460e-4706-81ff-701a7df345a1" }, "ResponseBody": [] }, @@ -4554,7 +4583,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2129daa89dc55e4c9d93074fce4bf62b", "x-ms-return-client-request-id": "true" }, @@ -4563,17 +4592,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:31 GMT", + "Date": "Wed, 19 May 2021 18:56:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2fbe2e3d-2574-43d1-aac3-360b4db2bc59", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "2fbe2e3d-2574-43d1-aac3-360b4db2bc59", - "x-ms-routing-request-id": "WESTUS2:20210507T202732Z:2fbe2e3d-2574-43d1-aac3-360b4db2bc59" + "x-ms-correlation-request-id": "362dd495-a668-4ece-ae6f-9a9516a0edaf", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "362dd495-a668-4ece-ae6f-9a9516a0edaf", + "x-ms-routing-request-id": "WESTUS2:20210519T185631Z:362dd495-a668-4ece-ae6f-9a9516a0edaf" }, "ResponseBody": [] }, @@ -4582,7 +4611,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8c63e238ba82d7ac90a224526df898b", "x-ms-return-client-request-id": "true" }, @@ -4591,17 +4620,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:32 GMT", + "Date": "Wed, 19 May 2021 18:56:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31b82890-af25-42d0-881e-e29e6c9a31b5", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "31b82890-af25-42d0-881e-e29e6c9a31b5", - "x-ms-routing-request-id": "WESTUS2:20210507T202733Z:31b82890-af25-42d0-881e-e29e6c9a31b5" + "x-ms-correlation-request-id": "55558cbb-0a44-4bc2-b189-07907c153d9d", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "55558cbb-0a44-4bc2-b189-07907c153d9d", + "x-ms-routing-request-id": "WESTUS2:20210519T185632Z:55558cbb-0a44-4bc2-b189-07907c153d9d" }, "ResponseBody": [] }, @@ -4610,7 +4639,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "732946a8ba2a49670516ba0e4d66d201", "x-ms-return-client-request-id": "true" }, @@ -4619,17 +4648,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:33 GMT", + "Date": "Wed, 19 May 2021 18:56:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a2ae554-66c5-486c-84e7-06c2333dbf5b", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "9a2ae554-66c5-486c-84e7-06c2333dbf5b", - "x-ms-routing-request-id": "WESTUS2:20210507T202734Z:9a2ae554-66c5-486c-84e7-06c2333dbf5b" + "x-ms-correlation-request-id": "a7cafae7-010c-4556-9b5e-9f9a448ee961", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "a7cafae7-010c-4556-9b5e-9f9a448ee961", + "x-ms-routing-request-id": "WESTUS2:20210519T185633Z:a7cafae7-010c-4556-9b5e-9f9a448ee961" }, "ResponseBody": [] }, @@ -4638,7 +4667,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "892a2c887bee1c9260fb57ba7b0638be", "x-ms-return-client-request-id": "true" }, @@ -4647,17 +4676,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:34 GMT", + "Date": "Wed, 19 May 2021 18:56:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6347cabd-fa08-49a6-aa5b-494ffa4135ab", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "6347cabd-fa08-49a6-aa5b-494ffa4135ab", - "x-ms-routing-request-id": "WESTUS2:20210507T202735Z:6347cabd-fa08-49a6-aa5b-494ffa4135ab" + "x-ms-correlation-request-id": "7339381d-9752-45f3-9985-e52ebb86f1dd", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "7339381d-9752-45f3-9985-e52ebb86f1dd", + "x-ms-routing-request-id": "WESTUS2:20210519T185634Z:7339381d-9752-45f3-9985-e52ebb86f1dd" }, "ResponseBody": [] }, @@ -4666,7 +4695,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87a67b0a82226801d77df391d06cdf63", "x-ms-return-client-request-id": "true" }, @@ -4675,17 +4704,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:35 GMT", + "Date": "Wed, 19 May 2021 18:56:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eaa14d70-fdfa-4698-9b65-07fc072445ca", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "eaa14d70-fdfa-4698-9b65-07fc072445ca", - "x-ms-routing-request-id": "WESTUS2:20210507T202736Z:eaa14d70-fdfa-4698-9b65-07fc072445ca" + "x-ms-correlation-request-id": "e3fb2af6-4667-4fe7-8a6e-dc472cb17bd3", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "e3fb2af6-4667-4fe7-8a6e-dc472cb17bd3", + "x-ms-routing-request-id": "WESTUS2:20210519T185635Z:e3fb2af6-4667-4fe7-8a6e-dc472cb17bd3" }, "ResponseBody": [] }, @@ -4694,7 +4723,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f9bd2038ffb42c9cb40c132e63accdfe", "x-ms-return-client-request-id": "true" }, @@ -4703,17 +4732,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:36 GMT", + "Date": "Wed, 19 May 2021 18:56:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "261ceb77-54fa-43d9-95dd-2a0f837b399b", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "261ceb77-54fa-43d9-95dd-2a0f837b399b", - "x-ms-routing-request-id": "WESTUS2:20210507T202737Z:261ceb77-54fa-43d9-95dd-2a0f837b399b" + "x-ms-correlation-request-id": "c397cc51-bbcc-4489-a7dd-3054eed614a7", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "c397cc51-bbcc-4489-a7dd-3054eed614a7", + "x-ms-routing-request-id": "WESTUS2:20210519T185637Z:c397cc51-bbcc-4489-a7dd-3054eed614a7" }, "ResponseBody": [] }, @@ -4722,7 +4751,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d203fcdd4ac005df2bc1b27188004cf3", "x-ms-return-client-request-id": "true" }, @@ -4731,17 +4760,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:37 GMT", + "Date": "Wed, 19 May 2021 18:56:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "608fe4a9-accc-4d86-b7e0-ac43f713adde", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "608fe4a9-accc-4d86-b7e0-ac43f713adde", - "x-ms-routing-request-id": "WESTUS2:20210507T202738Z:608fe4a9-accc-4d86-b7e0-ac43f713adde" + "x-ms-correlation-request-id": "d16df782-d639-4899-9916-15cd85ff6204", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "d16df782-d639-4899-9916-15cd85ff6204", + "x-ms-routing-request-id": "WESTUS2:20210519T185638Z:d16df782-d639-4899-9916-15cd85ff6204" }, "ResponseBody": [] }, @@ -4750,7 +4779,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b81f41c3e490b09de79d3156fd2052a", "x-ms-return-client-request-id": "true" }, @@ -4759,17 +4788,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:38 GMT", + "Date": "Wed, 19 May 2021 18:56:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e18245d1-02c3-48b6-b9be-33f4fdfa0d4d", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "e18245d1-02c3-48b6-b9be-33f4fdfa0d4d", - "x-ms-routing-request-id": "WESTUS2:20210507T202739Z:e18245d1-02c3-48b6-b9be-33f4fdfa0d4d" + "x-ms-correlation-request-id": "ca8543ff-a7a0-4c2a-bf1e-2d0dfa2a4842", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "ca8543ff-a7a0-4c2a-bf1e-2d0dfa2a4842", + "x-ms-routing-request-id": "WESTUS2:20210519T185639Z:ca8543ff-a7a0-4c2a-bf1e-2d0dfa2a4842" }, "ResponseBody": [] }, @@ -4778,7 +4807,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d3b3f4af0d69eea341b7cef24c2ba4b3", "x-ms-return-client-request-id": "true" }, @@ -4787,17 +4816,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:40 GMT", + "Date": "Wed, 19 May 2021 18:56:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89b2d796-9d19-41bf-a2dc-2ec2dada8a75", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "89b2d796-9d19-41bf-a2dc-2ec2dada8a75", - "x-ms-routing-request-id": "WESTUS2:20210507T202740Z:89b2d796-9d19-41bf-a2dc-2ec2dada8a75" + "x-ms-correlation-request-id": "df0e726d-495c-4536-ab57-d85f8e5029d2", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "df0e726d-495c-4536-ab57-d85f8e5029d2", + "x-ms-routing-request-id": "WESTUS2:20210519T185640Z:df0e726d-495c-4536-ab57-d85f8e5029d2" }, "ResponseBody": [] }, @@ -4806,7 +4835,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6e121fbf722a9fb4f3f8f34677c99658", "x-ms-return-client-request-id": "true" }, @@ -4815,17 +4844,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:42 GMT", + "Date": "Wed, 19 May 2021 18:56:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b983937f-2b34-4f22-972a-d84fc3a69efb", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "b983937f-2b34-4f22-972a-d84fc3a69efb", - "x-ms-routing-request-id": "WESTUS2:20210507T202742Z:b983937f-2b34-4f22-972a-d84fc3a69efb" + "x-ms-correlation-request-id": "fcf10c61-8500-4d41-8cfe-d8bef21d0e25", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "fcf10c61-8500-4d41-8cfe-d8bef21d0e25", + "x-ms-routing-request-id": "WESTUS2:20210519T185641Z:fcf10c61-8500-4d41-8cfe-d8bef21d0e25" }, "ResponseBody": [] }, @@ -4834,7 +4863,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "93c187bc784c0f8a519319916f16beb3", "x-ms-return-client-request-id": "true" }, @@ -4843,17 +4872,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:43 GMT", + "Date": "Wed, 19 May 2021 18:56:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a15f0b1a-491e-4dbd-9840-66a57bf4aeaf", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "a15f0b1a-491e-4dbd-9840-66a57bf4aeaf", - "x-ms-routing-request-id": "WESTUS2:20210507T202743Z:a15f0b1a-491e-4dbd-9840-66a57bf4aeaf" + "x-ms-correlation-request-id": "f80dca8b-b6ed-4b8d-afbb-3591a149dd99", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "f80dca8b-b6ed-4b8d-afbb-3591a149dd99", + "x-ms-routing-request-id": "WESTUS2:20210519T185642Z:f80dca8b-b6ed-4b8d-afbb-3591a149dd99" }, "ResponseBody": [] }, @@ -4862,7 +4891,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4f561fd596c03d004014e070195c7678", "x-ms-return-client-request-id": "true" }, @@ -4871,17 +4900,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:44 GMT", + "Date": "Wed, 19 May 2021 18:56:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0352831-6d2e-4f97-a1d4-5b367e6a1c48", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "c0352831-6d2e-4f97-a1d4-5b367e6a1c48", - "x-ms-routing-request-id": "WESTUS2:20210507T202744Z:c0352831-6d2e-4f97-a1d4-5b367e6a1c48" + "x-ms-correlation-request-id": "7fd23903-eca3-4592-84e2-dd1b1d8f1e8a", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "7fd23903-eca3-4592-84e2-dd1b1d8f1e8a", + "x-ms-routing-request-id": "WESTUS2:20210519T185643Z:7fd23903-eca3-4592-84e2-dd1b1d8f1e8a" }, "ResponseBody": [] }, @@ -4890,7 +4919,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c53675211069476695031d9759222fdc", "x-ms-return-client-request-id": "true" }, @@ -4899,17 +4928,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:45 GMT", + "Date": "Wed, 19 May 2021 18:56:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d8ef874-44e0-4a06-b3f7-795898bfe635", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "3d8ef874-44e0-4a06-b3f7-795898bfe635", - "x-ms-routing-request-id": "WESTUS2:20210507T202745Z:3d8ef874-44e0-4a06-b3f7-795898bfe635" + "x-ms-correlation-request-id": "e7ae2442-f1b0-40fd-98d6-90dee74f4a2d", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "e7ae2442-f1b0-40fd-98d6-90dee74f4a2d", + "x-ms-routing-request-id": "WESTUS2:20210519T185644Z:e7ae2442-f1b0-40fd-98d6-90dee74f4a2d" }, "ResponseBody": [] }, @@ -4918,7 +4947,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5770403a4673259887845338971af5f4", "x-ms-return-client-request-id": "true" }, @@ -4927,17 +4956,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:46 GMT", + "Date": "Wed, 19 May 2021 18:56:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "779ec015-5a91-4a9a-8909-2164254d44c0", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "779ec015-5a91-4a9a-8909-2164254d44c0", - "x-ms-routing-request-id": "WESTUS2:20210507T202746Z:779ec015-5a91-4a9a-8909-2164254d44c0" + "x-ms-correlation-request-id": "1fbc9fa2-c0b7-4f8b-8cfa-01850d1069ed", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "1fbc9fa2-c0b7-4f8b-8cfa-01850d1069ed", + "x-ms-routing-request-id": "WESTUS2:20210519T185645Z:1fbc9fa2-c0b7-4f8b-8cfa-01850d1069ed" }, "ResponseBody": [] }, @@ -4946,7 +4975,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fa70a11cf8dfc549b80ebabd7868e41d", "x-ms-return-client-request-id": "true" }, @@ -4955,17 +4984,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:47 GMT", + "Date": "Wed, 19 May 2021 18:56:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "739285ed-f445-4921-aa1c-2403c4704423", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "739285ed-f445-4921-aa1c-2403c4704423", - "x-ms-routing-request-id": "WESTUS2:20210507T202747Z:739285ed-f445-4921-aa1c-2403c4704423" + "x-ms-correlation-request-id": "db68fb5b-20a0-4384-be89-4ba3c4d8166c", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "db68fb5b-20a0-4384-be89-4ba3c4d8166c", + "x-ms-routing-request-id": "WESTUS2:20210519T185646Z:db68fb5b-20a0-4384-be89-4ba3c4d8166c" }, "ResponseBody": [] }, @@ -4974,7 +5003,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d83604e41fecdb05dd103ee4bc2eaf7a", "x-ms-return-client-request-id": "true" }, @@ -4983,17 +5012,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:48 GMT", + "Date": "Wed, 19 May 2021 18:56:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3950065e-d50c-4265-8e33-11332acfd287", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "3950065e-d50c-4265-8e33-11332acfd287", - "x-ms-routing-request-id": "WESTUS2:20210507T202748Z:3950065e-d50c-4265-8e33-11332acfd287" + "x-ms-correlation-request-id": "5bfcd309-53a8-468e-86be-db63df970607", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "5bfcd309-53a8-468e-86be-db63df970607", + "x-ms-routing-request-id": "WESTUS2:20210519T185647Z:5bfcd309-53a8-468e-86be-db63df970607" }, "ResponseBody": [] }, @@ -5002,7 +5031,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b77a290d35b241fcf6ab9e648cdaac1e", "x-ms-return-client-request-id": "true" }, @@ -5011,17 +5040,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:49 GMT", + "Date": "Wed, 19 May 2021 18:56:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5810a80c-4332-4b32-aa0d-bd5dfb355b2b", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "5810a80c-4332-4b32-aa0d-bd5dfb355b2b", - "x-ms-routing-request-id": "WESTUS2:20210507T202749Z:5810a80c-4332-4b32-aa0d-bd5dfb355b2b" + "x-ms-correlation-request-id": "36496481-be02-4ddc-832b-ab5963c46c98", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "36496481-be02-4ddc-832b-ab5963c46c98", + "x-ms-routing-request-id": "WESTUS2:20210519T185648Z:36496481-be02-4ddc-832b-ab5963c46c98" }, "ResponseBody": [] }, @@ -5030,7 +5059,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "935336a01de3fd089c951ccfba64088a", "x-ms-return-client-request-id": "true" }, @@ -5039,17 +5068,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:50 GMT", + "Date": "Wed, 19 May 2021 18:56:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e61dbc98-9dea-4712-b20d-6af9265aa37e", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "e61dbc98-9dea-4712-b20d-6af9265aa37e", - "x-ms-routing-request-id": "WESTUS2:20210507T202750Z:e61dbc98-9dea-4712-b20d-6af9265aa37e" + "x-ms-correlation-request-id": "77f06400-92d9-48c4-9d76-4c7af93798c8", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "77f06400-92d9-48c4-9d76-4c7af93798c8", + "x-ms-routing-request-id": "WESTUS2:20210519T185649Z:77f06400-92d9-48c4-9d76-4c7af93798c8" }, "ResponseBody": [] }, @@ -5058,7 +5087,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4fb03f5e2ceeaf6a07f4e24080a04f02", "x-ms-return-client-request-id": "true" }, @@ -5067,17 +5096,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:51 GMT", + "Date": "Wed, 19 May 2021 18:56:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91c97b20-7d66-45b6-88eb-86dc41801cec", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "91c97b20-7d66-45b6-88eb-86dc41801cec", - "x-ms-routing-request-id": "WESTUS2:20210507T202751Z:91c97b20-7d66-45b6-88eb-86dc41801cec" + "x-ms-correlation-request-id": "5f27fd08-a5fd-4c22-9b1b-aeae4841c610", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "5f27fd08-a5fd-4c22-9b1b-aeae4841c610", + "x-ms-routing-request-id": "WESTUS2:20210519T185650Z:5f27fd08-a5fd-4c22-9b1b-aeae4841c610" }, "ResponseBody": [] }, @@ -5086,7 +5115,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "86441f631cdaf097207c1b1d192d8791", "x-ms-return-client-request-id": "true" }, @@ -5095,17 +5124,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:52 GMT", + "Date": "Wed, 19 May 2021 18:56:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61045135-c85b-42eb-a38f-6ac7a6e6b0f1", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "61045135-c85b-42eb-a38f-6ac7a6e6b0f1", - "x-ms-routing-request-id": "WESTUS2:20210507T202752Z:61045135-c85b-42eb-a38f-6ac7a6e6b0f1" + "x-ms-correlation-request-id": "446da01a-4532-49cf-a6d2-7bb40cafdd42", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "446da01a-4532-49cf-a6d2-7bb40cafdd42", + "x-ms-routing-request-id": "WESTUS2:20210519T185651Z:446da01a-4532-49cf-a6d2-7bb40cafdd42" }, "ResponseBody": [] }, @@ -5114,7 +5143,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4c0514a35d2a732fcba48bee3bc77dfb", "x-ms-return-client-request-id": "true" }, @@ -5123,17 +5152,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:53 GMT", + "Date": "Wed, 19 May 2021 18:56:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8da33440-be65-469a-8af3-48baae6c4676", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "8da33440-be65-469a-8af3-48baae6c4676", - "x-ms-routing-request-id": "WESTUS2:20210507T202753Z:8da33440-be65-469a-8af3-48baae6c4676" + "x-ms-correlation-request-id": "65dd81c4-37bf-4421-9a9b-99d05e7d7b75", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "65dd81c4-37bf-4421-9a9b-99d05e7d7b75", + "x-ms-routing-request-id": "WESTUS2:20210519T185652Z:65dd81c4-37bf-4421-9a9b-99d05e7d7b75" }, "ResponseBody": [] }, @@ -5142,7 +5171,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9a6b1945822042afa8c02e72104d96da", "x-ms-return-client-request-id": "true" }, @@ -5151,17 +5180,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:54 GMT", + "Date": "Wed, 19 May 2021 18:56:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d1b934d-cc5d-4186-a2cf-402ef9fe2296", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "8d1b934d-cc5d-4186-a2cf-402ef9fe2296", - "x-ms-routing-request-id": "WESTUS2:20210507T202754Z:8d1b934d-cc5d-4186-a2cf-402ef9fe2296" + "x-ms-correlation-request-id": "fe33130c-0d30-4a83-9d0d-329ae2d9757a", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "fe33130c-0d30-4a83-9d0d-329ae2d9757a", + "x-ms-routing-request-id": "WESTUS2:20210519T185653Z:fe33130c-0d30-4a83-9d0d-329ae2d9757a" }, "ResponseBody": [] }, @@ -5170,7 +5199,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6b9d506d029b06d8f0d0ba3690a8b558", "x-ms-return-client-request-id": "true" }, @@ -5179,17 +5208,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:55 GMT", + "Date": "Wed, 19 May 2021 18:56:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2973331-7c95-4b6f-9209-f633b8506fe8", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "c2973331-7c95-4b6f-9209-f633b8506fe8", - "x-ms-routing-request-id": "WESTUS2:20210507T202755Z:c2973331-7c95-4b6f-9209-f633b8506fe8" + "x-ms-correlation-request-id": "4b2e8448-644b-44b2-96a9-3036d69d1695", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "4b2e8448-644b-44b2-96a9-3036d69d1695", + "x-ms-routing-request-id": "WESTUS2:20210519T185654Z:4b2e8448-644b-44b2-96a9-3036d69d1695" }, "ResponseBody": [] }, @@ -5198,7 +5227,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ffd720feecc1207164c2a46a2ebd637e", "x-ms-return-client-request-id": "true" }, @@ -5207,17 +5236,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:56 GMT", + "Date": "Wed, 19 May 2021 18:56:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69f01c9f-81e2-425a-a647-805410029c94", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "69f01c9f-81e2-425a-a647-805410029c94", - "x-ms-routing-request-id": "WESTUS2:20210507T202756Z:69f01c9f-81e2-425a-a647-805410029c94" + "x-ms-correlation-request-id": "a06278b3-1a30-4ac7-994b-a84534950892", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "a06278b3-1a30-4ac7-994b-a84534950892", + "x-ms-routing-request-id": "WESTUS2:20210519T185655Z:a06278b3-1a30-4ac7-994b-a84534950892" }, "ResponseBody": [] }, @@ -5226,7 +5255,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea80b10d112a43604164aa4fc778b1ff", "x-ms-return-client-request-id": "true" }, @@ -5235,17 +5264,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:57 GMT", + "Date": "Wed, 19 May 2021 18:56:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e94e5cdd-7f56-4780-b2e0-e1f7beb8e97a", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "e94e5cdd-7f56-4780-b2e0-e1f7beb8e97a", - "x-ms-routing-request-id": "WESTUS2:20210507T202757Z:e94e5cdd-7f56-4780-b2e0-e1f7beb8e97a" + "x-ms-correlation-request-id": "3adc6b4f-a74f-479a-81d1-a523d290ee3f", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "3adc6b4f-a74f-479a-81d1-a523d290ee3f", + "x-ms-routing-request-id": "WESTUS2:20210519T185656Z:3adc6b4f-a74f-479a-81d1-a523d290ee3f" }, "ResponseBody": [] }, @@ -5254,7 +5283,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f073d50b96768118de7c06d85d6dd833", "x-ms-return-client-request-id": "true" }, @@ -5263,17 +5292,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:58 GMT", + "Date": "Wed, 19 May 2021 18:56:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43aaa769-1bf1-4923-870c-71111a4d0c59", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "43aaa769-1bf1-4923-870c-71111a4d0c59", - "x-ms-routing-request-id": "WESTUS2:20210507T202758Z:43aaa769-1bf1-4923-870c-71111a4d0c59" + "x-ms-correlation-request-id": "46379fdb-30b4-479d-8950-9dcc0521e507", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "46379fdb-30b4-479d-8950-9dcc0521e507", + "x-ms-routing-request-id": "WESTUS2:20210519T185657Z:46379fdb-30b4-479d-8950-9dcc0521e507" }, "ResponseBody": [] }, @@ -5282,7 +5311,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df283c6dca27ed2ebf93be5c412158eb", "x-ms-return-client-request-id": "true" }, @@ -5291,17 +5320,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:27:59 GMT", + "Date": "Wed, 19 May 2021 18:56:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebf12d58-c56f-4400-91cf-19a6a50128f9", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "ebf12d58-c56f-4400-91cf-19a6a50128f9", - "x-ms-routing-request-id": "WESTUS2:20210507T202800Z:ebf12d58-c56f-4400-91cf-19a6a50128f9" + "x-ms-correlation-request-id": "46ee1775-79de-45b4-af99-1d96a43dc00d", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "46ee1775-79de-45b4-af99-1d96a43dc00d", + "x-ms-routing-request-id": "WESTUS2:20210519T185658Z:46ee1775-79de-45b4-af99-1d96a43dc00d" }, "ResponseBody": [] }, @@ -5310,7 +5339,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "585fa5117249770899ff0cad0a87e5d3", "x-ms-return-client-request-id": "true" }, @@ -5319,17 +5348,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:00 GMT", + "Date": "Wed, 19 May 2021 18:56:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2cd7bbdf-bc3d-4736-8bf6-f2f277cffbdc", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "2cd7bbdf-bc3d-4736-8bf6-f2f277cffbdc", - "x-ms-routing-request-id": "WESTUS2:20210507T202801Z:2cd7bbdf-bc3d-4736-8bf6-f2f277cffbdc" + "x-ms-correlation-request-id": "0242f5a7-c0e0-4e6b-9e16-23f01fe1f9bb", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "0242f5a7-c0e0-4e6b-9e16-23f01fe1f9bb", + "x-ms-routing-request-id": "WESTUS2:20210519T185659Z:0242f5a7-c0e0-4e6b-9e16-23f01fe1f9bb" }, "ResponseBody": [] }, @@ -5338,7 +5367,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8be2778cd25040d7a78630e2d8bb3fbd", "x-ms-return-client-request-id": "true" }, @@ -5347,17 +5376,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:01 GMT", + "Date": "Wed, 19 May 2021 18:57:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97c50626-729d-45f5-ab28-a1a53f3c145a", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "97c50626-729d-45f5-ab28-a1a53f3c145a", - "x-ms-routing-request-id": "WESTUS2:20210507T202802Z:97c50626-729d-45f5-ab28-a1a53f3c145a" + "x-ms-correlation-request-id": "982388c9-63d4-459d-8db4-4ba88abc7c3c", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "982388c9-63d4-459d-8db4-4ba88abc7c3c", + "x-ms-routing-request-id": "WESTUS2:20210519T185701Z:982388c9-63d4-459d-8db4-4ba88abc7c3c" }, "ResponseBody": [] }, @@ -5366,7 +5395,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b8c71b237f0efbe934b14628be80e338", "x-ms-return-client-request-id": "true" }, @@ -5375,17 +5404,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:02 GMT", + "Date": "Wed, 19 May 2021 18:57:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7537c36a-dbcf-49e4-8b89-9d70fc9a13ac", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "7537c36a-dbcf-49e4-8b89-9d70fc9a13ac", - "x-ms-routing-request-id": "WESTUS2:20210507T202803Z:7537c36a-dbcf-49e4-8b89-9d70fc9a13ac" + "x-ms-correlation-request-id": "be3b6112-8c25-4193-ac82-005961beaf66", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "be3b6112-8c25-4193-ac82-005961beaf66", + "x-ms-routing-request-id": "WESTUS2:20210519T185702Z:be3b6112-8c25-4193-ac82-005961beaf66" }, "ResponseBody": [] }, @@ -5394,7 +5423,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cacfebaecd3f3f9bcd1eb1c341259edd", "x-ms-return-client-request-id": "true" }, @@ -5403,17 +5432,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:03 GMT", + "Date": "Wed, 19 May 2021 18:57:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc81dfad-d9f4-4083-acb6-1f768ea52fca", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "cc81dfad-d9f4-4083-acb6-1f768ea52fca", - "x-ms-routing-request-id": "WESTUS2:20210507T202804Z:cc81dfad-d9f4-4083-acb6-1f768ea52fca" + "x-ms-correlation-request-id": "829e5a43-ee19-4a8a-99b5-1c2e924f897f", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "829e5a43-ee19-4a8a-99b5-1c2e924f897f", + "x-ms-routing-request-id": "WESTUS2:20210519T185703Z:829e5a43-ee19-4a8a-99b5-1c2e924f897f" }, "ResponseBody": [] }, @@ -5422,7 +5451,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef894ebf2cc00dc48de6569e8cae8226", "x-ms-return-client-request-id": "true" }, @@ -5431,17 +5460,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:04 GMT", + "Date": "Wed, 19 May 2021 18:57:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "702cf818-3355-40be-bd52-ce49c3d1f7f9", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "702cf818-3355-40be-bd52-ce49c3d1f7f9", - "x-ms-routing-request-id": "WESTUS2:20210507T202805Z:702cf818-3355-40be-bd52-ce49c3d1f7f9" + "x-ms-correlation-request-id": "427806d6-4db0-4e0b-afbe-60c0fd095aac", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "427806d6-4db0-4e0b-afbe-60c0fd095aac", + "x-ms-routing-request-id": "WESTUS2:20210519T185704Z:427806d6-4db0-4e0b-afbe-60c0fd095aac" }, "ResponseBody": [] }, @@ -5450,7 +5479,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed33f8a275eb567e7f87ebefce25ba0e", "x-ms-return-client-request-id": "true" }, @@ -5459,17 +5488,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:05 GMT", + "Date": "Wed, 19 May 2021 18:57:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf1edad3-0bf8-4f89-a49c-ad887b26e5ba", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "cf1edad3-0bf8-4f89-a49c-ad887b26e5ba", - "x-ms-routing-request-id": "WESTUS2:20210507T202806Z:cf1edad3-0bf8-4f89-a49c-ad887b26e5ba" + "x-ms-correlation-request-id": "ed968c9b-3f62-40de-a466-9674def7d8e8", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "ed968c9b-3f62-40de-a466-9674def7d8e8", + "x-ms-routing-request-id": "WESTUS2:20210519T185705Z:ed968c9b-3f62-40de-a466-9674def7d8e8" }, "ResponseBody": [] }, @@ -5478,7 +5507,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f686813f3f6817726c23c5876fdb21e", "x-ms-return-client-request-id": "true" }, @@ -5487,17 +5516,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:06 GMT", + "Date": "Wed, 19 May 2021 18:57:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60be1c44-abf4-4e68-a45a-9cc8535ae64b", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "60be1c44-abf4-4e68-a45a-9cc8535ae64b", - "x-ms-routing-request-id": "WESTUS2:20210507T202807Z:60be1c44-abf4-4e68-a45a-9cc8535ae64b" + "x-ms-correlation-request-id": "f56612ee-4623-48ca-8730-e758faf8f5dd", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "f56612ee-4623-48ca-8730-e758faf8f5dd", + "x-ms-routing-request-id": "WESTUS2:20210519T185706Z:f56612ee-4623-48ca-8730-e758faf8f5dd" }, "ResponseBody": [] }, @@ -5506,7 +5535,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "48208a9bb0f24af1d033703841d53f67", "x-ms-return-client-request-id": "true" }, @@ -5515,17 +5544,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:07 GMT", + "Date": "Wed, 19 May 2021 18:57:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39936446-d614-4169-912e-4c251280dbad", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "39936446-d614-4169-912e-4c251280dbad", - "x-ms-routing-request-id": "WESTUS2:20210507T202808Z:39936446-d614-4169-912e-4c251280dbad" + "x-ms-correlation-request-id": "bf018d3f-1e02-4b84-bc44-a130a56c8262", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "bf018d3f-1e02-4b84-bc44-a130a56c8262", + "x-ms-routing-request-id": "WESTUS2:20210519T185707Z:bf018d3f-1e02-4b84-bc44-a130a56c8262" }, "ResponseBody": [] }, @@ -5534,7 +5563,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "238b482c1345af3080b1c7293825df82", "x-ms-return-client-request-id": "true" }, @@ -5543,17 +5572,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:09 GMT", + "Date": "Wed, 19 May 2021 18:57:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c364e5e5-df21-4aaf-afce-4b0ee24a7aa0", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "c364e5e5-df21-4aaf-afce-4b0ee24a7aa0", - "x-ms-routing-request-id": "WESTUS2:20210507T202809Z:c364e5e5-df21-4aaf-afce-4b0ee24a7aa0" + "x-ms-correlation-request-id": "d46978c1-4a69-44ba-9d81-1c4cf4c8e54f", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "d46978c1-4a69-44ba-9d81-1c4cf4c8e54f", + "x-ms-routing-request-id": "WESTUS2:20210519T185708Z:d46978c1-4a69-44ba-9d81-1c4cf4c8e54f" }, "ResponseBody": [] }, @@ -5562,7 +5591,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4353ccd57105621c771e9ec3833f4050", "x-ms-return-client-request-id": "true" }, @@ -5571,17 +5600,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:10 GMT", + "Date": "Wed, 19 May 2021 18:57:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c47642e-df61-4b10-bb68-d9506a2f3d3a", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "7c47642e-df61-4b10-bb68-d9506a2f3d3a", - "x-ms-routing-request-id": "WESTUS2:20210507T202810Z:7c47642e-df61-4b10-bb68-d9506a2f3d3a" + "x-ms-correlation-request-id": "55e47615-32d6-4615-9bd6-57450b7ffe1e", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "55e47615-32d6-4615-9bd6-57450b7ffe1e", + "x-ms-routing-request-id": "WESTUS2:20210519T185709Z:55e47615-32d6-4615-9bd6-57450b7ffe1e" }, "ResponseBody": [] }, @@ -5590,7 +5619,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2e2bd4838f7188d85a71c740e9c812aa", "x-ms-return-client-request-id": "true" }, @@ -5599,17 +5628,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:11 GMT", + "Date": "Wed, 19 May 2021 18:57:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8ceae9d-2736-421f-aab5-1ea2a812c057", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "e8ceae9d-2736-421f-aab5-1ea2a812c057", - "x-ms-routing-request-id": "WESTUS2:20210507T202811Z:e8ceae9d-2736-421f-aab5-1ea2a812c057" + "x-ms-correlation-request-id": "5647ce8e-b485-4c24-9dba-b5cd2fff9854", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "5647ce8e-b485-4c24-9dba-b5cd2fff9854", + "x-ms-routing-request-id": "WESTUS2:20210519T185710Z:5647ce8e-b485-4c24-9dba-b5cd2fff9854" }, "ResponseBody": [] }, @@ -5618,7 +5647,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7463ed53fb81bb622c29ac27746d2b41", "x-ms-return-client-request-id": "true" }, @@ -5627,17 +5656,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:12 GMT", + "Date": "Wed, 19 May 2021 18:57:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b91ecc33-875a-4bd4-b57f-b7c43f345823", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "b91ecc33-875a-4bd4-b57f-b7c43f345823", - "x-ms-routing-request-id": "WESTUS2:20210507T202812Z:b91ecc33-875a-4bd4-b57f-b7c43f345823" + "x-ms-correlation-request-id": "047aab2d-7a36-4132-aa2a-d696e703b662", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "047aab2d-7a36-4132-aa2a-d696e703b662", + "x-ms-routing-request-id": "WESTUS2:20210519T185711Z:047aab2d-7a36-4132-aa2a-d696e703b662" }, "ResponseBody": [] }, @@ -5646,7 +5675,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "63a57671b1f94510f3cbe894a9db78ae", "x-ms-return-client-request-id": "true" }, @@ -5655,17 +5684,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:13 GMT", + "Date": "Wed, 19 May 2021 18:57:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "938d3b8a-440c-4613-98e3-f9127123e38b", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "938d3b8a-440c-4613-98e3-f9127123e38b", - "x-ms-routing-request-id": "WESTUS2:20210507T202813Z:938d3b8a-440c-4613-98e3-f9127123e38b" + "x-ms-correlation-request-id": "0b88962e-8d86-4b5a-bef9-679f5d437c25", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "0b88962e-8d86-4b5a-bef9-679f5d437c25", + "x-ms-routing-request-id": "WESTUS2:20210519T185712Z:0b88962e-8d86-4b5a-bef9-679f5d437c25" }, "ResponseBody": [] }, @@ -5674,7 +5703,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "956ff30bcbdb87cf71700248e3b014ed", "x-ms-return-client-request-id": "true" }, @@ -5683,17 +5712,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:14 GMT", + "Date": "Wed, 19 May 2021 18:57:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89760db0-9ff5-4fae-8fa9-cbc0c1318895", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "89760db0-9ff5-4fae-8fa9-cbc0c1318895", - "x-ms-routing-request-id": "WESTUS2:20210507T202814Z:89760db0-9ff5-4fae-8fa9-cbc0c1318895" + "x-ms-correlation-request-id": "f4d2697b-99f2-4b8d-913a-dd1542f43a0f", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "f4d2697b-99f2-4b8d-913a-dd1542f43a0f", + "x-ms-routing-request-id": "WESTUS2:20210519T185713Z:f4d2697b-99f2-4b8d-913a-dd1542f43a0f" }, "ResponseBody": [] }, @@ -5702,7 +5731,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "72ce8645ae22a2b1dd1d81b612ce1150", "x-ms-return-client-request-id": "true" }, @@ -5711,17 +5740,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:15 GMT", + "Date": "Wed, 19 May 2021 18:57:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "162e6a1e-e86b-4fd3-a977-b9ba8ac98d08", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "162e6a1e-e86b-4fd3-a977-b9ba8ac98d08", - "x-ms-routing-request-id": "WESTUS2:20210507T202815Z:162e6a1e-e86b-4fd3-a977-b9ba8ac98d08" + "x-ms-correlation-request-id": "c78bc25c-af9f-4409-952e-9539b12aa3ed", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "c78bc25c-af9f-4409-952e-9539b12aa3ed", + "x-ms-routing-request-id": "WESTUS2:20210519T185714Z:c78bc25c-af9f-4409-952e-9539b12aa3ed" }, "ResponseBody": [] }, @@ -5730,7 +5759,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "801bfdb095fda666a71ef289afc86242", "x-ms-return-client-request-id": "true" }, @@ -5739,17 +5768,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:16 GMT", + "Date": "Wed, 19 May 2021 18:57:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "151e1fa6-8980-4c81-9582-48c39c9cc00b", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "151e1fa6-8980-4c81-9582-48c39c9cc00b", - "x-ms-routing-request-id": "WESTUS2:20210507T202816Z:151e1fa6-8980-4c81-9582-48c39c9cc00b" + "x-ms-correlation-request-id": "bed7ac32-5664-45ba-ae5a-5f688388e184", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "bed7ac32-5664-45ba-ae5a-5f688388e184", + "x-ms-routing-request-id": "WESTUS2:20210519T185715Z:bed7ac32-5664-45ba-ae5a-5f688388e184" }, "ResponseBody": [] }, @@ -5758,7 +5787,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "234efbb6050d5d8c42cdb8bd4a1974a3", "x-ms-return-client-request-id": "true" }, @@ -5767,17 +5796,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:17 GMT", + "Date": "Wed, 19 May 2021 18:57:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84838683-3511-445f-9186-3cdedc9be079", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "84838683-3511-445f-9186-3cdedc9be079", - "x-ms-routing-request-id": "WESTUS2:20210507T202817Z:84838683-3511-445f-9186-3cdedc9be079" + "x-ms-correlation-request-id": "2798a218-9cae-4079-b053-b7233fa2fea1", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "2798a218-9cae-4079-b053-b7233fa2fea1", + "x-ms-routing-request-id": "WESTUS2:20210519T185716Z:2798a218-9cae-4079-b053-b7233fa2fea1" }, "ResponseBody": [] }, @@ -5786,7 +5815,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e597b15e9394afef1f28cb03bc27f214", "x-ms-return-client-request-id": "true" }, @@ -5795,17 +5824,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:18 GMT", + "Date": "Wed, 19 May 2021 18:57:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb890361-ac96-4cb7-a30f-4e593a3e2d17", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "eb890361-ac96-4cb7-a30f-4e593a3e2d17", - "x-ms-routing-request-id": "WESTUS2:20210507T202819Z:eb890361-ac96-4cb7-a30f-4e593a3e2d17" + "x-ms-correlation-request-id": "4df32cb8-84ad-4d3d-ac16-d366b291a93e", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "4df32cb8-84ad-4d3d-ac16-d366b291a93e", + "x-ms-routing-request-id": "WESTUS2:20210519T185717Z:4df32cb8-84ad-4d3d-ac16-d366b291a93e" }, "ResponseBody": [] }, @@ -5814,7 +5843,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "17ff3ebbee7fab4271be3d30dda85c8d", "x-ms-return-client-request-id": "true" }, @@ -5823,17 +5852,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:19 GMT", + "Date": "Wed, 19 May 2021 18:57:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43b39c3c-0435-4f7d-8bd9-478222d2f99f", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "43b39c3c-0435-4f7d-8bd9-478222d2f99f", - "x-ms-routing-request-id": "WESTUS2:20210507T202820Z:43b39c3c-0435-4f7d-8bd9-478222d2f99f" + "x-ms-correlation-request-id": "1a236bd6-d5e2-484b-a054-0c4e9358772b", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "1a236bd6-d5e2-484b-a054-0c4e9358772b", + "x-ms-routing-request-id": "WESTUS2:20210519T185718Z:1a236bd6-d5e2-484b-a054-0c4e9358772b" }, "ResponseBody": [] }, @@ -5842,7 +5871,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd2a4eaa7c3023ad0b9f03e43988a11b", "x-ms-return-client-request-id": "true" }, @@ -5851,17 +5880,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:20 GMT", + "Date": "Wed, 19 May 2021 18:57:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ff96273-21c5-4a4d-892b-477d4c6f7da8", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "0ff96273-21c5-4a4d-892b-477d4c6f7da8", - "x-ms-routing-request-id": "WESTUS2:20210507T202821Z:0ff96273-21c5-4a4d-892b-477d4c6f7da8" + "x-ms-correlation-request-id": "a6796d7a-2558-4f60-8871-1fa3a59eab90", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "a6796d7a-2558-4f60-8871-1fa3a59eab90", + "x-ms-routing-request-id": "WESTUS2:20210519T185719Z:a6796d7a-2558-4f60-8871-1fa3a59eab90" }, "ResponseBody": [] }, @@ -5870,7 +5899,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0b01a3da5d1970236eec74d655bed277", "x-ms-return-client-request-id": "true" }, @@ -5879,17 +5908,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:21 GMT", + "Date": "Wed, 19 May 2021 18:57:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9948396-5679-4087-88d6-a8bf9bc84a20", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "a9948396-5679-4087-88d6-a8bf9bc84a20", - "x-ms-routing-request-id": "WESTUS2:20210507T202822Z:a9948396-5679-4087-88d6-a8bf9bc84a20" + "x-ms-correlation-request-id": "d22528aa-0e18-4d46-8ef9-2f46c4eb0a29", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "d22528aa-0e18-4d46-8ef9-2f46c4eb0a29", + "x-ms-routing-request-id": "WESTUS2:20210519T185720Z:d22528aa-0e18-4d46-8ef9-2f46c4eb0a29" }, "ResponseBody": [] }, @@ -5898,7 +5927,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6d593dccf4fd3fe490dc0be0ea5e71e8", "x-ms-return-client-request-id": "true" }, @@ -5907,17 +5936,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:22 GMT", + "Date": "Wed, 19 May 2021 18:57:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10fb7a71-4659-4578-819e-362a8b752a66", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "10fb7a71-4659-4578-819e-362a8b752a66", - "x-ms-routing-request-id": "WESTUS2:20210507T202823Z:10fb7a71-4659-4578-819e-362a8b752a66" + "x-ms-correlation-request-id": "08c9707c-ed07-45ac-a540-3eb145410431", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "08c9707c-ed07-45ac-a540-3eb145410431", + "x-ms-routing-request-id": "WESTUS2:20210519T185721Z:08c9707c-ed07-45ac-a540-3eb145410431" }, "ResponseBody": [] }, @@ -5926,7 +5955,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3956221c50a64c742bb98e4308d7cd4d", "x-ms-return-client-request-id": "true" }, @@ -5935,17 +5964,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:23 GMT", + "Date": "Wed, 19 May 2021 18:57:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad7cc969-c92d-4238-84ac-a0e7dabc7f69", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "ad7cc969-c92d-4238-84ac-a0e7dabc7f69", - "x-ms-routing-request-id": "WESTUS2:20210507T202824Z:ad7cc969-c92d-4238-84ac-a0e7dabc7f69" + "x-ms-correlation-request-id": "6401799a-9b15-4054-b19b-65310f230b96", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "6401799a-9b15-4054-b19b-65310f230b96", + "x-ms-routing-request-id": "WESTUS2:20210519T185722Z:6401799a-9b15-4054-b19b-65310f230b96" }, "ResponseBody": [] }, @@ -5954,7 +5983,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fb188ccd332ee51dbfc27a3d51428610", "x-ms-return-client-request-id": "true" }, @@ -5963,17 +5992,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:24 GMT", + "Date": "Wed, 19 May 2021 18:57:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65ebd413-aa80-4a1f-a53f-9eb9183de84a", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "65ebd413-aa80-4a1f-a53f-9eb9183de84a", - "x-ms-routing-request-id": "WESTUS2:20210507T202825Z:65ebd413-aa80-4a1f-a53f-9eb9183de84a" + "x-ms-correlation-request-id": "0c528c9d-16fd-437f-9c64-4ae088d2da9c", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "0c528c9d-16fd-437f-9c64-4ae088d2da9c", + "x-ms-routing-request-id": "WESTUS2:20210519T185723Z:0c528c9d-16fd-437f-9c64-4ae088d2da9c" }, "ResponseBody": [] }, @@ -5982,7 +6011,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "32b98b7b98687cd0c90c424366a036b9", "x-ms-return-client-request-id": "true" }, @@ -5991,17 +6020,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:25 GMT", + "Date": "Wed, 19 May 2021 18:57:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "16f92cb9-508b-4ac7-b9bc-312854642c23", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "16f92cb9-508b-4ac7-b9bc-312854642c23", - "x-ms-routing-request-id": "WESTUS2:20210507T202826Z:16f92cb9-508b-4ac7-b9bc-312854642c23" + "x-ms-correlation-request-id": "b38da3b0-7eaf-4a68-8c0c-34a2fa61d135", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "b38da3b0-7eaf-4a68-8c0c-34a2fa61d135", + "x-ms-routing-request-id": "WESTUS2:20210519T185724Z:b38da3b0-7eaf-4a68-8c0c-34a2fa61d135" }, "ResponseBody": [] }, @@ -6010,7 +6039,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5d13be0e7545e9ba05717ae4d536fbe8", "x-ms-return-client-request-id": "true" }, @@ -6019,17 +6048,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:26 GMT", + "Date": "Wed, 19 May 2021 18:57:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11093807-5c10-4b74-bfed-f498f041040a", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "11093807-5c10-4b74-bfed-f498f041040a", - "x-ms-routing-request-id": "WESTUS2:20210507T202827Z:11093807-5c10-4b74-bfed-f498f041040a" + "x-ms-correlation-request-id": "92420c67-fc78-41da-a6d0-80ea21ec9fdf", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "92420c67-fc78-41da-a6d0-80ea21ec9fdf", + "x-ms-routing-request-id": "WESTUS2:20210519T185725Z:92420c67-fc78-41da-a6d0-80ea21ec9fdf" }, "ResponseBody": [] }, @@ -6038,7 +6067,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7cc87e329a1d34e5bc9c3221f1d97f1f", "x-ms-return-client-request-id": "true" }, @@ -6047,17 +6076,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:27 GMT", + "Date": "Wed, 19 May 2021 18:57:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6339653-e35c-447e-9c5d-d6cf7360585c", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "f6339653-e35c-447e-9c5d-d6cf7360585c", - "x-ms-routing-request-id": "WESTUS2:20210507T202828Z:f6339653-e35c-447e-9c5d-d6cf7360585c" + "x-ms-correlation-request-id": "1cbc00e9-ffde-4fad-931b-12f241963518", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "1cbc00e9-ffde-4fad-931b-12f241963518", + "x-ms-routing-request-id": "WESTUS2:20210519T185726Z:1cbc00e9-ffde-4fad-931b-12f241963518" }, "ResponseBody": [] }, @@ -6066,7 +6095,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "932ec18b292f05cbd1d02df71eeca692", "x-ms-return-client-request-id": "true" }, @@ -6075,17 +6104,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:28 GMT", + "Date": "Wed, 19 May 2021 18:57:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00f3cfc6-f1c4-4721-b9d9-13d2240dc28a", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "00f3cfc6-f1c4-4721-b9d9-13d2240dc28a", - "x-ms-routing-request-id": "WESTUS2:20210507T202829Z:00f3cfc6-f1c4-4721-b9d9-13d2240dc28a" + "x-ms-correlation-request-id": "31c95422-0098-4357-8dc3-597780b5fbdf", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "31c95422-0098-4357-8dc3-597780b5fbdf", + "x-ms-routing-request-id": "WESTUS2:20210519T185727Z:31c95422-0098-4357-8dc3-597780b5fbdf" }, "ResponseBody": [] }, @@ -6094,7 +6123,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8115a11bad7749cd8dfa1a94398f72b", "x-ms-return-client-request-id": "true" }, @@ -6103,17 +6132,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:29 GMT", + "Date": "Wed, 19 May 2021 18:57:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e88bfa2a-71ef-4134-883c-0beb3b8ebbd3", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "e88bfa2a-71ef-4134-883c-0beb3b8ebbd3", - "x-ms-routing-request-id": "WESTUS2:20210507T202830Z:e88bfa2a-71ef-4134-883c-0beb3b8ebbd3" + "x-ms-correlation-request-id": "913a12e7-0be0-4b3e-81be-5f139e379917", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "913a12e7-0be0-4b3e-81be-5f139e379917", + "x-ms-routing-request-id": "WESTUS2:20210519T185728Z:913a12e7-0be0-4b3e-81be-5f139e379917" }, "ResponseBody": [] }, @@ -6122,7 +6151,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "14585af1670809b9b2c2ab4d6dee15d0", "x-ms-return-client-request-id": "true" }, @@ -6131,17 +6160,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:30 GMT", + "Date": "Wed, 19 May 2021 18:57:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1595353-84cb-4406-9810-1b7cbd5f26c4", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "c1595353-84cb-4406-9810-1b7cbd5f26c4", - "x-ms-routing-request-id": "WESTUS2:20210507T202831Z:c1595353-84cb-4406-9810-1b7cbd5f26c4" + "x-ms-correlation-request-id": "db3fe498-9612-432f-8c2f-03406f671691", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "db3fe498-9612-432f-8c2f-03406f671691", + "x-ms-routing-request-id": "WESTUS2:20210519T185729Z:db3fe498-9612-432f-8c2f-03406f671691" }, "ResponseBody": [] }, @@ -6150,7 +6179,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97109ff597c8d14724baba4f8721c238", "x-ms-return-client-request-id": "true" }, @@ -6159,17 +6188,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:31 GMT", + "Date": "Wed, 19 May 2021 18:57:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e34c4f12-aaa3-4f1c-999d-9727194df577", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "e34c4f12-aaa3-4f1c-999d-9727194df577", - "x-ms-routing-request-id": "WESTUS2:20210507T202832Z:e34c4f12-aaa3-4f1c-999d-9727194df577" + "x-ms-correlation-request-id": "a50b46bd-5610-41c4-a608-f62fc93545a5", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "a50b46bd-5610-41c4-a608-f62fc93545a5", + "x-ms-routing-request-id": "WESTUS2:20210519T185730Z:a50b46bd-5610-41c4-a608-f62fc93545a5" }, "ResponseBody": [] }, @@ -6178,7 +6207,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c30502d89194aa8aa00735140f4f07ea", "x-ms-return-client-request-id": "true" }, @@ -6187,17 +6216,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:32 GMT", + "Date": "Wed, 19 May 2021 18:57:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a461651-bdc1-485c-b19a-9fa2d54a3b63", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "0a461651-bdc1-485c-b19a-9fa2d54a3b63", - "x-ms-routing-request-id": "WESTUS2:20210507T202833Z:0a461651-bdc1-485c-b19a-9fa2d54a3b63" + "x-ms-correlation-request-id": "b4832ffc-9834-46c2-b405-291b42d11479", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "b4832ffc-9834-46c2-b405-291b42d11479", + "x-ms-routing-request-id": "WESTUS2:20210519T185731Z:b4832ffc-9834-46c2-b405-291b42d11479" }, "ResponseBody": [] }, @@ -6206,7 +6235,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a4b3d1c960885a621386ef4eac698191", "x-ms-return-client-request-id": "true" }, @@ -6215,17 +6244,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:33 GMT", + "Date": "Wed, 19 May 2021 18:57:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2958621-6235-4ed0-b12a-3e3bff304397", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "c2958621-6235-4ed0-b12a-3e3bff304397", - "x-ms-routing-request-id": "WESTUS2:20210507T202834Z:c2958621-6235-4ed0-b12a-3e3bff304397" + "x-ms-correlation-request-id": "16486322-3eea-4f2a-8503-99d5646e037a", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "16486322-3eea-4f2a-8503-99d5646e037a", + "x-ms-routing-request-id": "WESTUS2:20210519T185733Z:16486322-3eea-4f2a-8503-99d5646e037a" }, "ResponseBody": [] }, @@ -6234,7 +6263,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a74720051e8633c1565f6c06132c2d5", "x-ms-return-client-request-id": "true" }, @@ -6243,17 +6272,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:34 GMT", + "Date": "Wed, 19 May 2021 18:57:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6157f2c-8251-452c-bfb0-004292c84eec", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "d6157f2c-8251-452c-bfb0-004292c84eec", - "x-ms-routing-request-id": "WESTUS2:20210507T202835Z:d6157f2c-8251-452c-bfb0-004292c84eec" + "x-ms-correlation-request-id": "e73726bd-9b90-4186-b3d0-bd686df65138", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "e73726bd-9b90-4186-b3d0-bd686df65138", + "x-ms-routing-request-id": "WESTUS2:20210519T185734Z:e73726bd-9b90-4186-b3d0-bd686df65138" }, "ResponseBody": [] }, @@ -6262,7 +6291,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b686cfb31e6d78b09faab00da23cfd37", "x-ms-return-client-request-id": "true" }, @@ -6271,17 +6300,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:35 GMT", + "Date": "Wed, 19 May 2021 18:57:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9e2400c-de15-498d-96a4-6308fe97f001", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "a9e2400c-de15-498d-96a4-6308fe97f001", - "x-ms-routing-request-id": "WESTUS2:20210507T202836Z:a9e2400c-de15-498d-96a4-6308fe97f001" + "x-ms-correlation-request-id": "cea70e4d-c98e-43ba-ab64-7b7f9e62f3ad", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "cea70e4d-c98e-43ba-ab64-7b7f9e62f3ad", + "x-ms-routing-request-id": "WESTUS2:20210519T185735Z:cea70e4d-c98e-43ba-ab64-7b7f9e62f3ad" }, "ResponseBody": [] }, @@ -6290,7 +6319,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c13a3869cda7702954f8f226aa1f8e0", "x-ms-return-client-request-id": "true" }, @@ -6299,17 +6328,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:37 GMT", + "Date": "Wed, 19 May 2021 18:57:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57dc93b4-7717-432d-9335-2f01896f745a", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "57dc93b4-7717-432d-9335-2f01896f745a", - "x-ms-routing-request-id": "WESTUS2:20210507T202838Z:57dc93b4-7717-432d-9335-2f01896f745a" + "x-ms-correlation-request-id": "b25f099c-017a-4bac-8646-c76e0a5d6928", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "b25f099c-017a-4bac-8646-c76e0a5d6928", + "x-ms-routing-request-id": "WESTUS2:20210519T185736Z:b25f099c-017a-4bac-8646-c76e0a5d6928" }, "ResponseBody": [] }, @@ -6318,7 +6347,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dc9a19c4cae3e223c1fccb3ea12ec1d8", "x-ms-return-client-request-id": "true" }, @@ -6327,17 +6356,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:38 GMT", + "Date": "Wed, 19 May 2021 18:57:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42fa36a7-3255-4de4-83e5-d232b2111da6", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "42fa36a7-3255-4de4-83e5-d232b2111da6", - "x-ms-routing-request-id": "WESTUS2:20210507T202839Z:42fa36a7-3255-4de4-83e5-d232b2111da6" + "x-ms-correlation-request-id": "591841f0-3b5f-462c-b05f-ba70e96c812d", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "591841f0-3b5f-462c-b05f-ba70e96c812d", + "x-ms-routing-request-id": "WESTUS2:20210519T185737Z:591841f0-3b5f-462c-b05f-ba70e96c812d" }, "ResponseBody": [] }, @@ -6346,7 +6375,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "be3abe68251e16fbcd0e211e8e8e0dfd", "x-ms-return-client-request-id": "true" }, @@ -6355,17 +6384,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:40 GMT", + "Date": "Wed, 19 May 2021 18:57:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "441ac5c1-155a-46b8-b89b-881f89d8a2e2", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-request-id": "441ac5c1-155a-46b8-b89b-881f89d8a2e2", - "x-ms-routing-request-id": "WESTUS2:20210507T202840Z:441ac5c1-155a-46b8-b89b-881f89d8a2e2" + "x-ms-correlation-request-id": "00da3478-9a20-4764-8f3a-cebd418a3711", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "00da3478-9a20-4764-8f3a-cebd418a3711", + "x-ms-routing-request-id": "WESTUS2:20210519T185738Z:00da3478-9a20-4764-8f3a-cebd418a3711" }, "ResponseBody": [] }, @@ -6374,7 +6403,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8849cfb121a1bb548031dbded1c3d666", "x-ms-return-client-request-id": "true" }, @@ -6383,17 +6412,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:41 GMT", + "Date": "Wed, 19 May 2021 18:57:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99a6c7b9-50a1-4679-90a1-ee9ce180b103", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "99a6c7b9-50a1-4679-90a1-ee9ce180b103", - "x-ms-routing-request-id": "WESTUS2:20210507T202841Z:99a6c7b9-50a1-4679-90a1-ee9ce180b103" + "x-ms-correlation-request-id": "5bd7ee6d-48fe-4320-bb38-f54821d9ed8d", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "5bd7ee6d-48fe-4320-bb38-f54821d9ed8d", + "x-ms-routing-request-id": "WESTUS2:20210519T185739Z:5bd7ee6d-48fe-4320-bb38-f54821d9ed8d" }, "ResponseBody": [] }, @@ -6402,7 +6431,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "abbab68e3a669ec11e830ed5a8055332", "x-ms-return-client-request-id": "true" }, @@ -6411,17 +6440,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:42 GMT", + "Date": "Wed, 19 May 2021 18:57:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08b5a349-c313-41c2-a505-17e988d55161", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "08b5a349-c313-41c2-a505-17e988d55161", - "x-ms-routing-request-id": "WESTUS2:20210507T202842Z:08b5a349-c313-41c2-a505-17e988d55161" + "x-ms-correlation-request-id": "153f03d8-0a38-424f-9de8-1076f222144f", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "153f03d8-0a38-424f-9de8-1076f222144f", + "x-ms-routing-request-id": "WESTUS2:20210519T185740Z:153f03d8-0a38-424f-9de8-1076f222144f" }, "ResponseBody": [] }, @@ -6430,7 +6459,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d18dcdee38e547376a7f3eed4a1c450a", "x-ms-return-client-request-id": "true" }, @@ -6439,17 +6468,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:43 GMT", + "Date": "Wed, 19 May 2021 18:57:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce2efb9b-5e8c-4db1-8a21-4090b855171d", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "ce2efb9b-5e8c-4db1-8a21-4090b855171d", - "x-ms-routing-request-id": "WESTUS2:20210507T202843Z:ce2efb9b-5e8c-4db1-8a21-4090b855171d" + "x-ms-correlation-request-id": "fb4b0a46-1f69-41ba-809f-286711fd5e3b", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "fb4b0a46-1f69-41ba-809f-286711fd5e3b", + "x-ms-routing-request-id": "WESTUS2:20210519T185741Z:fb4b0a46-1f69-41ba-809f-286711fd5e3b" }, "ResponseBody": [] }, @@ -6458,7 +6487,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d88fbb3762d476960eaa691d127e127a", "x-ms-return-client-request-id": "true" }, @@ -6467,17 +6496,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:44 GMT", + "Date": "Wed, 19 May 2021 18:57:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1887f9ed-261f-4590-93ec-3221d1abbea8", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "1887f9ed-261f-4590-93ec-3221d1abbea8", - "x-ms-routing-request-id": "WESTUS2:20210507T202844Z:1887f9ed-261f-4590-93ec-3221d1abbea8" + "x-ms-correlation-request-id": "dd55df8e-7fe7-4734-a8ec-f8a9ce034e1e", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "dd55df8e-7fe7-4734-a8ec-f8a9ce034e1e", + "x-ms-routing-request-id": "WESTUS2:20210519T185742Z:dd55df8e-7fe7-4734-a8ec-f8a9ce034e1e" }, "ResponseBody": [] }, @@ -6486,7 +6515,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "03efa8dd053655807f7240e7fcd45401", "x-ms-return-client-request-id": "true" }, @@ -6495,17 +6524,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:45 GMT", + "Date": "Wed, 19 May 2021 18:57:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9504605f-6d8a-43d7-a2ab-bb399e28abf2", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "9504605f-6d8a-43d7-a2ab-bb399e28abf2", - "x-ms-routing-request-id": "WESTUS2:20210507T202845Z:9504605f-6d8a-43d7-a2ab-bb399e28abf2" + "x-ms-correlation-request-id": "fe35acc4-d9dc-463b-8b87-95450bf420a1", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "fe35acc4-d9dc-463b-8b87-95450bf420a1", + "x-ms-routing-request-id": "WESTUS2:20210519T185743Z:fe35acc4-d9dc-463b-8b87-95450bf420a1" }, "ResponseBody": [] }, @@ -6514,7 +6543,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed9d043d7b758b5e3616c33bce1934eb", "x-ms-return-client-request-id": "true" }, @@ -6523,17 +6552,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:46 GMT", + "Date": "Wed, 19 May 2021 18:57:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d90f15a1-c347-423c-a3fd-c0283e597f9d", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "d90f15a1-c347-423c-a3fd-c0283e597f9d", - "x-ms-routing-request-id": "WESTUS2:20210507T202846Z:d90f15a1-c347-423c-a3fd-c0283e597f9d" + "x-ms-correlation-request-id": "0fcb0a95-1546-4845-a123-38a68656f0f4", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "0fcb0a95-1546-4845-a123-38a68656f0f4", + "x-ms-routing-request-id": "WESTUS2:20210519T185744Z:0fcb0a95-1546-4845-a123-38a68656f0f4" }, "ResponseBody": [] }, @@ -6542,7 +6571,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a110c36d412d32d43a3a596122af7a39", "x-ms-return-client-request-id": "true" }, @@ -6551,17 +6580,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:47 GMT", + "Date": "Wed, 19 May 2021 18:57:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7250940f-4492-452d-af56-c17b4784eff3", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "7250940f-4492-452d-af56-c17b4784eff3", - "x-ms-routing-request-id": "WESTUS2:20210507T202847Z:7250940f-4492-452d-af56-c17b4784eff3" + "x-ms-correlation-request-id": "c01f1116-6dff-47c5-b3a0-ea1554510513", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "c01f1116-6dff-47c5-b3a0-ea1554510513", + "x-ms-routing-request-id": "WESTUS2:20210519T185745Z:c01f1116-6dff-47c5-b3a0-ea1554510513" }, "ResponseBody": [] }, @@ -6570,7 +6599,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0ddf685524e161054a63cd1f41458666", "x-ms-return-client-request-id": "true" }, @@ -6579,17 +6608,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:48 GMT", + "Date": "Wed, 19 May 2021 18:57:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a36b40e-ad50-40be-9561-d93fe284bba6", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "2a36b40e-ad50-40be-9561-d93fe284bba6", - "x-ms-routing-request-id": "WESTUS2:20210507T202848Z:2a36b40e-ad50-40be-9561-d93fe284bba6" + "x-ms-correlation-request-id": "9db6eb81-d8b6-4be7-8cd1-a025c9951a09", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "9db6eb81-d8b6-4be7-8cd1-a025c9951a09", + "x-ms-routing-request-id": "WESTUS2:20210519T185746Z:9db6eb81-d8b6-4be7-8cd1-a025c9951a09" }, "ResponseBody": [] }, @@ -6598,7 +6627,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "397a543db3c3fcd4306ab33b22fc6987", "x-ms-return-client-request-id": "true" }, @@ -6607,17 +6636,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:49 GMT", + "Date": "Wed, 19 May 2021 18:57:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55e8fd9c-0fa1-47c5-a5fb-185f48155d56", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "55e8fd9c-0fa1-47c5-a5fb-185f48155d56", - "x-ms-routing-request-id": "WESTUS2:20210507T202849Z:55e8fd9c-0fa1-47c5-a5fb-185f48155d56" + "x-ms-correlation-request-id": "96b575dd-cb96-4efc-81c9-5b4821ad28f5", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "96b575dd-cb96-4efc-81c9-5b4821ad28f5", + "x-ms-routing-request-id": "WESTUS2:20210519T185747Z:96b575dd-cb96-4efc-81c9-5b4821ad28f5" }, "ResponseBody": [] }, @@ -6626,7 +6655,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "66e6899c2739480abeae56c974b4f0f5", "x-ms-return-client-request-id": "true" }, @@ -6635,17 +6664,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:50 GMT", + "Date": "Wed, 19 May 2021 18:57:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a8ffce1-b01d-4add-b419-4eb18e996d6b", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "9a8ffce1-b01d-4add-b419-4eb18e996d6b", - "x-ms-routing-request-id": "WESTUS2:20210507T202850Z:9a8ffce1-b01d-4add-b419-4eb18e996d6b" + "x-ms-correlation-request-id": "fb48cfea-89e8-4d87-b6de-f3d4f7768190", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "fb48cfea-89e8-4d87-b6de-f3d4f7768190", + "x-ms-routing-request-id": "WESTUS2:20210519T185748Z:fb48cfea-89e8-4d87-b6de-f3d4f7768190" }, "ResponseBody": [] }, @@ -6654,7 +6683,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ce23f2b34035a17694e3dd7671c93f4e", "x-ms-return-client-request-id": "true" }, @@ -6663,17 +6692,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:51 GMT", + "Date": "Wed, 19 May 2021 18:57:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c02f2c9b-920f-48b6-b320-68cf1c4c25b8", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "c02f2c9b-920f-48b6-b320-68cf1c4c25b8", - "x-ms-routing-request-id": "WESTUS2:20210507T202851Z:c02f2c9b-920f-48b6-b320-68cf1c4c25b8" + "x-ms-correlation-request-id": "e83a00d1-6e36-4c7c-b884-72e38dea8ac3", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "e83a00d1-6e36-4c7c-b884-72e38dea8ac3", + "x-ms-routing-request-id": "WESTUS2:20210519T185749Z:e83a00d1-6e36-4c7c-b884-72e38dea8ac3" }, "ResponseBody": [] }, @@ -6682,7 +6711,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b88346fa205f162c49327a155c0b877b", "x-ms-return-client-request-id": "true" }, @@ -6691,17 +6720,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:52 GMT", + "Date": "Wed, 19 May 2021 18:57:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48995bd3-b262-4e17-924e-d21edee5140b", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "48995bd3-b262-4e17-924e-d21edee5140b", - "x-ms-routing-request-id": "WESTUS2:20210507T202852Z:48995bd3-b262-4e17-924e-d21edee5140b" + "x-ms-correlation-request-id": "a0dcfb43-f92a-4a93-afea-1a1808ecbd30", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "a0dcfb43-f92a-4a93-afea-1a1808ecbd30", + "x-ms-routing-request-id": "WESTUS2:20210519T185750Z:a0dcfb43-f92a-4a93-afea-1a1808ecbd30" }, "ResponseBody": [] }, @@ -6710,7 +6739,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f87be799bd85b511344d2554993d6f4", "x-ms-return-client-request-id": "true" }, @@ -6719,17 +6748,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:53 GMT", + "Date": "Wed, 19 May 2021 18:57:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03459daf-8448-43f6-a7cb-2e3d0ee03517", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "03459daf-8448-43f6-a7cb-2e3d0ee03517", - "x-ms-routing-request-id": "WESTUS2:20210507T202853Z:03459daf-8448-43f6-a7cb-2e3d0ee03517" + "x-ms-correlation-request-id": "8eb68768-fd14-4327-91a7-685c8b67e5eb", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "8eb68768-fd14-4327-91a7-685c8b67e5eb", + "x-ms-routing-request-id": "WESTUS2:20210519T185751Z:8eb68768-fd14-4327-91a7-685c8b67e5eb" }, "ResponseBody": [] }, @@ -6738,7 +6767,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ece086e38319395c50c8403c5604488", "x-ms-return-client-request-id": "true" }, @@ -6747,17 +6776,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:54 GMT", + "Date": "Wed, 19 May 2021 18:57:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6d4fe6f-8a86-4673-a9ba-812d6a2d567d", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "a6d4fe6f-8a86-4673-a9ba-812d6a2d567d", - "x-ms-routing-request-id": "WESTUS2:20210507T202854Z:a6d4fe6f-8a86-4673-a9ba-812d6a2d567d" + "x-ms-correlation-request-id": "301feab7-3e3b-481f-951b-1d08295e8463", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "301feab7-3e3b-481f-951b-1d08295e8463", + "x-ms-routing-request-id": "WESTUS2:20210519T185752Z:301feab7-3e3b-481f-951b-1d08295e8463" }, "ResponseBody": [] }, @@ -6766,7 +6795,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3fc625c0f425f75f427a41b4dd7cdb5", "x-ms-return-client-request-id": "true" }, @@ -6775,17 +6804,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:55 GMT", + "Date": "Wed, 19 May 2021 18:57:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0783492-e405-4d2c-81c3-51fb5959b5e3", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "d0783492-e405-4d2c-81c3-51fb5959b5e3", - "x-ms-routing-request-id": "WESTUS2:20210507T202855Z:d0783492-e405-4d2c-81c3-51fb5959b5e3" + "x-ms-correlation-request-id": "6a43d443-adbc-4293-ac7d-d8de95c49410", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "6a43d443-adbc-4293-ac7d-d8de95c49410", + "x-ms-routing-request-id": "WESTUS2:20210519T185753Z:6a43d443-adbc-4293-ac7d-d8de95c49410" }, "ResponseBody": [] }, @@ -6794,7 +6823,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "54a6865b593c414928f469cb164e95b2", "x-ms-return-client-request-id": "true" }, @@ -6803,17 +6832,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:56 GMT", + "Date": "Wed, 19 May 2021 18:57:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e3c7c32-e7ad-43cf-a860-7a08b4d9db85", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "3e3c7c32-e7ad-43cf-a860-7a08b4d9db85", - "x-ms-routing-request-id": "WESTUS2:20210507T202856Z:3e3c7c32-e7ad-43cf-a860-7a08b4d9db85" + "x-ms-correlation-request-id": "df2b6c1e-b0b7-447f-a9cd-8223f6b63d31", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "df2b6c1e-b0b7-447f-a9cd-8223f6b63d31", + "x-ms-routing-request-id": "WESTUS2:20210519T185754Z:df2b6c1e-b0b7-447f-a9cd-8223f6b63d31" }, "ResponseBody": [] }, @@ -6822,7 +6851,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6f849ff22975fb2926e390a947a45ee", "x-ms-return-client-request-id": "true" }, @@ -6831,17 +6860,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:57 GMT", + "Date": "Wed, 19 May 2021 18:57:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "631229cd-aa55-4207-b5ed-1ddc961d0442", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "631229cd-aa55-4207-b5ed-1ddc961d0442", - "x-ms-routing-request-id": "WESTUS2:20210507T202858Z:631229cd-aa55-4207-b5ed-1ddc961d0442" + "x-ms-correlation-request-id": "b320430b-7b22-45fa-a516-39dd92986ee3", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "b320430b-7b22-45fa-a516-39dd92986ee3", + "x-ms-routing-request-id": "WESTUS2:20210519T185755Z:b320430b-7b22-45fa-a516-39dd92986ee3" }, "ResponseBody": [] }, @@ -6850,7 +6879,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3fa7ce3ff0b9034c18bb8b4ea6aa48a5", "x-ms-return-client-request-id": "true" }, @@ -6859,17 +6888,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:58 GMT", + "Date": "Wed, 19 May 2021 18:57:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f0ce1d0-ef1f-4e43-b13b-41d5e67e3c35", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "8f0ce1d0-ef1f-4e43-b13b-41d5e67e3c35", - "x-ms-routing-request-id": "WESTUS2:20210507T202859Z:8f0ce1d0-ef1f-4e43-b13b-41d5e67e3c35" + "x-ms-correlation-request-id": "b3ecdcbc-2865-4fd3-ae0b-1b208ec4b65c", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "b3ecdcbc-2865-4fd3-ae0b-1b208ec4b65c", + "x-ms-routing-request-id": "WESTUS2:20210519T185756Z:b3ecdcbc-2865-4fd3-ae0b-1b208ec4b65c" }, "ResponseBody": [] }, @@ -6878,7 +6907,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "041cf191e6de391ed347c2cd1f3fadae", "x-ms-return-client-request-id": "true" }, @@ -6887,17 +6916,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:28:59 GMT", + "Date": "Wed, 19 May 2021 18:57:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f96a7e13-52d2-4724-a0db-f1ae0efca3e3", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "f96a7e13-52d2-4724-a0db-f1ae0efca3e3", - "x-ms-routing-request-id": "WESTUS2:20210507T202900Z:f96a7e13-52d2-4724-a0db-f1ae0efca3e3" + "x-ms-correlation-request-id": "9d3c15f1-7090-423c-a78f-ad2bd6ebf348", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "9d3c15f1-7090-423c-a78f-ad2bd6ebf348", + "x-ms-routing-request-id": "WESTUS2:20210519T185757Z:9d3c15f1-7090-423c-a78f-ad2bd6ebf348" }, "ResponseBody": [] }, @@ -6906,7 +6935,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "488c7bae56a70ef9fdf5cedc9764b8e8", "x-ms-return-client-request-id": "true" }, @@ -6915,17 +6944,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:00 GMT", + "Date": "Wed, 19 May 2021 18:57:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ae38aba-ddad-4fd2-b5c1-56308cd36148", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "5ae38aba-ddad-4fd2-b5c1-56308cd36148", - "x-ms-routing-request-id": "WESTUS2:20210507T202901Z:5ae38aba-ddad-4fd2-b5c1-56308cd36148" + "x-ms-correlation-request-id": "377767f5-1c68-4cb6-8c5f-a97a1307f4fa", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "377767f5-1c68-4cb6-8c5f-a97a1307f4fa", + "x-ms-routing-request-id": "WESTUS2:20210519T185758Z:377767f5-1c68-4cb6-8c5f-a97a1307f4fa" }, "ResponseBody": [] }, @@ -6934,7 +6963,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a2799425415e580faf6e6b722d7ee4d9", "x-ms-return-client-request-id": "true" }, @@ -6943,17 +6972,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:01 GMT", + "Date": "Wed, 19 May 2021 18:57:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6bb180e3-00d2-4a71-b3c9-21e2423a0aa1", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "6bb180e3-00d2-4a71-b3c9-21e2423a0aa1", - "x-ms-routing-request-id": "WESTUS2:20210507T202902Z:6bb180e3-00d2-4a71-b3c9-21e2423a0aa1" + "x-ms-correlation-request-id": "ec306f53-c2cb-4a4f-a98e-828c43ca7d5a", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "ec306f53-c2cb-4a4f-a98e-828c43ca7d5a", + "x-ms-routing-request-id": "WESTUS2:20210519T185759Z:ec306f53-c2cb-4a4f-a98e-828c43ca7d5a" }, "ResponseBody": [] }, @@ -6962,7 +6991,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2aa0dd0e001d3bfef80d07e81842a26f", "x-ms-return-client-request-id": "true" }, @@ -6971,17 +7000,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:02 GMT", + "Date": "Wed, 19 May 2021 18:58:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9e93727-ab19-4a44-9b2f-6bf97951e79f", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "d9e93727-ab19-4a44-9b2f-6bf97951e79f", - "x-ms-routing-request-id": "WESTUS2:20210507T202903Z:d9e93727-ab19-4a44-9b2f-6bf97951e79f" + "x-ms-correlation-request-id": "5fc6eb3e-c870-4d22-8ad3-ba3cda210975", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "5fc6eb3e-c870-4d22-8ad3-ba3cda210975", + "x-ms-routing-request-id": "WESTUS2:20210519T185800Z:5fc6eb3e-c870-4d22-8ad3-ba3cda210975" }, "ResponseBody": [] }, @@ -6990,7 +7019,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8aa7da8e0ac66c4f6b339839ea86e17e", "x-ms-return-client-request-id": "true" }, @@ -6999,17 +7028,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:03 GMT", + "Date": "Wed, 19 May 2021 18:58:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "692fb995-8890-4f56-8b0f-252ba079de91", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "692fb995-8890-4f56-8b0f-252ba079de91", - "x-ms-routing-request-id": "WESTUS2:20210507T202904Z:692fb995-8890-4f56-8b0f-252ba079de91" + "x-ms-correlation-request-id": "cc80aebf-6ec3-437a-a07d-00174ba91485", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "cc80aebf-6ec3-437a-a07d-00174ba91485", + "x-ms-routing-request-id": "WESTUS2:20210519T185801Z:cc80aebf-6ec3-437a-a07d-00174ba91485" }, "ResponseBody": [] }, @@ -7018,7 +7047,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b9cef4118dc425ca963da9513a26406d", "x-ms-return-client-request-id": "true" }, @@ -7027,17 +7056,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:04 GMT", + "Date": "Wed, 19 May 2021 18:58:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e8a33b9-0752-4113-92a7-723754dd67e3", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "5e8a33b9-0752-4113-92a7-723754dd67e3", - "x-ms-routing-request-id": "WESTUS2:20210507T202905Z:5e8a33b9-0752-4113-92a7-723754dd67e3" + "x-ms-correlation-request-id": "3eed80b8-4449-4f73-89b8-6b5ac538335a", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "3eed80b8-4449-4f73-89b8-6b5ac538335a", + "x-ms-routing-request-id": "WESTUS2:20210519T185803Z:3eed80b8-4449-4f73-89b8-6b5ac538335a" }, "ResponseBody": [] }, @@ -7046,7 +7075,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53e3fccc59d603138d33bfea67c45071", "x-ms-return-client-request-id": "true" }, @@ -7055,17 +7084,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:05 GMT", + "Date": "Wed, 19 May 2021 18:58:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9529cc9a-6401-4a85-9f0d-6dc678d80c99", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "9529cc9a-6401-4a85-9f0d-6dc678d80c99", - "x-ms-routing-request-id": "WESTUS2:20210507T202906Z:9529cc9a-6401-4a85-9f0d-6dc678d80c99" + "x-ms-correlation-request-id": "b8934963-32e9-4910-94fb-9bfe2e7df616", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "b8934963-32e9-4910-94fb-9bfe2e7df616", + "x-ms-routing-request-id": "WESTUS2:20210519T185804Z:b8934963-32e9-4910-94fb-9bfe2e7df616" }, "ResponseBody": [] }, @@ -7074,7 +7103,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23d7882be87400aa1082f48860fe3144", "x-ms-return-client-request-id": "true" }, @@ -7083,17 +7112,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:06 GMT", + "Date": "Wed, 19 May 2021 18:58:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e9d0c88-49d5-4adb-b887-cbbccf4b853c", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "8e9d0c88-49d5-4adb-b887-cbbccf4b853c", - "x-ms-routing-request-id": "WESTUS2:20210507T202907Z:8e9d0c88-49d5-4adb-b887-cbbccf4b853c" + "x-ms-correlation-request-id": "567a2825-1ca9-4b9c-99c3-71cbde5964fe", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "567a2825-1ca9-4b9c-99c3-71cbde5964fe", + "x-ms-routing-request-id": "WESTUS2:20210519T185805Z:567a2825-1ca9-4b9c-99c3-71cbde5964fe" }, "ResponseBody": [] }, @@ -7102,7 +7131,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed6d2bf28da3b7a7e1ca2c90cedfbed1", "x-ms-return-client-request-id": "true" }, @@ -7111,17 +7140,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:07 GMT", + "Date": "Wed, 19 May 2021 18:58:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ff3c413-0a3f-441f-a618-aea969f0adba", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "0ff3c413-0a3f-441f-a618-aea969f0adba", - "x-ms-routing-request-id": "WESTUS2:20210507T202908Z:0ff3c413-0a3f-441f-a618-aea969f0adba" + "x-ms-correlation-request-id": "037830c1-9530-405d-9df6-2529b7fb46af", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "037830c1-9530-405d-9df6-2529b7fb46af", + "x-ms-routing-request-id": "WESTUS2:20210519T185806Z:037830c1-9530-405d-9df6-2529b7fb46af" }, "ResponseBody": [] }, @@ -7130,7 +7159,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b22538ed1d4fe3f952e24354658aa28e", "x-ms-return-client-request-id": "true" }, @@ -7139,17 +7168,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:08 GMT", + "Date": "Wed, 19 May 2021 18:58:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19cc661c-6744-432e-aa6a-1f8024a3938d", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "19cc661c-6744-432e-aa6a-1f8024a3938d", - "x-ms-routing-request-id": "WESTUS2:20210507T202909Z:19cc661c-6744-432e-aa6a-1f8024a3938d" + "x-ms-correlation-request-id": "96585b94-3149-4218-9408-88f214957334", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "96585b94-3149-4218-9408-88f214957334", + "x-ms-routing-request-id": "WESTUS2:20210519T185807Z:96585b94-3149-4218-9408-88f214957334" }, "ResponseBody": [] }, @@ -7158,7 +7187,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3cf87b0263579ecde12041a9bb193230", "x-ms-return-client-request-id": "true" }, @@ -7167,17 +7196,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:10 GMT", + "Date": "Wed, 19 May 2021 18:58:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64c2d4c8-152c-409b-a84a-a7000a671e26", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "64c2d4c8-152c-409b-a84a-a7000a671e26", - "x-ms-routing-request-id": "WESTUS2:20210507T202910Z:64c2d4c8-152c-409b-a84a-a7000a671e26" + "x-ms-correlation-request-id": "c1cd62a1-be5d-427a-9c2b-cb1d2f4e7800", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "c1cd62a1-be5d-427a-9c2b-cb1d2f4e7800", + "x-ms-routing-request-id": "WESTUS2:20210519T185808Z:c1cd62a1-be5d-427a-9c2b-cb1d2f4e7800" }, "ResponseBody": [] }, @@ -7186,7 +7215,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "289b22c47fd9d5f532899bc14a535256", "x-ms-return-client-request-id": "true" }, @@ -7195,17 +7224,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:11 GMT", + "Date": "Wed, 19 May 2021 18:58:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d29fdcb9-a7d9-4d80-a696-7442ad4dec22", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "d29fdcb9-a7d9-4d80-a696-7442ad4dec22", - "x-ms-routing-request-id": "WESTUS2:20210507T202911Z:d29fdcb9-a7d9-4d80-a696-7442ad4dec22" + "x-ms-correlation-request-id": "7048f336-9c9c-4c07-b4d0-31781d40289b", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "7048f336-9c9c-4c07-b4d0-31781d40289b", + "x-ms-routing-request-id": "WESTUS2:20210519T185809Z:7048f336-9c9c-4c07-b4d0-31781d40289b" }, "ResponseBody": [] }, @@ -7214,7 +7243,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "538e9d2882e78a7a6a86d02edb4f2838", "x-ms-return-client-request-id": "true" }, @@ -7223,17 +7252,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:12 GMT", + "Date": "Wed, 19 May 2021 18:58:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99f86ad5-6b79-45b0-b314-d18c14bc8289", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "99f86ad5-6b79-45b0-b314-d18c14bc8289", - "x-ms-routing-request-id": "WESTUS2:20210507T202912Z:99f86ad5-6b79-45b0-b314-d18c14bc8289" + "x-ms-correlation-request-id": "289f206e-f5c8-4ea0-8db6-b42b78ddfa47", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "289f206e-f5c8-4ea0-8db6-b42b78ddfa47", + "x-ms-routing-request-id": "WESTUS2:20210519T185810Z:289f206e-f5c8-4ea0-8db6-b42b78ddfa47" }, "ResponseBody": [] }, @@ -7242,7 +7271,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "428f12af79ef83b585220acdc70c538d", "x-ms-return-client-request-id": "true" }, @@ -7251,17 +7280,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:13 GMT", + "Date": "Wed, 19 May 2021 18:58:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57543fe9-51c5-4118-8351-da1c789d8915", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "57543fe9-51c5-4118-8351-da1c789d8915", - "x-ms-routing-request-id": "WESTUS2:20210507T202913Z:57543fe9-51c5-4118-8351-da1c789d8915" + "x-ms-correlation-request-id": "0390dff4-e4c8-4581-85a8-eda0cd6348ff", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "0390dff4-e4c8-4581-85a8-eda0cd6348ff", + "x-ms-routing-request-id": "WESTUS2:20210519T185811Z:0390dff4-e4c8-4581-85a8-eda0cd6348ff" }, "ResponseBody": [] }, @@ -7270,7 +7299,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e81ebcddf8b4249a810be52aec6f9e2", "x-ms-return-client-request-id": "true" }, @@ -7279,17 +7308,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:14 GMT", + "Date": "Wed, 19 May 2021 18:58:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "846d85aa-eb0c-479d-8f4c-08e1ed36be16", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "846d85aa-eb0c-479d-8f4c-08e1ed36be16", - "x-ms-routing-request-id": "WESTUS2:20210507T202914Z:846d85aa-eb0c-479d-8f4c-08e1ed36be16" + "x-ms-correlation-request-id": "f8f3cda6-0cd8-40ae-88da-1fdb28b60f32", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "f8f3cda6-0cd8-40ae-88da-1fdb28b60f32", + "x-ms-routing-request-id": "WESTUS2:20210519T185812Z:f8f3cda6-0cd8-40ae-88da-1fdb28b60f32" }, "ResponseBody": [] }, @@ -7298,7 +7327,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "381163610fc3ae66e80bcdc478acc25d", "x-ms-return-client-request-id": "true" }, @@ -7307,17 +7336,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:15 GMT", + "Date": "Wed, 19 May 2021 18:58:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fbdb0fa0-870e-4497-a08b-8cd184a549a4", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "fbdb0fa0-870e-4497-a08b-8cd184a549a4", - "x-ms-routing-request-id": "WESTUS2:20210507T202915Z:fbdb0fa0-870e-4497-a08b-8cd184a549a4" + "x-ms-correlation-request-id": "690df648-6dd4-45b1-9575-d9cc5049921f", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "690df648-6dd4-45b1-9575-d9cc5049921f", + "x-ms-routing-request-id": "WESTUS2:20210519T185813Z:690df648-6dd4-45b1-9575-d9cc5049921f" }, "ResponseBody": [] }, @@ -7326,7 +7355,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f06043330aced0acc84d9adebb62d4bf", "x-ms-return-client-request-id": "true" }, @@ -7335,17 +7364,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:16 GMT", + "Date": "Wed, 19 May 2021 18:58:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "67067ef7-b8f8-4114-8edd-608aac3f0a4f", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "67067ef7-b8f8-4114-8edd-608aac3f0a4f", - "x-ms-routing-request-id": "WESTUS2:20210507T202917Z:67067ef7-b8f8-4114-8edd-608aac3f0a4f" + "x-ms-correlation-request-id": "244ca34b-ab7c-401a-b5f2-63163341a40b", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "244ca34b-ab7c-401a-b5f2-63163341a40b", + "x-ms-routing-request-id": "WESTUS2:20210519T185814Z:244ca34b-ab7c-401a-b5f2-63163341a40b" }, "ResponseBody": [] }, @@ -7354,7 +7383,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "646c27281bfbbec984d335801285cafb", "x-ms-return-client-request-id": "true" }, @@ -7363,17 +7392,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:17 GMT", + "Date": "Wed, 19 May 2021 18:58:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e289a0a-4d17-48e4-ad39-249e1029d7b6", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-request-id": "8e289a0a-4d17-48e4-ad39-249e1029d7b6", - "x-ms-routing-request-id": "WESTUS2:20210507T202918Z:8e289a0a-4d17-48e4-ad39-249e1029d7b6" + "x-ms-correlation-request-id": "1fa2968a-104a-4183-be14-dd6b54747989", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "1fa2968a-104a-4183-be14-dd6b54747989", + "x-ms-routing-request-id": "WESTUS2:20210519T185815Z:1fa2968a-104a-4183-be14-dd6b54747989" }, "ResponseBody": [] }, @@ -7382,7 +7411,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a1f604e09655713b6406f757588f285", "x-ms-return-client-request-id": "true" }, @@ -7391,17 +7420,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:18 GMT", + "Date": "Wed, 19 May 2021 18:58:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad9fedaa-4742-4583-a231-fb0919c41557", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "ad9fedaa-4742-4583-a231-fb0919c41557", - "x-ms-routing-request-id": "WESTUS2:20210507T202919Z:ad9fedaa-4742-4583-a231-fb0919c41557" + "x-ms-correlation-request-id": "8f04d914-ca6d-451f-8b56-08dbc98d3a46", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "8f04d914-ca6d-451f-8b56-08dbc98d3a46", + "x-ms-routing-request-id": "WESTUS2:20210519T185816Z:8f04d914-ca6d-451f-8b56-08dbc98d3a46" }, "ResponseBody": [] }, @@ -7410,7 +7439,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "509b0d365d40186179a26cfbd42bbe43", "x-ms-return-client-request-id": "true" }, @@ -7419,17 +7448,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:19 GMT", + "Date": "Wed, 19 May 2021 18:58:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a614b8b-6b6a-43c2-81dd-48a58b4ccaf4", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "1a614b8b-6b6a-43c2-81dd-48a58b4ccaf4", - "x-ms-routing-request-id": "WESTUS2:20210507T202920Z:1a614b8b-6b6a-43c2-81dd-48a58b4ccaf4" + "x-ms-correlation-request-id": "adfa26c1-cbd2-4c5b-b34a-7da979f88fdd", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "adfa26c1-cbd2-4c5b-b34a-7da979f88fdd", + "x-ms-routing-request-id": "WESTUS2:20210519T185817Z:adfa26c1-cbd2-4c5b-b34a-7da979f88fdd" }, "ResponseBody": [] }, @@ -7438,7 +7467,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b909e8369431f5a1315adbbab5449fc", "x-ms-return-client-request-id": "true" }, @@ -7447,17 +7476,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:20 GMT", + "Date": "Wed, 19 May 2021 18:58:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5778c914-3b11-4e46-b764-a73e0ec2536f", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "5778c914-3b11-4e46-b764-a73e0ec2536f", - "x-ms-routing-request-id": "WESTUS2:20210507T202921Z:5778c914-3b11-4e46-b764-a73e0ec2536f" + "x-ms-correlation-request-id": "568a777c-616f-4b5c-8099-e3ba4e8156b6", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "568a777c-616f-4b5c-8099-e3ba4e8156b6", + "x-ms-routing-request-id": "WESTUS2:20210519T185818Z:568a777c-616f-4b5c-8099-e3ba4e8156b6" }, "ResponseBody": [] }, @@ -7466,7 +7495,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "044ab0e07ae9f0bbfe06f1c29d18838b", "x-ms-return-client-request-id": "true" }, @@ -7475,17 +7504,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:21 GMT", + "Date": "Wed, 19 May 2021 18:58:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a05eba4-67ac-45cf-9be9-49b5409965e6", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-request-id": "4a05eba4-67ac-45cf-9be9-49b5409965e6", - "x-ms-routing-request-id": "WESTUS2:20210507T202922Z:4a05eba4-67ac-45cf-9be9-49b5409965e6" + "x-ms-correlation-request-id": "0542aa74-b18c-413d-815a-107e1d853646", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "0542aa74-b18c-413d-815a-107e1d853646", + "x-ms-routing-request-id": "WESTUS2:20210519T185819Z:0542aa74-b18c-413d-815a-107e1d853646" }, "ResponseBody": [] }, @@ -7494,7 +7523,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d6f22c8297f7cc41b37c3c2bb0a66c25", "x-ms-return-client-request-id": "true" }, @@ -7503,17 +7532,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:22 GMT", + "Date": "Wed, 19 May 2021 18:58:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19d33b4e-28ef-40cc-86d8-62ed9f9fe3c0", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-request-id": "19d33b4e-28ef-40cc-86d8-62ed9f9fe3c0", - "x-ms-routing-request-id": "WESTUS2:20210507T202923Z:19d33b4e-28ef-40cc-86d8-62ed9f9fe3c0" + "x-ms-correlation-request-id": "de02f034-69d3-4085-b35a-4495ac3e6321", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "de02f034-69d3-4085-b35a-4495ac3e6321", + "x-ms-routing-request-id": "WESTUS2:20210519T185820Z:de02f034-69d3-4085-b35a-4495ac3e6321" }, "ResponseBody": [] }, @@ -7522,7 +7551,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "231a7059bae0095ae39f5c3c789781fb", "x-ms-return-client-request-id": "true" }, @@ -7531,17 +7560,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:23 GMT", + "Date": "Wed, 19 May 2021 18:58:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61344a45-e018-49ff-899e-cbbf2622e5df", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-request-id": "61344a45-e018-49ff-899e-cbbf2622e5df", - "x-ms-routing-request-id": "WESTUS2:20210507T202924Z:61344a45-e018-49ff-899e-cbbf2622e5df" + "x-ms-correlation-request-id": "6acc859e-d0e5-4196-9025-6704fb834977", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "6acc859e-d0e5-4196-9025-6704fb834977", + "x-ms-routing-request-id": "WESTUS2:20210519T185821Z:6acc859e-d0e5-4196-9025-6704fb834977" }, "ResponseBody": [] }, @@ -7550,7 +7579,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f392292726149046e7e506d3d904058", "x-ms-return-client-request-id": "true" }, @@ -7559,17 +7588,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:24 GMT", + "Date": "Wed, 19 May 2021 18:58:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a13f813d-d7c9-44f2-a77c-d1587c1a7195", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-request-id": "a13f813d-d7c9-44f2-a77c-d1587c1a7195", - "x-ms-routing-request-id": "WESTUS2:20210507T202925Z:a13f813d-d7c9-44f2-a77c-d1587c1a7195" + "x-ms-correlation-request-id": "c495d94d-5d2f-4858-bffa-14a37e0cdbc1", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "c495d94d-5d2f-4858-bffa-14a37e0cdbc1", + "x-ms-routing-request-id": "WESTUS2:20210519T185822Z:c495d94d-5d2f-4858-bffa-14a37e0cdbc1" }, "ResponseBody": [] }, @@ -7578,7 +7607,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d69cb9a5ffec8aad1e9f3573a04541b", "x-ms-return-client-request-id": "true" }, @@ -7587,17 +7616,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:25 GMT", + "Date": "Wed, 19 May 2021 18:58:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8cfaf59d-1752-4a35-8bc1-1aa325143157", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-request-id": "8cfaf59d-1752-4a35-8bc1-1aa325143157", - "x-ms-routing-request-id": "WESTUS2:20210507T202926Z:8cfaf59d-1752-4a35-8bc1-1aa325143157" + "x-ms-correlation-request-id": "ff518ae8-0318-40f4-a0a2-f1b496a8d0a3", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "ff518ae8-0318-40f4-a0a2-f1b496a8d0a3", + "x-ms-routing-request-id": "WESTUS2:20210519T185823Z:ff518ae8-0318-40f4-a0a2-f1b496a8d0a3" }, "ResponseBody": [] }, @@ -7606,7 +7635,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8d9941faed6de6c36bd0b46269edcb53", "x-ms-return-client-request-id": "true" }, @@ -7615,17 +7644,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:26 GMT", + "Date": "Wed, 19 May 2021 18:58:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b054d715-405b-4ba6-91a8-f1a37b8fffc5", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "b054d715-405b-4ba6-91a8-f1a37b8fffc5", - "x-ms-routing-request-id": "WESTUS2:20210507T202927Z:b054d715-405b-4ba6-91a8-f1a37b8fffc5" + "x-ms-correlation-request-id": "580e11c6-27ee-427c-8a2f-954787ed76b0", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "580e11c6-27ee-427c-8a2f-954787ed76b0", + "x-ms-routing-request-id": "WESTUS2:20210519T185824Z:580e11c6-27ee-427c-8a2f-954787ed76b0" }, "ResponseBody": [] }, @@ -7634,7 +7663,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aca2045f542e32fc7870ad787fac0f6a", "x-ms-return-client-request-id": "true" }, @@ -7643,17 +7672,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:27 GMT", + "Date": "Wed, 19 May 2021 18:58:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3220b1e9-5dbd-480f-aed8-176159297d52", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-request-id": "3220b1e9-5dbd-480f-aed8-176159297d52", - "x-ms-routing-request-id": "WESTUS2:20210507T202928Z:3220b1e9-5dbd-480f-aed8-176159297d52" + "x-ms-correlation-request-id": "a14d766b-feba-4592-98c9-0944b3dc5b5e", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "a14d766b-feba-4592-98c9-0944b3dc5b5e", + "x-ms-routing-request-id": "WESTUS2:20210519T185825Z:a14d766b-feba-4592-98c9-0944b3dc5b5e" }, "ResponseBody": [] }, @@ -7662,7 +7691,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fc72352ab2f7acea0782c12eaa475fe4", "x-ms-return-client-request-id": "true" }, @@ -7671,17 +7700,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:28 GMT", + "Date": "Wed, 19 May 2021 18:58:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fe22f7f-7620-4aac-828e-5e52e486d889", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-request-id": "0fe22f7f-7620-4aac-828e-5e52e486d889", - "x-ms-routing-request-id": "WESTUS2:20210507T202929Z:0fe22f7f-7620-4aac-828e-5e52e486d889" + "x-ms-correlation-request-id": "0d3effe1-f617-4f6e-abf3-dac5a56112a3", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "0d3effe1-f617-4f6e-abf3-dac5a56112a3", + "x-ms-routing-request-id": "WESTUS2:20210519T185826Z:0d3effe1-f617-4f6e-abf3-dac5a56112a3" }, "ResponseBody": [] }, @@ -7690,7 +7719,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "36f8a01da761a6ed446615fc404b67bf", "x-ms-return-client-request-id": "true" }, @@ -7699,17 +7728,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:29 GMT", + "Date": "Wed, 19 May 2021 18:58:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ceeeb4fa-7214-47f1-90a6-61f38c33a82a", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-request-id": "ceeeb4fa-7214-47f1-90a6-61f38c33a82a", - "x-ms-routing-request-id": "WESTUS2:20210507T202930Z:ceeeb4fa-7214-47f1-90a6-61f38c33a82a" + "x-ms-correlation-request-id": "fb76eabc-96b0-4c6a-aecc-47a47c46e5cd", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "fb76eabc-96b0-4c6a-aecc-47a47c46e5cd", + "x-ms-routing-request-id": "WESTUS2:20210519T185827Z:fb76eabc-96b0-4c6a-aecc-47a47c46e5cd" }, "ResponseBody": [] }, @@ -7718,7 +7747,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "34384ac1ce7aac5c19f6a4ab92cd8830", "x-ms-return-client-request-id": "true" }, @@ -7727,17 +7756,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:30 GMT", + "Date": "Wed, 19 May 2021 18:58:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "611fdd00-909d-4613-83d4-7a7be133f782", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-request-id": "611fdd00-909d-4613-83d4-7a7be133f782", - "x-ms-routing-request-id": "WESTUS2:20210507T202931Z:611fdd00-909d-4613-83d4-7a7be133f782" + "x-ms-correlation-request-id": "086ce072-0210-4b44-84bc-9dd87ae56732", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "086ce072-0210-4b44-84bc-9dd87ae56732", + "x-ms-routing-request-id": "WESTUS2:20210519T185828Z:086ce072-0210-4b44-84bc-9dd87ae56732" }, "ResponseBody": [] }, @@ -7746,7 +7775,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df5bc811d8b3820847ccb7909dee6cbc", "x-ms-return-client-request-id": "true" }, @@ -7755,17 +7784,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:31 GMT", + "Date": "Wed, 19 May 2021 18:58:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a992318f-c82c-40bb-8148-f8a278192aa3", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-request-id": "a992318f-c82c-40bb-8148-f8a278192aa3", - "x-ms-routing-request-id": "WESTUS2:20210507T202932Z:a992318f-c82c-40bb-8148-f8a278192aa3" + "x-ms-correlation-request-id": "63710268-d81d-4976-a9c9-91bac8d98291", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "63710268-d81d-4976-a9c9-91bac8d98291", + "x-ms-routing-request-id": "WESTUS2:20210519T185829Z:63710268-d81d-4976-a9c9-91bac8d98291" }, "ResponseBody": [] }, @@ -7774,7 +7803,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "606d021a2b0e4e6a444c1d6b02411377", "x-ms-return-client-request-id": "true" }, @@ -7783,17 +7812,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:32 GMT", + "Date": "Wed, 19 May 2021 18:58:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26e6e47b-7a49-4f72-82a7-4c7ca5d853e4", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-request-id": "26e6e47b-7a49-4f72-82a7-4c7ca5d853e4", - "x-ms-routing-request-id": "WESTUS2:20210507T202933Z:26e6e47b-7a49-4f72-82a7-4c7ca5d853e4" + "x-ms-correlation-request-id": "3c1c4632-82c8-417a-bd69-245f97ff2ba0", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "3c1c4632-82c8-417a-bd69-245f97ff2ba0", + "x-ms-routing-request-id": "WESTUS2:20210519T185830Z:3c1c4632-82c8-417a-bd69-245f97ff2ba0" }, "ResponseBody": [] }, @@ -7802,7 +7831,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "77eae4de88f0e80b41b5ecae16cb0e2a", "x-ms-return-client-request-id": "true" }, @@ -7811,17 +7840,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:33 GMT", + "Date": "Wed, 19 May 2021 18:58:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b78600c4-33e0-4476-90b5-f7678de14219", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-request-id": "b78600c4-33e0-4476-90b5-f7678de14219", - "x-ms-routing-request-id": "WESTUS2:20210507T202934Z:b78600c4-33e0-4476-90b5-f7678de14219" + "x-ms-correlation-request-id": "b4a04a15-a62d-427b-bb98-d06608f91af5", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "b4a04a15-a62d-427b-bb98-d06608f91af5", + "x-ms-routing-request-id": "WESTUS2:20210519T185831Z:b4a04a15-a62d-427b-bb98-d06608f91af5" }, "ResponseBody": [] }, @@ -7830,7 +7859,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9090e88a2760e6215e0c9a67ba9d7f05", "x-ms-return-client-request-id": "true" }, @@ -7839,17 +7868,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:35 GMT", + "Date": "Wed, 19 May 2021 18:58:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8e32135-c3f2-40b9-8b7b-e76bb9e86aef", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "c8e32135-c3f2-40b9-8b7b-e76bb9e86aef", - "x-ms-routing-request-id": "WESTUS2:20210507T202936Z:c8e32135-c3f2-40b9-8b7b-e76bb9e86aef" + "x-ms-correlation-request-id": "af7129f8-457c-45b8-8f68-d3dfb4b216c3", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "af7129f8-457c-45b8-8f68-d3dfb4b216c3", + "x-ms-routing-request-id": "WESTUS2:20210519T185833Z:af7129f8-457c-45b8-8f68-d3dfb4b216c3" }, "ResponseBody": [] }, @@ -7858,7 +7887,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b8b240b8f40392cbf6841e583ebb3778", "x-ms-return-client-request-id": "true" }, @@ -7867,17 +7896,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:37 GMT", + "Date": "Wed, 19 May 2021 18:58:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a42cf7ae-68a5-4694-b11a-b87ed5d87ba0", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-request-id": "a42cf7ae-68a5-4694-b11a-b87ed5d87ba0", - "x-ms-routing-request-id": "WESTUS2:20210507T202937Z:a42cf7ae-68a5-4694-b11a-b87ed5d87ba0" + "x-ms-correlation-request-id": "38e50302-4b18-4a2e-81cf-c8ae4bd114f0", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "38e50302-4b18-4a2e-81cf-c8ae4bd114f0", + "x-ms-routing-request-id": "WESTUS2:20210519T185834Z:38e50302-4b18-4a2e-81cf-c8ae4bd114f0" }, "ResponseBody": [] }, @@ -7886,7 +7915,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1ae1f23d83b0b617c20319e4eda42ea3", "x-ms-return-client-request-id": "true" }, @@ -7895,17 +7924,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:38 GMT", + "Date": "Wed, 19 May 2021 18:58:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9b48f28-1af9-4363-aa59-32d022b65405", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-request-id": "e9b48f28-1af9-4363-aa59-32d022b65405", - "x-ms-routing-request-id": "WESTUS2:20210507T202938Z:e9b48f28-1af9-4363-aa59-32d022b65405" + "x-ms-correlation-request-id": "19a24ac5-6a9c-443b-869b-7ada3da8f4e8", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "19a24ac5-6a9c-443b-869b-7ada3da8f4e8", + "x-ms-routing-request-id": "WESTUS2:20210519T185835Z:19a24ac5-6a9c-443b-869b-7ada3da8f4e8" }, "ResponseBody": [] }, @@ -7914,7 +7943,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d6f5e735551995271cfe99db08c8a8a2", "x-ms-return-client-request-id": "true" }, @@ -7923,17 +7952,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:39 GMT", + "Date": "Wed, 19 May 2021 18:58:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26d91743-8c90-41ab-a8f3-a1e26f933a30", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-request-id": "26d91743-8c90-41ab-a8f3-a1e26f933a30", - "x-ms-routing-request-id": "WESTUS2:20210507T202939Z:26d91743-8c90-41ab-a8f3-a1e26f933a30" + "x-ms-correlation-request-id": "542f6bf4-74d7-43dd-9630-f16c514460bb", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "542f6bf4-74d7-43dd-9630-f16c514460bb", + "x-ms-routing-request-id": "WESTUS2:20210519T185836Z:542f6bf4-74d7-43dd-9630-f16c514460bb" }, "ResponseBody": [] }, @@ -7942,7 +7971,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c72922d465bc355429fbf6ffdbe7a452", "x-ms-return-client-request-id": "true" }, @@ -7951,17 +7980,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:40 GMT", + "Date": "Wed, 19 May 2021 18:58:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "976e0f72-990d-4aef-83ae-414bb72b0823", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-request-id": "976e0f72-990d-4aef-83ae-414bb72b0823", - "x-ms-routing-request-id": "WESTUS2:20210507T202940Z:976e0f72-990d-4aef-83ae-414bb72b0823" + "x-ms-correlation-request-id": "eaafb3b0-14aa-423b-bdc0-5a41b32197db", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "eaafb3b0-14aa-423b-bdc0-5a41b32197db", + "x-ms-routing-request-id": "WESTUS2:20210519T185837Z:eaafb3b0-14aa-423b-bdc0-5a41b32197db" }, "ResponseBody": [] }, @@ -7970,7 +7999,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "57227b5661c6e75fcb4bfdb2e93badf9", "x-ms-return-client-request-id": "true" }, @@ -7979,17 +8008,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:41 GMT", + "Date": "Wed, 19 May 2021 18:58:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c449e839-0c95-4ab2-a702-4b5226af7f9f", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-request-id": "c449e839-0c95-4ab2-a702-4b5226af7f9f", - "x-ms-routing-request-id": "WESTUS2:20210507T202941Z:c449e839-0c95-4ab2-a702-4b5226af7f9f" + "x-ms-correlation-request-id": "5e487a7a-79a4-4c32-80ff-8fe3e677f1bc", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "5e487a7a-79a4-4c32-80ff-8fe3e677f1bc", + "x-ms-routing-request-id": "WESTUS2:20210519T185838Z:5e487a7a-79a4-4c32-80ff-8fe3e677f1bc" }, "ResponseBody": [] }, @@ -7998,7 +8027,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb0f765b667ad0e692bfac1d5f27b934", "x-ms-return-client-request-id": "true" }, @@ -8007,17 +8036,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:42 GMT", + "Date": "Wed, 19 May 2021 18:58:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9abdf554-972d-470a-86e6-01eaab881cd7", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "9abdf554-972d-470a-86e6-01eaab881cd7", - "x-ms-routing-request-id": "WESTUS2:20210507T202942Z:9abdf554-972d-470a-86e6-01eaab881cd7" + "x-ms-correlation-request-id": "e02087f2-e121-4e94-8995-f3e50330cc6d", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "e02087f2-e121-4e94-8995-f3e50330cc6d", + "x-ms-routing-request-id": "WESTUS2:20210519T185839Z:e02087f2-e121-4e94-8995-f3e50330cc6d" }, "ResponseBody": [] }, @@ -8026,7 +8055,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8d84475951a573dbc241fc7067a24ced", "x-ms-return-client-request-id": "true" }, @@ -8035,17 +8064,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:43 GMT", + "Date": "Wed, 19 May 2021 18:58:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7945834d-057d-42c4-bcfb-dd75bc8bf08b", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-request-id": "7945834d-057d-42c4-bcfb-dd75bc8bf08b", - "x-ms-routing-request-id": "WESTUS2:20210507T202943Z:7945834d-057d-42c4-bcfb-dd75bc8bf08b" + "x-ms-correlation-request-id": "f1767705-1b49-4c49-8cbe-9b91b57e01ce", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "f1767705-1b49-4c49-8cbe-9b91b57e01ce", + "x-ms-routing-request-id": "WESTUS2:20210519T185840Z:f1767705-1b49-4c49-8cbe-9b91b57e01ce" }, "ResponseBody": [] }, @@ -8054,7 +8083,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "64a4fc4ed9d8f0d79452c406b44288a4", "x-ms-return-client-request-id": "true" }, @@ -8063,17 +8092,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:44 GMT", + "Date": "Wed, 19 May 2021 18:58:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a86c25b2-a5c3-48bb-a2da-adfa96e6f1ba", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-request-id": "a86c25b2-a5c3-48bb-a2da-adfa96e6f1ba", - "x-ms-routing-request-id": "WESTUS2:20210507T202944Z:a86c25b2-a5c3-48bb-a2da-adfa96e6f1ba" + "x-ms-correlation-request-id": "333bb2fa-623a-4796-b289-bf604e5d691b", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "333bb2fa-623a-4796-b289-bf604e5d691b", + "x-ms-routing-request-id": "WESTUS2:20210519T185841Z:333bb2fa-623a-4796-b289-bf604e5d691b" }, "ResponseBody": [] }, @@ -8082,7 +8111,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a258c9921fb609539a9c0838697668f0", "x-ms-return-client-request-id": "true" }, @@ -8091,17 +8120,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:45 GMT", + "Date": "Wed, 19 May 2021 18:58:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8dcee246-f426-4143-ab3f-c37ac98e97fb", - "x-ms-ratelimit-remaining-subscription-reads": "11864", - "x-ms-request-id": "8dcee246-f426-4143-ab3f-c37ac98e97fb", - "x-ms-routing-request-id": "WESTUS2:20210507T202945Z:8dcee246-f426-4143-ab3f-c37ac98e97fb" + "x-ms-correlation-request-id": "18453c90-e8e1-4136-9581-9488b4255195", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "18453c90-e8e1-4136-9581-9488b4255195", + "x-ms-routing-request-id": "WESTUS2:20210519T185842Z:18453c90-e8e1-4136-9581-9488b4255195" }, "ResponseBody": [] }, @@ -8110,7 +8139,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "63cfbe735482805c6f94f9538cd5be80", "x-ms-return-client-request-id": "true" }, @@ -8119,17 +8148,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:46 GMT", + "Date": "Wed, 19 May 2021 18:58:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33280cea-c5d4-4b0a-a678-df20ec56bd81", - "x-ms-ratelimit-remaining-subscription-reads": "11863", - "x-ms-request-id": "33280cea-c5d4-4b0a-a678-df20ec56bd81", - "x-ms-routing-request-id": "WESTUS2:20210507T202946Z:33280cea-c5d4-4b0a-a678-df20ec56bd81" + "x-ms-correlation-request-id": "5e556cc0-6dfe-489e-a944-05357b8eece6", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "5e556cc0-6dfe-489e-a944-05357b8eece6", + "x-ms-routing-request-id": "WESTUS2:20210519T185843Z:5e556cc0-6dfe-489e-a944-05357b8eece6" }, "ResponseBody": [] }, @@ -8138,7 +8167,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ede58b9a9492e37a89aca3cd19f861e", "x-ms-return-client-request-id": "true" }, @@ -8147,17 +8176,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:47 GMT", + "Date": "Wed, 19 May 2021 18:58:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f38d895c-dd69-4fb6-83a4-1bd1b60a8fbc", - "x-ms-ratelimit-remaining-subscription-reads": "11862", - "x-ms-request-id": "f38d895c-dd69-4fb6-83a4-1bd1b60a8fbc", - "x-ms-routing-request-id": "WESTUS2:20210507T202947Z:f38d895c-dd69-4fb6-83a4-1bd1b60a8fbc" + "x-ms-correlation-request-id": "8735b034-8639-4e14-b6d2-5b457b86bcba", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "8735b034-8639-4e14-b6d2-5b457b86bcba", + "x-ms-routing-request-id": "WESTUS2:20210519T185844Z:8735b034-8639-4e14-b6d2-5b457b86bcba" }, "ResponseBody": [] }, @@ -8166,7 +8195,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f692d3e924723d216cd8322226007dc5", "x-ms-return-client-request-id": "true" }, @@ -8175,17 +8204,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:48 GMT", + "Date": "Wed, 19 May 2021 18:58:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8d3e41b-1c67-490c-bcf0-429959a5a5a2", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-request-id": "e8d3e41b-1c67-490c-bcf0-429959a5a5a2", - "x-ms-routing-request-id": "WESTUS2:20210507T202948Z:e8d3e41b-1c67-490c-bcf0-429959a5a5a2" + "x-ms-correlation-request-id": "4baf2320-7e39-4548-ae83-9db900b66ff9", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "4baf2320-7e39-4548-ae83-9db900b66ff9", + "x-ms-routing-request-id": "WESTUS2:20210519T185845Z:4baf2320-7e39-4548-ae83-9db900b66ff9" }, "ResponseBody": [] }, @@ -8194,7 +8223,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "117e87ddca97c9a787a1bbe88a20afd0", "x-ms-return-client-request-id": "true" }, @@ -8203,17 +8232,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:49 GMT", + "Date": "Wed, 19 May 2021 18:58:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f98b89f1-d8da-4076-89cf-51fb35511eb5", - "x-ms-ratelimit-remaining-subscription-reads": "11860", - "x-ms-request-id": "f98b89f1-d8da-4076-89cf-51fb35511eb5", - "x-ms-routing-request-id": "WESTUS2:20210507T202949Z:f98b89f1-d8da-4076-89cf-51fb35511eb5" + "x-ms-correlation-request-id": "0f157ffc-7e9c-40e2-a6af-8ca4ed9bfcb7", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "0f157ffc-7e9c-40e2-a6af-8ca4ed9bfcb7", + "x-ms-routing-request-id": "WESTUS2:20210519T185846Z:0f157ffc-7e9c-40e2-a6af-8ca4ed9bfcb7" }, "ResponseBody": [] }, @@ -8222,7 +8251,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b869db0ec842950e37a13171771407a7", "x-ms-return-client-request-id": "true" }, @@ -8231,17 +8260,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:50 GMT", + "Date": "Wed, 19 May 2021 18:58:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18802665-681b-4b19-9c31-d0bf1d730aab", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-request-id": "18802665-681b-4b19-9c31-d0bf1d730aab", - "x-ms-routing-request-id": "WESTUS2:20210507T202950Z:18802665-681b-4b19-9c31-d0bf1d730aab" + "x-ms-correlation-request-id": "56557ea6-14cd-40f9-8e3c-83d651d480cb", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "56557ea6-14cd-40f9-8e3c-83d651d480cb", + "x-ms-routing-request-id": "WESTUS2:20210519T185847Z:56557ea6-14cd-40f9-8e3c-83d651d480cb" }, "ResponseBody": [] }, @@ -8250,7 +8279,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "495e041d74201f862cc96ed16939b24c", "x-ms-return-client-request-id": "true" }, @@ -8259,17 +8288,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:51 GMT", + "Date": "Wed, 19 May 2021 18:58:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef4d6ac9-a408-4a29-af20-ffb113af43c7", - "x-ms-ratelimit-remaining-subscription-reads": "11858", - "x-ms-request-id": "ef4d6ac9-a408-4a29-af20-ffb113af43c7", - "x-ms-routing-request-id": "WESTUS2:20210507T202951Z:ef4d6ac9-a408-4a29-af20-ffb113af43c7" + "x-ms-correlation-request-id": "d8447ea4-9239-491c-9d52-c6910f4c21a3", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "d8447ea4-9239-491c-9d52-c6910f4c21a3", + "x-ms-routing-request-id": "WESTUS2:20210519T185848Z:d8447ea4-9239-491c-9d52-c6910f4c21a3" }, "ResponseBody": [] }, @@ -8278,7 +8307,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a146129c497158279e9daf698355272", "x-ms-return-client-request-id": "true" }, @@ -8287,17 +8316,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:52 GMT", + "Date": "Wed, 19 May 2021 18:58:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ec68eef-d3c9-4076-942d-5d0f5051b1d5", - "x-ms-ratelimit-remaining-subscription-reads": "11857", - "x-ms-request-id": "9ec68eef-d3c9-4076-942d-5d0f5051b1d5", - "x-ms-routing-request-id": "WESTUS2:20210507T202952Z:9ec68eef-d3c9-4076-942d-5d0f5051b1d5" + "x-ms-correlation-request-id": "0d7b3e08-86a1-42de-9eb5-1ced0056b2b4", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "0d7b3e08-86a1-42de-9eb5-1ced0056b2b4", + "x-ms-routing-request-id": "WESTUS2:20210519T185849Z:0d7b3e08-86a1-42de-9eb5-1ced0056b2b4" }, "ResponseBody": [] }, @@ -8306,7 +8335,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85ca139965c199b054498c79593c2bfd", "x-ms-return-client-request-id": "true" }, @@ -8315,17 +8344,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:53 GMT", + "Date": "Wed, 19 May 2021 18:58:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66191749-e47d-40df-9fde-172b6e2b27b2", - "x-ms-ratelimit-remaining-subscription-reads": "11856", - "x-ms-request-id": "66191749-e47d-40df-9fde-172b6e2b27b2", - "x-ms-routing-request-id": "WESTUS2:20210507T202953Z:66191749-e47d-40df-9fde-172b6e2b27b2" + "x-ms-correlation-request-id": "53a35c01-0a15-4c10-93c5-beffc1ffc7e2", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "53a35c01-0a15-4c10-93c5-beffc1ffc7e2", + "x-ms-routing-request-id": "WESTUS2:20210519T185850Z:53a35c01-0a15-4c10-93c5-beffc1ffc7e2" }, "ResponseBody": [] }, @@ -8334,7 +8363,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1548e5eebd0059108148d0369a9087f6", "x-ms-return-client-request-id": "true" }, @@ -8343,17 +8372,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:54 GMT", + "Date": "Wed, 19 May 2021 18:58:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1af821b-9de9-4b79-ad06-766b82939fe2", - "x-ms-ratelimit-remaining-subscription-reads": "11855", - "x-ms-request-id": "d1af821b-9de9-4b79-ad06-766b82939fe2", - "x-ms-routing-request-id": "WESTUS2:20210507T202954Z:d1af821b-9de9-4b79-ad06-766b82939fe2" + "x-ms-correlation-request-id": "429d2e87-ee5a-45ba-9a01-ff25011618fd", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "429d2e87-ee5a-45ba-9a01-ff25011618fd", + "x-ms-routing-request-id": "WESTUS2:20210519T185851Z:429d2e87-ee5a-45ba-9a01-ff25011618fd" }, "ResponseBody": [] }, @@ -8362,7 +8391,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5538fb762c6ec38ab17bf64d3809bb3c", "x-ms-return-client-request-id": "true" }, @@ -8371,17 +8400,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:55 GMT", + "Date": "Wed, 19 May 2021 18:58:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1081a324-9c1d-456f-b730-a604e84149bf", - "x-ms-ratelimit-remaining-subscription-reads": "11854", - "x-ms-request-id": "1081a324-9c1d-456f-b730-a604e84149bf", - "x-ms-routing-request-id": "WESTUS2:20210507T202956Z:1081a324-9c1d-456f-b730-a604e84149bf" + "x-ms-correlation-request-id": "03ced9c3-30c3-4dab-a259-a10ccbf53924", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "03ced9c3-30c3-4dab-a259-a10ccbf53924", + "x-ms-routing-request-id": "WESTUS2:20210519T185852Z:03ced9c3-30c3-4dab-a259-a10ccbf53924" }, "ResponseBody": [] }, @@ -8390,7 +8419,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b308dcbd3ceddc72027104789579fec4", "x-ms-return-client-request-id": "true" }, @@ -8399,17 +8428,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:56 GMT", + "Date": "Wed, 19 May 2021 18:58:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79b6c831-84d6-4612-b328-7bf91cc7f241", - "x-ms-ratelimit-remaining-subscription-reads": "11853", - "x-ms-request-id": "79b6c831-84d6-4612-b328-7bf91cc7f241", - "x-ms-routing-request-id": "WESTUS2:20210507T202957Z:79b6c831-84d6-4612-b328-7bf91cc7f241" + "x-ms-correlation-request-id": "63774f6e-a816-4fdc-9ffe-cfb29981e799", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "63774f6e-a816-4fdc-9ffe-cfb29981e799", + "x-ms-routing-request-id": "WESTUS2:20210519T185853Z:63774f6e-a816-4fdc-9ffe-cfb29981e799" }, "ResponseBody": [] }, @@ -8418,7 +8447,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5e0295c1d604c18f5a846485c6c32178", "x-ms-return-client-request-id": "true" }, @@ -8427,17 +8456,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:57 GMT", + "Date": "Wed, 19 May 2021 18:58:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca6f6359-4a03-4610-b0f7-d790686f7f89", - "x-ms-ratelimit-remaining-subscription-reads": "11852", - "x-ms-request-id": "ca6f6359-4a03-4610-b0f7-d790686f7f89", - "x-ms-routing-request-id": "WESTUS2:20210507T202958Z:ca6f6359-4a03-4610-b0f7-d790686f7f89" + "x-ms-correlation-request-id": "1b2352eb-bb78-4016-9286-dea0bd77cef7", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "1b2352eb-bb78-4016-9286-dea0bd77cef7", + "x-ms-routing-request-id": "WESTUS2:20210519T185854Z:1b2352eb-bb78-4016-9286-dea0bd77cef7" }, "ResponseBody": [] }, @@ -8446,7 +8475,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bd79938dd4883909885c53fd28122d37", "x-ms-return-client-request-id": "true" }, @@ -8455,17 +8484,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:58 GMT", + "Date": "Wed, 19 May 2021 18:58:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f33931b6-859c-4285-a41e-31218a830a8a", - "x-ms-ratelimit-remaining-subscription-reads": "11851", - "x-ms-request-id": "f33931b6-859c-4285-a41e-31218a830a8a", - "x-ms-routing-request-id": "WESTUS2:20210507T202959Z:f33931b6-859c-4285-a41e-31218a830a8a" + "x-ms-correlation-request-id": "c79ab204-7468-4f22-9f31-19c75d3b9591", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "c79ab204-7468-4f22-9f31-19c75d3b9591", + "x-ms-routing-request-id": "WESTUS2:20210519T185855Z:c79ab204-7468-4f22-9f31-19c75d3b9591" }, "ResponseBody": [] }, @@ -8474,7 +8503,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a28b327c5d06e7384c475868d8ed153f", "x-ms-return-client-request-id": "true" }, @@ -8483,17 +8512,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:29:59 GMT", + "Date": "Wed, 19 May 2021 18:58:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b8dacba-4e9e-4861-8638-0b58e0c75d86", - "x-ms-ratelimit-remaining-subscription-reads": "11850", - "x-ms-request-id": "8b8dacba-4e9e-4861-8638-0b58e0c75d86", - "x-ms-routing-request-id": "WESTUS2:20210507T203000Z:8b8dacba-4e9e-4861-8638-0b58e0c75d86" + "x-ms-correlation-request-id": "330f03c1-7e53-4605-8ead-aa53b1a4031d", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "330f03c1-7e53-4605-8ead-aa53b1a4031d", + "x-ms-routing-request-id": "WESTUS2:20210519T185856Z:330f03c1-7e53-4605-8ead-aa53b1a4031d" }, "ResponseBody": [] }, @@ -8502,7 +8531,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "02eb8b4f4100ed3b8bc9d5a882929848", "x-ms-return-client-request-id": "true" }, @@ -8511,17 +8540,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:00 GMT", + "Date": "Wed, 19 May 2021 18:58:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d061df7c-829a-472c-859e-30f80a6fd892", - "x-ms-ratelimit-remaining-subscription-reads": "11849", - "x-ms-request-id": "d061df7c-829a-472c-859e-30f80a6fd892", - "x-ms-routing-request-id": "WESTUS2:20210507T203001Z:d061df7c-829a-472c-859e-30f80a6fd892" + "x-ms-correlation-request-id": "ec75f820-3b63-4214-8456-55f60491e1fe", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "ec75f820-3b63-4214-8456-55f60491e1fe", + "x-ms-routing-request-id": "WESTUS2:20210519T185857Z:ec75f820-3b63-4214-8456-55f60491e1fe" }, "ResponseBody": [] }, @@ -8530,7 +8559,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94092c577e372f715b9170417ba0609b", "x-ms-return-client-request-id": "true" }, @@ -8539,17 +8568,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:01 GMT", + "Date": "Wed, 19 May 2021 18:58:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3bcf955-6199-46f6-ac00-22a6bdcf76d7", - "x-ms-ratelimit-remaining-subscription-reads": "11848", - "x-ms-request-id": "c3bcf955-6199-46f6-ac00-22a6bdcf76d7", - "x-ms-routing-request-id": "WESTUS2:20210507T203002Z:c3bcf955-6199-46f6-ac00-22a6bdcf76d7" + "x-ms-correlation-request-id": "af08d293-3573-453c-b166-d4ef52c7e662", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "af08d293-3573-453c-b166-d4ef52c7e662", + "x-ms-routing-request-id": "WESTUS2:20210519T185858Z:af08d293-3573-453c-b166-d4ef52c7e662" }, "ResponseBody": [] }, @@ -8558,7 +8587,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9dad13462b263a37f69e163d888f64ba", "x-ms-return-client-request-id": "true" }, @@ -8567,17 +8596,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:02 GMT", + "Date": "Wed, 19 May 2021 18:58:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "075915c5-3bab-4111-9cda-6d23a1098ea9", - "x-ms-ratelimit-remaining-subscription-reads": "11847", - "x-ms-request-id": "075915c5-3bab-4111-9cda-6d23a1098ea9", - "x-ms-routing-request-id": "WESTUS2:20210507T203003Z:075915c5-3bab-4111-9cda-6d23a1098ea9" + "x-ms-correlation-request-id": "50f6b44c-ac71-4fde-b36a-3e4d90732750", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "50f6b44c-ac71-4fde-b36a-3e4d90732750", + "x-ms-routing-request-id": "WESTUS2:20210519T185859Z:50f6b44c-ac71-4fde-b36a-3e4d90732750" }, "ResponseBody": [] }, @@ -8586,7 +8615,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ac1110ae81e3d10819bba76ed0fa71eb", "x-ms-return-client-request-id": "true" }, @@ -8595,17 +8624,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:03 GMT", + "Date": "Wed, 19 May 2021 18:58:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a8530c5-b400-454e-acf6-4c538b675f4f", - "x-ms-ratelimit-remaining-subscription-reads": "11846", - "x-ms-request-id": "6a8530c5-b400-454e-acf6-4c538b675f4f", - "x-ms-routing-request-id": "WESTUS2:20210507T203004Z:6a8530c5-b400-454e-acf6-4c538b675f4f" + "x-ms-correlation-request-id": "33b2ebfa-fa21-42f8-a3b7-50a1778cd4f0", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "33b2ebfa-fa21-42f8-a3b7-50a1778cd4f0", + "x-ms-routing-request-id": "WESTUS2:20210519T185900Z:33b2ebfa-fa21-42f8-a3b7-50a1778cd4f0" }, "ResponseBody": [] }, @@ -8614,7 +8643,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f613968fbe52b21f4ce9d986734a7cb", "x-ms-return-client-request-id": "true" }, @@ -8623,17 +8652,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:05 GMT", + "Date": "Wed, 19 May 2021 18:59:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "433d374d-2993-4fd8-bef0-6b4cc0d751d8", - "x-ms-ratelimit-remaining-subscription-reads": "11845", - "x-ms-request-id": "433d374d-2993-4fd8-bef0-6b4cc0d751d8", - "x-ms-routing-request-id": "WESTUS2:20210507T203005Z:433d374d-2993-4fd8-bef0-6b4cc0d751d8" + "x-ms-correlation-request-id": "85f3459f-c5a6-4ec7-a9c9-e10f795f7041", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "85f3459f-c5a6-4ec7-a9c9-e10f795f7041", + "x-ms-routing-request-id": "WESTUS2:20210519T185901Z:85f3459f-c5a6-4ec7-a9c9-e10f795f7041" }, "ResponseBody": [] }, @@ -8642,7 +8671,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6b92b62db48ec5b70adb836a84c86afb", "x-ms-return-client-request-id": "true" }, @@ -8651,17 +8680,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:06 GMT", + "Date": "Wed, 19 May 2021 18:59:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "703a5638-fad2-4a1b-87f9-4604b0fddd17", - "x-ms-ratelimit-remaining-subscription-reads": "11844", - "x-ms-request-id": "703a5638-fad2-4a1b-87f9-4604b0fddd17", - "x-ms-routing-request-id": "WESTUS2:20210507T203006Z:703a5638-fad2-4a1b-87f9-4604b0fddd17" + "x-ms-correlation-request-id": "ee133bcb-bc5b-496c-b9ff-d51687543eed", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "ee133bcb-bc5b-496c-b9ff-d51687543eed", + "x-ms-routing-request-id": "WESTUS2:20210519T185903Z:ee133bcb-bc5b-496c-b9ff-d51687543eed" }, "ResponseBody": [] }, @@ -8670,7 +8699,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4ed52b2df42db3d4eee5b715e37069e5", "x-ms-return-client-request-id": "true" }, @@ -8679,17 +8708,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:07 GMT", + "Date": "Wed, 19 May 2021 18:59:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ef16c8c-3cc7-40b1-a518-cce6edb740b2", - "x-ms-ratelimit-remaining-subscription-reads": "11843", - "x-ms-request-id": "0ef16c8c-3cc7-40b1-a518-cce6edb740b2", - "x-ms-routing-request-id": "WESTUS2:20210507T203007Z:0ef16c8c-3cc7-40b1-a518-cce6edb740b2" + "x-ms-correlation-request-id": "8e578700-a58c-4307-8659-ceb235d4310a", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "8e578700-a58c-4307-8659-ceb235d4310a", + "x-ms-routing-request-id": "WESTUS2:20210519T185904Z:8e578700-a58c-4307-8659-ceb235d4310a" }, "ResponseBody": [] }, @@ -8698,7 +8727,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a41db140668b35d819c640978b6a72b", "x-ms-return-client-request-id": "true" }, @@ -8707,17 +8736,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:08 GMT", + "Date": "Wed, 19 May 2021 18:59:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49b38a8d-0f02-4987-abc3-3e551f5608e6", - "x-ms-ratelimit-remaining-subscription-reads": "11842", - "x-ms-request-id": "49b38a8d-0f02-4987-abc3-3e551f5608e6", - "x-ms-routing-request-id": "WESTUS2:20210507T203008Z:49b38a8d-0f02-4987-abc3-3e551f5608e6" + "x-ms-correlation-request-id": "974ad416-be1b-454f-8b22-ee2e03dd6d5f", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "974ad416-be1b-454f-8b22-ee2e03dd6d5f", + "x-ms-routing-request-id": "WESTUS2:20210519T185905Z:974ad416-be1b-454f-8b22-ee2e03dd6d5f" }, "ResponseBody": [] }, @@ -8726,7 +8755,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c6ba164585f389de1de7ca8fca2e19a", "x-ms-return-client-request-id": "true" }, @@ -8735,17 +8764,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:09 GMT", + "Date": "Wed, 19 May 2021 18:59:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9202edbd-3007-41a1-8f28-ec226d160f50", - "x-ms-ratelimit-remaining-subscription-reads": "11841", - "x-ms-request-id": "9202edbd-3007-41a1-8f28-ec226d160f50", - "x-ms-routing-request-id": "WESTUS2:20210507T203009Z:9202edbd-3007-41a1-8f28-ec226d160f50" + "x-ms-correlation-request-id": "c16421bc-c4ca-4b14-afcd-86c888b13896", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "c16421bc-c4ca-4b14-afcd-86c888b13896", + "x-ms-routing-request-id": "WESTUS2:20210519T185906Z:c16421bc-c4ca-4b14-afcd-86c888b13896" }, "ResponseBody": [] }, @@ -8754,7 +8783,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a8569e7150872693ce21cc908fca3b38", "x-ms-return-client-request-id": "true" }, @@ -8763,17 +8792,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:10 GMT", + "Date": "Wed, 19 May 2021 18:59:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd03c315-092c-48a4-a14c-36764babd93c", - "x-ms-ratelimit-remaining-subscription-reads": "11840", - "x-ms-request-id": "dd03c315-092c-48a4-a14c-36764babd93c", - "x-ms-routing-request-id": "WESTUS2:20210507T203010Z:dd03c315-092c-48a4-a14c-36764babd93c" + "x-ms-correlation-request-id": "b3a1fb73-274e-4ca5-885b-7cc72a2cd552", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "b3a1fb73-274e-4ca5-885b-7cc72a2cd552", + "x-ms-routing-request-id": "WESTUS2:20210519T185907Z:b3a1fb73-274e-4ca5-885b-7cc72a2cd552" }, "ResponseBody": [] }, @@ -8782,7 +8811,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "41b18c3e2d04bb853e0838898ab4b7df", "x-ms-return-client-request-id": "true" }, @@ -8791,17 +8820,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:11 GMT", + "Date": "Wed, 19 May 2021 18:59:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44131172-9053-4b65-9149-62b107b2324c", - "x-ms-ratelimit-remaining-subscription-reads": "11839", - "x-ms-request-id": "44131172-9053-4b65-9149-62b107b2324c", - "x-ms-routing-request-id": "WESTUS2:20210507T203011Z:44131172-9053-4b65-9149-62b107b2324c" + "x-ms-correlation-request-id": "c0ba73cc-3a89-49c2-84c7-90b10179d238", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "c0ba73cc-3a89-49c2-84c7-90b10179d238", + "x-ms-routing-request-id": "WESTUS2:20210519T185908Z:c0ba73cc-3a89-49c2-84c7-90b10179d238" }, "ResponseBody": [] }, @@ -8810,7 +8839,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d997cabbff6013a30e446d3d8c0ca816", "x-ms-return-client-request-id": "true" }, @@ -8819,17 +8848,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:12 GMT", + "Date": "Wed, 19 May 2021 18:59:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4dee2e9-4aaa-4573-b741-f5437349aaee", - "x-ms-ratelimit-remaining-subscription-reads": "11838", - "x-ms-request-id": "a4dee2e9-4aaa-4573-b741-f5437349aaee", - "x-ms-routing-request-id": "WESTUS2:20210507T203012Z:a4dee2e9-4aaa-4573-b741-f5437349aaee" + "x-ms-correlation-request-id": "c6ede6dd-0f33-4d22-929a-535b7a2a8d22", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "c6ede6dd-0f33-4d22-929a-535b7a2a8d22", + "x-ms-routing-request-id": "WESTUS2:20210519T185909Z:c6ede6dd-0f33-4d22-929a-535b7a2a8d22" }, "ResponseBody": [] }, @@ -8838,7 +8867,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "706a43a39ff14496189b697f17099c19", "x-ms-return-client-request-id": "true" }, @@ -8847,17 +8876,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:13 GMT", + "Date": "Wed, 19 May 2021 18:59:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "019b52dd-9057-4391-a8d3-1fdf856130dd", - "x-ms-ratelimit-remaining-subscription-reads": "11837", - "x-ms-request-id": "019b52dd-9057-4391-a8d3-1fdf856130dd", - "x-ms-routing-request-id": "WESTUS2:20210507T203014Z:019b52dd-9057-4391-a8d3-1fdf856130dd" + "x-ms-correlation-request-id": "0ef986cc-78a3-4c2e-98ba-2b15489d9bb2", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "0ef986cc-78a3-4c2e-98ba-2b15489d9bb2", + "x-ms-routing-request-id": "WESTUS2:20210519T185910Z:0ef986cc-78a3-4c2e-98ba-2b15489d9bb2" }, "ResponseBody": [] }, @@ -8866,7 +8895,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c5d5ed6a61333ed8e89d33bfbf472f31", "x-ms-return-client-request-id": "true" }, @@ -8875,17 +8904,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:14 GMT", + "Date": "Wed, 19 May 2021 18:59:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0b07b9f-7a97-49b6-8255-015a9c345408", - "x-ms-ratelimit-remaining-subscription-reads": "11836", - "x-ms-request-id": "c0b07b9f-7a97-49b6-8255-015a9c345408", - "x-ms-routing-request-id": "WESTUS2:20210507T203015Z:c0b07b9f-7a97-49b6-8255-015a9c345408" + "x-ms-correlation-request-id": "54e5b812-d4e8-4357-96b0-759a9b9b0386", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "54e5b812-d4e8-4357-96b0-759a9b9b0386", + "x-ms-routing-request-id": "WESTUS2:20210519T185911Z:54e5b812-d4e8-4357-96b0-759a9b9b0386" }, "ResponseBody": [] }, @@ -8894,7 +8923,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46e6215f464a1cee3453c1c49524fc04", "x-ms-return-client-request-id": "true" }, @@ -8903,17 +8932,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:15 GMT", + "Date": "Wed, 19 May 2021 18:59:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b90bc9d1-b5b8-495b-8280-0b363267c48b", - "x-ms-ratelimit-remaining-subscription-reads": "11835", - "x-ms-request-id": "b90bc9d1-b5b8-495b-8280-0b363267c48b", - "x-ms-routing-request-id": "WESTUS2:20210507T203016Z:b90bc9d1-b5b8-495b-8280-0b363267c48b" + "x-ms-correlation-request-id": "74c2f03c-c856-4612-8df1-8a996584cf3a", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "74c2f03c-c856-4612-8df1-8a996584cf3a", + "x-ms-routing-request-id": "WESTUS2:20210519T185912Z:74c2f03c-c856-4612-8df1-8a996584cf3a" }, "ResponseBody": [] }, @@ -8922,7 +8951,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ed353a8e33741e36b2b88536bd684d0", "x-ms-return-client-request-id": "true" }, @@ -8931,17 +8960,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:16 GMT", + "Date": "Wed, 19 May 2021 18:59:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7937da23-e959-4602-9197-5fa0a50a8a18", - "x-ms-ratelimit-remaining-subscription-reads": "11834", - "x-ms-request-id": "7937da23-e959-4602-9197-5fa0a50a8a18", - "x-ms-routing-request-id": "WESTUS2:20210507T203017Z:7937da23-e959-4602-9197-5fa0a50a8a18" + "x-ms-correlation-request-id": "93525743-2736-4cf2-97e3-8739a6ab1722", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "93525743-2736-4cf2-97e3-8739a6ab1722", + "x-ms-routing-request-id": "WESTUS2:20210519T185913Z:93525743-2736-4cf2-97e3-8739a6ab1722" }, "ResponseBody": [] }, @@ -8950,7 +8979,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f61f376c562323cfffb991df9f13a8c3", "x-ms-return-client-request-id": "true" }, @@ -8959,17 +8988,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:17 GMT", + "Date": "Wed, 19 May 2021 18:59:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f493634-a3d3-4c55-80a0-08f6a40d438f", - "x-ms-ratelimit-remaining-subscription-reads": "11833", - "x-ms-request-id": "6f493634-a3d3-4c55-80a0-08f6a40d438f", - "x-ms-routing-request-id": "WESTUS2:20210507T203018Z:6f493634-a3d3-4c55-80a0-08f6a40d438f" + "x-ms-correlation-request-id": "ce9e60bf-840f-4dc2-90c4-4249ea9723b0", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "ce9e60bf-840f-4dc2-90c4-4249ea9723b0", + "x-ms-routing-request-id": "WESTUS2:20210519T185914Z:ce9e60bf-840f-4dc2-90c4-4249ea9723b0" }, "ResponseBody": [] }, @@ -8978,7 +9007,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6c172ea190737cfa3ea4da1ebe9ab05d", "x-ms-return-client-request-id": "true" }, @@ -8987,17 +9016,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:18 GMT", + "Date": "Wed, 19 May 2021 18:59:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ca6e5d4-9f0c-4bbe-ad66-3e5d18637dfa", - "x-ms-ratelimit-remaining-subscription-reads": "11832", - "x-ms-request-id": "4ca6e5d4-9f0c-4bbe-ad66-3e5d18637dfa", - "x-ms-routing-request-id": "WESTUS2:20210507T203019Z:4ca6e5d4-9f0c-4bbe-ad66-3e5d18637dfa" + "x-ms-correlation-request-id": "f7854022-cee7-4f87-a78f-b3950c3751fa", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "f7854022-cee7-4f87-a78f-b3950c3751fa", + "x-ms-routing-request-id": "WESTUS2:20210519T185915Z:f7854022-cee7-4f87-a78f-b3950c3751fa" }, "ResponseBody": [] }, @@ -9006,7 +9035,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5e58f0cf060451e183b09f7e5104a158", "x-ms-return-client-request-id": "true" }, @@ -9015,17 +9044,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:19 GMT", + "Date": "Wed, 19 May 2021 18:59:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2be3ef21-7fe7-4117-a571-0cbf9f0e1acc", - "x-ms-ratelimit-remaining-subscription-reads": "11831", - "x-ms-request-id": "2be3ef21-7fe7-4117-a571-0cbf9f0e1acc", - "x-ms-routing-request-id": "WESTUS2:20210507T203020Z:2be3ef21-7fe7-4117-a571-0cbf9f0e1acc" + "x-ms-correlation-request-id": "af01e452-ce11-4eea-b902-fc690c7ed1c7", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "af01e452-ce11-4eea-b902-fc690c7ed1c7", + "x-ms-routing-request-id": "WESTUS2:20210519T185916Z:af01e452-ce11-4eea-b902-fc690c7ed1c7" }, "ResponseBody": [] }, @@ -9034,7 +9063,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3cb2c48318bedc5c3da3b77e7bb16464", "x-ms-return-client-request-id": "true" }, @@ -9043,17 +9072,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:20 GMT", + "Date": "Wed, 19 May 2021 18:59:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19a888be-01aa-4793-a7e7-550854ba534b", - "x-ms-ratelimit-remaining-subscription-reads": "11830", - "x-ms-request-id": "19a888be-01aa-4793-a7e7-550854ba534b", - "x-ms-routing-request-id": "WESTUS2:20210507T203021Z:19a888be-01aa-4793-a7e7-550854ba534b" + "x-ms-correlation-request-id": "41834a5f-72eb-4834-8bd2-48c5749557db", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "41834a5f-72eb-4834-8bd2-48c5749557db", + "x-ms-routing-request-id": "WESTUS2:20210519T185917Z:41834a5f-72eb-4834-8bd2-48c5749557db" }, "ResponseBody": [] }, @@ -9062,7 +9091,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af0f33084abb9abe4dc5e8c3f07c2b39", "x-ms-return-client-request-id": "true" }, @@ -9071,17 +9100,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:21 GMT", + "Date": "Wed, 19 May 2021 18:59:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "605041c0-fcb9-4b79-8810-6793fe5f9f91", - "x-ms-ratelimit-remaining-subscription-reads": "11829", - "x-ms-request-id": "605041c0-fcb9-4b79-8810-6793fe5f9f91", - "x-ms-routing-request-id": "WESTUS2:20210507T203022Z:605041c0-fcb9-4b79-8810-6793fe5f9f91" + "x-ms-correlation-request-id": "8a8fffe6-6db4-4923-9f44-b873f9629d65", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "8a8fffe6-6db4-4923-9f44-b873f9629d65", + "x-ms-routing-request-id": "WESTUS2:20210519T185918Z:8a8fffe6-6db4-4923-9f44-b873f9629d65" }, "ResponseBody": [] }, @@ -9090,7 +9119,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f99a820273e7b79f947b20614e62d6d2", "x-ms-return-client-request-id": "true" }, @@ -9099,17 +9128,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:22 GMT", + "Date": "Wed, 19 May 2021 18:59:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b32eb76-7b1b-4103-a9c6-4753578d2ec5", - "x-ms-ratelimit-remaining-subscription-reads": "11828", - "x-ms-request-id": "3b32eb76-7b1b-4103-a9c6-4753578d2ec5", - "x-ms-routing-request-id": "WESTUS2:20210507T203023Z:3b32eb76-7b1b-4103-a9c6-4753578d2ec5" + "x-ms-correlation-request-id": "c206329f-c754-41ed-bac6-65f559024a10", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "c206329f-c754-41ed-bac6-65f559024a10", + "x-ms-routing-request-id": "WESTUS2:20210519T185919Z:c206329f-c754-41ed-bac6-65f559024a10" }, "ResponseBody": [] }, @@ -9118,7 +9147,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d753a4bf2f4399d0517eff83099ebc1", "x-ms-return-client-request-id": "true" }, @@ -9127,17 +9156,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:23 GMT", + "Date": "Wed, 19 May 2021 18:59:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a31b1b8b-251a-478d-afd1-e53d4598d1cd", - "x-ms-ratelimit-remaining-subscription-reads": "11827", - "x-ms-request-id": "a31b1b8b-251a-478d-afd1-e53d4598d1cd", - "x-ms-routing-request-id": "WESTUS2:20210507T203024Z:a31b1b8b-251a-478d-afd1-e53d4598d1cd" + "x-ms-correlation-request-id": "1b683ff0-4a36-42bd-bbfc-c5fa62002db3", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "1b683ff0-4a36-42bd-bbfc-c5fa62002db3", + "x-ms-routing-request-id": "WESTUS2:20210519T185920Z:1b683ff0-4a36-42bd-bbfc-c5fa62002db3" }, "ResponseBody": [] }, @@ -9146,7 +9175,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f97b7d786b17957d94581a3f295d4ceb", "x-ms-return-client-request-id": "true" }, @@ -9155,17 +9184,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:24 GMT", + "Date": "Wed, 19 May 2021 18:59:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e44e5f58-d349-4977-be4d-e0fadd04ae2c", - "x-ms-ratelimit-remaining-subscription-reads": "11826", - "x-ms-request-id": "e44e5f58-d349-4977-be4d-e0fadd04ae2c", - "x-ms-routing-request-id": "WESTUS2:20210507T203025Z:e44e5f58-d349-4977-be4d-e0fadd04ae2c" + "x-ms-correlation-request-id": "b3a6fc29-f4ef-452e-afaf-698b324496ce", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "b3a6fc29-f4ef-452e-afaf-698b324496ce", + "x-ms-routing-request-id": "WESTUS2:20210519T185921Z:b3a6fc29-f4ef-452e-afaf-698b324496ce" }, "ResponseBody": [] }, @@ -9174,7 +9203,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b57715ef0d061045e561f3cf84a786fa", "x-ms-return-client-request-id": "true" }, @@ -9183,17 +9212,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:25 GMT", + "Date": "Wed, 19 May 2021 18:59:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f46a72cd-572c-4f93-927a-189d966094d4", - "x-ms-ratelimit-remaining-subscription-reads": "11825", - "x-ms-request-id": "f46a72cd-572c-4f93-927a-189d966094d4", - "x-ms-routing-request-id": "WESTUS2:20210507T203026Z:f46a72cd-572c-4f93-927a-189d966094d4" + "x-ms-correlation-request-id": "eab62b5a-3239-455f-99de-2db212e00a86", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "eab62b5a-3239-455f-99de-2db212e00a86", + "x-ms-routing-request-id": "WESTUS2:20210519T185922Z:eab62b5a-3239-455f-99de-2db212e00a86" }, "ResponseBody": [] }, @@ -9202,7 +9231,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0e95f90dce6e0bbbde0899bd75d0fa8", "x-ms-return-client-request-id": "true" }, @@ -9211,17 +9240,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:26 GMT", + "Date": "Wed, 19 May 2021 18:59:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3eb37f53-bb06-4bd5-b868-67cb65b774fa", - "x-ms-ratelimit-remaining-subscription-reads": "11824", - "x-ms-request-id": "3eb37f53-bb06-4bd5-b868-67cb65b774fa", - "x-ms-routing-request-id": "WESTUS2:20210507T203027Z:3eb37f53-bb06-4bd5-b868-67cb65b774fa" + "x-ms-correlation-request-id": "cc3736a1-6808-49d7-abd6-58394f5cc9ab", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "cc3736a1-6808-49d7-abd6-58394f5cc9ab", + "x-ms-routing-request-id": "WESTUS2:20210519T185923Z:cc3736a1-6808-49d7-abd6-58394f5cc9ab" }, "ResponseBody": [] }, @@ -9230,7 +9259,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a0803cb36216aba386b14b577ad10ed", "x-ms-return-client-request-id": "true" }, @@ -9239,17 +9268,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:28 GMT", + "Date": "Wed, 19 May 2021 18:59:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74abb0d3-3faf-4679-b95e-86b7fb0f5eb7", - "x-ms-ratelimit-remaining-subscription-reads": "11823", - "x-ms-request-id": "74abb0d3-3faf-4679-b95e-86b7fb0f5eb7", - "x-ms-routing-request-id": "WESTUS2:20210507T203028Z:74abb0d3-3faf-4679-b95e-86b7fb0f5eb7" + "x-ms-correlation-request-id": "7481c623-4c65-49e0-88b7-8372a5fe2631", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "7481c623-4c65-49e0-88b7-8372a5fe2631", + "x-ms-routing-request-id": "WESTUS2:20210519T185924Z:7481c623-4c65-49e0-88b7-8372a5fe2631" }, "ResponseBody": [] }, @@ -9258,7 +9287,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "caaf20d17c7313045a97f72584a93887", "x-ms-return-client-request-id": "true" }, @@ -9267,17 +9296,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:29 GMT", + "Date": "Wed, 19 May 2021 18:59:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06c6dbe7-938e-47ea-a562-0d65af95dfee", - "x-ms-ratelimit-remaining-subscription-reads": "11822", - "x-ms-request-id": "06c6dbe7-938e-47ea-a562-0d65af95dfee", - "x-ms-routing-request-id": "WESTUS2:20210507T203029Z:06c6dbe7-938e-47ea-a562-0d65af95dfee" + "x-ms-correlation-request-id": "a207a857-8273-451d-b3e6-2ab027df1d0f", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "a207a857-8273-451d-b3e6-2ab027df1d0f", + "x-ms-routing-request-id": "WESTUS2:20210519T185925Z:a207a857-8273-451d-b3e6-2ab027df1d0f" }, "ResponseBody": [] }, @@ -9286,7 +9315,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80044b526c9e59d9a47e977ac805680f", "x-ms-return-client-request-id": "true" }, @@ -9295,17 +9324,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:30 GMT", + "Date": "Wed, 19 May 2021 18:59:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f883548-df44-4e24-b96e-44f0298e8849", - "x-ms-ratelimit-remaining-subscription-reads": "11821", - "x-ms-request-id": "2f883548-df44-4e24-b96e-44f0298e8849", - "x-ms-routing-request-id": "WESTUS2:20210507T203030Z:2f883548-df44-4e24-b96e-44f0298e8849" + "x-ms-correlation-request-id": "78d22ce2-0496-438b-b48c-07644f1f6dd0", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "78d22ce2-0496-438b-b48c-07644f1f6dd0", + "x-ms-routing-request-id": "WESTUS2:20210519T185926Z:78d22ce2-0496-438b-b48c-07644f1f6dd0" }, "ResponseBody": [] }, @@ -9314,7 +9343,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b7c99ccf45ae4f34fff5bf893e94e68e", "x-ms-return-client-request-id": "true" }, @@ -9323,17 +9352,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:31 GMT", + "Date": "Wed, 19 May 2021 18:59:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d1f145a-5799-4fa4-833a-6e556a4256d3", - "x-ms-ratelimit-remaining-subscription-reads": "11820", - "x-ms-request-id": "8d1f145a-5799-4fa4-833a-6e556a4256d3", - "x-ms-routing-request-id": "WESTUS2:20210507T203031Z:8d1f145a-5799-4fa4-833a-6e556a4256d3" + "x-ms-correlation-request-id": "3b43e3c2-a0ab-40bb-aa00-c73f33f49948", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "3b43e3c2-a0ab-40bb-aa00-c73f33f49948", + "x-ms-routing-request-id": "WESTUS2:20210519T185927Z:3b43e3c2-a0ab-40bb-aa00-c73f33f49948" }, "ResponseBody": [] }, @@ -9342,7 +9371,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2c638d3390a9654e465525f5e48a4b54", "x-ms-return-client-request-id": "true" }, @@ -9351,17 +9380,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:32 GMT", + "Date": "Wed, 19 May 2021 18:59:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5e8362d-ea38-41da-9e15-3e8d01173e86", - "x-ms-ratelimit-remaining-subscription-reads": "11819", - "x-ms-request-id": "f5e8362d-ea38-41da-9e15-3e8d01173e86", - "x-ms-routing-request-id": "WESTUS2:20210507T203033Z:f5e8362d-ea38-41da-9e15-3e8d01173e86" + "x-ms-correlation-request-id": "f25893ed-4d5b-4b6d-a12f-aeadaa9a6936", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "f25893ed-4d5b-4b6d-a12f-aeadaa9a6936", + "x-ms-routing-request-id": "WESTUS2:20210519T185928Z:f25893ed-4d5b-4b6d-a12f-aeadaa9a6936" }, "ResponseBody": [] }, @@ -9370,7 +9399,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e856e82f80df0dd816b581a8ac4f1b0f", "x-ms-return-client-request-id": "true" }, @@ -9379,17 +9408,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:33 GMT", + "Date": "Wed, 19 May 2021 18:59:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f1963da-af5d-4aba-9a04-529072540ed3", - "x-ms-ratelimit-remaining-subscription-reads": "11818", - "x-ms-request-id": "2f1963da-af5d-4aba-9a04-529072540ed3", - "x-ms-routing-request-id": "WESTUS2:20210507T203034Z:2f1963da-af5d-4aba-9a04-529072540ed3" + "x-ms-correlation-request-id": "94783915-a0eb-4548-b77f-3f1f84f66f38", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "94783915-a0eb-4548-b77f-3f1f84f66f38", + "x-ms-routing-request-id": "WESTUS2:20210519T185929Z:94783915-a0eb-4548-b77f-3f1f84f66f38" }, "ResponseBody": [] }, @@ -9398,7 +9427,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3a4709983ca23f664d6470581f3f6a74", "x-ms-return-client-request-id": "true" }, @@ -9407,17 +9436,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:34 GMT", + "Date": "Wed, 19 May 2021 18:59:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "448d5417-cbea-415a-8a2c-2c0494a71069", - "x-ms-ratelimit-remaining-subscription-reads": "11817", - "x-ms-request-id": "448d5417-cbea-415a-8a2c-2c0494a71069", - "x-ms-routing-request-id": "WESTUS2:20210507T203035Z:448d5417-cbea-415a-8a2c-2c0494a71069" + "x-ms-correlation-request-id": "817ca455-4770-4cd5-af6d-178d85fa9a53", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "817ca455-4770-4cd5-af6d-178d85fa9a53", + "x-ms-routing-request-id": "WESTUS2:20210519T185930Z:817ca455-4770-4cd5-af6d-178d85fa9a53" }, "ResponseBody": [] }, @@ -9426,7 +9455,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "565a6baafd3eb2aeb45516f30ea5b8f6", "x-ms-return-client-request-id": "true" }, @@ -9435,17 +9464,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:35 GMT", + "Date": "Wed, 19 May 2021 18:59:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81f227c5-8d7d-488a-a31d-19eb6a50f0e1", - "x-ms-ratelimit-remaining-subscription-reads": "11816", - "x-ms-request-id": "81f227c5-8d7d-488a-a31d-19eb6a50f0e1", - "x-ms-routing-request-id": "WESTUS2:20210507T203036Z:81f227c5-8d7d-488a-a31d-19eb6a50f0e1" + "x-ms-correlation-request-id": "1d562fab-5516-4363-9cc8-4bf4617837de", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "1d562fab-5516-4363-9cc8-4bf4617837de", + "x-ms-routing-request-id": "WESTUS2:20210519T185931Z:1d562fab-5516-4363-9cc8-4bf4617837de" }, "ResponseBody": [] }, @@ -9454,7 +9483,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da5c153a1043f2b181169b7b0f80edd6", "x-ms-return-client-request-id": "true" }, @@ -9463,17 +9492,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:36 GMT", + "Date": "Wed, 19 May 2021 18:59:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4393f269-2eff-4300-b0fc-6f3891b6ad90", - "x-ms-ratelimit-remaining-subscription-reads": "11815", - "x-ms-request-id": "4393f269-2eff-4300-b0fc-6f3891b6ad90", - "x-ms-routing-request-id": "WESTUS2:20210507T203037Z:4393f269-2eff-4300-b0fc-6f3891b6ad90" + "x-ms-correlation-request-id": "d60e7dc0-84fd-40a5-9b80-411eade6a04f", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "d60e7dc0-84fd-40a5-9b80-411eade6a04f", + "x-ms-routing-request-id": "WESTUS2:20210519T185932Z:d60e7dc0-84fd-40a5-9b80-411eade6a04f" }, "ResponseBody": [] }, @@ -9482,7 +9511,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "41fe0c4ac5f59bd15a94864d267230a7", "x-ms-return-client-request-id": "true" }, @@ -9491,17 +9520,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:37 GMT", + "Date": "Wed, 19 May 2021 18:59:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f89a8f4d-d917-4e16-9898-b7fa2819fda6", - "x-ms-ratelimit-remaining-subscription-reads": "11814", - "x-ms-request-id": "f89a8f4d-d917-4e16-9898-b7fa2819fda6", - "x-ms-routing-request-id": "WESTUS2:20210507T203038Z:f89a8f4d-d917-4e16-9898-b7fa2819fda6" + "x-ms-correlation-request-id": "c1296bb7-abd2-47b8-8cd0-9b7ffa408ba1", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "c1296bb7-abd2-47b8-8cd0-9b7ffa408ba1", + "x-ms-routing-request-id": "WESTUS2:20210519T185933Z:c1296bb7-abd2-47b8-8cd0-9b7ffa408ba1" }, "ResponseBody": [] }, @@ -9510,7 +9539,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "091e7aab8fe39931b967d4286233a234", "x-ms-return-client-request-id": "true" }, @@ -9519,17 +9548,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:38 GMT", + "Date": "Wed, 19 May 2021 18:59:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "546be27c-df69-4b9b-862b-c7d8185f040e", - "x-ms-ratelimit-remaining-subscription-reads": "11813", - "x-ms-request-id": "546be27c-df69-4b9b-862b-c7d8185f040e", - "x-ms-routing-request-id": "WESTUS2:20210507T203039Z:546be27c-df69-4b9b-862b-c7d8185f040e" + "x-ms-correlation-request-id": "9e7b2c1b-535a-4948-98ab-e6c27c1d3f7e", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "9e7b2c1b-535a-4948-98ab-e6c27c1d3f7e", + "x-ms-routing-request-id": "WESTUS2:20210519T185934Z:9e7b2c1b-535a-4948-98ab-e6c27c1d3f7e" }, "ResponseBody": [] }, @@ -9538,7 +9567,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "02a93f6877a7740144c080ae8964cc0e", "x-ms-return-client-request-id": "true" }, @@ -9547,17 +9576,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:39 GMT", + "Date": "Wed, 19 May 2021 18:59:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d2ca46f-2a2e-47b9-86c2-52dabcd0d19a", - "x-ms-ratelimit-remaining-subscription-reads": "11812", - "x-ms-request-id": "2d2ca46f-2a2e-47b9-86c2-52dabcd0d19a", - "x-ms-routing-request-id": "WESTUS2:20210507T203040Z:2d2ca46f-2a2e-47b9-86c2-52dabcd0d19a" + "x-ms-correlation-request-id": "9adf3b57-72e5-45ad-89fe-5b3a27a6b832", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "9adf3b57-72e5-45ad-89fe-5b3a27a6b832", + "x-ms-routing-request-id": "WESTUS2:20210519T185935Z:9adf3b57-72e5-45ad-89fe-5b3a27a6b832" }, "ResponseBody": [] }, @@ -9566,7 +9595,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95cff3e5e361baf3da64888ef0a93827", "x-ms-return-client-request-id": "true" }, @@ -9575,17 +9604,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:40 GMT", + "Date": "Wed, 19 May 2021 18:59:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4de89428-68a5-48c4-be77-b83c993526ae", - "x-ms-ratelimit-remaining-subscription-reads": "11811", - "x-ms-request-id": "4de89428-68a5-48c4-be77-b83c993526ae", - "x-ms-routing-request-id": "WESTUS2:20210507T203041Z:4de89428-68a5-48c4-be77-b83c993526ae" + "x-ms-correlation-request-id": "37d913dd-1bb2-4ced-86fc-47a7d873e726", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "37d913dd-1bb2-4ced-86fc-47a7d873e726", + "x-ms-routing-request-id": "WESTUS2:20210519T185936Z:37d913dd-1bb2-4ced-86fc-47a7d873e726" }, "ResponseBody": [] }, @@ -9594,7 +9623,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6e452f12ec9340078a9c5220f831054", "x-ms-return-client-request-id": "true" }, @@ -9603,17 +9632,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:41 GMT", + "Date": "Wed, 19 May 2021 18:59:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c2ef62a-c340-46fb-8651-383ed5599485", - "x-ms-ratelimit-remaining-subscription-reads": "11810", - "x-ms-request-id": "4c2ef62a-c340-46fb-8651-383ed5599485", - "x-ms-routing-request-id": "WESTUS2:20210507T203042Z:4c2ef62a-c340-46fb-8651-383ed5599485" + "x-ms-correlation-request-id": "fec14962-2d51-46a0-a6a0-a2169cb60d83", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "fec14962-2d51-46a0-a6a0-a2169cb60d83", + "x-ms-routing-request-id": "WESTUS2:20210519T185938Z:fec14962-2d51-46a0-a6a0-a2169cb60d83" }, "ResponseBody": [] }, @@ -9622,7 +9651,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6e42c69a0c6384d24bef2742ee73849b", "x-ms-return-client-request-id": "true" }, @@ -9631,17 +9660,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:42 GMT", + "Date": "Wed, 19 May 2021 18:59:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bec6e5b8-0501-4580-a281-feeb10c86e9e", - "x-ms-ratelimit-remaining-subscription-reads": "11809", - "x-ms-request-id": "bec6e5b8-0501-4580-a281-feeb10c86e9e", - "x-ms-routing-request-id": "WESTUS2:20210507T203043Z:bec6e5b8-0501-4580-a281-feeb10c86e9e" + "x-ms-correlation-request-id": "eab1db17-e728-4f6d-bec9-09885042250d", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "eab1db17-e728-4f6d-bec9-09885042250d", + "x-ms-routing-request-id": "WESTUS2:20210519T185939Z:eab1db17-e728-4f6d-bec9-09885042250d" }, "ResponseBody": [] }, @@ -9650,7 +9679,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "37bd5988e57fb645f39b1db71ed1aa57", "x-ms-return-client-request-id": "true" }, @@ -9659,17 +9688,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:43 GMT", + "Date": "Wed, 19 May 2021 18:59:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b8adb24-7597-405c-9a04-bcb641589665", - "x-ms-ratelimit-remaining-subscription-reads": "11808", - "x-ms-request-id": "5b8adb24-7597-405c-9a04-bcb641589665", - "x-ms-routing-request-id": "WESTUS2:20210507T203044Z:5b8adb24-7597-405c-9a04-bcb641589665" + "x-ms-correlation-request-id": "5733f0a8-8e94-473e-b5aa-6f9a3988f768", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "5733f0a8-8e94-473e-b5aa-6f9a3988f768", + "x-ms-routing-request-id": "WESTUS2:20210519T185940Z:5733f0a8-8e94-473e-b5aa-6f9a3988f768" }, "ResponseBody": [] }, @@ -9678,7 +9707,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2af33454ca66e4c37f609bd907bd4605", "x-ms-return-client-request-id": "true" }, @@ -9687,17 +9716,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:44 GMT", + "Date": "Wed, 19 May 2021 18:59:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8229c059-bc0d-41d4-b6d4-0bd231aa811f", - "x-ms-ratelimit-remaining-subscription-reads": "11807", - "x-ms-request-id": "8229c059-bc0d-41d4-b6d4-0bd231aa811f", - "x-ms-routing-request-id": "WESTUS2:20210507T203045Z:8229c059-bc0d-41d4-b6d4-0bd231aa811f" + "x-ms-correlation-request-id": "18efc2dd-a6ba-4540-b7e3-547ed8082c88", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "18efc2dd-a6ba-4540-b7e3-547ed8082c88", + "x-ms-routing-request-id": "WESTUS2:20210519T185941Z:18efc2dd-a6ba-4540-b7e3-547ed8082c88" }, "ResponseBody": [] }, @@ -9706,7 +9735,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b69a2a24d8c5b4d4808b7bc7ef1b667a", "x-ms-return-client-request-id": "true" }, @@ -9715,17 +9744,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:45 GMT", + "Date": "Wed, 19 May 2021 18:59:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7b45e9c-09e0-48ef-add9-fc656710cc73", - "x-ms-ratelimit-remaining-subscription-reads": "11806", - "x-ms-request-id": "b7b45e9c-09e0-48ef-add9-fc656710cc73", - "x-ms-routing-request-id": "WESTUS2:20210507T203046Z:b7b45e9c-09e0-48ef-add9-fc656710cc73" + "x-ms-correlation-request-id": "f77ba75f-1eb8-4e5b-8148-e63e4f740318", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "f77ba75f-1eb8-4e5b-8148-e63e4f740318", + "x-ms-routing-request-id": "WESTUS2:20210519T185942Z:f77ba75f-1eb8-4e5b-8148-e63e4f740318" }, "ResponseBody": [] }, @@ -9734,7 +9763,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b9eecf445a7fbe3495d8b81f4a6baf36", "x-ms-return-client-request-id": "true" }, @@ -9743,17 +9772,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:46 GMT", + "Date": "Wed, 19 May 2021 18:59:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c60476be-3b42-4f06-9cdb-75bf95747b9d", - "x-ms-ratelimit-remaining-subscription-reads": "11805", - "x-ms-request-id": "c60476be-3b42-4f06-9cdb-75bf95747b9d", - "x-ms-routing-request-id": "WESTUS2:20210507T203047Z:c60476be-3b42-4f06-9cdb-75bf95747b9d" + "x-ms-correlation-request-id": "e76a52cc-f9fb-4b73-b9a5-29ec62d1d896", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "e76a52cc-f9fb-4b73-b9a5-29ec62d1d896", + "x-ms-routing-request-id": "WESTUS2:20210519T185943Z:e76a52cc-f9fb-4b73-b9a5-29ec62d1d896" }, "ResponseBody": [] }, @@ -9762,7 +9791,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f3921755f4377c91603ea9db4efcf464", "x-ms-return-client-request-id": "true" }, @@ -9771,17 +9800,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:47 GMT", + "Date": "Wed, 19 May 2021 18:59:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a576393-be32-4222-8cff-0c0ca5052cfc", - "x-ms-ratelimit-remaining-subscription-reads": "11804", - "x-ms-request-id": "3a576393-be32-4222-8cff-0c0ca5052cfc", - "x-ms-routing-request-id": "WESTUS2:20210507T203048Z:3a576393-be32-4222-8cff-0c0ca5052cfc" + "x-ms-correlation-request-id": "6da68e13-5e36-4977-b56e-c171c04e424b", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "6da68e13-5e36-4977-b56e-c171c04e424b", + "x-ms-routing-request-id": "WESTUS2:20210519T185944Z:6da68e13-5e36-4977-b56e-c171c04e424b" }, "ResponseBody": [] }, @@ -9790,7 +9819,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "389520fa8cceca86f6db21ed20b46914", "x-ms-return-client-request-id": "true" }, @@ -9799,17 +9828,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:49 GMT", + "Date": "Wed, 19 May 2021 18:59:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f7f85e5-588b-4dbc-974e-a84b54622894", - "x-ms-ratelimit-remaining-subscription-reads": "11803", - "x-ms-request-id": "5f7f85e5-588b-4dbc-974e-a84b54622894", - "x-ms-routing-request-id": "WESTUS2:20210507T203049Z:5f7f85e5-588b-4dbc-974e-a84b54622894" + "x-ms-correlation-request-id": "f3c12e81-84ae-4f59-a48e-d98ec4bcddac", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "f3c12e81-84ae-4f59-a48e-d98ec4bcddac", + "x-ms-routing-request-id": "WESTUS2:20210519T185945Z:f3c12e81-84ae-4f59-a48e-d98ec4bcddac" }, "ResponseBody": [] }, @@ -9818,7 +9847,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d87244dc72884f433d725940b1586f99", "x-ms-return-client-request-id": "true" }, @@ -9827,17 +9856,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:50 GMT", + "Date": "Wed, 19 May 2021 18:59:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60a41b9d-beaf-443f-bf52-b9cbde0b59df", - "x-ms-ratelimit-remaining-subscription-reads": "11802", - "x-ms-request-id": "60a41b9d-beaf-443f-bf52-b9cbde0b59df", - "x-ms-routing-request-id": "WESTUS2:20210507T203051Z:60a41b9d-beaf-443f-bf52-b9cbde0b59df" + "x-ms-correlation-request-id": "fc6764d7-9bf3-4374-89c1-c9bd335935ac", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "fc6764d7-9bf3-4374-89c1-c9bd335935ac", + "x-ms-routing-request-id": "WESTUS2:20210519T185946Z:fc6764d7-9bf3-4374-89c1-c9bd335935ac" }, "ResponseBody": [] }, @@ -9846,7 +9875,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2a2454e376d5c96791c8fd5bd3a45bab", "x-ms-return-client-request-id": "true" }, @@ -9855,17 +9884,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:51 GMT", + "Date": "Wed, 19 May 2021 18:59:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27957d9d-7947-4625-a993-ca895e66a9e5", - "x-ms-ratelimit-remaining-subscription-reads": "11801", - "x-ms-request-id": "27957d9d-7947-4625-a993-ca895e66a9e5", - "x-ms-routing-request-id": "WESTUS2:20210507T203052Z:27957d9d-7947-4625-a993-ca895e66a9e5" + "x-ms-correlation-request-id": "e3f02cde-bdd5-458d-bfca-bb1d15580167", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "e3f02cde-bdd5-458d-bfca-bb1d15580167", + "x-ms-routing-request-id": "WESTUS2:20210519T185947Z:e3f02cde-bdd5-458d-bfca-bb1d15580167" }, "ResponseBody": [] }, @@ -9874,23 +9903,107 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0aff94d51c8987dbdd46fb5c3245189d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:59:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "864869d5-ffb9-491e-9d3b-e74217dcff80", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "864869d5-ffb9-491e-9d3b-e74217dcff80", + "x-ms-routing-request-id": "WESTUS2:20210519T185948Z:864869d5-ffb9-491e-9d3b-e74217dcff80" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cc09886c3f8f653edda947c075e87b98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:59:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "261a795b-f73f-43fa-a408-ed38495980e3", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "261a795b-f73f-43fa-a408-ed38495980e3", + "x-ms-routing-request-id": "WESTUS2:20210519T185949Z:261a795b-f73f-43fa-a408-ed38495980e3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1c6bae166459c70f789d4d8f7b0a964b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 18:59:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "80554568-59e5-4c4f-be49-57d70ca42516", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "80554568-59e5-4c4f-be49-57d70ca42516", + "x-ms-routing-request-id": "WESTUS2:20210519T185950Z:80554568-59e5-4c4f-be49-57d70ca42516" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4bee5faf8f9a951b56992de0d51b12f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 07 May 2021 20:30:52 GMT", + "Date": "Wed, 19 May 2021 18:59:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91a68118-161c-4dbe-8a79-f2e86d97adbb", - "x-ms-ratelimit-remaining-subscription-reads": "11800", - "x-ms-request-id": "91a68118-161c-4dbe-8a79-f2e86d97adbb", - "x-ms-routing-request-id": "WESTUS2:20210507T203053Z:91a68118-161c-4dbe-8a79-f2e86d97adbb" + "x-ms-correlation-request-id": "f576e6c0-9458-4f3e-97bf-8f67d90c3eb2", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "f576e6c0-9458-4f3e-97bf-8f67d90c3eb2", + "x-ms-routing-request-id": "WESTUS2:20210519T185951Z:f576e6c0-9458-4f3e-97bf-8f67d90c3eb2" }, "ResponseBody": [] }, @@ -9900,8 +10013,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cc09886c3f8f653edda947c075e87b98", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "844662cafcd90744784253f2f2afead2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -9910,15 +10023,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:30:52 GMT", + "Date": "Wed, 19 May 2021 18:59:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6611eb4a-d11c-4a26-9d71-6dd3b8801055", - "x-ms-ratelimit-remaining-subscription-reads": "11799", - "x-ms-request-id": "6611eb4a-d11c-4a26-9d71-6dd3b8801055", - "x-ms-routing-request-id": "WESTUS2:20210507T203053Z:6611eb4a-d11c-4a26-9d71-6dd3b8801055" + "x-ms-correlation-request-id": "ea516412-2c14-4b7f-ae6a-52fd4afd161c", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "ea516412-2c14-4b7f-ae6a-52fd4afd161c", + "x-ms-routing-request-id": "WESTUS2:20210519T185951Z:ea516412-2c14-4b7f-ae6a-52fd4afd161c" }, "ResponseBody": { "value": [] @@ -9930,8 +10043,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1c6bae166459c70f789d4d8f7b0a964b", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1610fb1230f986fd92d5c6c0372ff25d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -9940,15 +10053,15 @@ "Cache-Control": "no-cache", "Content-Length": "280", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:30:52 GMT", + "Date": "Wed, 19 May 2021 18:59:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1262560-0dba-4cee-987c-971e34cadf87", - "x-ms-ratelimit-remaining-subscription-reads": "11798", - "x-ms-request-id": "b1262560-0dba-4cee-987c-971e34cadf87", - "x-ms-routing-request-id": "WESTUS2:20210507T203053Z:b1262560-0dba-4cee-987c-971e34cadf87" + "x-ms-correlation-request-id": "49731b58-0b64-4249-8b93-55aaa0d66931", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "49731b58-0b64-4249-8b93-55aaa0d66931", + "x-ms-routing-request-id": "WESTUS2:20210519T185951Z:49731b58-0b64-4249-8b93-55aaa0d66931" }, "ResponseBody": { "value": [ diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources()Async.json index 5bb1bbafb3e7..f65742e002f8 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-51cdc42391c91640955500b6b1b2fa27-c6710966853e5742-00", + "traceparent": "00-76ffb3dfdb2cff49bdc3a62f68b8e690-c970604e320cfd42-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e7f08a352bd75ae5cd47185ebc1fda2e", "x-ms-return-client-request-id": "true" @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:18:07 GMT", + "Date": "Wed, 19 May 2021 18:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f694c7d5-779e-4f36-942d-1e5164a6ca21", - "x-ms-ratelimit-remaining-subscription-reads": "11608", - "x-ms-request-id": "f694c7d5-779e-4f36-942d-1e5164a6ca21", - "x-ms-routing-request-id": "WESTUS2:20210507T011808Z:f694c7d5-779e-4f36-942d-1e5164a6ca21" + "x-ms-correlation-request-id": "b6aebad6-551d-4042-85b6-f71bb8548f39", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "b6aebad6-551d-4042-85b6-f71bb8548f39", + "x-ms-routing-request-id": "WESTUS2:20210519T185618Z:b6aebad6-551d-4042-85b6-f71bb8548f39" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-fa488ab086d3914c9183d6669ae83960-300452a3b0ccf845-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d7adec4991c84f4581e39a6541902f3f-32f6169b40c64242-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aaaeb8e720ca6f2980ec7b8fe6f9d0de", "x-ms-return-client-request-id": "true" }, @@ -64,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:18:07 GMT", + "Date": "Wed, 19 May 2021 18:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2360c3f9-7a75-49d2-bb86-c2f43967e27c", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "2360c3f9-7a75-49d2-bb86-c2f43967e27c", - "x-ms-routing-request-id": "WESTUS2:20210507T011808Z:2360c3f9-7a75-49d2-bb86-c2f43967e27c" + "x-ms-correlation-request-id": "f6a32ebf-064a-4ffa-8395-29aa2caa60b1", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "f6a32ebf-064a-4ffa-8395-29aa2caa60b1", + "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:f6a32ebf-064a-4ffa-8395-29aa2caa60b1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8421", @@ -93,8 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-f22b635b56fa5e41af8cbd1d59875b99-f59f9b713c262543-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e543fbfe5d444941b1616fbaed2139cf-e3085a1dd0097b4b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "11fcd58594063f9ac2066dd416b6c43c", "x-ms-return-client-request-id": "true" }, @@ -107,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:18:08 GMT", + "Date": "Wed, 19 May 2021 18:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42c222eb-4043-4480-83ce-768aca40fcc3", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "42c222eb-4043-4480-83ce-768aca40fcc3", - "x-ms-routing-request-id": "WESTUS2:20210507T011809Z:42c222eb-4043-4480-83ce-768aca40fcc3" + "x-ms-correlation-request-id": "2f322faa-3676-4eee-bfbc-0cf01729a452", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "2f322faa-3676-4eee-bfbc-0cf01729a452", + "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:2f322faa-3676-4eee-bfbc-0cf01729a452" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572", @@ -134,7 +134,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6700fbe6b005224888f72d56662d2fe6-11a7764222e0b646-00", + "traceparent": "00-d36499441f805d40a797f02145218e60-f84821e7e1ed7c4a-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c738ae86a6a78c7573f69cbe64d487f", "x-ms-return-client-request-id": "true" @@ -143,17 +143,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "52611", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:18:08 GMT", + "Date": "Wed, 19 May 2021 18:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b799c8ad-ac5f-41a7-ac1c-31ce0ba03011", - "x-ms-ratelimit-remaining-subscription-reads": "11607", - "x-ms-request-id": "b799c8ad-ac5f-41a7-ac1c-31ce0ba03011", - "x-ms-routing-request-id": "WESTUS2:20210507T011809Z:b799c8ad-ac5f-41a7-ac1c-31ce0ba03011" + "x-ms-correlation-request-id": "eef39077-4140-4b31-82bd-812d5bbdcad9", + "x-ms-ratelimit-remaining-subscription-reads": "11411", + "x-ms-request-id": "eef39077-4140-4b31-82bd-812d5bbdcad9", + "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:eef39077-4140-4b31-82bd-812d5bbdcad9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -477,6 +477,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -762,6 +766,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -2780,6 +2788,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -3188,6 +3200,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3848,6 +3864,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4036,6 +4056,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4053,8 +4077,8 @@ "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-6700fbe6b005224888f72d56662d2fe6-4ee3e66ba378074f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d36499441f805d40a797f02145218e60-d0fc59cf051abe49-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31059992e01613246a071abb9a6935b6", "x-ms-return-client-request-id": "true" }, @@ -4074,7 +4098,7 @@ "Cache-Control": "no-cache", "Content-Length": "406", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:18:08 GMT", + "Date": "Wed, 19 May 2021 18:56:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4084,11 +4108,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "31059992e01613246a071abb9a6935b6", - "x-ms-correlation-request-id": "bb84a50d-1173-41c1-80b7-3c2f79756b76", + "x-ms-correlation-request-id": "5687ad28-87d5-4abd-bf58-565d243f4311", "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "d04dba3e-522a-44dd-a448-04a10a0d74ce", - "x-ms-routing-request-id": "WESTUS2:20210507T011809Z:bb84a50d-1173-41c1-80b7-3c2f79756b76" + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-request-id": "832fdf87-ff51-4e88-82c8-dbea7b6d8627", + "x-ms-routing-request-id": "WESTUS2:20210519T185620Z:5687ad28-87d5-4abd-bf58-565d243f4311" }, "ResponseBody": [ "{\r\n", @@ -4113,7 +4137,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1c8355250bbf07296560d2624f0bdded", "x-ms-return-client-request-id": "true" }, @@ -4123,15 +4147,15 @@ "Cache-Control": "no-cache", "Content-Length": "278", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:18:08 GMT", + "Date": "Wed, 19 May 2021 18:56:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a74ab51-98d1-440f-ac0b-113df4c0f785", - "x-ms-ratelimit-remaining-subscription-reads": "11606", - "x-ms-request-id": "4a74ab51-98d1-440f-ac0b-113df4c0f785", - "x-ms-routing-request-id": "WESTUS2:20210507T011809Z:4a74ab51-98d1-440f-ac0b-113df4c0f785" + "x-ms-correlation-request-id": "983afb12-2399-4b12-a1f6-78a6426f34bb", + "x-ms-ratelimit-remaining-subscription-reads": "11410", + "x-ms-request-id": "983afb12-2399-4b12-a1f6-78a6426f34bb", + "x-ms-routing-request-id": "WESTUS2:20210519T185620Z:983afb12-2399-4b12-a1f6-78a6426f34bb" }, "ResponseBody": { "value": [ @@ -4154,7 +4178,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3f78b309023da5147e9afc7d30cfe3f6", "x-ms-return-client-request-id": "true" }, @@ -4164,15 +4188,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:18:08 GMT", + "Date": "Wed, 19 May 2021 18:56:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc244d08-ed97-433d-96b9-c4a77384211e", - "x-ms-ratelimit-remaining-subscription-reads": "11605", - "x-ms-request-id": "dc244d08-ed97-433d-96b9-c4a77384211e", - "x-ms-routing-request-id": "WESTUS2:20210507T011809Z:dc244d08-ed97-433d-96b9-c4a77384211e" + "x-ms-correlation-request-id": "a973aa45-dc1f-4ed9-b00c-1696aeb363df", + "x-ms-ratelimit-remaining-subscription-reads": "11409", + "x-ms-request-id": "a973aa45-dc1f-4ed9-b00c-1696aeb363df", + "x-ms-routing-request-id": "WESTUS2:20210519T185620Z:a973aa45-dc1f-4ed9-b00c-1696aeb363df" }, "ResponseBody": { "value": [] @@ -4186,8 +4210,8 @@ "Authorization": "Sanitized", "Content-Length": "255", "Content-Type": "application/json", - "traceparent": "00-3a6b12b6572fba4397b7841dc4a94f87-bb38a003a891934a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f925bf10bc02f84482840fcc11b203bd-10944eb7d8cfd644-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4595622b19e547f67d08e00a1ab71b29", "x-ms-return-client-request-id": "true" }, @@ -4201,17 +4225,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:09 GMT", + "Date": "Wed, 19 May 2021 18:56:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "733cf242-cdd2-4162-8b7a-5ed1de0baaf0", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "733cf242-cdd2-4162-8b7a-5ed1de0baaf0", - "x-ms-routing-request-id": "WESTUS2:20210507T011810Z:733cf242-cdd2-4162-8b7a-5ed1de0baaf0" + "x-ms-correlation-request-id": "a973cec2-2904-4868-a14f-5f2afddc9c61", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "a973cec2-2904-4868-a14f-5f2afddc9c61", + "x-ms-routing-request-id": "WESTUS2:20210519T185620Z:a973cec2-2904-4868-a14f-5f2afddc9c61" }, "ResponseBody": [] }, @@ -4220,7 +4244,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec37dc7d9776f008bc31c23421098bc6", "x-ms-return-client-request-id": "true" }, @@ -4229,17 +4253,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:09 GMT", + "Date": "Wed, 19 May 2021 18:56:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a977e4b-7a61-452b-be5f-52c22fa6ca6c", - "x-ms-ratelimit-remaining-subscription-reads": "11604", - "x-ms-request-id": "7a977e4b-7a61-452b-be5f-52c22fa6ca6c", - "x-ms-routing-request-id": "WESTUS2:20210507T011810Z:7a977e4b-7a61-452b-be5f-52c22fa6ca6c" + "x-ms-correlation-request-id": "9c072f0a-b48b-43bd-b89e-f05a0be99d3e", + "x-ms-ratelimit-remaining-subscription-reads": "11408", + "x-ms-request-id": "9c072f0a-b48b-43bd-b89e-f05a0be99d3e", + "x-ms-routing-request-id": "WESTUS2:20210519T185620Z:9c072f0a-b48b-43bd-b89e-f05a0be99d3e" }, "ResponseBody": [] }, @@ -4248,7 +4272,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6fc1d27e66858efae77104077bd038d1", "x-ms-return-client-request-id": "true" }, @@ -4257,17 +4281,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:10 GMT", + "Date": "Wed, 19 May 2021 18:56:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7daee216-c46a-4211-950f-c23361567da6", - "x-ms-ratelimit-remaining-subscription-reads": "11602", - "x-ms-request-id": "7daee216-c46a-4211-950f-c23361567da6", - "x-ms-routing-request-id": "WESTUS2:20210507T011811Z:7daee216-c46a-4211-950f-c23361567da6" + "x-ms-correlation-request-id": "70fbf349-bb0c-471b-9e11-f62a8256641e", + "x-ms-ratelimit-remaining-subscription-reads": "11406", + "x-ms-request-id": "70fbf349-bb0c-471b-9e11-f62a8256641e", + "x-ms-routing-request-id": "WESTUS2:20210519T185621Z:70fbf349-bb0c-471b-9e11-f62a8256641e" }, "ResponseBody": [] }, @@ -4276,7 +4300,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3e8d4a312e8024b3b95abfcada460136", "x-ms-return-client-request-id": "true" }, @@ -4285,17 +4309,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:11 GMT", + "Date": "Wed, 19 May 2021 18:56:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6821a6b4-a8bf-43bc-82c5-57f206a062e7", - "x-ms-ratelimit-remaining-subscription-reads": "11600", - "x-ms-request-id": "6821a6b4-a8bf-43bc-82c5-57f206a062e7", - "x-ms-routing-request-id": "WESTUS2:20210507T011812Z:6821a6b4-a8bf-43bc-82c5-57f206a062e7" + "x-ms-correlation-request-id": "9bb95f52-b94c-494a-8f7f-8f90810f515a", + "x-ms-ratelimit-remaining-subscription-reads": "11404", + "x-ms-request-id": "9bb95f52-b94c-494a-8f7f-8f90810f515a", + "x-ms-routing-request-id": "WESTUS2:20210519T185622Z:9bb95f52-b94c-494a-8f7f-8f90810f515a" }, "ResponseBody": [] }, @@ -4304,7 +4328,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3ca6d65267ea1610e1a80504920075ec", "x-ms-return-client-request-id": "true" }, @@ -4313,17 +4337,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:12 GMT", + "Date": "Wed, 19 May 2021 18:56:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81a3b151-b00b-4b27-8f8b-2a69d3fdfb51", - "x-ms-ratelimit-remaining-subscription-reads": "11598", - "x-ms-request-id": "81a3b151-b00b-4b27-8f8b-2a69d3fdfb51", - "x-ms-routing-request-id": "WESTUS2:20210507T011813Z:81a3b151-b00b-4b27-8f8b-2a69d3fdfb51" + "x-ms-correlation-request-id": "52668406-dbb3-4045-aa39-44d099d058de", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "52668406-dbb3-4045-aa39-44d099d058de", + "x-ms-routing-request-id": "WESTUS2:20210519T185623Z:52668406-dbb3-4045-aa39-44d099d058de" }, "ResponseBody": [] }, @@ -4332,7 +4356,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d702f0f84c7c50461e9cb62ba62fb4a0", "x-ms-return-client-request-id": "true" }, @@ -4341,17 +4365,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:13 GMT", + "Date": "Wed, 19 May 2021 18:56:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aaaffde1-e72b-4a33-8df0-f49d5529cdda", - "x-ms-ratelimit-remaining-subscription-reads": "11596", - "x-ms-request-id": "aaaffde1-e72b-4a33-8df0-f49d5529cdda", - "x-ms-routing-request-id": "WESTUS2:20210507T011814Z:aaaffde1-e72b-4a33-8df0-f49d5529cdda" + "x-ms-correlation-request-id": "19065b98-e4fb-4ed0-944e-b737763c4b54", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "19065b98-e4fb-4ed0-944e-b737763c4b54", + "x-ms-routing-request-id": "WESTUS2:20210519T185624Z:19065b98-e4fb-4ed0-944e-b737763c4b54" }, "ResponseBody": [] }, @@ -4360,7 +4384,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a4b5ce6ffb29cae73a765cd729af91b8", "x-ms-return-client-request-id": "true" }, @@ -4369,17 +4393,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:14 GMT", + "Date": "Wed, 19 May 2021 18:56:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd16153a-9b6a-4826-9984-3c710d5d4cff", - "x-ms-ratelimit-remaining-subscription-reads": "11594", - "x-ms-request-id": "fd16153a-9b6a-4826-9984-3c710d5d4cff", - "x-ms-routing-request-id": "WESTUS2:20210507T011815Z:fd16153a-9b6a-4826-9984-3c710d5d4cff" + "x-ms-correlation-request-id": "c27bb440-dbc7-43a3-b3f3-c7ed9b3f9507", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "c27bb440-dbc7-43a3-b3f3-c7ed9b3f9507", + "x-ms-routing-request-id": "WESTUS2:20210519T185626Z:c27bb440-dbc7-43a3-b3f3-c7ed9b3f9507" }, "ResponseBody": [] }, @@ -4388,7 +4412,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ead2d3e42a4405ba90561d4eb1e570b2", "x-ms-return-client-request-id": "true" }, @@ -4397,17 +4421,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:15 GMT", + "Date": "Wed, 19 May 2021 18:56:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfe2675e-6874-46c0-86f8-9eb831f52a31", - "x-ms-ratelimit-remaining-subscription-reads": "11592", - "x-ms-request-id": "dfe2675e-6874-46c0-86f8-9eb831f52a31", - "x-ms-routing-request-id": "WESTUS2:20210507T011816Z:dfe2675e-6874-46c0-86f8-9eb831f52a31" + "x-ms-correlation-request-id": "c0128f7f-4d65-41d7-ad00-e121eb79d951", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "c0128f7f-4d65-41d7-ad00-e121eb79d951", + "x-ms-routing-request-id": "WESTUS2:20210519T185627Z:c0128f7f-4d65-41d7-ad00-e121eb79d951" }, "ResponseBody": [] }, @@ -4416,7 +4440,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c49465f4d04bfcc209389c05f06e276f", "x-ms-return-client-request-id": "true" }, @@ -4425,17 +4449,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:16 GMT", + "Date": "Wed, 19 May 2021 18:56:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f00d5095-79e2-4f19-a164-6f9f0170a32a", - "x-ms-ratelimit-remaining-subscription-reads": "11590", - "x-ms-request-id": "f00d5095-79e2-4f19-a164-6f9f0170a32a", - "x-ms-routing-request-id": "WESTUS2:20210507T011817Z:f00d5095-79e2-4f19-a164-6f9f0170a32a" + "x-ms-correlation-request-id": "2b411c0d-b160-495f-b6ba-be52f40a33d2", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "2b411c0d-b160-495f-b6ba-be52f40a33d2", + "x-ms-routing-request-id": "WESTUS2:20210519T185628Z:2b411c0d-b160-495f-b6ba-be52f40a33d2" }, "ResponseBody": [] }, @@ -4444,7 +4468,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d246fd0aca5c455b13af14d3dd981855", "x-ms-return-client-request-id": "true" }, @@ -4453,17 +4477,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:17 GMT", + "Date": "Wed, 19 May 2021 18:56:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2dea537-2012-4c74-91f7-33f5248668ba", - "x-ms-ratelimit-remaining-subscription-reads": "11588", - "x-ms-request-id": "a2dea537-2012-4c74-91f7-33f5248668ba", - "x-ms-routing-request-id": "WESTUS2:20210507T011818Z:a2dea537-2012-4c74-91f7-33f5248668ba" + "x-ms-correlation-request-id": "85659ad5-4f0c-4f91-9b21-91f26475a390", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "85659ad5-4f0c-4f91-9b21-91f26475a390", + "x-ms-routing-request-id": "WESTUS2:20210519T185629Z:85659ad5-4f0c-4f91-9b21-91f26475a390" }, "ResponseBody": [] }, @@ -4472,7 +4496,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c3e3a905cc1b146d11d5e00c8eb41521", "x-ms-return-client-request-id": "true" }, @@ -4481,17 +4505,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:18 GMT", + "Date": "Wed, 19 May 2021 18:56:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66bd7711-e725-46cd-9ce1-da8e8334f036", - "x-ms-ratelimit-remaining-subscription-reads": "11586", - "x-ms-request-id": "66bd7711-e725-46cd-9ce1-da8e8334f036", - "x-ms-routing-request-id": "WESTUS2:20210507T011819Z:66bd7711-e725-46cd-9ce1-da8e8334f036" + "x-ms-correlation-request-id": "ac4deaaa-a498-40a9-8a78-a546b1d0c445", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "ac4deaaa-a498-40a9-8a78-a546b1d0c445", + "x-ms-routing-request-id": "WESTUS2:20210519T185630Z:ac4deaaa-a498-40a9-8a78-a546b1d0c445" }, "ResponseBody": [] }, @@ -4500,7 +4524,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b443ae2f9e9f2a55094eb19cbcee1e70", "x-ms-return-client-request-id": "true" }, @@ -4509,17 +4533,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:19 GMT", + "Date": "Wed, 19 May 2021 18:56:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76e8176c-6ed7-41ae-b968-2acb4b0b53b5", - "x-ms-ratelimit-remaining-subscription-reads": "11584", - "x-ms-request-id": "76e8176c-6ed7-41ae-b968-2acb4b0b53b5", - "x-ms-routing-request-id": "WESTUS2:20210507T011820Z:76e8176c-6ed7-41ae-b968-2acb4b0b53b5" + "x-ms-correlation-request-id": "7a4b6316-fcd6-47b3-917b-e3f20e9c34ae", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "7a4b6316-fcd6-47b3-917b-e3f20e9c34ae", + "x-ms-routing-request-id": "WESTUS2:20210519T185631Z:7a4b6316-fcd6-47b3-917b-e3f20e9c34ae" }, "ResponseBody": [] }, @@ -4528,7 +4552,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46ff471f638b3d539032c087e94fb65e", "x-ms-return-client-request-id": "true" }, @@ -4537,17 +4561,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:21 GMT", + "Date": "Wed, 19 May 2021 18:56:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "920a01ed-c5e9-4504-a67a-fabf4c09a023", - "x-ms-ratelimit-remaining-subscription-reads": "11582", - "x-ms-request-id": "920a01ed-c5e9-4504-a67a-fabf4c09a023", - "x-ms-routing-request-id": "WESTUS2:20210507T011821Z:920a01ed-c5e9-4504-a67a-fabf4c09a023" + "x-ms-correlation-request-id": "cbe695c3-7f8c-4580-b78f-b7e891632308", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "cbe695c3-7f8c-4580-b78f-b7e891632308", + "x-ms-routing-request-id": "WESTUS2:20210519T185632Z:cbe695c3-7f8c-4580-b78f-b7e891632308" }, "ResponseBody": [] }, @@ -4556,7 +4580,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2fa3f299645567b654b9bacc1bd05723", "x-ms-return-client-request-id": "true" }, @@ -4565,17 +4589,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:22 GMT", + "Date": "Wed, 19 May 2021 18:56:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f38ad7c-e7c8-4f70-bb55-13119633afed", - "x-ms-ratelimit-remaining-subscription-reads": "11580", - "x-ms-request-id": "4f38ad7c-e7c8-4f70-bb55-13119633afed", - "x-ms-routing-request-id": "WESTUS2:20210507T011822Z:4f38ad7c-e7c8-4f70-bb55-13119633afed" + "x-ms-correlation-request-id": "c942df0c-5118-4eda-a2cf-dfcaea6f1eea", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "c942df0c-5118-4eda-a2cf-dfcaea6f1eea", + "x-ms-routing-request-id": "WESTUS2:20210519T185633Z:c942df0c-5118-4eda-a2cf-dfcaea6f1eea" }, "ResponseBody": [] }, @@ -4584,7 +4608,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46ec70b7cfb4cc965b05246cdece40b9", "x-ms-return-client-request-id": "true" }, @@ -4593,17 +4617,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:23 GMT", + "Date": "Wed, 19 May 2021 18:56:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "628f373d-7754-4ab2-bef2-8e0e938c0963", - "x-ms-ratelimit-remaining-subscription-reads": "11578", - "x-ms-request-id": "628f373d-7754-4ab2-bef2-8e0e938c0963", - "x-ms-routing-request-id": "WESTUS2:20210507T011823Z:628f373d-7754-4ab2-bef2-8e0e938c0963" + "x-ms-correlation-request-id": "2c8a5d11-f165-45b3-b8cb-c4a57a3ed968", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "2c8a5d11-f165-45b3-b8cb-c4a57a3ed968", + "x-ms-routing-request-id": "WESTUS2:20210519T185634Z:2c8a5d11-f165-45b3-b8cb-c4a57a3ed968" }, "ResponseBody": [] }, @@ -4612,7 +4636,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9025298ef4bbb1a9198f2d1a88622bf", "x-ms-return-client-request-id": "true" }, @@ -4621,17 +4645,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:24 GMT", + "Date": "Wed, 19 May 2021 18:56:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "594b1bf4-f865-430c-9ec1-d5d0456fb214", - "x-ms-ratelimit-remaining-subscription-reads": "11576", - "x-ms-request-id": "594b1bf4-f865-430c-9ec1-d5d0456fb214", - "x-ms-routing-request-id": "WESTUS2:20210507T011824Z:594b1bf4-f865-430c-9ec1-d5d0456fb214" + "x-ms-correlation-request-id": "5091d7a9-9faa-4513-aa5d-82a378d0a70c", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "5091d7a9-9faa-4513-aa5d-82a378d0a70c", + "x-ms-routing-request-id": "WESTUS2:20210519T185635Z:5091d7a9-9faa-4513-aa5d-82a378d0a70c" }, "ResponseBody": [] }, @@ -4640,7 +4664,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "78d09dda7063caaa5bd6d3503f498985", "x-ms-return-client-request-id": "true" }, @@ -4649,17 +4673,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:25 GMT", + "Date": "Wed, 19 May 2021 18:56:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b336fd85-4abe-4e4f-bb6a-d104e05dd174", - "x-ms-ratelimit-remaining-subscription-reads": "11574", - "x-ms-request-id": "b336fd85-4abe-4e4f-bb6a-d104e05dd174", - "x-ms-routing-request-id": "WESTUS2:20210507T011825Z:b336fd85-4abe-4e4f-bb6a-d104e05dd174" + "x-ms-correlation-request-id": "85a19b43-a8b4-42c2-ab8f-0b47b803c092", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "85a19b43-a8b4-42c2-ab8f-0b47b803c092", + "x-ms-routing-request-id": "WESTUS2:20210519T185636Z:85a19b43-a8b4-42c2-ab8f-0b47b803c092" }, "ResponseBody": [] }, @@ -4668,7 +4692,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c93400788ecec7d75630b41cdcc524d4", "x-ms-return-client-request-id": "true" }, @@ -4677,17 +4701,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:26 GMT", + "Date": "Wed, 19 May 2021 18:56:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4fa80c7-989b-42a4-93cc-ba5d905f7fad", - "x-ms-ratelimit-remaining-subscription-reads": "11572", - "x-ms-request-id": "d4fa80c7-989b-42a4-93cc-ba5d905f7fad", - "x-ms-routing-request-id": "WESTUS2:20210507T011826Z:d4fa80c7-989b-42a4-93cc-ba5d905f7fad" + "x-ms-correlation-request-id": "1a659246-e1d2-45d8-b57f-68dfa396d509", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "1a659246-e1d2-45d8-b57f-68dfa396d509", + "x-ms-routing-request-id": "WESTUS2:20210519T185637Z:1a659246-e1d2-45d8-b57f-68dfa396d509" }, "ResponseBody": [] }, @@ -4696,7 +4720,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "409264e3c8fe2756a7386d741bca7c48", "x-ms-return-client-request-id": "true" }, @@ -4705,17 +4729,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:27 GMT", + "Date": "Wed, 19 May 2021 18:56:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e25e0859-74bd-4a7b-bf79-4ef3f88db847", - "x-ms-ratelimit-remaining-subscription-reads": "11570", - "x-ms-request-id": "e25e0859-74bd-4a7b-bf79-4ef3f88db847", - "x-ms-routing-request-id": "WESTUS2:20210507T011827Z:e25e0859-74bd-4a7b-bf79-4ef3f88db847" + "x-ms-correlation-request-id": "f1d5e1d9-fd34-4add-8801-331c8ab0accb", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "f1d5e1d9-fd34-4add-8801-331c8ab0accb", + "x-ms-routing-request-id": "WESTUS2:20210519T185638Z:f1d5e1d9-fd34-4add-8801-331c8ab0accb" }, "ResponseBody": [] }, @@ -4724,7 +4748,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a7596c0f58524cf1c5082232bb8eed96", "x-ms-return-client-request-id": "true" }, @@ -4733,17 +4757,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:28 GMT", + "Date": "Wed, 19 May 2021 18:56:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "131d6fbb-c380-4089-841b-88dff8c5b9f9", - "x-ms-ratelimit-remaining-subscription-reads": "11568", - "x-ms-request-id": "131d6fbb-c380-4089-841b-88dff8c5b9f9", - "x-ms-routing-request-id": "WESTUS2:20210507T011828Z:131d6fbb-c380-4089-841b-88dff8c5b9f9" + "x-ms-correlation-request-id": "70c7a39f-40da-4e0b-84c7-ab6aa2b7aa87", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "70c7a39f-40da-4e0b-84c7-ab6aa2b7aa87", + "x-ms-routing-request-id": "WESTUS2:20210519T185639Z:70c7a39f-40da-4e0b-84c7-ab6aa2b7aa87" }, "ResponseBody": [] }, @@ -4752,7 +4776,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da6dffb248b6b087aa0c21952063ab8b", "x-ms-return-client-request-id": "true" }, @@ -4761,17 +4785,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:29 GMT", + "Date": "Wed, 19 May 2021 18:56:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a3c2871-f4c7-46fe-a9f9-d9d76782ccba", - "x-ms-ratelimit-remaining-subscription-reads": "11566", - "x-ms-request-id": "8a3c2871-f4c7-46fe-a9f9-d9d76782ccba", - "x-ms-routing-request-id": "WESTUS2:20210507T011829Z:8a3c2871-f4c7-46fe-a9f9-d9d76782ccba" + "x-ms-correlation-request-id": "8264aed1-df46-489b-8ce4-2535e496f7bf", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "8264aed1-df46-489b-8ce4-2535e496f7bf", + "x-ms-routing-request-id": "WESTUS2:20210519T185640Z:8264aed1-df46-489b-8ce4-2535e496f7bf" }, "ResponseBody": [] }, @@ -4780,7 +4804,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "700c6cb47c6b8a8173467bf5a5246c19", "x-ms-return-client-request-id": "true" }, @@ -4789,17 +4813,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:30 GMT", + "Date": "Wed, 19 May 2021 18:56:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11e4537e-9ca6-4017-a297-6c830580b59d", - "x-ms-ratelimit-remaining-subscription-reads": "11564", - "x-ms-request-id": "11e4537e-9ca6-4017-a297-6c830580b59d", - "x-ms-routing-request-id": "WESTUS2:20210507T011830Z:11e4537e-9ca6-4017-a297-6c830580b59d" + "x-ms-correlation-request-id": "3d938b79-057d-4b6a-b46f-c70f2d527016", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "3d938b79-057d-4b6a-b46f-c70f2d527016", + "x-ms-routing-request-id": "WESTUS2:20210519T185641Z:3d938b79-057d-4b6a-b46f-c70f2d527016" }, "ResponseBody": [] }, @@ -4808,7 +4832,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1cc1d74aa15cc792e5a8fd45375b2b62", "x-ms-return-client-request-id": "true" }, @@ -4817,17 +4841,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:31 GMT", + "Date": "Wed, 19 May 2021 18:56:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a8eb722-9fc4-48b6-b40d-63761afda55a", - "x-ms-ratelimit-remaining-subscription-reads": "11562", - "x-ms-request-id": "2a8eb722-9fc4-48b6-b40d-63761afda55a", - "x-ms-routing-request-id": "WESTUS2:20210507T011831Z:2a8eb722-9fc4-48b6-b40d-63761afda55a" + "x-ms-correlation-request-id": "8b952c1d-28d6-4597-b978-060119e02ccf", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "8b952c1d-28d6-4597-b978-060119e02ccf", + "x-ms-routing-request-id": "WESTUS2:20210519T185642Z:8b952c1d-28d6-4597-b978-060119e02ccf" }, "ResponseBody": [] }, @@ -4836,7 +4860,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4f7d965c7d81362a7de2676fcc910b85", "x-ms-return-client-request-id": "true" }, @@ -4845,17 +4869,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:32 GMT", + "Date": "Wed, 19 May 2021 18:56:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26eeb5cf-1299-43cd-85c9-9a7fb25f9f1e", - "x-ms-ratelimit-remaining-subscription-reads": "11560", - "x-ms-request-id": "26eeb5cf-1299-43cd-85c9-9a7fb25f9f1e", - "x-ms-routing-request-id": "WESTUS2:20210507T011833Z:26eeb5cf-1299-43cd-85c9-9a7fb25f9f1e" + "x-ms-correlation-request-id": "7644a71a-d8ed-409b-ae4d-8d5ada023849", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "7644a71a-d8ed-409b-ae4d-8d5ada023849", + "x-ms-routing-request-id": "WESTUS2:20210519T185643Z:7644a71a-d8ed-409b-ae4d-8d5ada023849" }, "ResponseBody": [] }, @@ -4864,7 +4888,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "494b07a08fa1132eda448ac37f3c5318", "x-ms-return-client-request-id": "true" }, @@ -4873,17 +4897,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:33 GMT", + "Date": "Wed, 19 May 2021 18:56:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00f1bf6c-d89f-43fc-baee-ed02e9c30dfa", - "x-ms-ratelimit-remaining-subscription-reads": "11558", - "x-ms-request-id": "00f1bf6c-d89f-43fc-baee-ed02e9c30dfa", - "x-ms-routing-request-id": "WESTUS2:20210507T011834Z:00f1bf6c-d89f-43fc-baee-ed02e9c30dfa" + "x-ms-correlation-request-id": "4e573dd9-53f6-4ed9-a083-6fb09ac60394", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "4e573dd9-53f6-4ed9-a083-6fb09ac60394", + "x-ms-routing-request-id": "WESTUS2:20210519T185644Z:4e573dd9-53f6-4ed9-a083-6fb09ac60394" }, "ResponseBody": [] }, @@ -4892,7 +4916,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0e98191a1da6cc97ac8b9e7a3a22fa54", "x-ms-return-client-request-id": "true" }, @@ -4901,17 +4925,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:34 GMT", + "Date": "Wed, 19 May 2021 18:56:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a73aec8e-f33d-4532-a9b3-d3be18eae7f1", - "x-ms-ratelimit-remaining-subscription-reads": "11556", - "x-ms-request-id": "a73aec8e-f33d-4532-a9b3-d3be18eae7f1", - "x-ms-routing-request-id": "WESTUS2:20210507T011835Z:a73aec8e-f33d-4532-a9b3-d3be18eae7f1" + "x-ms-correlation-request-id": "3b83451a-305b-4c60-9f70-38bc3c9f0ccb", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "3b83451a-305b-4c60-9f70-38bc3c9f0ccb", + "x-ms-routing-request-id": "WESTUS2:20210519T185645Z:3b83451a-305b-4c60-9f70-38bc3c9f0ccb" }, "ResponseBody": [] }, @@ -4920,7 +4944,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2fa5779de20fcdc0676a743cf367b741", "x-ms-return-client-request-id": "true" }, @@ -4929,17 +4953,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:35 GMT", + "Date": "Wed, 19 May 2021 18:56:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91405a8c-1ece-447a-b6bc-aa45dcfe908a", - "x-ms-ratelimit-remaining-subscription-reads": "11554", - "x-ms-request-id": "91405a8c-1ece-447a-b6bc-aa45dcfe908a", - "x-ms-routing-request-id": "WESTUS2:20210507T011836Z:91405a8c-1ece-447a-b6bc-aa45dcfe908a" + "x-ms-correlation-request-id": "249fc13d-b12c-4b3f-a5ce-53d5e1ee819e", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "249fc13d-b12c-4b3f-a5ce-53d5e1ee819e", + "x-ms-routing-request-id": "WESTUS2:20210519T185646Z:249fc13d-b12c-4b3f-a5ce-53d5e1ee819e" }, "ResponseBody": [] }, @@ -4948,7 +4972,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3554e8ffcf883de6f7e9c15f0b4d9b8", "x-ms-return-client-request-id": "true" }, @@ -4957,17 +4981,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:36 GMT", + "Date": "Wed, 19 May 2021 18:56:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1eec9a39-9122-4d72-b624-5d914fc8f309", - "x-ms-ratelimit-remaining-subscription-reads": "11552", - "x-ms-request-id": "1eec9a39-9122-4d72-b624-5d914fc8f309", - "x-ms-routing-request-id": "WESTUS2:20210507T011837Z:1eec9a39-9122-4d72-b624-5d914fc8f309" + "x-ms-correlation-request-id": "61dc5cbc-dbe5-48ee-b9b3-35daaef146d7", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "61dc5cbc-dbe5-48ee-b9b3-35daaef146d7", + "x-ms-routing-request-id": "WESTUS2:20210519T185647Z:61dc5cbc-dbe5-48ee-b9b3-35daaef146d7" }, "ResponseBody": [] }, @@ -4976,7 +5000,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0725364a2396380858cba63ca85bd945", "x-ms-return-client-request-id": "true" }, @@ -4985,17 +5009,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:38 GMT", + "Date": "Wed, 19 May 2021 18:56:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f184e103-db0d-4cd2-bfae-e217703f013d", - "x-ms-ratelimit-remaining-subscription-reads": "11550", - "x-ms-request-id": "f184e103-db0d-4cd2-bfae-e217703f013d", - "x-ms-routing-request-id": "WESTUS2:20210507T011838Z:f184e103-db0d-4cd2-bfae-e217703f013d" + "x-ms-correlation-request-id": "627681c2-b9d4-4155-a9e2-97757ddc29b6", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "627681c2-b9d4-4155-a9e2-97757ddc29b6", + "x-ms-routing-request-id": "WESTUS2:20210519T185648Z:627681c2-b9d4-4155-a9e2-97757ddc29b6" }, "ResponseBody": [] }, @@ -5004,7 +5028,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ebea5dd447cca15b9822bf9045aadcb3", "x-ms-return-client-request-id": "true" }, @@ -5013,17 +5037,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:39 GMT", + "Date": "Wed, 19 May 2021 18:56:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac5b462c-4396-47ad-b553-c9cc283b4212", - "x-ms-ratelimit-remaining-subscription-reads": "11548", - "x-ms-request-id": "ac5b462c-4396-47ad-b553-c9cc283b4212", - "x-ms-routing-request-id": "WESTUS2:20210507T011839Z:ac5b462c-4396-47ad-b553-c9cc283b4212" + "x-ms-correlation-request-id": "56501630-8b77-4eae-a074-9dbbb4485571", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "56501630-8b77-4eae-a074-9dbbb4485571", + "x-ms-routing-request-id": "WESTUS2:20210519T185649Z:56501630-8b77-4eae-a074-9dbbb4485571" }, "ResponseBody": [] }, @@ -5032,7 +5056,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bcf2bc90af416baa461c5b2d55a2da14", "x-ms-return-client-request-id": "true" }, @@ -5041,17 +5065,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:40 GMT", + "Date": "Wed, 19 May 2021 18:56:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd91f0fb-d92c-4a46-add6-e9d76685a341", - "x-ms-ratelimit-remaining-subscription-reads": "11546", - "x-ms-request-id": "dd91f0fb-d92c-4a46-add6-e9d76685a341", - "x-ms-routing-request-id": "WESTUS2:20210507T011840Z:dd91f0fb-d92c-4a46-add6-e9d76685a341" + "x-ms-correlation-request-id": "a5761c38-7587-4d94-8c32-deb88693cad2", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "a5761c38-7587-4d94-8c32-deb88693cad2", + "x-ms-routing-request-id": "WESTUS2:20210519T185650Z:a5761c38-7587-4d94-8c32-deb88693cad2" }, "ResponseBody": [] }, @@ -5060,7 +5084,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "934157a5eeca02ebdb846e746477f2ad", "x-ms-return-client-request-id": "true" }, @@ -5069,17 +5093,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:41 GMT", + "Date": "Wed, 19 May 2021 18:56:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49e4edfe-932b-4491-864e-4afc8baf90d2", - "x-ms-ratelimit-remaining-subscription-reads": "11544", - "x-ms-request-id": "49e4edfe-932b-4491-864e-4afc8baf90d2", - "x-ms-routing-request-id": "WESTUS2:20210507T011841Z:49e4edfe-932b-4491-864e-4afc8baf90d2" + "x-ms-correlation-request-id": "d1469554-83d9-4024-9405-2d84dc69990b", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "d1469554-83d9-4024-9405-2d84dc69990b", + "x-ms-routing-request-id": "WESTUS2:20210519T185651Z:d1469554-83d9-4024-9405-2d84dc69990b" }, "ResponseBody": [] }, @@ -5088,7 +5112,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ebabf3ee1d682403b27ea4b0ec2d4bf6", "x-ms-return-client-request-id": "true" }, @@ -5097,17 +5121,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:42 GMT", + "Date": "Wed, 19 May 2021 18:56:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eaa16ea3-187b-4cc8-9f43-163be0ce2a23", - "x-ms-ratelimit-remaining-subscription-reads": "11542", - "x-ms-request-id": "eaa16ea3-187b-4cc8-9f43-163be0ce2a23", - "x-ms-routing-request-id": "WESTUS2:20210507T011842Z:eaa16ea3-187b-4cc8-9f43-163be0ce2a23" + "x-ms-correlation-request-id": "49ecab5a-7c2e-40b9-8e24-ee027da6f52b", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "49ecab5a-7c2e-40b9-8e24-ee027da6f52b", + "x-ms-routing-request-id": "WESTUS2:20210519T185652Z:49ecab5a-7c2e-40b9-8e24-ee027da6f52b" }, "ResponseBody": [] }, @@ -5116,7 +5140,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eeebaa474969a2e8d1efe1bc413607ce", "x-ms-return-client-request-id": "true" }, @@ -5125,17 +5149,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:43 GMT", + "Date": "Wed, 19 May 2021 18:56:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c40e878a-1f7f-4219-83d2-f8f93e7d02c7", - "x-ms-ratelimit-remaining-subscription-reads": "11540", - "x-ms-request-id": "c40e878a-1f7f-4219-83d2-f8f93e7d02c7", - "x-ms-routing-request-id": "WESTUS2:20210507T011843Z:c40e878a-1f7f-4219-83d2-f8f93e7d02c7" + "x-ms-correlation-request-id": "ca44b434-4c09-4e2f-b346-6de8a07e2f63", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "ca44b434-4c09-4e2f-b346-6de8a07e2f63", + "x-ms-routing-request-id": "WESTUS2:20210519T185653Z:ca44b434-4c09-4e2f-b346-6de8a07e2f63" }, "ResponseBody": [] }, @@ -5144,7 +5168,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "613fae2aeff688ac541de04b493b16ad", "x-ms-return-client-request-id": "true" }, @@ -5153,17 +5177,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:44 GMT", + "Date": "Wed, 19 May 2021 18:56:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e40221df-5139-4d23-a63d-12bbd4fd4139", - "x-ms-ratelimit-remaining-subscription-reads": "11538", - "x-ms-request-id": "e40221df-5139-4d23-a63d-12bbd4fd4139", - "x-ms-routing-request-id": "WESTUS2:20210507T011844Z:e40221df-5139-4d23-a63d-12bbd4fd4139" + "x-ms-correlation-request-id": "e99df124-097c-4837-8547-2e963008f32e", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "e99df124-097c-4837-8547-2e963008f32e", + "x-ms-routing-request-id": "WESTUS2:20210519T185654Z:e99df124-097c-4837-8547-2e963008f32e" }, "ResponseBody": [] }, @@ -5172,7 +5196,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b92c7738048ca4430a091a783b46e37c", "x-ms-return-client-request-id": "true" }, @@ -5181,17 +5205,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:45 GMT", + "Date": "Wed, 19 May 2021 18:56:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e5f95287-7c53-4944-8b6f-4e996988a5a7", - "x-ms-ratelimit-remaining-subscription-reads": "11536", - "x-ms-request-id": "e5f95287-7c53-4944-8b6f-4e996988a5a7", - "x-ms-routing-request-id": "WESTUS2:20210507T011845Z:e5f95287-7c53-4944-8b6f-4e996988a5a7" + "x-ms-correlation-request-id": "2084a74c-839d-4925-a760-b2ad222c309e", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "2084a74c-839d-4925-a760-b2ad222c309e", + "x-ms-routing-request-id": "WESTUS2:20210519T185655Z:2084a74c-839d-4925-a760-b2ad222c309e" }, "ResponseBody": [] }, @@ -5200,7 +5224,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3d85d677eaee5800fe63994c699d5896", "x-ms-return-client-request-id": "true" }, @@ -5209,17 +5233,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:46 GMT", + "Date": "Wed, 19 May 2021 18:56:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a2cbc4d-c316-478f-afad-0eea2b36a804", - "x-ms-ratelimit-remaining-subscription-reads": "11534", - "x-ms-request-id": "7a2cbc4d-c316-478f-afad-0eea2b36a804", - "x-ms-routing-request-id": "WESTUS2:20210507T011846Z:7a2cbc4d-c316-478f-afad-0eea2b36a804" + "x-ms-correlation-request-id": "53a6bc36-1e04-49b7-9082-735b7b6c8f10", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "53a6bc36-1e04-49b7-9082-735b7b6c8f10", + "x-ms-routing-request-id": "WESTUS2:20210519T185656Z:53a6bc36-1e04-49b7-9082-735b7b6c8f10" }, "ResponseBody": [] }, @@ -5228,7 +5252,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c98333d94d0a26426a9a56ecd5334c0d", "x-ms-return-client-request-id": "true" }, @@ -5237,17 +5261,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:47 GMT", + "Date": "Wed, 19 May 2021 18:56:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90a415e2-e613-4606-b8d4-f984bd54d8dd", - "x-ms-ratelimit-remaining-subscription-reads": "11532", - "x-ms-request-id": "90a415e2-e613-4606-b8d4-f984bd54d8dd", - "x-ms-routing-request-id": "WESTUS2:20210507T011847Z:90a415e2-e613-4606-b8d4-f984bd54d8dd" + "x-ms-correlation-request-id": "9ba9d215-7e0a-455e-b711-7eb48aa601f9", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "9ba9d215-7e0a-455e-b711-7eb48aa601f9", + "x-ms-routing-request-id": "WESTUS2:20210519T185657Z:9ba9d215-7e0a-455e-b711-7eb48aa601f9" }, "ResponseBody": [] }, @@ -5256,7 +5280,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "73d46439d8b54ebe77d4bb286af73b6d", "x-ms-return-client-request-id": "true" }, @@ -5265,17 +5289,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:48 GMT", + "Date": "Wed, 19 May 2021 18:56:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98f3219d-0f00-4049-aec1-522f0ea06937", - "x-ms-ratelimit-remaining-subscription-reads": "11530", - "x-ms-request-id": "98f3219d-0f00-4049-aec1-522f0ea06937", - "x-ms-routing-request-id": "WESTUS2:20210507T011848Z:98f3219d-0f00-4049-aec1-522f0ea06937" + "x-ms-correlation-request-id": "c9967f17-e807-4d8d-a84b-d195cc23de8c", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "c9967f17-e807-4d8d-a84b-d195cc23de8c", + "x-ms-routing-request-id": "WESTUS2:20210519T185659Z:c9967f17-e807-4d8d-a84b-d195cc23de8c" }, "ResponseBody": [] }, @@ -5284,7 +5308,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "079f83b019c32971935fd353931383ca", "x-ms-return-client-request-id": "true" }, @@ -5293,17 +5317,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:49 GMT", + "Date": "Wed, 19 May 2021 18:56:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7c63f9b-aa1b-4b38-9b33-7c6c8bd892e9", - "x-ms-ratelimit-remaining-subscription-reads": "11528", - "x-ms-request-id": "f7c63f9b-aa1b-4b38-9b33-7c6c8bd892e9", - "x-ms-routing-request-id": "WESTUS2:20210507T011849Z:f7c63f9b-aa1b-4b38-9b33-7c6c8bd892e9" + "x-ms-correlation-request-id": "164c15ea-35ea-4b9a-b6bb-1c9dca68a722", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "164c15ea-35ea-4b9a-b6bb-1c9dca68a722", + "x-ms-routing-request-id": "WESTUS2:20210519T185700Z:164c15ea-35ea-4b9a-b6bb-1c9dca68a722" }, "ResponseBody": [] }, @@ -5312,7 +5336,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04128c17e5c900e0753451359219bb72", "x-ms-return-client-request-id": "true" }, @@ -5321,17 +5345,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:50 GMT", + "Date": "Wed, 19 May 2021 18:57:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f72808e-e5d9-4402-bf2b-b8c6f51959c5", - "x-ms-ratelimit-remaining-subscription-reads": "11526", - "x-ms-request-id": "7f72808e-e5d9-4402-bf2b-b8c6f51959c5", - "x-ms-routing-request-id": "WESTUS2:20210507T011850Z:7f72808e-e5d9-4402-bf2b-b8c6f51959c5" + "x-ms-correlation-request-id": "f053e2a6-ac1d-4362-b46d-fcfda8f13e43", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "f053e2a6-ac1d-4362-b46d-fcfda8f13e43", + "x-ms-routing-request-id": "WESTUS2:20210519T185701Z:f053e2a6-ac1d-4362-b46d-fcfda8f13e43" }, "ResponseBody": [] }, @@ -5340,7 +5364,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "513ce95f4494204af2aadf56046abb63", "x-ms-return-client-request-id": "true" }, @@ -5349,17 +5373,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:51 GMT", + "Date": "Wed, 19 May 2021 18:57:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "37109620-595b-45d3-8719-63966984eb02", - "x-ms-ratelimit-remaining-subscription-reads": "11524", - "x-ms-request-id": "37109620-595b-45d3-8719-63966984eb02", - "x-ms-routing-request-id": "WESTUS2:20210507T011851Z:37109620-595b-45d3-8719-63966984eb02" + "x-ms-correlation-request-id": "578a511f-f5f0-4665-a69a-03fad0a1c53b", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "578a511f-f5f0-4665-a69a-03fad0a1c53b", + "x-ms-routing-request-id": "WESTUS2:20210519T185702Z:578a511f-f5f0-4665-a69a-03fad0a1c53b" }, "ResponseBody": [] }, @@ -5368,7 +5392,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "de11f05036e5cba4a39e928ec73c9679", "x-ms-return-client-request-id": "true" }, @@ -5377,17 +5401,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:52 GMT", + "Date": "Wed, 19 May 2021 18:57:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0dc5dffd-2010-46e2-b757-a52bc0daffa8", - "x-ms-ratelimit-remaining-subscription-reads": "11522", - "x-ms-request-id": "0dc5dffd-2010-46e2-b757-a52bc0daffa8", - "x-ms-routing-request-id": "WESTUS2:20210507T011852Z:0dc5dffd-2010-46e2-b757-a52bc0daffa8" + "x-ms-correlation-request-id": "1c5aaeaf-25b7-4626-b754-dacacdbf1c39", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "1c5aaeaf-25b7-4626-b754-dacacdbf1c39", + "x-ms-routing-request-id": "WESTUS2:20210519T185703Z:1c5aaeaf-25b7-4626-b754-dacacdbf1c39" }, "ResponseBody": [] }, @@ -5396,7 +5420,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a9f461a332d7d23642f2121e068afb0a", "x-ms-return-client-request-id": "true" }, @@ -5405,17 +5429,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:53 GMT", + "Date": "Wed, 19 May 2021 18:57:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "294bfe64-c82c-4661-b847-f345e95f8d50", - "x-ms-ratelimit-remaining-subscription-reads": "11520", - "x-ms-request-id": "294bfe64-c82c-4661-b847-f345e95f8d50", - "x-ms-routing-request-id": "WESTUS2:20210507T011853Z:294bfe64-c82c-4661-b847-f345e95f8d50" + "x-ms-correlation-request-id": "b167b16e-9ed4-4f51-8a8b-61576fcf99c3", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "b167b16e-9ed4-4f51-8a8b-61576fcf99c3", + "x-ms-routing-request-id": "WESTUS2:20210519T185704Z:b167b16e-9ed4-4f51-8a8b-61576fcf99c3" }, "ResponseBody": [] }, @@ -5424,7 +5448,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a2e5ed79dd08298c4570adf5b1bb58b6", "x-ms-return-client-request-id": "true" }, @@ -5433,17 +5457,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:54 GMT", + "Date": "Wed, 19 May 2021 18:57:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03f795e9-501a-4381-9d44-2f802c148ceb", - "x-ms-ratelimit-remaining-subscription-reads": "11518", - "x-ms-request-id": "03f795e9-501a-4381-9d44-2f802c148ceb", - "x-ms-routing-request-id": "WESTUS2:20210507T011854Z:03f795e9-501a-4381-9d44-2f802c148ceb" + "x-ms-correlation-request-id": "26e72ff1-490e-46d1-87a7-0677b5760541", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "26e72ff1-490e-46d1-87a7-0677b5760541", + "x-ms-routing-request-id": "WESTUS2:20210519T185705Z:26e72ff1-490e-46d1-87a7-0677b5760541" }, "ResponseBody": [] }, @@ -5452,7 +5476,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3b2651412761e8cb93e9bf32485c519", "x-ms-return-client-request-id": "true" }, @@ -5461,17 +5485,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:55 GMT", + "Date": "Wed, 19 May 2021 18:57:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e743f37-e22f-44b5-8b94-e878035fd79f", - "x-ms-ratelimit-remaining-subscription-reads": "11516", - "x-ms-request-id": "9e743f37-e22f-44b5-8b94-e878035fd79f", - "x-ms-routing-request-id": "WESTUS2:20210507T011855Z:9e743f37-e22f-44b5-8b94-e878035fd79f" + "x-ms-correlation-request-id": "cbf513de-1fc0-4baf-b1d4-33951174ee08", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "cbf513de-1fc0-4baf-b1d4-33951174ee08", + "x-ms-routing-request-id": "WESTUS2:20210519T185706Z:cbf513de-1fc0-4baf-b1d4-33951174ee08" }, "ResponseBody": [] }, @@ -5480,7 +5504,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da1588a3f357c571d5cb646684412086", "x-ms-return-client-request-id": "true" }, @@ -5489,17 +5513,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:56 GMT", + "Date": "Wed, 19 May 2021 18:57:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3133428e-1947-46e6-8613-fb585265a9da", - "x-ms-ratelimit-remaining-subscription-reads": "11514", - "x-ms-request-id": "3133428e-1947-46e6-8613-fb585265a9da", - "x-ms-routing-request-id": "WESTUS2:20210507T011856Z:3133428e-1947-46e6-8613-fb585265a9da" + "x-ms-correlation-request-id": "00e6f9df-baa3-4592-8b32-2522734715ca", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "00e6f9df-baa3-4592-8b32-2522734715ca", + "x-ms-routing-request-id": "WESTUS2:20210519T185707Z:00e6f9df-baa3-4592-8b32-2522734715ca" }, "ResponseBody": [] }, @@ -5508,7 +5532,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a00a5b9958d7679361c6e9ca419805bf", "x-ms-return-client-request-id": "true" }, @@ -5517,17 +5541,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:57 GMT", + "Date": "Wed, 19 May 2021 18:57:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7794a969-bc88-4f37-bda8-59e9bd7f82a3", - "x-ms-ratelimit-remaining-subscription-reads": "11512", - "x-ms-request-id": "7794a969-bc88-4f37-bda8-59e9bd7f82a3", - "x-ms-routing-request-id": "WESTUS2:20210507T011857Z:7794a969-bc88-4f37-bda8-59e9bd7f82a3" + "x-ms-correlation-request-id": "0aaa9f03-023a-4114-9f4b-bd274795a3c9", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "0aaa9f03-023a-4114-9f4b-bd274795a3c9", + "x-ms-routing-request-id": "WESTUS2:20210519T185708Z:0aaa9f03-023a-4114-9f4b-bd274795a3c9" }, "ResponseBody": [] }, @@ -5536,7 +5560,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "295294ab7ea6205ff4eccdabad269a78", "x-ms-return-client-request-id": "true" }, @@ -5545,17 +5569,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:58 GMT", + "Date": "Wed, 19 May 2021 18:57:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ef3f629-ed9b-45d2-b5c8-c80315d80012", - "x-ms-ratelimit-remaining-subscription-reads": "11510", - "x-ms-request-id": "7ef3f629-ed9b-45d2-b5c8-c80315d80012", - "x-ms-routing-request-id": "WESTUS2:20210507T011858Z:7ef3f629-ed9b-45d2-b5c8-c80315d80012" + "x-ms-correlation-request-id": "307b58a9-15f0-4b04-b8b4-02c17528426e", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "307b58a9-15f0-4b04-b8b4-02c17528426e", + "x-ms-routing-request-id": "WESTUS2:20210519T185709Z:307b58a9-15f0-4b04-b8b4-02c17528426e" }, "ResponseBody": [] }, @@ -5564,7 +5588,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c859151d247b4a41f4ad78900aa6843c", "x-ms-return-client-request-id": "true" }, @@ -5573,17 +5597,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:18:59 GMT", + "Date": "Wed, 19 May 2021 18:57:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c02aa58c-c436-4e31-90fd-c9eb73174ac7", - "x-ms-ratelimit-remaining-subscription-reads": "11508", - "x-ms-request-id": "c02aa58c-c436-4e31-90fd-c9eb73174ac7", - "x-ms-routing-request-id": "WESTUS2:20210507T011900Z:c02aa58c-c436-4e31-90fd-c9eb73174ac7" + "x-ms-correlation-request-id": "b6bbafef-caaf-4a0c-997a-42c0f47eb23b", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "b6bbafef-caaf-4a0c-997a-42c0f47eb23b", + "x-ms-routing-request-id": "WESTUS2:20210519T185710Z:b6bbafef-caaf-4a0c-997a-42c0f47eb23b" }, "ResponseBody": [] }, @@ -5592,7 +5616,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "efbaa4c6f7ef1bdffceaabea8ae8b93b", "x-ms-return-client-request-id": "true" }, @@ -5601,17 +5625,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:00 GMT", + "Date": "Wed, 19 May 2021 18:57:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c8f452f-bf60-4104-9e10-929cd73cde0c", - "x-ms-ratelimit-remaining-subscription-reads": "11506", - "x-ms-request-id": "8c8f452f-bf60-4104-9e10-929cd73cde0c", - "x-ms-routing-request-id": "WESTUS2:20210507T011901Z:8c8f452f-bf60-4104-9e10-929cd73cde0c" + "x-ms-correlation-request-id": "57e44e35-96e9-4ef1-b4aa-f89e5024fa35", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "57e44e35-96e9-4ef1-b4aa-f89e5024fa35", + "x-ms-routing-request-id": "WESTUS2:20210519T185711Z:57e44e35-96e9-4ef1-b4aa-f89e5024fa35" }, "ResponseBody": [] }, @@ -5620,7 +5644,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2cad712b3c3e8744520734f805ce154d", "x-ms-return-client-request-id": "true" }, @@ -5629,17 +5653,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:01 GMT", + "Date": "Wed, 19 May 2021 18:57:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa11e7bf-5c63-4909-914e-660e034d8df6", - "x-ms-ratelimit-remaining-subscription-reads": "11504", - "x-ms-request-id": "aa11e7bf-5c63-4909-914e-660e034d8df6", - "x-ms-routing-request-id": "WESTUS2:20210507T011902Z:aa11e7bf-5c63-4909-914e-660e034d8df6" + "x-ms-correlation-request-id": "feb66a81-f925-466a-80c1-7426872a34e9", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "feb66a81-f925-466a-80c1-7426872a34e9", + "x-ms-routing-request-id": "WESTUS2:20210519T185712Z:feb66a81-f925-466a-80c1-7426872a34e9" }, "ResponseBody": [] }, @@ -5648,7 +5672,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09e49168aa6b2589353ecb917857c00c", "x-ms-return-client-request-id": "true" }, @@ -5657,17 +5681,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:02 GMT", + "Date": "Wed, 19 May 2021 18:57:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa18d591-2f88-4b0b-b495-ce016ba945d5", - "x-ms-ratelimit-remaining-subscription-reads": "11502", - "x-ms-request-id": "fa18d591-2f88-4b0b-b495-ce016ba945d5", - "x-ms-routing-request-id": "WESTUS2:20210507T011903Z:fa18d591-2f88-4b0b-b495-ce016ba945d5" + "x-ms-correlation-request-id": "39320ba0-04a9-4144-9012-d0c4913bf25b", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "39320ba0-04a9-4144-9012-d0c4913bf25b", + "x-ms-routing-request-id": "WESTUS2:20210519T185713Z:39320ba0-04a9-4144-9012-d0c4913bf25b" }, "ResponseBody": [] }, @@ -5676,7 +5700,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "99653df457f989fd60339de8c3e6162d", "x-ms-return-client-request-id": "true" }, @@ -5685,17 +5709,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:03 GMT", + "Date": "Wed, 19 May 2021 18:57:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff727dbf-0e72-481c-93af-01cde0cc68c9", - "x-ms-ratelimit-remaining-subscription-reads": "11500", - "x-ms-request-id": "ff727dbf-0e72-481c-93af-01cde0cc68c9", - "x-ms-routing-request-id": "WESTUS2:20210507T011904Z:ff727dbf-0e72-481c-93af-01cde0cc68c9" + "x-ms-correlation-request-id": "404a47bf-c670-4886-b586-5dd5e22f2542", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "404a47bf-c670-4886-b586-5dd5e22f2542", + "x-ms-routing-request-id": "WESTUS2:20210519T185714Z:404a47bf-c670-4886-b586-5dd5e22f2542" }, "ResponseBody": [] }, @@ -5704,7 +5728,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f9815dd4b00381cfe887f70071b30efb", "x-ms-return-client-request-id": "true" }, @@ -5713,17 +5737,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:04 GMT", + "Date": "Wed, 19 May 2021 18:57:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a6fee10-ba51-4a9c-af7b-31860d3c519a", - "x-ms-ratelimit-remaining-subscription-reads": "11498", - "x-ms-request-id": "3a6fee10-ba51-4a9c-af7b-31860d3c519a", - "x-ms-routing-request-id": "WESTUS2:20210507T011905Z:3a6fee10-ba51-4a9c-af7b-31860d3c519a" + "x-ms-correlation-request-id": "feb8197e-d896-4a48-b3ee-fe395f1809ee", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "feb8197e-d896-4a48-b3ee-fe395f1809ee", + "x-ms-routing-request-id": "WESTUS2:20210519T185715Z:feb8197e-d896-4a48-b3ee-fe395f1809ee" }, "ResponseBody": [] }, @@ -5732,7 +5756,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c80427467c691154935ba9380da0624e", "x-ms-return-client-request-id": "true" }, @@ -5741,17 +5765,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:05 GMT", + "Date": "Wed, 19 May 2021 18:57:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3745354-515d-4165-a26c-2081a342728e", - "x-ms-ratelimit-remaining-subscription-reads": "11496", - "x-ms-request-id": "b3745354-515d-4165-a26c-2081a342728e", - "x-ms-routing-request-id": "WESTUS2:20210507T011906Z:b3745354-515d-4165-a26c-2081a342728e" + "x-ms-correlation-request-id": "0d5e1e3a-e638-4550-9985-2893ed5ba36f", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "0d5e1e3a-e638-4550-9985-2893ed5ba36f", + "x-ms-routing-request-id": "WESTUS2:20210519T185716Z:0d5e1e3a-e638-4550-9985-2893ed5ba36f" }, "ResponseBody": [] }, @@ -5760,7 +5784,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1bbc9d27c6d544096de4b17260fd17ac", "x-ms-return-client-request-id": "true" }, @@ -5769,17 +5793,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:06 GMT", + "Date": "Wed, 19 May 2021 18:57:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "542326a4-e6c9-4028-9464-77e85c4d145a", - "x-ms-ratelimit-remaining-subscription-reads": "11494", - "x-ms-request-id": "542326a4-e6c9-4028-9464-77e85c4d145a", - "x-ms-routing-request-id": "WESTUS2:20210507T011907Z:542326a4-e6c9-4028-9464-77e85c4d145a" + "x-ms-correlation-request-id": "a7fe1746-2742-4691-af96-482f3c053d5a", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "a7fe1746-2742-4691-af96-482f3c053d5a", + "x-ms-routing-request-id": "WESTUS2:20210519T185717Z:a7fe1746-2742-4691-af96-482f3c053d5a" }, "ResponseBody": [] }, @@ -5788,7 +5812,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ba1a2254ee258c4097066a707977347", "x-ms-return-client-request-id": "true" }, @@ -5797,17 +5821,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:07 GMT", + "Date": "Wed, 19 May 2021 18:57:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce534017-940d-444b-9afe-4760ea2df8f1", - "x-ms-ratelimit-remaining-subscription-reads": "11492", - "x-ms-request-id": "ce534017-940d-444b-9afe-4760ea2df8f1", - "x-ms-routing-request-id": "WESTUS2:20210507T011908Z:ce534017-940d-444b-9afe-4760ea2df8f1" + "x-ms-correlation-request-id": "423a8140-f190-4c32-b09c-025fad282091", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "423a8140-f190-4c32-b09c-025fad282091", + "x-ms-routing-request-id": "WESTUS2:20210519T185718Z:423a8140-f190-4c32-b09c-025fad282091" }, "ResponseBody": [] }, @@ -5816,7 +5840,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d3d8a824f3f67f251ec05a85cae1b195", "x-ms-return-client-request-id": "true" }, @@ -5825,17 +5849,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:08 GMT", + "Date": "Wed, 19 May 2021 18:57:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89213749-d193-4b94-bf0c-9c92afbc4ba7", - "x-ms-ratelimit-remaining-subscription-reads": "11490", - "x-ms-request-id": "89213749-d193-4b94-bf0c-9c92afbc4ba7", - "x-ms-routing-request-id": "WESTUS2:20210507T011909Z:89213749-d193-4b94-bf0c-9c92afbc4ba7" + "x-ms-correlation-request-id": "bac9fa10-3302-4c73-b85f-c68cc0942d6f", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "bac9fa10-3302-4c73-b85f-c68cc0942d6f", + "x-ms-routing-request-id": "WESTUS2:20210519T185719Z:bac9fa10-3302-4c73-b85f-c68cc0942d6f" }, "ResponseBody": [] }, @@ -5844,7 +5868,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6b12fc43c6ffd96cd964116560613cd6", "x-ms-return-client-request-id": "true" }, @@ -5853,17 +5877,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:09 GMT", + "Date": "Wed, 19 May 2021 18:57:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "464e7bac-681c-4cd9-a87c-d7388107c287", - "x-ms-ratelimit-remaining-subscription-reads": "11488", - "x-ms-request-id": "464e7bac-681c-4cd9-a87c-d7388107c287", - "x-ms-routing-request-id": "WESTUS2:20210507T011910Z:464e7bac-681c-4cd9-a87c-d7388107c287" + "x-ms-correlation-request-id": "6c245e4e-42d2-476a-b879-fa0525e5ed52", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "6c245e4e-42d2-476a-b879-fa0525e5ed52", + "x-ms-routing-request-id": "WESTUS2:20210519T185720Z:6c245e4e-42d2-476a-b879-fa0525e5ed52" }, "ResponseBody": [] }, @@ -5872,7 +5896,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b74d6a70442432b67c217d21f33e8d27", "x-ms-return-client-request-id": "true" }, @@ -5881,17 +5905,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:10 GMT", + "Date": "Wed, 19 May 2021 18:57:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2e367db-2a99-4ab9-bdbc-77ec42e1c57d", - "x-ms-ratelimit-remaining-subscription-reads": "11486", - "x-ms-request-id": "c2e367db-2a99-4ab9-bdbc-77ec42e1c57d", - "x-ms-routing-request-id": "WESTUS2:20210507T011911Z:c2e367db-2a99-4ab9-bdbc-77ec42e1c57d" + "x-ms-correlation-request-id": "138a8f1c-4a20-479d-8201-28146168336e", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "138a8f1c-4a20-479d-8201-28146168336e", + "x-ms-routing-request-id": "WESTUS2:20210519T185721Z:138a8f1c-4a20-479d-8201-28146168336e" }, "ResponseBody": [] }, @@ -5900,7 +5924,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0b64d0be08845d473bfefa92e1bf1ebc", "x-ms-return-client-request-id": "true" }, @@ -5909,17 +5933,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:11 GMT", + "Date": "Wed, 19 May 2021 18:57:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a07cd7b6-86d3-405f-8cdb-ec92ffb32ec0", - "x-ms-ratelimit-remaining-subscription-reads": "11484", - "x-ms-request-id": "a07cd7b6-86d3-405f-8cdb-ec92ffb32ec0", - "x-ms-routing-request-id": "WESTUS2:20210507T011912Z:a07cd7b6-86d3-405f-8cdb-ec92ffb32ec0" + "x-ms-correlation-request-id": "c0b0da86-fbc4-4cdb-b40d-1b2088e72b57", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "c0b0da86-fbc4-4cdb-b40d-1b2088e72b57", + "x-ms-routing-request-id": "WESTUS2:20210519T185722Z:c0b0da86-fbc4-4cdb-b40d-1b2088e72b57" }, "ResponseBody": [] }, @@ -5928,7 +5952,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "60148483f994ff7145e0eedd494ae69a", "x-ms-return-client-request-id": "true" }, @@ -5937,17 +5961,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:12 GMT", + "Date": "Wed, 19 May 2021 18:57:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4295d4a-45d2-4346-b12e-48dc0db617c7", - "x-ms-ratelimit-remaining-subscription-reads": "11482", - "x-ms-request-id": "f4295d4a-45d2-4346-b12e-48dc0db617c7", - "x-ms-routing-request-id": "WESTUS2:20210507T011913Z:f4295d4a-45d2-4346-b12e-48dc0db617c7" + "x-ms-correlation-request-id": "0269392e-f533-4de8-9eec-032b61307a55", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "0269392e-f533-4de8-9eec-032b61307a55", + "x-ms-routing-request-id": "WESTUS2:20210519T185723Z:0269392e-f533-4de8-9eec-032b61307a55" }, "ResponseBody": [] }, @@ -5956,7 +5980,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90a6e9d731fd685122ef7c25492450bd", "x-ms-return-client-request-id": "true" }, @@ -5965,17 +5989,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:13 GMT", + "Date": "Wed, 19 May 2021 18:57:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7eff563-9bb0-468f-8c7a-d629a2858bd7", - "x-ms-ratelimit-remaining-subscription-reads": "11480", - "x-ms-request-id": "d7eff563-9bb0-468f-8c7a-d629a2858bd7", - "x-ms-routing-request-id": "WESTUS2:20210507T011914Z:d7eff563-9bb0-468f-8c7a-d629a2858bd7" + "x-ms-correlation-request-id": "7e65419e-90ba-46b4-bcc3-303364c8e4d0", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "7e65419e-90ba-46b4-bcc3-303364c8e4d0", + "x-ms-routing-request-id": "WESTUS2:20210519T185724Z:7e65419e-90ba-46b4-bcc3-303364c8e4d0" }, "ResponseBody": [] }, @@ -5984,7 +6008,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f9ec0022c29c5935e64c5a3196914f1", "x-ms-return-client-request-id": "true" }, @@ -5993,17 +6017,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:14 GMT", + "Date": "Wed, 19 May 2021 18:57:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8810bd4e-cbf0-428b-924d-3b6013c7f104", - "x-ms-ratelimit-remaining-subscription-reads": "11478", - "x-ms-request-id": "8810bd4e-cbf0-428b-924d-3b6013c7f104", - "x-ms-routing-request-id": "WESTUS2:20210507T011915Z:8810bd4e-cbf0-428b-924d-3b6013c7f104" + "x-ms-correlation-request-id": "9a7b4e4e-de3f-44b6-b914-289fc3007e13", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "9a7b4e4e-de3f-44b6-b914-289fc3007e13", + "x-ms-routing-request-id": "WESTUS2:20210519T185725Z:9a7b4e4e-de3f-44b6-b914-289fc3007e13" }, "ResponseBody": [] }, @@ -6012,7 +6036,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7ba60188e1851bf32ac3ea47d4bb521", "x-ms-return-client-request-id": "true" }, @@ -6021,17 +6045,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:15 GMT", + "Date": "Wed, 19 May 2021 18:57:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4325d87-cb8a-4d5e-9acd-1bcf44700dea", - "x-ms-ratelimit-remaining-subscription-reads": "11476", - "x-ms-request-id": "d4325d87-cb8a-4d5e-9acd-1bcf44700dea", - "x-ms-routing-request-id": "WESTUS2:20210507T011916Z:d4325d87-cb8a-4d5e-9acd-1bcf44700dea" + "x-ms-correlation-request-id": "6018961d-f7be-4302-a325-7c4c7df73f27", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "6018961d-f7be-4302-a325-7c4c7df73f27", + "x-ms-routing-request-id": "WESTUS2:20210519T185726Z:6018961d-f7be-4302-a325-7c4c7df73f27" }, "ResponseBody": [] }, @@ -6040,7 +6064,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "88db309076abaa7056e131986cad4eb9", "x-ms-return-client-request-id": "true" }, @@ -6049,17 +6073,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:16 GMT", + "Date": "Wed, 19 May 2021 18:57:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3904290a-832d-4607-8a29-a083da072e7d", - "x-ms-ratelimit-remaining-subscription-reads": "11474", - "x-ms-request-id": "3904290a-832d-4607-8a29-a083da072e7d", - "x-ms-routing-request-id": "WESTUS2:20210507T011917Z:3904290a-832d-4607-8a29-a083da072e7d" + "x-ms-correlation-request-id": "d09a1be9-7015-453d-9cd3-8604fb74aeed", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "d09a1be9-7015-453d-9cd3-8604fb74aeed", + "x-ms-routing-request-id": "WESTUS2:20210519T185727Z:d09a1be9-7015-453d-9cd3-8604fb74aeed" }, "ResponseBody": [] }, @@ -6068,7 +6092,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e90c8bdb596974a4014d3c7deeef4813", "x-ms-return-client-request-id": "true" }, @@ -6077,17 +6101,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:17 GMT", + "Date": "Wed, 19 May 2021 18:57:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eafe71ee-f62b-4503-b811-5646921aebef", - "x-ms-ratelimit-remaining-subscription-reads": "11472", - "x-ms-request-id": "eafe71ee-f62b-4503-b811-5646921aebef", - "x-ms-routing-request-id": "WESTUS2:20210507T011918Z:eafe71ee-f62b-4503-b811-5646921aebef" + "x-ms-correlation-request-id": "704382fe-b099-47e6-b761-217f2082a311", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "704382fe-b099-47e6-b761-217f2082a311", + "x-ms-routing-request-id": "WESTUS2:20210519T185728Z:704382fe-b099-47e6-b761-217f2082a311" }, "ResponseBody": [] }, @@ -6096,7 +6120,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e813a3af8b8ea245ef10a0375c26e485", "x-ms-return-client-request-id": "true" }, @@ -6105,17 +6129,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:18 GMT", + "Date": "Wed, 19 May 2021 18:57:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad758512-1e25-48b5-8d23-e1febb93714d", - "x-ms-ratelimit-remaining-subscription-reads": "11470", - "x-ms-request-id": "ad758512-1e25-48b5-8d23-e1febb93714d", - "x-ms-routing-request-id": "WESTUS2:20210507T011919Z:ad758512-1e25-48b5-8d23-e1febb93714d" + "x-ms-correlation-request-id": "fb9d8b4b-da41-4bf3-a61c-6980a6f950b4", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "fb9d8b4b-da41-4bf3-a61c-6980a6f950b4", + "x-ms-routing-request-id": "WESTUS2:20210519T185729Z:fb9d8b4b-da41-4bf3-a61c-6980a6f950b4" }, "ResponseBody": [] }, @@ -6124,7 +6148,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f1c8855dcc3e36b88c66875e3af2bb67", "x-ms-return-client-request-id": "true" }, @@ -6133,17 +6157,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:19 GMT", + "Date": "Wed, 19 May 2021 18:57:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b46c1d7-a71a-4d16-83f6-3ce8a5c20aef", - "x-ms-ratelimit-remaining-subscription-reads": "11468", - "x-ms-request-id": "8b46c1d7-a71a-4d16-83f6-3ce8a5c20aef", - "x-ms-routing-request-id": "WESTUS2:20210507T011920Z:8b46c1d7-a71a-4d16-83f6-3ce8a5c20aef" + "x-ms-correlation-request-id": "66cb786e-5b52-4e0e-a394-d57aac1704fd", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "66cb786e-5b52-4e0e-a394-d57aac1704fd", + "x-ms-routing-request-id": "WESTUS2:20210519T185731Z:66cb786e-5b52-4e0e-a394-d57aac1704fd" }, "ResponseBody": [] }, @@ -6152,7 +6176,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9e91e9866994f2a456af958b86d18da", "x-ms-return-client-request-id": "true" }, @@ -6161,17 +6185,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:21 GMT", + "Date": "Wed, 19 May 2021 18:57:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a7a1c63-fa31-4b9a-bc83-e56d5f71f59e", - "x-ms-ratelimit-remaining-subscription-reads": "11466", - "x-ms-request-id": "7a7a1c63-fa31-4b9a-bc83-e56d5f71f59e", - "x-ms-routing-request-id": "WESTUS2:20210507T011921Z:7a7a1c63-fa31-4b9a-bc83-e56d5f71f59e" + "x-ms-correlation-request-id": "99616952-a585-4af3-9481-0cc7c26620db", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "99616952-a585-4af3-9481-0cc7c26620db", + "x-ms-routing-request-id": "WESTUS2:20210519T185732Z:99616952-a585-4af3-9481-0cc7c26620db" }, "ResponseBody": [] }, @@ -6180,7 +6204,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "691fb6685626e3d4ebdd5c2704e668fc", "x-ms-return-client-request-id": "true" }, @@ -6189,17 +6213,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:22 GMT", + "Date": "Wed, 19 May 2021 18:57:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a77b559-6d0a-4cb2-b927-602f19cf311d", - "x-ms-ratelimit-remaining-subscription-reads": "11464", - "x-ms-request-id": "2a77b559-6d0a-4cb2-b927-602f19cf311d", - "x-ms-routing-request-id": "WESTUS2:20210507T011922Z:2a77b559-6d0a-4cb2-b927-602f19cf311d" + "x-ms-correlation-request-id": "90c557b6-2e2f-4a08-b3d2-78d898cb0b60", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "90c557b6-2e2f-4a08-b3d2-78d898cb0b60", + "x-ms-routing-request-id": "WESTUS2:20210519T185733Z:90c557b6-2e2f-4a08-b3d2-78d898cb0b60" }, "ResponseBody": [] }, @@ -6208,7 +6232,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3e9f39541b3df7eb5a79acd3d25f7e1e", "x-ms-return-client-request-id": "true" }, @@ -6217,17 +6241,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:23 GMT", + "Date": "Wed, 19 May 2021 18:57:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da18443a-b0a1-4646-83e8-158fe563b741", - "x-ms-ratelimit-remaining-subscription-reads": "11462", - "x-ms-request-id": "da18443a-b0a1-4646-83e8-158fe563b741", - "x-ms-routing-request-id": "WESTUS2:20210507T011923Z:da18443a-b0a1-4646-83e8-158fe563b741" + "x-ms-correlation-request-id": "fc4434d5-4456-43ca-b112-3b6d86cb0b00", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "fc4434d5-4456-43ca-b112-3b6d86cb0b00", + "x-ms-routing-request-id": "WESTUS2:20210519T185734Z:fc4434d5-4456-43ca-b112-3b6d86cb0b00" }, "ResponseBody": [] }, @@ -6236,7 +6260,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "83f6ac4e52d341414906ddbc09034b5f", "x-ms-return-client-request-id": "true" }, @@ -6245,17 +6269,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:24 GMT", + "Date": "Wed, 19 May 2021 18:57:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5e00e47-684f-43c3-914f-35ff6dd83b46", - "x-ms-ratelimit-remaining-subscription-reads": "11460", - "x-ms-request-id": "d5e00e47-684f-43c3-914f-35ff6dd83b46", - "x-ms-routing-request-id": "WESTUS2:20210507T011924Z:d5e00e47-684f-43c3-914f-35ff6dd83b46" + "x-ms-correlation-request-id": "d6ded4e2-ca64-48bd-8bc0-b3bcc98d7a72", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "d6ded4e2-ca64-48bd-8bc0-b3bcc98d7a72", + "x-ms-routing-request-id": "WESTUS2:20210519T185735Z:d6ded4e2-ca64-48bd-8bc0-b3bcc98d7a72" }, "ResponseBody": [] }, @@ -6264,7 +6288,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7e04fc02d9ce4c9dcb270fadaa01108c", "x-ms-return-client-request-id": "true" }, @@ -6273,17 +6297,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:25 GMT", + "Date": "Wed, 19 May 2021 18:57:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ac5cfe6-98bb-4f42-b700-d3a66cb25f6b", - "x-ms-ratelimit-remaining-subscription-reads": "11458", - "x-ms-request-id": "7ac5cfe6-98bb-4f42-b700-d3a66cb25f6b", - "x-ms-routing-request-id": "WESTUS2:20210507T011925Z:7ac5cfe6-98bb-4f42-b700-d3a66cb25f6b" + "x-ms-correlation-request-id": "ead90e26-72d8-4e09-847f-be5918cda009", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "ead90e26-72d8-4e09-847f-be5918cda009", + "x-ms-routing-request-id": "WESTUS2:20210519T185736Z:ead90e26-72d8-4e09-847f-be5918cda009" }, "ResponseBody": [] }, @@ -6292,7 +6316,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "57d83d5ee5f00229f85df4373e2fee57", "x-ms-return-client-request-id": "true" }, @@ -6301,17 +6325,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:26 GMT", + "Date": "Wed, 19 May 2021 18:57:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43643cca-6470-4691-9ead-39738887c73e", - "x-ms-ratelimit-remaining-subscription-reads": "11456", - "x-ms-request-id": "43643cca-6470-4691-9ead-39738887c73e", - "x-ms-routing-request-id": "WESTUS2:20210507T011926Z:43643cca-6470-4691-9ead-39738887c73e" + "x-ms-correlation-request-id": "323aec35-c069-4fb3-a7f4-c7e58db2babe", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "323aec35-c069-4fb3-a7f4-c7e58db2babe", + "x-ms-routing-request-id": "WESTUS2:20210519T185737Z:323aec35-c069-4fb3-a7f4-c7e58db2babe" }, "ResponseBody": [] }, @@ -6320,7 +6344,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d5d14c2dff5a74500fa9b8ab43939748", "x-ms-return-client-request-id": "true" }, @@ -6329,17 +6353,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:27 GMT", + "Date": "Wed, 19 May 2021 18:57:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae40c510-45e0-4fb7-8725-bf6bc5d286ae", - "x-ms-ratelimit-remaining-subscription-reads": "11454", - "x-ms-request-id": "ae40c510-45e0-4fb7-8725-bf6bc5d286ae", - "x-ms-routing-request-id": "WESTUS2:20210507T011927Z:ae40c510-45e0-4fb7-8725-bf6bc5d286ae" + "x-ms-correlation-request-id": "9ab5faac-53ff-47b4-8c7f-1d07e6b9fa04", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "9ab5faac-53ff-47b4-8c7f-1d07e6b9fa04", + "x-ms-routing-request-id": "WESTUS2:20210519T185738Z:9ab5faac-53ff-47b4-8c7f-1d07e6b9fa04" }, "ResponseBody": [] }, @@ -6348,7 +6372,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb5e51f5f32a1d6fd3028670e5660e9b", "x-ms-return-client-request-id": "true" }, @@ -6357,17 +6381,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:28 GMT", + "Date": "Wed, 19 May 2021 18:57:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc0d63b3-ddec-4c25-8134-417b4df0f768", - "x-ms-ratelimit-remaining-subscription-reads": "11452", - "x-ms-request-id": "cc0d63b3-ddec-4c25-8134-417b4df0f768", - "x-ms-routing-request-id": "WESTUS2:20210507T011929Z:cc0d63b3-ddec-4c25-8134-417b4df0f768" + "x-ms-correlation-request-id": "2e6313e3-8a26-4dbc-8466-43fc72c22dcf", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "2e6313e3-8a26-4dbc-8466-43fc72c22dcf", + "x-ms-routing-request-id": "WESTUS2:20210519T185739Z:2e6313e3-8a26-4dbc-8466-43fc72c22dcf" }, "ResponseBody": [] }, @@ -6376,7 +6400,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5d7fb8393a2f5e31ed6348472c7dbe64", "x-ms-return-client-request-id": "true" }, @@ -6385,17 +6409,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:29 GMT", + "Date": "Wed, 19 May 2021 18:57:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25ed3b17-87de-4ea5-923f-112d80e14715", - "x-ms-ratelimit-remaining-subscription-reads": "11450", - "x-ms-request-id": "25ed3b17-87de-4ea5-923f-112d80e14715", - "x-ms-routing-request-id": "WESTUS2:20210507T011930Z:25ed3b17-87de-4ea5-923f-112d80e14715" + "x-ms-correlation-request-id": "d79c1cf8-ffd5-4c40-8d01-df175e27e53b", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "d79c1cf8-ffd5-4c40-8d01-df175e27e53b", + "x-ms-routing-request-id": "WESTUS2:20210519T185740Z:d79c1cf8-ffd5-4c40-8d01-df175e27e53b" }, "ResponseBody": [] }, @@ -6404,7 +6428,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed41acc622d13a2cddb3025879e08fa8", "x-ms-return-client-request-id": "true" }, @@ -6413,17 +6437,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:30 GMT", + "Date": "Wed, 19 May 2021 18:57:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4132d852-5b01-4138-a6df-b338d512c1e2", - "x-ms-ratelimit-remaining-subscription-reads": "11448", - "x-ms-request-id": "4132d852-5b01-4138-a6df-b338d512c1e2", - "x-ms-routing-request-id": "WESTUS2:20210507T011931Z:4132d852-5b01-4138-a6df-b338d512c1e2" + "x-ms-correlation-request-id": "dcfd8403-51f6-4545-9469-f10028fd4d9d", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "dcfd8403-51f6-4545-9469-f10028fd4d9d", + "x-ms-routing-request-id": "WESTUS2:20210519T185741Z:dcfd8403-51f6-4545-9469-f10028fd4d9d" }, "ResponseBody": [] }, @@ -6432,7 +6456,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8b721c9a3914ba181fffdec7aa28f055", "x-ms-return-client-request-id": "true" }, @@ -6441,17 +6465,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:31 GMT", + "Date": "Wed, 19 May 2021 18:57:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df51a059-25e3-43cb-8f29-341830d84c5b", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "df51a059-25e3-43cb-8f29-341830d84c5b", - "x-ms-routing-request-id": "WESTUS2:20210507T011932Z:df51a059-25e3-43cb-8f29-341830d84c5b" + "x-ms-correlation-request-id": "b3396afd-b06c-41bb-8a8b-e9db115e8d42", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "b3396afd-b06c-41bb-8a8b-e9db115e8d42", + "x-ms-routing-request-id": "WESTUS2:20210519T185742Z:b3396afd-b06c-41bb-8a8b-e9db115e8d42" }, "ResponseBody": [] }, @@ -6460,7 +6484,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38aa2143212416ca8b457f7b37d9e50d", "x-ms-return-client-request-id": "true" }, @@ -6469,17 +6493,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:32 GMT", + "Date": "Wed, 19 May 2021 18:57:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce0152e2-081a-46f6-a1b7-95b09dc43d23", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "ce0152e2-081a-46f6-a1b7-95b09dc43d23", - "x-ms-routing-request-id": "WESTUS2:20210507T011933Z:ce0152e2-081a-46f6-a1b7-95b09dc43d23" + "x-ms-correlation-request-id": "ebbbb2c8-8ab5-4799-b8f7-5529d348872d", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "ebbbb2c8-8ab5-4799-b8f7-5529d348872d", + "x-ms-routing-request-id": "WESTUS2:20210519T185743Z:ebbbb2c8-8ab5-4799-b8f7-5529d348872d" }, "ResponseBody": [] }, @@ -6488,7 +6512,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "10ac9fd3330b8c509386cdd144658fb5", "x-ms-return-client-request-id": "true" }, @@ -6497,17 +6521,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:33 GMT", + "Date": "Wed, 19 May 2021 18:57:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d576048-24dd-423b-83e1-b36df2764d83", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "4d576048-24dd-423b-83e1-b36df2764d83", - "x-ms-routing-request-id": "WESTUS2:20210507T011934Z:4d576048-24dd-423b-83e1-b36df2764d83" + "x-ms-correlation-request-id": "e519a148-0ae2-4c6e-b275-b84728bd567d", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "e519a148-0ae2-4c6e-b275-b84728bd567d", + "x-ms-routing-request-id": "WESTUS2:20210519T185744Z:e519a148-0ae2-4c6e-b275-b84728bd567d" }, "ResponseBody": [] }, @@ -6516,7 +6540,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5815adc356357884515cffcfb99c8345", "x-ms-return-client-request-id": "true" }, @@ -6525,17 +6549,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:34 GMT", + "Date": "Wed, 19 May 2021 18:57:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1c5c76a-b30f-48a1-b1e2-09568fdd0808", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "f1c5c76a-b30f-48a1-b1e2-09568fdd0808", - "x-ms-routing-request-id": "WESTUS2:20210507T011935Z:f1c5c76a-b30f-48a1-b1e2-09568fdd0808" + "x-ms-correlation-request-id": "dc2c103c-4c29-41ca-8280-87b435437b0f", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "dc2c103c-4c29-41ca-8280-87b435437b0f", + "x-ms-routing-request-id": "WESTUS2:20210519T185745Z:dc2c103c-4c29-41ca-8280-87b435437b0f" }, "ResponseBody": [] }, @@ -6544,7 +6568,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0af3d11adf7b0f49d11da59d54f8d226", "x-ms-return-client-request-id": "true" }, @@ -6553,17 +6577,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:35 GMT", + "Date": "Wed, 19 May 2021 18:57:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17bac94d-c312-4dd1-8c89-e95cfc310c13", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "17bac94d-c312-4dd1-8c89-e95cfc310c13", - "x-ms-routing-request-id": "WESTUS2:20210507T011936Z:17bac94d-c312-4dd1-8c89-e95cfc310c13" + "x-ms-correlation-request-id": "b1677b71-1ba8-4c5f-87d3-44211a59497d", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "b1677b71-1ba8-4c5f-87d3-44211a59497d", + "x-ms-routing-request-id": "WESTUS2:20210519T185746Z:b1677b71-1ba8-4c5f-87d3-44211a59497d" }, "ResponseBody": [] }, @@ -6572,7 +6596,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8ab8cab58cc47cd71b34bfaf3481d3f6", "x-ms-return-client-request-id": "true" }, @@ -6581,17 +6605,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:36 GMT", + "Date": "Wed, 19 May 2021 18:57:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28aefe33-4cab-4780-9d7d-8ba92af280c8", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "28aefe33-4cab-4780-9d7d-8ba92af280c8", - "x-ms-routing-request-id": "WESTUS2:20210507T011937Z:28aefe33-4cab-4780-9d7d-8ba92af280c8" + "x-ms-correlation-request-id": "cc1ca691-1752-47fa-9c11-b37f8be3cae1", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "cc1ca691-1752-47fa-9c11-b37f8be3cae1", + "x-ms-routing-request-id": "WESTUS2:20210519T185747Z:cc1ca691-1752-47fa-9c11-b37f8be3cae1" }, "ResponseBody": [] }, @@ -6600,7 +6624,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "72b788038471e33a63058718b1e62459", "x-ms-return-client-request-id": "true" }, @@ -6609,17 +6633,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:37 GMT", + "Date": "Wed, 19 May 2021 18:57:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3b88a1d-35a0-4a00-ab29-d8635b4c93c6", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "b3b88a1d-35a0-4a00-ab29-d8635b4c93c6", - "x-ms-routing-request-id": "WESTUS2:20210507T011938Z:b3b88a1d-35a0-4a00-ab29-d8635b4c93c6" + "x-ms-correlation-request-id": "cf9cdd37-2edc-4e67-a7a4-afbc2ee6bed1", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "cf9cdd37-2edc-4e67-a7a4-afbc2ee6bed1", + "x-ms-routing-request-id": "WESTUS2:20210519T185748Z:cf9cdd37-2edc-4e67-a7a4-afbc2ee6bed1" }, "ResponseBody": [] }, @@ -6628,7 +6652,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef19d88af9e48d81fa76ef46209ada4f", "x-ms-return-client-request-id": "true" }, @@ -6637,17 +6661,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:38 GMT", + "Date": "Wed, 19 May 2021 18:57:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "840b8477-5e80-4ecb-b4e6-3654969b6d56", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "840b8477-5e80-4ecb-b4e6-3654969b6d56", - "x-ms-routing-request-id": "WESTUS2:20210507T011939Z:840b8477-5e80-4ecb-b4e6-3654969b6d56" + "x-ms-correlation-request-id": "ddeaf14f-8739-4c52-90a2-8663de8bcb5f", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "ddeaf14f-8739-4c52-90a2-8663de8bcb5f", + "x-ms-routing-request-id": "WESTUS2:20210519T185749Z:ddeaf14f-8739-4c52-90a2-8663de8bcb5f" }, "ResponseBody": [] }, @@ -6656,7 +6680,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb99ae4a5f4031b58fd526be05bfca35", "x-ms-return-client-request-id": "true" }, @@ -6665,17 +6689,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:40 GMT", + "Date": "Wed, 19 May 2021 18:57:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63dd747c-0f18-407a-bfb9-078d79121236", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "63dd747c-0f18-407a-bfb9-078d79121236", - "x-ms-routing-request-id": "WESTUS2:20210507T011940Z:63dd747c-0f18-407a-bfb9-078d79121236" + "x-ms-correlation-request-id": "0c174926-d398-4c20-9eeb-a980d95bb522", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "0c174926-d398-4c20-9eeb-a980d95bb522", + "x-ms-routing-request-id": "WESTUS2:20210519T185750Z:0c174926-d398-4c20-9eeb-a980d95bb522" }, "ResponseBody": [] }, @@ -6684,7 +6708,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b256610e3680a12062a78fb95f3c2c9", "x-ms-return-client-request-id": "true" }, @@ -6693,17 +6717,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:41 GMT", + "Date": "Wed, 19 May 2021 18:57:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "161b072a-e416-4aee-a92b-91efe90f35aa", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "161b072a-e416-4aee-a92b-91efe90f35aa", - "x-ms-routing-request-id": "WESTUS2:20210507T011941Z:161b072a-e416-4aee-a92b-91efe90f35aa" + "x-ms-correlation-request-id": "2a18ddac-e34b-4789-b403-15a39c0064ae", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "2a18ddac-e34b-4789-b403-15a39c0064ae", + "x-ms-routing-request-id": "WESTUS2:20210519T185751Z:2a18ddac-e34b-4789-b403-15a39c0064ae" }, "ResponseBody": [] }, @@ -6712,7 +6736,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "03cd372a584c2a1823e75f0fd2c3873a", "x-ms-return-client-request-id": "true" }, @@ -6721,17 +6745,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:42 GMT", + "Date": "Wed, 19 May 2021 18:57:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "450379c0-d637-4411-9af6-f1be2fe7f856", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "450379c0-d637-4411-9af6-f1be2fe7f856", - "x-ms-routing-request-id": "WESTUS2:20210507T011942Z:450379c0-d637-4411-9af6-f1be2fe7f856" + "x-ms-correlation-request-id": "b65adda1-4c09-4e87-8f8b-67071b264eb5", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "b65adda1-4c09-4e87-8f8b-67071b264eb5", + "x-ms-routing-request-id": "WESTUS2:20210519T185752Z:b65adda1-4c09-4e87-8f8b-67071b264eb5" }, "ResponseBody": [] }, @@ -6740,7 +6764,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ba36baab7f7566e79b8ec515e6ba9c9b", "x-ms-return-client-request-id": "true" }, @@ -6749,17 +6773,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:43 GMT", + "Date": "Wed, 19 May 2021 18:57:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c01f3ca1-bff2-4a19-82dc-12a61b53ebaf", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "c01f3ca1-bff2-4a19-82dc-12a61b53ebaf", - "x-ms-routing-request-id": "WESTUS2:20210507T011943Z:c01f3ca1-bff2-4a19-82dc-12a61b53ebaf" + "x-ms-correlation-request-id": "4d76c211-897f-4424-aaa4-fffd81b3f63d", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "4d76c211-897f-4424-aaa4-fffd81b3f63d", + "x-ms-routing-request-id": "WESTUS2:20210519T185753Z:4d76c211-897f-4424-aaa4-fffd81b3f63d" }, "ResponseBody": [] }, @@ -6768,7 +6792,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ce935d12c7f1b7e84dfa388083033743", "x-ms-return-client-request-id": "true" }, @@ -6777,17 +6801,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:44 GMT", + "Date": "Wed, 19 May 2021 18:57:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6046a2c1-2e5a-4c57-a93e-87b48028c8c8", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "6046a2c1-2e5a-4c57-a93e-87b48028c8c8", - "x-ms-routing-request-id": "WESTUS2:20210507T011944Z:6046a2c1-2e5a-4c57-a93e-87b48028c8c8" + "x-ms-correlation-request-id": "ab5c0b22-c966-428a-af08-d0d1447dc332", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "ab5c0b22-c966-428a-af08-d0d1447dc332", + "x-ms-routing-request-id": "WESTUS2:20210519T185754Z:ab5c0b22-c966-428a-af08-d0d1447dc332" }, "ResponseBody": [] }, @@ -6796,7 +6820,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "db4f3da308bdab53506668bd92024469", "x-ms-return-client-request-id": "true" }, @@ -6805,17 +6829,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:45 GMT", + "Date": "Wed, 19 May 2021 18:57:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4345e08-b378-4582-bc21-5536d32899da", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "e4345e08-b378-4582-bc21-5536d32899da", - "x-ms-routing-request-id": "WESTUS2:20210507T011945Z:e4345e08-b378-4582-bc21-5536d32899da" + "x-ms-correlation-request-id": "189f892e-980f-44a1-9895-9baa363fa818", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "189f892e-980f-44a1-9895-9baa363fa818", + "x-ms-routing-request-id": "WESTUS2:20210519T185755Z:189f892e-980f-44a1-9895-9baa363fa818" }, "ResponseBody": [] }, @@ -6824,7 +6848,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75fcc34bb92fe449d27e6d7b4667e297", "x-ms-return-client-request-id": "true" }, @@ -6833,17 +6857,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:46 GMT", + "Date": "Wed, 19 May 2021 18:57:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "930643ca-b53b-4028-bd80-ab9def8e1759", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "930643ca-b53b-4028-bd80-ab9def8e1759", - "x-ms-routing-request-id": "WESTUS2:20210507T011946Z:930643ca-b53b-4028-bd80-ab9def8e1759" + "x-ms-correlation-request-id": "c6212d4b-40b4-471b-90d2-f4b0b9cc539e", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "c6212d4b-40b4-471b-90d2-f4b0b9cc539e", + "x-ms-routing-request-id": "WESTUS2:20210519T185756Z:c6212d4b-40b4-471b-90d2-f4b0b9cc539e" }, "ResponseBody": [] }, @@ -6852,7 +6876,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a8728157c06a0ade09e77e8b5e2a244b", "x-ms-return-client-request-id": "true" }, @@ -6861,17 +6885,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:47 GMT", + "Date": "Wed, 19 May 2021 18:57:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfa3c6a8-e047-496f-8cd6-db6b1b0e857f", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "cfa3c6a8-e047-496f-8cd6-db6b1b0e857f", - "x-ms-routing-request-id": "WESTUS2:20210507T011947Z:cfa3c6a8-e047-496f-8cd6-db6b1b0e857f" + "x-ms-correlation-request-id": "1fcceef7-960a-40d0-8ad3-ae0b5b4934bf", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "1fcceef7-960a-40d0-8ad3-ae0b5b4934bf", + "x-ms-routing-request-id": "WESTUS2:20210519T185757Z:1fcceef7-960a-40d0-8ad3-ae0b5b4934bf" }, "ResponseBody": [] }, @@ -6880,7 +6904,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c034ceb6c206e914f46a093e9bd765e8", "x-ms-return-client-request-id": "true" }, @@ -6889,17 +6913,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:48 GMT", + "Date": "Wed, 19 May 2021 18:57:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e9f7454-3816-4c28-8511-47c31e3008fd", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "6e9f7454-3816-4c28-8511-47c31e3008fd", - "x-ms-routing-request-id": "WESTUS2:20210507T011948Z:6e9f7454-3816-4c28-8511-47c31e3008fd" + "x-ms-correlation-request-id": "cbe4b1d5-86dc-41e4-80ac-a95694b637aa", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "cbe4b1d5-86dc-41e4-80ac-a95694b637aa", + "x-ms-routing-request-id": "WESTUS2:20210519T185758Z:cbe4b1d5-86dc-41e4-80ac-a95694b637aa" }, "ResponseBody": [] }, @@ -6908,7 +6932,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1166d0839b8f8afee4f26c473bbd86a7", "x-ms-return-client-request-id": "true" }, @@ -6917,17 +6941,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:49 GMT", + "Date": "Wed, 19 May 2021 18:57:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38fa971b-05c0-4b49-a8af-d35099176149", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "38fa971b-05c0-4b49-a8af-d35099176149", - "x-ms-routing-request-id": "WESTUS2:20210507T011949Z:38fa971b-05c0-4b49-a8af-d35099176149" + "x-ms-correlation-request-id": "ca5174ba-86e5-4815-9f13-6ce3047c271a", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "ca5174ba-86e5-4815-9f13-6ce3047c271a", + "x-ms-routing-request-id": "WESTUS2:20210519T185759Z:ca5174ba-86e5-4815-9f13-6ce3047c271a" }, "ResponseBody": [] }, @@ -6936,7 +6960,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "77c52159223294916d88b400b7a06f31", "x-ms-return-client-request-id": "true" }, @@ -6945,17 +6969,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:50 GMT", + "Date": "Wed, 19 May 2021 18:58:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce9116e7-6bd3-4d83-99c0-3813298d41a7", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "ce9116e7-6bd3-4d83-99c0-3813298d41a7", - "x-ms-routing-request-id": "WESTUS2:20210507T011950Z:ce9116e7-6bd3-4d83-99c0-3813298d41a7" + "x-ms-correlation-request-id": "4cbe426b-7b97-4637-ac95-437207515942", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "4cbe426b-7b97-4637-ac95-437207515942", + "x-ms-routing-request-id": "WESTUS2:20210519T185800Z:4cbe426b-7b97-4637-ac95-437207515942" }, "ResponseBody": [] }, @@ -6964,7 +6988,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8d07958213c31abbd0a9db1356ccae36", "x-ms-return-client-request-id": "true" }, @@ -6973,17 +6997,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:51 GMT", + "Date": "Wed, 19 May 2021 18:58:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53491847-f974-4242-9979-dcc829b24e2d", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "53491847-f974-4242-9979-dcc829b24e2d", - "x-ms-routing-request-id": "WESTUS2:20210507T011951Z:53491847-f974-4242-9979-dcc829b24e2d" + "x-ms-correlation-request-id": "471ac212-9df9-4163-b569-c6416d887042", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "471ac212-9df9-4163-b569-c6416d887042", + "x-ms-routing-request-id": "WESTUS2:20210519T185801Z:471ac212-9df9-4163-b569-c6416d887042" }, "ResponseBody": [] }, @@ -6992,7 +7016,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "79e461e4ed1260b53fd2a306e7fed344", "x-ms-return-client-request-id": "true" }, @@ -7001,17 +7025,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:52 GMT", + "Date": "Wed, 19 May 2021 18:58:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea2f3a23-d95b-477c-a53e-56dc63c8b5fb", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "ea2f3a23-d95b-477c-a53e-56dc63c8b5fb", - "x-ms-routing-request-id": "WESTUS2:20210507T011952Z:ea2f3a23-d95b-477c-a53e-56dc63c8b5fb" + "x-ms-correlation-request-id": "1b847cb1-fa32-4e80-bd27-6a8294435340", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "1b847cb1-fa32-4e80-bd27-6a8294435340", + "x-ms-routing-request-id": "WESTUS2:20210519T185803Z:1b847cb1-fa32-4e80-bd27-6a8294435340" }, "ResponseBody": [] }, @@ -7020,7 +7044,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a6c53a83f8b646e466aaa789477d3ea1", "x-ms-return-client-request-id": "true" }, @@ -7029,17 +7053,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:53 GMT", + "Date": "Wed, 19 May 2021 18:58:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3d0a6d0-4c96-4fd9-9a2f-2128560d6a80", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "c3d0a6d0-4c96-4fd9-9a2f-2128560d6a80", - "x-ms-routing-request-id": "WESTUS2:20210507T011953Z:c3d0a6d0-4c96-4fd9-9a2f-2128560d6a80" + "x-ms-correlation-request-id": "460c3abf-3e14-496d-9f7e-eb40843e8bdf", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "460c3abf-3e14-496d-9f7e-eb40843e8bdf", + "x-ms-routing-request-id": "WESTUS2:20210519T185804Z:460c3abf-3e14-496d-9f7e-eb40843e8bdf" }, "ResponseBody": [] }, @@ -7048,7 +7072,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "561c7ddaf5bb941fdfa64ef170b433d2", "x-ms-return-client-request-id": "true" }, @@ -7057,17 +7081,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:54 GMT", + "Date": "Wed, 19 May 2021 18:58:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5602555c-9127-4b1a-8b9f-344894deb86c", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "5602555c-9127-4b1a-8b9f-344894deb86c", - "x-ms-routing-request-id": "WESTUS2:20210507T011954Z:5602555c-9127-4b1a-8b9f-344894deb86c" + "x-ms-correlation-request-id": "b35b7dfe-ea3e-451d-ab2e-b7d72bb4eb2c", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "b35b7dfe-ea3e-451d-ab2e-b7d72bb4eb2c", + "x-ms-routing-request-id": "WESTUS2:20210519T185805Z:b35b7dfe-ea3e-451d-ab2e-b7d72bb4eb2c" }, "ResponseBody": [] }, @@ -7076,7 +7100,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1b9096d60806eb807d9e1367462c19c1", "x-ms-return-client-request-id": "true" }, @@ -7085,17 +7109,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:55 GMT", + "Date": "Wed, 19 May 2021 18:58:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4cfe5a2d-124c-491e-9372-78b04f05f249", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "4cfe5a2d-124c-491e-9372-78b04f05f249", - "x-ms-routing-request-id": "WESTUS2:20210507T011955Z:4cfe5a2d-124c-491e-9372-78b04f05f249" + "x-ms-correlation-request-id": "44434561-3c14-413a-9968-213afdf57f3a", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "44434561-3c14-413a-9968-213afdf57f3a", + "x-ms-routing-request-id": "WESTUS2:20210519T185806Z:44434561-3c14-413a-9968-213afdf57f3a" }, "ResponseBody": [] }, @@ -7104,7 +7128,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a2c01937ce28d881b30c610a9f2d5b1", "x-ms-return-client-request-id": "true" }, @@ -7113,17 +7137,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:56 GMT", + "Date": "Wed, 19 May 2021 18:58:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b04b7591-c0cd-444f-bf0f-75e3d51a8faf", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "b04b7591-c0cd-444f-bf0f-75e3d51a8faf", - "x-ms-routing-request-id": "WESTUS2:20210507T011956Z:b04b7591-c0cd-444f-bf0f-75e3d51a8faf" + "x-ms-correlation-request-id": "93e6daf3-2a7d-4dc3-b43a-c7e49a4aa983", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "93e6daf3-2a7d-4dc3-b43a-c7e49a4aa983", + "x-ms-routing-request-id": "WESTUS2:20210519T185807Z:93e6daf3-2a7d-4dc3-b43a-c7e49a4aa983" }, "ResponseBody": [] }, @@ -7132,7 +7156,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b1b2d57722edd29afd30d91ce2b74eb2", "x-ms-return-client-request-id": "true" }, @@ -7141,17 +7165,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:57 GMT", + "Date": "Wed, 19 May 2021 18:58:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "917cd678-645e-457c-af34-ab24d4e3c7e1", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "917cd678-645e-457c-af34-ab24d4e3c7e1", - "x-ms-routing-request-id": "WESTUS2:20210507T011958Z:917cd678-645e-457c-af34-ab24d4e3c7e1" + "x-ms-correlation-request-id": "fad08665-ea59-40c8-bd6b-319c841d9454", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "fad08665-ea59-40c8-bd6b-319c841d9454", + "x-ms-routing-request-id": "WESTUS2:20210519T185808Z:fad08665-ea59-40c8-bd6b-319c841d9454" }, "ResponseBody": [] }, @@ -7160,7 +7184,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6e5e8d8dc98859ef0d0200d64170428a", "x-ms-return-client-request-id": "true" }, @@ -7169,17 +7193,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:58 GMT", + "Date": "Wed, 19 May 2021 18:58:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01317705-733b-4653-9617-1b7022b913f0", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "01317705-733b-4653-9617-1b7022b913f0", - "x-ms-routing-request-id": "WESTUS2:20210507T011959Z:01317705-733b-4653-9617-1b7022b913f0" + "x-ms-correlation-request-id": "5d134f35-6ddc-40eb-be02-7f868f5e8609", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "5d134f35-6ddc-40eb-be02-7f868f5e8609", + "x-ms-routing-request-id": "WESTUS2:20210519T185809Z:5d134f35-6ddc-40eb-be02-7f868f5e8609" }, "ResponseBody": [] }, @@ -7188,7 +7212,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71f061c8677970d367596db2a36caa63", "x-ms-return-client-request-id": "true" }, @@ -7197,17 +7221,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:19:59 GMT", + "Date": "Wed, 19 May 2021 18:58:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30cc8093-909e-4da8-8a29-597171cb3539", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "30cc8093-909e-4da8-8a29-597171cb3539", - "x-ms-routing-request-id": "WESTUS2:20210507T012000Z:30cc8093-909e-4da8-8a29-597171cb3539" + "x-ms-correlation-request-id": "32be6763-0e00-4b38-84ca-7fb69f02328a", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "32be6763-0e00-4b38-84ca-7fb69f02328a", + "x-ms-routing-request-id": "WESTUS2:20210519T185810Z:32be6763-0e00-4b38-84ca-7fb69f02328a" }, "ResponseBody": [] }, @@ -7216,7 +7240,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1c8214e26794ae28e558a3eb22c4918c", "x-ms-return-client-request-id": "true" }, @@ -7225,17 +7249,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:00 GMT", + "Date": "Wed, 19 May 2021 18:58:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60015007-56e0-4297-a2d2-af6625ccce05", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "60015007-56e0-4297-a2d2-af6625ccce05", - "x-ms-routing-request-id": "WESTUS2:20210507T012001Z:60015007-56e0-4297-a2d2-af6625ccce05" + "x-ms-correlation-request-id": "c18684c8-2207-4e16-b7e1-ba2096d9001f", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "c18684c8-2207-4e16-b7e1-ba2096d9001f", + "x-ms-routing-request-id": "WESTUS2:20210519T185811Z:c18684c8-2207-4e16-b7e1-ba2096d9001f" }, "ResponseBody": [] }, @@ -7244,7 +7268,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80534eedddc72538b9ed072f5b3db6a1", "x-ms-return-client-request-id": "true" }, @@ -7253,17 +7277,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:01 GMT", + "Date": "Wed, 19 May 2021 18:58:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a1c7ac3-e1bc-420f-948a-c4297fd96368", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "1a1c7ac3-e1bc-420f-948a-c4297fd96368", - "x-ms-routing-request-id": "WESTUS2:20210507T012002Z:1a1c7ac3-e1bc-420f-948a-c4297fd96368" + "x-ms-correlation-request-id": "5abe0f93-e056-4c3a-84a2-dc3e0ac8164e", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "5abe0f93-e056-4c3a-84a2-dc3e0ac8164e", + "x-ms-routing-request-id": "WESTUS2:20210519T185812Z:5abe0f93-e056-4c3a-84a2-dc3e0ac8164e" }, "ResponseBody": [] }, @@ -7272,7 +7296,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2df49c5725ed61f639418b21c3e84ea2", "x-ms-return-client-request-id": "true" }, @@ -7281,17 +7305,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:02 GMT", + "Date": "Wed, 19 May 2021 18:58:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6cddc9a-52ce-4b5b-b247-9b3c1fd61104", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "d6cddc9a-52ce-4b5b-b247-9b3c1fd61104", - "x-ms-routing-request-id": "WESTUS2:20210507T012003Z:d6cddc9a-52ce-4b5b-b247-9b3c1fd61104" + "x-ms-correlation-request-id": "6d6fd3f5-3e46-4ec5-82aa-b9f2c4a810b6", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "6d6fd3f5-3e46-4ec5-82aa-b9f2c4a810b6", + "x-ms-routing-request-id": "WESTUS2:20210519T185813Z:6d6fd3f5-3e46-4ec5-82aa-b9f2c4a810b6" }, "ResponseBody": [] }, @@ -7300,7 +7324,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "54c4e0c82a18049cdb5c63a65ff852a8", "x-ms-return-client-request-id": "true" }, @@ -7309,17 +7333,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:03 GMT", + "Date": "Wed, 19 May 2021 18:58:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bde66251-00d9-44dd-bb96-ae7e30e6a6ec", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "bde66251-00d9-44dd-bb96-ae7e30e6a6ec", - "x-ms-routing-request-id": "WESTUS2:20210507T012004Z:bde66251-00d9-44dd-bb96-ae7e30e6a6ec" + "x-ms-correlation-request-id": "b52fa4ad-7462-49a2-a0d1-108387797ab6", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "b52fa4ad-7462-49a2-a0d1-108387797ab6", + "x-ms-routing-request-id": "WESTUS2:20210519T185814Z:b52fa4ad-7462-49a2-a0d1-108387797ab6" }, "ResponseBody": [] }, @@ -7328,7 +7352,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "859302a263d0c89f58f24785511761d0", "x-ms-return-client-request-id": "true" }, @@ -7337,17 +7361,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:04 GMT", + "Date": "Wed, 19 May 2021 18:58:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8b53aa3-9d44-43b0-bdd1-ca6741c33bd0", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "c8b53aa3-9d44-43b0-bdd1-ca6741c33bd0", - "x-ms-routing-request-id": "WESTUS2:20210507T012005Z:c8b53aa3-9d44-43b0-bdd1-ca6741c33bd0" + "x-ms-correlation-request-id": "cb52bccb-a5d3-40b7-84eb-38b9da8c578f", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "cb52bccb-a5d3-40b7-84eb-38b9da8c578f", + "x-ms-routing-request-id": "WESTUS2:20210519T185815Z:cb52bccb-a5d3-40b7-84eb-38b9da8c578f" }, "ResponseBody": [] }, @@ -7356,7 +7380,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7b66649f61792d8900ef5190c24f0140", "x-ms-return-client-request-id": "true" }, @@ -7365,17 +7389,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:05 GMT", + "Date": "Wed, 19 May 2021 18:58:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8eeb2897-52c7-4cee-a838-4f10ea0fd520", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "8eeb2897-52c7-4cee-a838-4f10ea0fd520", - "x-ms-routing-request-id": "WESTUS2:20210507T012006Z:8eeb2897-52c7-4cee-a838-4f10ea0fd520" + "x-ms-correlation-request-id": "776ce5ec-34ab-4642-9418-25e6f6f20387", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "776ce5ec-34ab-4642-9418-25e6f6f20387", + "x-ms-routing-request-id": "WESTUS2:20210519T185816Z:776ce5ec-34ab-4642-9418-25e6f6f20387" }, "ResponseBody": [] }, @@ -7384,7 +7408,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c17fe3eec85464d241fcfc25e216b2c4", "x-ms-return-client-request-id": "true" }, @@ -7393,17 +7417,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:07 GMT", + "Date": "Wed, 19 May 2021 18:58:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "591e63e2-3088-45a0-a7ce-f3f0f391581d", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "591e63e2-3088-45a0-a7ce-f3f0f391581d", - "x-ms-routing-request-id": "WESTUS2:20210507T012007Z:591e63e2-3088-45a0-a7ce-f3f0f391581d" + "x-ms-correlation-request-id": "7a622e5c-eac5-4c99-bd3c-711afc093bd4", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "7a622e5c-eac5-4c99-bd3c-711afc093bd4", + "x-ms-routing-request-id": "WESTUS2:20210519T185817Z:7a622e5c-eac5-4c99-bd3c-711afc093bd4" }, "ResponseBody": [] }, @@ -7412,7 +7436,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fb0792fad792402f786685e0120e0508", "x-ms-return-client-request-id": "true" }, @@ -7421,17 +7445,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:08 GMT", + "Date": "Wed, 19 May 2021 18:58:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "329701de-4d75-499f-ae70-c0c1ca85566e", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "329701de-4d75-499f-ae70-c0c1ca85566e", - "x-ms-routing-request-id": "WESTUS2:20210507T012008Z:329701de-4d75-499f-ae70-c0c1ca85566e" + "x-ms-correlation-request-id": "b757ac40-a89f-48f0-8206-c1d7a0cffd54", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "b757ac40-a89f-48f0-8206-c1d7a0cffd54", + "x-ms-routing-request-id": "WESTUS2:20210519T185818Z:b757ac40-a89f-48f0-8206-c1d7a0cffd54" }, "ResponseBody": [] }, @@ -7440,7 +7464,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6e9606f0a098d67c92023a7d65634ae9", "x-ms-return-client-request-id": "true" }, @@ -7449,17 +7473,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:09 GMT", + "Date": "Wed, 19 May 2021 18:58:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87f7b1c1-f172-4c9c-a3bf-bf44cfab4284", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "87f7b1c1-f172-4c9c-a3bf-bf44cfab4284", - "x-ms-routing-request-id": "WESTUS2:20210507T012009Z:87f7b1c1-f172-4c9c-a3bf-bf44cfab4284" + "x-ms-correlation-request-id": "054723a9-e009-40c9-9961-d9001bd2128a", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "054723a9-e009-40c9-9961-d9001bd2128a", + "x-ms-routing-request-id": "WESTUS2:20210519T185819Z:054723a9-e009-40c9-9961-d9001bd2128a" }, "ResponseBody": [] }, @@ -7468,7 +7492,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "30968c3c064817aeb43e48ee43f15132", "x-ms-return-client-request-id": "true" }, @@ -7477,17 +7501,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:10 GMT", + "Date": "Wed, 19 May 2021 18:58:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f6309d5-735d-41df-b55b-2cb2fabab473", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "7f6309d5-735d-41df-b55b-2cb2fabab473", - "x-ms-routing-request-id": "WESTUS2:20210507T012010Z:7f6309d5-735d-41df-b55b-2cb2fabab473" + "x-ms-correlation-request-id": "c1acda8a-db60-4ffd-aa75-e9b741c30ee1", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "c1acda8a-db60-4ffd-aa75-e9b741c30ee1", + "x-ms-routing-request-id": "WESTUS2:20210519T185820Z:c1acda8a-db60-4ffd-aa75-e9b741c30ee1" }, "ResponseBody": [] }, @@ -7496,7 +7520,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dc34f4f6447f5a2b163068909cb2db14", "x-ms-return-client-request-id": "true" }, @@ -7505,17 +7529,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:11 GMT", + "Date": "Wed, 19 May 2021 18:58:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a9f7782-fab5-40bc-8e54-28a1ea8c9d15", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "0a9f7782-fab5-40bc-8e54-28a1ea8c9d15", - "x-ms-routing-request-id": "WESTUS2:20210507T012011Z:0a9f7782-fab5-40bc-8e54-28a1ea8c9d15" + "x-ms-correlation-request-id": "d82b1f83-dbff-4f3f-b8a9-b6d67ca1d2e1", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "d82b1f83-dbff-4f3f-b8a9-b6d67ca1d2e1", + "x-ms-routing-request-id": "WESTUS2:20210519T185821Z:d82b1f83-dbff-4f3f-b8a9-b6d67ca1d2e1" }, "ResponseBody": [] }, @@ -7524,7 +7548,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85a39b1bd578eabf577fba59578d93a1", "x-ms-return-client-request-id": "true" }, @@ -7533,17 +7557,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:12 GMT", + "Date": "Wed, 19 May 2021 18:58:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9d75abb-3aa8-4b79-b510-0cf7fc5e90c0", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "c9d75abb-3aa8-4b79-b510-0cf7fc5e90c0", - "x-ms-routing-request-id": "WESTUS2:20210507T012012Z:c9d75abb-3aa8-4b79-b510-0cf7fc5e90c0" + "x-ms-correlation-request-id": "1e9550c9-dad5-4457-b84d-3e72d5fa6211", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "1e9550c9-dad5-4457-b84d-3e72d5fa6211", + "x-ms-routing-request-id": "WESTUS2:20210519T185822Z:1e9550c9-dad5-4457-b84d-3e72d5fa6211" }, "ResponseBody": [] }, @@ -7552,7 +7576,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "708607b06d2ef869613b1a189e1e7b02", "x-ms-return-client-request-id": "true" }, @@ -7561,17 +7585,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:13 GMT", + "Date": "Wed, 19 May 2021 18:58:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dac10398-c73d-468a-ae56-df2be20c075d", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "dac10398-c73d-468a-ae56-df2be20c075d", - "x-ms-routing-request-id": "WESTUS2:20210507T012013Z:dac10398-c73d-468a-ae56-df2be20c075d" + "x-ms-correlation-request-id": "d5f18949-328f-4893-893b-ceace009c115", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "d5f18949-328f-4893-893b-ceace009c115", + "x-ms-routing-request-id": "WESTUS2:20210519T185823Z:d5f18949-328f-4893-893b-ceace009c115" }, "ResponseBody": [] }, @@ -7580,7 +7604,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a8d23363cc4d21ba344a840089d20388", "x-ms-return-client-request-id": "true" }, @@ -7589,17 +7613,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:14 GMT", + "Date": "Wed, 19 May 2021 18:58:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a718a3c2-5c08-4eff-ad2f-ae99f2861406", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "a718a3c2-5c08-4eff-ad2f-ae99f2861406", - "x-ms-routing-request-id": "WESTUS2:20210507T012014Z:a718a3c2-5c08-4eff-ad2f-ae99f2861406" + "x-ms-correlation-request-id": "4ebae793-d87d-41a0-bdc7-aa5c3d0c00f8", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "4ebae793-d87d-41a0-bdc7-aa5c3d0c00f8", + "x-ms-routing-request-id": "WESTUS2:20210519T185824Z:4ebae793-d87d-41a0-bdc7-aa5c3d0c00f8" }, "ResponseBody": [] }, @@ -7608,7 +7632,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95dfc69c6a2baee631aa243cbaa74b39", "x-ms-return-client-request-id": "true" }, @@ -7617,17 +7641,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:15 GMT", + "Date": "Wed, 19 May 2021 18:58:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "998ef6fd-7f0b-4b99-b03b-2459f0fca3e9", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "998ef6fd-7f0b-4b99-b03b-2459f0fca3e9", - "x-ms-routing-request-id": "WESTUS2:20210507T012015Z:998ef6fd-7f0b-4b99-b03b-2459f0fca3e9" + "x-ms-correlation-request-id": "553cecc4-3531-41c7-8f7d-ead604cc4a35", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "553cecc4-3531-41c7-8f7d-ead604cc4a35", + "x-ms-routing-request-id": "WESTUS2:20210519T185825Z:553cecc4-3531-41c7-8f7d-ead604cc4a35" }, "ResponseBody": [] }, @@ -7636,7 +7660,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23f6b804ebbae3534c643ce4e9696f8e", "x-ms-return-client-request-id": "true" }, @@ -7645,17 +7669,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:16 GMT", + "Date": "Wed, 19 May 2021 18:58:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9448ccc0-0e85-4949-8086-38494dda8b93", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "9448ccc0-0e85-4949-8086-38494dda8b93", - "x-ms-routing-request-id": "WESTUS2:20210507T012016Z:9448ccc0-0e85-4949-8086-38494dda8b93" + "x-ms-correlation-request-id": "7d6ba865-88c3-434b-9f82-4e05456b6598", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "7d6ba865-88c3-434b-9f82-4e05456b6598", + "x-ms-routing-request-id": "WESTUS2:20210519T185826Z:7d6ba865-88c3-434b-9f82-4e05456b6598" }, "ResponseBody": [] }, @@ -7664,7 +7688,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d77b9138e63ef8d64d2476a2a77e668d", "x-ms-return-client-request-id": "true" }, @@ -7673,17 +7697,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:17 GMT", + "Date": "Wed, 19 May 2021 18:58:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9634a64-9e49-4cc8-8b75-705c8517c1ed", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "e9634a64-9e49-4cc8-8b75-705c8517c1ed", - "x-ms-routing-request-id": "WESTUS2:20210507T012017Z:e9634a64-9e49-4cc8-8b75-705c8517c1ed" + "x-ms-correlation-request-id": "0933ee69-45be-418d-803b-cd2f05a90f91", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "0933ee69-45be-418d-803b-cd2f05a90f91", + "x-ms-routing-request-id": "WESTUS2:20210519T185827Z:0933ee69-45be-418d-803b-cd2f05a90f91" }, "ResponseBody": [] }, @@ -7692,7 +7716,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d1fc4bfedfdbb1cd73fb48c62e02c5c8", "x-ms-return-client-request-id": "true" }, @@ -7701,17 +7725,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:18 GMT", + "Date": "Wed, 19 May 2021 18:58:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edc04932-8acd-4819-8074-4991fc789436", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "edc04932-8acd-4819-8074-4991fc789436", - "x-ms-routing-request-id": "WESTUS2:20210507T012018Z:edc04932-8acd-4819-8074-4991fc789436" + "x-ms-correlation-request-id": "4c8375b9-52ed-42da-8e15-8558f0f08e03", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "4c8375b9-52ed-42da-8e15-8558f0f08e03", + "x-ms-routing-request-id": "WESTUS2:20210519T185828Z:4c8375b9-52ed-42da-8e15-8558f0f08e03" }, "ResponseBody": [] }, @@ -7720,7 +7744,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2903953b742b1efae1fdd59674b03cce", "x-ms-return-client-request-id": "true" }, @@ -7729,17 +7753,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:19 GMT", + "Date": "Wed, 19 May 2021 18:58:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b13b63b1-fde2-4faf-b635-a9e748d3a3aa", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "b13b63b1-fde2-4faf-b635-a9e748d3a3aa", - "x-ms-routing-request-id": "WESTUS2:20210507T012019Z:b13b63b1-fde2-4faf-b635-a9e748d3a3aa" + "x-ms-correlation-request-id": "33bd2f1f-4a5f-4505-8f39-2ef04cfbef3b", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "33bd2f1f-4a5f-4505-8f39-2ef04cfbef3b", + "x-ms-routing-request-id": "WESTUS2:20210519T185829Z:33bd2f1f-4a5f-4505-8f39-2ef04cfbef3b" }, "ResponseBody": [] }, @@ -7748,7 +7772,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9de5affd9e6d58b3c3ca64429d0fca4b", "x-ms-return-client-request-id": "true" }, @@ -7757,17 +7781,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:20 GMT", + "Date": "Wed, 19 May 2021 18:58:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf42729b-1d52-4c1d-bcb0-8434adebe215", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "bf42729b-1d52-4c1d-bcb0-8434adebe215", - "x-ms-routing-request-id": "WESTUS2:20210507T012020Z:bf42729b-1d52-4c1d-bcb0-8434adebe215" + "x-ms-correlation-request-id": "0c400e73-ba15-4fd9-969a-d51fe4e45d6c", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "0c400e73-ba15-4fd9-969a-d51fe4e45d6c", + "x-ms-routing-request-id": "WESTUS2:20210519T185830Z:0c400e73-ba15-4fd9-969a-d51fe4e45d6c" }, "ResponseBody": [] }, @@ -7776,7 +7800,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1167ae5f3d7a8a6150deefdd0a373cc2", "x-ms-return-client-request-id": "true" }, @@ -7785,17 +7809,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:21 GMT", + "Date": "Wed, 19 May 2021 18:58:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10f1d36f-5834-4977-bdd7-c98a3b1f461d", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "10f1d36f-5834-4977-bdd7-c98a3b1f461d", - "x-ms-routing-request-id": "WESTUS2:20210507T012021Z:10f1d36f-5834-4977-bdd7-c98a3b1f461d" + "x-ms-correlation-request-id": "e9d75272-0fb0-446d-9755-d736bb791d9c", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "e9d75272-0fb0-446d-9755-d736bb791d9c", + "x-ms-routing-request-id": "WESTUS2:20210519T185831Z:e9d75272-0fb0-446d-9755-d736bb791d9c" }, "ResponseBody": [] }, @@ -7804,7 +7828,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7ec879bf271d9d5ae2ab656110b880d2", "x-ms-return-client-request-id": "true" }, @@ -7813,17 +7837,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:22 GMT", + "Date": "Wed, 19 May 2021 18:58:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b58e06a4-5933-45b9-838e-e2787fe8d15c", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "b58e06a4-5933-45b9-838e-e2787fe8d15c", - "x-ms-routing-request-id": "WESTUS2:20210507T012022Z:b58e06a4-5933-45b9-838e-e2787fe8d15c" + "x-ms-correlation-request-id": "fdc9bcde-7f0c-402b-a2ce-d33fe1f29808", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "fdc9bcde-7f0c-402b-a2ce-d33fe1f29808", + "x-ms-routing-request-id": "WESTUS2:20210519T185833Z:fdc9bcde-7f0c-402b-a2ce-d33fe1f29808" }, "ResponseBody": [] }, @@ -7832,7 +7856,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c63689332a49c0544d5a4d8eaed54e8c", "x-ms-return-client-request-id": "true" }, @@ -7841,17 +7865,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:23 GMT", + "Date": "Wed, 19 May 2021 18:58:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec2b5b93-3321-4f60-bfe1-411a8670b964", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "ec2b5b93-3321-4f60-bfe1-411a8670b964", - "x-ms-routing-request-id": "WESTUS2:20210507T012023Z:ec2b5b93-3321-4f60-bfe1-411a8670b964" + "x-ms-correlation-request-id": "15ee7070-17e0-4de3-aeb6-863cf4b1190a", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "15ee7070-17e0-4de3-aeb6-863cf4b1190a", + "x-ms-routing-request-id": "WESTUS2:20210519T185834Z:15ee7070-17e0-4de3-aeb6-863cf4b1190a" }, "ResponseBody": [] }, @@ -7860,7 +7884,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2482a28d4b46382e53ca2fcfd8007a98", "x-ms-return-client-request-id": "true" }, @@ -7869,17 +7893,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:24 GMT", + "Date": "Wed, 19 May 2021 18:58:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfaabfde-52c8-453f-b7c2-ef2eeda1a499", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "cfaabfde-52c8-453f-b7c2-ef2eeda1a499", - "x-ms-routing-request-id": "WESTUS2:20210507T012024Z:cfaabfde-52c8-453f-b7c2-ef2eeda1a499" + "x-ms-correlation-request-id": "d8ad74dc-951f-44fb-9a25-3499ead055a7", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "d8ad74dc-951f-44fb-9a25-3499ead055a7", + "x-ms-routing-request-id": "WESTUS2:20210519T185835Z:d8ad74dc-951f-44fb-9a25-3499ead055a7" }, "ResponseBody": [] }, @@ -7888,7 +7912,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80aa1d5e76009578250831c2daccee0d", "x-ms-return-client-request-id": "true" }, @@ -7897,17 +7921,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:25 GMT", + "Date": "Wed, 19 May 2021 18:58:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5dd16290-8344-4dba-a218-7e473f04f11a", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "5dd16290-8344-4dba-a218-7e473f04f11a", - "x-ms-routing-request-id": "WESTUS2:20210507T012025Z:5dd16290-8344-4dba-a218-7e473f04f11a" + "x-ms-correlation-request-id": "2af8784a-ee2d-434c-8d07-859660c7fc22", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "2af8784a-ee2d-434c-8d07-859660c7fc22", + "x-ms-routing-request-id": "WESTUS2:20210519T185836Z:2af8784a-ee2d-434c-8d07-859660c7fc22" }, "ResponseBody": [] }, @@ -7916,7 +7940,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ed3d95c5b35e78b5bfe727ffb84e74d", "x-ms-return-client-request-id": "true" }, @@ -7925,17 +7949,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:26 GMT", + "Date": "Wed, 19 May 2021 18:58:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2e80ad6-725f-4557-ae35-8df709a8ae2f", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-request-id": "f2e80ad6-725f-4557-ae35-8df709a8ae2f", - "x-ms-routing-request-id": "WESTUS2:20210507T012027Z:f2e80ad6-725f-4557-ae35-8df709a8ae2f" + "x-ms-correlation-request-id": "a4f9b287-f823-4eb6-9498-65a3f5cf11a7", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "a4f9b287-f823-4eb6-9498-65a3f5cf11a7", + "x-ms-routing-request-id": "WESTUS2:20210519T185837Z:a4f9b287-f823-4eb6-9498-65a3f5cf11a7" }, "ResponseBody": [] }, @@ -7944,7 +7968,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9130b4e0ce2a178b29edfe3d1a6c5d87", "x-ms-return-client-request-id": "true" }, @@ -7953,17 +7977,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:27 GMT", + "Date": "Wed, 19 May 2021 18:58:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ecfce8c-966d-451b-be49-f2ac0ee32dac", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-request-id": "6ecfce8c-966d-451b-be49-f2ac0ee32dac", - "x-ms-routing-request-id": "WESTUS2:20210507T012028Z:6ecfce8c-966d-451b-be49-f2ac0ee32dac" + "x-ms-correlation-request-id": "a4648e34-8b71-493a-bd3f-91657b585359", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "a4648e34-8b71-493a-bd3f-91657b585359", + "x-ms-routing-request-id": "WESTUS2:20210519T185838Z:a4648e34-8b71-493a-bd3f-91657b585359" }, "ResponseBody": [] }, @@ -7972,7 +7996,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff7221db0c2c026392c2240203f89aa0", "x-ms-return-client-request-id": "true" }, @@ -7981,17 +8005,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:28 GMT", + "Date": "Wed, 19 May 2021 18:58:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0caee22f-6e0f-49d4-8435-3dfbf4a3717a", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "0caee22f-6e0f-49d4-8435-3dfbf4a3717a", - "x-ms-routing-request-id": "WESTUS2:20210507T012029Z:0caee22f-6e0f-49d4-8435-3dfbf4a3717a" + "x-ms-correlation-request-id": "9cc9c1fb-a3aa-4d18-b84d-d970a9ef0557", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "9cc9c1fb-a3aa-4d18-b84d-d970a9ef0557", + "x-ms-routing-request-id": "WESTUS2:20210519T185839Z:9cc9c1fb-a3aa-4d18-b84d-d970a9ef0557" }, "ResponseBody": [] }, @@ -8000,7 +8024,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "25e1e3215d9c8ee24dbc44475c4dcdee", "x-ms-return-client-request-id": "true" }, @@ -8009,17 +8033,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:29 GMT", + "Date": "Wed, 19 May 2021 18:58:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8aaea931-ced4-47b2-87ae-d08579f2ed93", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-request-id": "8aaea931-ced4-47b2-87ae-d08579f2ed93", - "x-ms-routing-request-id": "WESTUS2:20210507T012030Z:8aaea931-ced4-47b2-87ae-d08579f2ed93" + "x-ms-correlation-request-id": "dda0d7a3-ee0b-4003-9563-57952b7e2cf6", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "dda0d7a3-ee0b-4003-9563-57952b7e2cf6", + "x-ms-routing-request-id": "WESTUS2:20210519T185840Z:dda0d7a3-ee0b-4003-9563-57952b7e2cf6" }, "ResponseBody": [] }, @@ -8028,7 +8052,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d9a4eba0e812d421502dff68a9891330", "x-ms-return-client-request-id": "true" }, @@ -8037,17 +8061,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:30 GMT", + "Date": "Wed, 19 May 2021 18:58:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0ec4534-6c9d-49e4-8d91-411827b9f596", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-request-id": "e0ec4534-6c9d-49e4-8d91-411827b9f596", - "x-ms-routing-request-id": "WESTUS2:20210507T012031Z:e0ec4534-6c9d-49e4-8d91-411827b9f596" + "x-ms-correlation-request-id": "b4fa147a-d6c8-43dd-aee7-b8182fe6c4b4", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "b4fa147a-d6c8-43dd-aee7-b8182fe6c4b4", + "x-ms-routing-request-id": "WESTUS2:20210519T185841Z:b4fa147a-d6c8-43dd-aee7-b8182fe6c4b4" }, "ResponseBody": [] }, @@ -8056,7 +8080,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "371c5e52388a7deb3fe4b16fc71ba544", "x-ms-return-client-request-id": "true" }, @@ -8065,17 +8089,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:31 GMT", + "Date": "Wed, 19 May 2021 18:58:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59a915e9-8003-4825-97a6-e4c2b5b73ee0", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-request-id": "59a915e9-8003-4825-97a6-e4c2b5b73ee0", - "x-ms-routing-request-id": "WESTUS2:20210507T012032Z:59a915e9-8003-4825-97a6-e4c2b5b73ee0" + "x-ms-correlation-request-id": "4883980c-134e-4977-8cd4-a71a2ad71306", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "4883980c-134e-4977-8cd4-a71a2ad71306", + "x-ms-routing-request-id": "WESTUS2:20210519T185842Z:4883980c-134e-4977-8cd4-a71a2ad71306" }, "ResponseBody": [] }, @@ -8084,7 +8108,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "186136f5c154398ec10cd46e5e7ae4c4", "x-ms-return-client-request-id": "true" }, @@ -8093,17 +8117,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:32 GMT", + "Date": "Wed, 19 May 2021 18:58:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75ee560e-4c65-4fc9-8115-9143c01fd820", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "75ee560e-4c65-4fc9-8115-9143c01fd820", - "x-ms-routing-request-id": "WESTUS2:20210507T012033Z:75ee560e-4c65-4fc9-8115-9143c01fd820" + "x-ms-correlation-request-id": "feaf7a49-eef9-4125-b5d1-2c5e16f103db", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "feaf7a49-eef9-4125-b5d1-2c5e16f103db", + "x-ms-routing-request-id": "WESTUS2:20210519T185843Z:feaf7a49-eef9-4125-b5d1-2c5e16f103db" }, "ResponseBody": [] }, @@ -8112,7 +8136,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fef413a9953168630026992d36b10c35", "x-ms-return-client-request-id": "true" }, @@ -8121,17 +8145,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:33 GMT", + "Date": "Wed, 19 May 2021 18:58:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60cec5d9-c057-4085-8f3c-59ffdbd81c5c", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-request-id": "60cec5d9-c057-4085-8f3c-59ffdbd81c5c", - "x-ms-routing-request-id": "WESTUS2:20210507T012034Z:60cec5d9-c057-4085-8f3c-59ffdbd81c5c" + "x-ms-correlation-request-id": "566e7fb8-871b-4162-8aad-cfb570c36d50", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "566e7fb8-871b-4162-8aad-cfb570c36d50", + "x-ms-routing-request-id": "WESTUS2:20210519T185844Z:566e7fb8-871b-4162-8aad-cfb570c36d50" }, "ResponseBody": [] }, @@ -8140,7 +8164,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7372ba87fb2791dccfe2757e637c1fc5", "x-ms-return-client-request-id": "true" }, @@ -8149,17 +8173,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:34 GMT", + "Date": "Wed, 19 May 2021 18:58:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a045d5f-6a5e-4c11-9e93-fd9f1eb4a626", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-request-id": "8a045d5f-6a5e-4c11-9e93-fd9f1eb4a626", - "x-ms-routing-request-id": "WESTUS2:20210507T012035Z:8a045d5f-6a5e-4c11-9e93-fd9f1eb4a626" + "x-ms-correlation-request-id": "788a54f7-20a6-4be2-82dc-3ee7b14b88d8", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "788a54f7-20a6-4be2-82dc-3ee7b14b88d8", + "x-ms-routing-request-id": "WESTUS2:20210519T185845Z:788a54f7-20a6-4be2-82dc-3ee7b14b88d8" }, "ResponseBody": [] }, @@ -8168,7 +8192,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b4c6ecffa7265f13d2f8172d27600210", "x-ms-return-client-request-id": "true" }, @@ -8177,17 +8201,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:35 GMT", + "Date": "Wed, 19 May 2021 18:58:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01941fe6-7037-44a7-8dfc-2720bf621017", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "01941fe6-7037-44a7-8dfc-2720bf621017", - "x-ms-routing-request-id": "WESTUS2:20210507T012036Z:01941fe6-7037-44a7-8dfc-2720bf621017" + "x-ms-correlation-request-id": "bd1f50d3-1f74-4d08-a861-dd151cd1d27c", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "bd1f50d3-1f74-4d08-a861-dd151cd1d27c", + "x-ms-routing-request-id": "WESTUS2:20210519T185846Z:bd1f50d3-1f74-4d08-a861-dd151cd1d27c" }, "ResponseBody": [] }, @@ -8196,7 +8220,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3e69fff7107ad9d36632e4e20e50583", "x-ms-return-client-request-id": "true" }, @@ -8205,17 +8229,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:36 GMT", + "Date": "Wed, 19 May 2021 18:58:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27df5b37-ccf6-4633-adb2-5d03550ea92c", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-request-id": "27df5b37-ccf6-4633-adb2-5d03550ea92c", - "x-ms-routing-request-id": "WESTUS2:20210507T012037Z:27df5b37-ccf6-4633-adb2-5d03550ea92c" + "x-ms-correlation-request-id": "d3cd74b8-0639-41c3-a797-9b105e4d1b84", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "d3cd74b8-0639-41c3-a797-9b105e4d1b84", + "x-ms-routing-request-id": "WESTUS2:20210519T185847Z:d3cd74b8-0639-41c3-a797-9b105e4d1b84" }, "ResponseBody": [] }, @@ -8224,7 +8248,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "492dd40758eae00ea713a12ee3ae696f", "x-ms-return-client-request-id": "true" }, @@ -8233,17 +8257,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:37 GMT", + "Date": "Wed, 19 May 2021 18:58:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a036d521-8fe6-4699-ba05-6d065794f98c", - "x-ms-ratelimit-remaining-subscription-reads": "11863", - "x-ms-request-id": "a036d521-8fe6-4699-ba05-6d065794f98c", - "x-ms-routing-request-id": "WESTUS2:20210507T012038Z:a036d521-8fe6-4699-ba05-6d065794f98c" + "x-ms-correlation-request-id": "f1f61ad8-71e7-4281-bb41-19630de62f55", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "f1f61ad8-71e7-4281-bb41-19630de62f55", + "x-ms-routing-request-id": "WESTUS2:20210519T185848Z:f1f61ad8-71e7-4281-bb41-19630de62f55" }, "ResponseBody": [] }, @@ -8252,7 +8276,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c37e64e07b968ebe4f187dc378c53fec", "x-ms-return-client-request-id": "true" }, @@ -8261,17 +8285,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:39 GMT", + "Date": "Wed, 19 May 2021 18:58:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ece9ffbb-1a5a-46e8-a984-1f2866afedee", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-request-id": "ece9ffbb-1a5a-46e8-a984-1f2866afedee", - "x-ms-routing-request-id": "WESTUS2:20210507T012039Z:ece9ffbb-1a5a-46e8-a984-1f2866afedee" + "x-ms-correlation-request-id": "f967fdc0-81db-4e39-bf32-0cdfa7cce67b", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "f967fdc0-81db-4e39-bf32-0cdfa7cce67b", + "x-ms-routing-request-id": "WESTUS2:20210519T185849Z:f967fdc0-81db-4e39-bf32-0cdfa7cce67b" }, "ResponseBody": [] }, @@ -8280,7 +8304,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "532694f3b833a7259105fcf3d06eca88", "x-ms-return-client-request-id": "true" }, @@ -8289,17 +8313,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:40 GMT", + "Date": "Wed, 19 May 2021 18:58:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15b450db-d3d3-4f4d-be10-2c48e9233a87", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-request-id": "15b450db-d3d3-4f4d-be10-2c48e9233a87", - "x-ms-routing-request-id": "WESTUS2:20210507T012040Z:15b450db-d3d3-4f4d-be10-2c48e9233a87" + "x-ms-correlation-request-id": "fad09b4b-cd46-4bb0-a049-e0c2d664bf53", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "fad09b4b-cd46-4bb0-a049-e0c2d664bf53", + "x-ms-routing-request-id": "WESTUS2:20210519T185850Z:fad09b4b-cd46-4bb0-a049-e0c2d664bf53" }, "ResponseBody": [] }, @@ -8308,7 +8332,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bb6ebff941678bed169ffad1db4a67e2", "x-ms-return-client-request-id": "true" }, @@ -8317,17 +8341,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:41 GMT", + "Date": "Wed, 19 May 2021 18:58:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95304df2-1e75-4036-834b-8f237dec08d2", - "x-ms-ratelimit-remaining-subscription-reads": "11857", - "x-ms-request-id": "95304df2-1e75-4036-834b-8f237dec08d2", - "x-ms-routing-request-id": "WESTUS2:20210507T012041Z:95304df2-1e75-4036-834b-8f237dec08d2" + "x-ms-correlation-request-id": "78c75ac1-959e-4c53-bea2-29dd20e7f292", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "78c75ac1-959e-4c53-bea2-29dd20e7f292", + "x-ms-routing-request-id": "WESTUS2:20210519T185851Z:78c75ac1-959e-4c53-bea2-29dd20e7f292" }, "ResponseBody": [] }, @@ -8336,7 +8360,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4f3ab4d41688273b3fd632907ecabee1", "x-ms-return-client-request-id": "true" }, @@ -8345,17 +8369,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:42 GMT", + "Date": "Wed, 19 May 2021 18:58:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6e57213-fe10-4863-aaee-43132501adf4", - "x-ms-ratelimit-remaining-subscription-reads": "11855", - "x-ms-request-id": "d6e57213-fe10-4863-aaee-43132501adf4", - "x-ms-routing-request-id": "WESTUS2:20210507T012042Z:d6e57213-fe10-4863-aaee-43132501adf4" + "x-ms-correlation-request-id": "6287090d-a05d-474c-afa9-09ac0dcffb15", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "6287090d-a05d-474c-afa9-09ac0dcffb15", + "x-ms-routing-request-id": "WESTUS2:20210519T185852Z:6287090d-a05d-474c-afa9-09ac0dcffb15" }, "ResponseBody": [] }, @@ -8364,7 +8388,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b9caf54e8357b285a69a3d93be54cc46", "x-ms-return-client-request-id": "true" }, @@ -8373,17 +8397,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:43 GMT", + "Date": "Wed, 19 May 2021 18:58:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10f1a6c7-8c12-41a7-a74f-6f6a21f4f0a6", - "x-ms-ratelimit-remaining-subscription-reads": "11853", - "x-ms-request-id": "10f1a6c7-8c12-41a7-a74f-6f6a21f4f0a6", - "x-ms-routing-request-id": "WESTUS2:20210507T012043Z:10f1a6c7-8c12-41a7-a74f-6f6a21f4f0a6" + "x-ms-correlation-request-id": "62915e66-b9bf-48fb-8441-d36a02a598ef", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "62915e66-b9bf-48fb-8441-d36a02a598ef", + "x-ms-routing-request-id": "WESTUS2:20210519T185853Z:62915e66-b9bf-48fb-8441-d36a02a598ef" }, "ResponseBody": [] }, @@ -8392,7 +8416,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1b1f1a9e7b33e2ff83467c900e5d0c4b", "x-ms-return-client-request-id": "true" }, @@ -8401,17 +8425,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:44 GMT", + "Date": "Wed, 19 May 2021 18:58:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e472a8bb-cc67-45cc-bb73-f778c0ddb500", - "x-ms-ratelimit-remaining-subscription-reads": "11851", - "x-ms-request-id": "e472a8bb-cc67-45cc-bb73-f778c0ddb500", - "x-ms-routing-request-id": "WESTUS2:20210507T012044Z:e472a8bb-cc67-45cc-bb73-f778c0ddb500" + "x-ms-correlation-request-id": "69fedc1d-4d49-45fd-a7b2-63ea953da7d8", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "69fedc1d-4d49-45fd-a7b2-63ea953da7d8", + "x-ms-routing-request-id": "WESTUS2:20210519T185854Z:69fedc1d-4d49-45fd-a7b2-63ea953da7d8" }, "ResponseBody": [] }, @@ -8420,7 +8444,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e58319e1ae80508a2f88a8edd9a868eb", "x-ms-return-client-request-id": "true" }, @@ -8429,17 +8453,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:45 GMT", + "Date": "Wed, 19 May 2021 18:58:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "455cff54-c614-4cff-bef6-912582fc4b3b", - "x-ms-ratelimit-remaining-subscription-reads": "11849", - "x-ms-request-id": "455cff54-c614-4cff-bef6-912582fc4b3b", - "x-ms-routing-request-id": "WESTUS2:20210507T012045Z:455cff54-c614-4cff-bef6-912582fc4b3b" + "x-ms-correlation-request-id": "cda42a89-0658-4bb0-bbe5-b8fc296979a2", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "cda42a89-0658-4bb0-bbe5-b8fc296979a2", + "x-ms-routing-request-id": "WESTUS2:20210519T185855Z:cda42a89-0658-4bb0-bbe5-b8fc296979a2" }, "ResponseBody": [] }, @@ -8448,7 +8472,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "64f2ec0aa2aad2adf5e7351007f4a349", "x-ms-return-client-request-id": "true" }, @@ -8457,17 +8481,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:46 GMT", + "Date": "Wed, 19 May 2021 18:58:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "878e9d69-b155-4ce8-98d3-c71401c4bdb5", - "x-ms-ratelimit-remaining-subscription-reads": "11847", - "x-ms-request-id": "878e9d69-b155-4ce8-98d3-c71401c4bdb5", - "x-ms-routing-request-id": "WESTUS2:20210507T012046Z:878e9d69-b155-4ce8-98d3-c71401c4bdb5" + "x-ms-correlation-request-id": "7e510cba-f67c-4dc5-8556-c1a90296fb2c", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "7e510cba-f67c-4dc5-8556-c1a90296fb2c", + "x-ms-routing-request-id": "WESTUS2:20210519T185856Z:7e510cba-f67c-4dc5-8556-c1a90296fb2c" }, "ResponseBody": [] }, @@ -8476,7 +8500,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a4b2f18de6d0efc58fceecabd31109db", "x-ms-return-client-request-id": "true" }, @@ -8485,17 +8509,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:47 GMT", + "Date": "Wed, 19 May 2021 18:58:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d992b69d-5daf-4128-9d62-7251387a0c2b", - "x-ms-ratelimit-remaining-subscription-reads": "11845", - "x-ms-request-id": "d992b69d-5daf-4128-9d62-7251387a0c2b", - "x-ms-routing-request-id": "WESTUS2:20210507T012047Z:d992b69d-5daf-4128-9d62-7251387a0c2b" + "x-ms-correlation-request-id": "088d5344-577b-49ae-acd4-09214f643547", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "088d5344-577b-49ae-acd4-09214f643547", + "x-ms-routing-request-id": "WESTUS2:20210519T185857Z:088d5344-577b-49ae-acd4-09214f643547" }, "ResponseBody": [] }, @@ -8504,7 +8528,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "228591dda86b3ea06cb0f099787a493a", "x-ms-return-client-request-id": "true" }, @@ -8513,17 +8537,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:48 GMT", + "Date": "Wed, 19 May 2021 18:58:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7346876f-0461-4a91-b598-69e0cc581f1d", - "x-ms-ratelimit-remaining-subscription-reads": "11843", - "x-ms-request-id": "7346876f-0461-4a91-b598-69e0cc581f1d", - "x-ms-routing-request-id": "WESTUS2:20210507T012048Z:7346876f-0461-4a91-b598-69e0cc581f1d" + "x-ms-correlation-request-id": "89682470-9653-482d-848c-33bdf4c21a98", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "89682470-9653-482d-848c-33bdf4c21a98", + "x-ms-routing-request-id": "WESTUS2:20210519T185858Z:89682470-9653-482d-848c-33bdf4c21a98" }, "ResponseBody": [] }, @@ -8532,7 +8556,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e7605fe4c4f5241a2602d4dcb502ffe3", "x-ms-return-client-request-id": "true" }, @@ -8541,17 +8565,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:49 GMT", + "Date": "Wed, 19 May 2021 18:58:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06e7cf40-7796-455d-8f22-631f679d405c", - "x-ms-ratelimit-remaining-subscription-reads": "11841", - "x-ms-request-id": "06e7cf40-7796-455d-8f22-631f679d405c", - "x-ms-routing-request-id": "WESTUS2:20210507T012049Z:06e7cf40-7796-455d-8f22-631f679d405c" + "x-ms-correlation-request-id": "1df7beda-a364-49cc-9832-c5e7ad9d69ba", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "1df7beda-a364-49cc-9832-c5e7ad9d69ba", + "x-ms-routing-request-id": "WESTUS2:20210519T185859Z:1df7beda-a364-49cc-9832-c5e7ad9d69ba" }, "ResponseBody": [] }, @@ -8560,7 +8584,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75325add816fe5de5073381ff62b7615", "x-ms-return-client-request-id": "true" }, @@ -8569,17 +8593,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:50 GMT", + "Date": "Wed, 19 May 2021 18:58:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "baea7043-d222-4aad-9e06-df2f9a42d824", - "x-ms-ratelimit-remaining-subscription-reads": "11839", - "x-ms-request-id": "baea7043-d222-4aad-9e06-df2f9a42d824", - "x-ms-routing-request-id": "WESTUS2:20210507T012050Z:baea7043-d222-4aad-9e06-df2f9a42d824" + "x-ms-correlation-request-id": "af60afb4-2931-424c-92d3-32f06619ef36", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "af60afb4-2931-424c-92d3-32f06619ef36", + "x-ms-routing-request-id": "WESTUS2:20210519T185900Z:af60afb4-2931-424c-92d3-32f06619ef36" }, "ResponseBody": [] }, @@ -8588,7 +8612,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "73c6b28422b119e57661fb68d3c48969", "x-ms-return-client-request-id": "true" }, @@ -8597,17 +8621,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:51 GMT", + "Date": "Wed, 19 May 2021 18:59:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8e2b60a-ead2-4ae9-b923-e65f8e59710e", - "x-ms-ratelimit-remaining-subscription-reads": "11837", - "x-ms-request-id": "c8e2b60a-ead2-4ae9-b923-e65f8e59710e", - "x-ms-routing-request-id": "WESTUS2:20210507T012051Z:c8e2b60a-ead2-4ae9-b923-e65f8e59710e" + "x-ms-correlation-request-id": "7e751b70-82d4-4256-8ba0-577824c81cfb", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "7e751b70-82d4-4256-8ba0-577824c81cfb", + "x-ms-routing-request-id": "WESTUS2:20210519T185901Z:7e751b70-82d4-4256-8ba0-577824c81cfb" }, "ResponseBody": [] }, @@ -8616,7 +8640,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1ebc0cb1d34763cb817b96818bfa2dfb", "x-ms-return-client-request-id": "true" }, @@ -8625,17 +8649,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:52 GMT", + "Date": "Wed, 19 May 2021 18:59:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc084f08-d630-47ac-affe-406a8c8ec370", - "x-ms-ratelimit-remaining-subscription-reads": "11835", - "x-ms-request-id": "cc084f08-d630-47ac-affe-406a8c8ec370", - "x-ms-routing-request-id": "WESTUS2:20210507T012052Z:cc084f08-d630-47ac-affe-406a8c8ec370" + "x-ms-correlation-request-id": "56de3d21-a4c7-4fc8-b305-844dd3664ee6", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "56de3d21-a4c7-4fc8-b305-844dd3664ee6", + "x-ms-routing-request-id": "WESTUS2:20210519T185902Z:56de3d21-a4c7-4fc8-b305-844dd3664ee6" }, "ResponseBody": [] }, @@ -8644,7 +8668,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0357bf8b8b3bbb327418ff0d8575118c", "x-ms-return-client-request-id": "true" }, @@ -8653,17 +8677,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:53 GMT", + "Date": "Wed, 19 May 2021 18:59:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7400219-3884-413d-ac51-2e0d4c4d4b0e", - "x-ms-ratelimit-remaining-subscription-reads": "11833", - "x-ms-request-id": "c7400219-3884-413d-ac51-2e0d4c4d4b0e", - "x-ms-routing-request-id": "WESTUS2:20210507T012053Z:c7400219-3884-413d-ac51-2e0d4c4d4b0e" + "x-ms-correlation-request-id": "69b24bc3-51bb-4519-8108-9b8d9aa3eef3", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "69b24bc3-51bb-4519-8108-9b8d9aa3eef3", + "x-ms-routing-request-id": "WESTUS2:20210519T185903Z:69b24bc3-51bb-4519-8108-9b8d9aa3eef3" }, "ResponseBody": [] }, @@ -8672,7 +8696,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea6eceea586fb1cde663f2368b648e7c", "x-ms-return-client-request-id": "true" }, @@ -8681,17 +8705,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:54 GMT", + "Date": "Wed, 19 May 2021 18:59:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4fdc03ce-e289-429e-a4d6-19dda85d781f", - "x-ms-ratelimit-remaining-subscription-reads": "11831", - "x-ms-request-id": "4fdc03ce-e289-429e-a4d6-19dda85d781f", - "x-ms-routing-request-id": "WESTUS2:20210507T012055Z:4fdc03ce-e289-429e-a4d6-19dda85d781f" + "x-ms-correlation-request-id": "5d30b221-934b-4a79-9d53-6fdf6fb6e1de", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "5d30b221-934b-4a79-9d53-6fdf6fb6e1de", + "x-ms-routing-request-id": "WESTUS2:20210519T185905Z:5d30b221-934b-4a79-9d53-6fdf6fb6e1de" }, "ResponseBody": [] }, @@ -8700,7 +8724,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "13dd0034856d252eda00a92fd4bedd0b", "x-ms-return-client-request-id": "true" }, @@ -8709,17 +8733,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:55 GMT", + "Date": "Wed, 19 May 2021 18:59:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52e8145a-a3fb-4960-bc86-80aa79ba4b84", - "x-ms-ratelimit-remaining-subscription-reads": "11829", - "x-ms-request-id": "52e8145a-a3fb-4960-bc86-80aa79ba4b84", - "x-ms-routing-request-id": "WESTUS2:20210507T012056Z:52e8145a-a3fb-4960-bc86-80aa79ba4b84" + "x-ms-correlation-request-id": "cc76d7de-0462-44ed-8395-3379fdfc430b", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "cc76d7de-0462-44ed-8395-3379fdfc430b", + "x-ms-routing-request-id": "WESTUS2:20210519T185906Z:cc76d7de-0462-44ed-8395-3379fdfc430b" }, "ResponseBody": [] }, @@ -8728,7 +8752,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc970a69438c328bf2a61cd898fc3010", "x-ms-return-client-request-id": "true" }, @@ -8737,17 +8761,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:56 GMT", + "Date": "Wed, 19 May 2021 18:59:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f2bad78-70c5-44e9-a801-579ff82494a3", - "x-ms-ratelimit-remaining-subscription-reads": "11827", - "x-ms-request-id": "2f2bad78-70c5-44e9-a801-579ff82494a3", - "x-ms-routing-request-id": "WESTUS2:20210507T012057Z:2f2bad78-70c5-44e9-a801-579ff82494a3" + "x-ms-correlation-request-id": "3574ffa5-7eb9-427f-8fb7-075d49ce836e", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "3574ffa5-7eb9-427f-8fb7-075d49ce836e", + "x-ms-routing-request-id": "WESTUS2:20210519T185907Z:3574ffa5-7eb9-427f-8fb7-075d49ce836e" }, "ResponseBody": [] }, @@ -8756,7 +8780,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85d9838afd98641fa0480f6eaf9edc28", "x-ms-return-client-request-id": "true" }, @@ -8765,17 +8789,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:57 GMT", + "Date": "Wed, 19 May 2021 18:59:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0125be08-33ae-41a5-9439-3a62b7c3a637", - "x-ms-ratelimit-remaining-subscription-reads": "11825", - "x-ms-request-id": "0125be08-33ae-41a5-9439-3a62b7c3a637", - "x-ms-routing-request-id": "WESTUS2:20210507T012058Z:0125be08-33ae-41a5-9439-3a62b7c3a637" + "x-ms-correlation-request-id": "7fe43918-d90e-4f08-b988-e651107e2822", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "7fe43918-d90e-4f08-b988-e651107e2822", + "x-ms-routing-request-id": "WESTUS2:20210519T185908Z:7fe43918-d90e-4f08-b988-e651107e2822" }, "ResponseBody": [] }, @@ -8784,7 +8808,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80cce785d1ccf0ef75aa21c668558dde", "x-ms-return-client-request-id": "true" }, @@ -8793,17 +8817,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:58 GMT", + "Date": "Wed, 19 May 2021 18:59:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "331a35a7-598b-4ff5-8b7c-c0bb039bbee4", - "x-ms-ratelimit-remaining-subscription-reads": "11823", - "x-ms-request-id": "331a35a7-598b-4ff5-8b7c-c0bb039bbee4", - "x-ms-routing-request-id": "WESTUS2:20210507T012059Z:331a35a7-598b-4ff5-8b7c-c0bb039bbee4" + "x-ms-correlation-request-id": "ee97890b-7a1b-417f-90ff-d3e28f69bd76", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "ee97890b-7a1b-417f-90ff-d3e28f69bd76", + "x-ms-routing-request-id": "WESTUS2:20210519T185909Z:ee97890b-7a1b-417f-90ff-d3e28f69bd76" }, "ResponseBody": [] }, @@ -8812,7 +8836,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "51a498d058e56c73eb321b43331c8354", "x-ms-return-client-request-id": "true" }, @@ -8821,17 +8845,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:20:59 GMT", + "Date": "Wed, 19 May 2021 18:59:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc8e253a-8d1f-4e08-bfd9-e162d3eb771e", - "x-ms-ratelimit-remaining-subscription-reads": "11821", - "x-ms-request-id": "bc8e253a-8d1f-4e08-bfd9-e162d3eb771e", - "x-ms-routing-request-id": "WESTUS2:20210507T012100Z:bc8e253a-8d1f-4e08-bfd9-e162d3eb771e" + "x-ms-correlation-request-id": "08b8cd84-af6f-4e1c-b32a-d9b87bdc83aa", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "08b8cd84-af6f-4e1c-b32a-d9b87bdc83aa", + "x-ms-routing-request-id": "WESTUS2:20210519T185910Z:08b8cd84-af6f-4e1c-b32a-d9b87bdc83aa" }, "ResponseBody": [] }, @@ -8840,7 +8864,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b152f4c9af2fb84393e810eedc58fb4b", "x-ms-return-client-request-id": "true" }, @@ -8849,17 +8873,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:00 GMT", + "Date": "Wed, 19 May 2021 18:59:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a23de16-0188-4c87-9fdb-6f0781733dba", - "x-ms-ratelimit-remaining-subscription-reads": "11819", - "x-ms-request-id": "9a23de16-0188-4c87-9fdb-6f0781733dba", - "x-ms-routing-request-id": "WESTUS2:20210507T012101Z:9a23de16-0188-4c87-9fdb-6f0781733dba" + "x-ms-correlation-request-id": "d7a3bd78-ef4a-4834-bfbb-5862d004380c", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "d7a3bd78-ef4a-4834-bfbb-5862d004380c", + "x-ms-routing-request-id": "WESTUS2:20210519T185911Z:d7a3bd78-ef4a-4834-bfbb-5862d004380c" }, "ResponseBody": [] }, @@ -8868,7 +8892,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "169e31bb8af92c43745f9599b6acbd58", "x-ms-return-client-request-id": "true" }, @@ -8877,17 +8901,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:01 GMT", + "Date": "Wed, 19 May 2021 18:59:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9bad171d-02a0-43ef-99b9-926c066f20a4", - "x-ms-ratelimit-remaining-subscription-reads": "11817", - "x-ms-request-id": "9bad171d-02a0-43ef-99b9-926c066f20a4", - "x-ms-routing-request-id": "WESTUS2:20210507T012102Z:9bad171d-02a0-43ef-99b9-926c066f20a4" + "x-ms-correlation-request-id": "f5eb958a-40e9-4740-a978-c4487f801ab3", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "f5eb958a-40e9-4740-a978-c4487f801ab3", + "x-ms-routing-request-id": "WESTUS2:20210519T185912Z:f5eb958a-40e9-4740-a978-c4487f801ab3" }, "ResponseBody": [] }, @@ -8896,7 +8920,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "74fdcc26db0221ae54ebbefc48849092", "x-ms-return-client-request-id": "true" }, @@ -8905,17 +8929,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:02 GMT", + "Date": "Wed, 19 May 2021 18:59:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7255eeb5-9326-4431-bb6c-7144095be13f", - "x-ms-ratelimit-remaining-subscription-reads": "11815", - "x-ms-request-id": "7255eeb5-9326-4431-bb6c-7144095be13f", - "x-ms-routing-request-id": "WESTUS2:20210507T012103Z:7255eeb5-9326-4431-bb6c-7144095be13f" + "x-ms-correlation-request-id": "31aeaacf-c793-4b2e-a1f0-f2d1c443794b", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "31aeaacf-c793-4b2e-a1f0-f2d1c443794b", + "x-ms-routing-request-id": "WESTUS2:20210519T185913Z:31aeaacf-c793-4b2e-a1f0-f2d1c443794b" }, "ResponseBody": [] }, @@ -8924,7 +8948,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0187d0376c7e3f5ab1263dd019aa02e6", "x-ms-return-client-request-id": "true" }, @@ -8933,17 +8957,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:03 GMT", + "Date": "Wed, 19 May 2021 18:59:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a23a53a4-9298-41f6-bae0-e777ac83b375", - "x-ms-ratelimit-remaining-subscription-reads": "11813", - "x-ms-request-id": "a23a53a4-9298-41f6-bae0-e777ac83b375", - "x-ms-routing-request-id": "WESTUS2:20210507T012104Z:a23a53a4-9298-41f6-bae0-e777ac83b375" + "x-ms-correlation-request-id": "3265169e-6b16-49a8-ad2a-97ce225d01e1", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "3265169e-6b16-49a8-ad2a-97ce225d01e1", + "x-ms-routing-request-id": "WESTUS2:20210519T185914Z:3265169e-6b16-49a8-ad2a-97ce225d01e1" }, "ResponseBody": [] }, @@ -8952,7 +8976,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0fc7b72a875be048837cc10dcc46e4ef", "x-ms-return-client-request-id": "true" }, @@ -8961,17 +8985,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:04 GMT", + "Date": "Wed, 19 May 2021 18:59:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83859536-a539-4b86-b833-4821d0d7017a", - "x-ms-ratelimit-remaining-subscription-reads": "11811", - "x-ms-request-id": "83859536-a539-4b86-b833-4821d0d7017a", - "x-ms-routing-request-id": "WESTUS2:20210507T012105Z:83859536-a539-4b86-b833-4821d0d7017a" + "x-ms-correlation-request-id": "1aa9472b-d597-4c1c-b378-cb4222dfc5e1", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "1aa9472b-d597-4c1c-b378-cb4222dfc5e1", + "x-ms-routing-request-id": "WESTUS2:20210519T185915Z:1aa9472b-d597-4c1c-b378-cb4222dfc5e1" }, "ResponseBody": [] }, @@ -8980,7 +9004,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e66203cfbb25bad971bdc3dc9ede08aa", "x-ms-return-client-request-id": "true" }, @@ -8989,17 +9013,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:05 GMT", + "Date": "Wed, 19 May 2021 18:59:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e6a5675-14ee-4b42-afa6-87f52ef25735", - "x-ms-ratelimit-remaining-subscription-reads": "11809", - "x-ms-request-id": "6e6a5675-14ee-4b42-afa6-87f52ef25735", - "x-ms-routing-request-id": "WESTUS2:20210507T012106Z:6e6a5675-14ee-4b42-afa6-87f52ef25735" + "x-ms-correlation-request-id": "87205ba6-5972-4bed-9e30-8b13d3e32038", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "87205ba6-5972-4bed-9e30-8b13d3e32038", + "x-ms-routing-request-id": "WESTUS2:20210519T185916Z:87205ba6-5972-4bed-9e30-8b13d3e32038" }, "ResponseBody": [] }, @@ -9008,7 +9032,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90d2d8e980bdaf3787a77e02aa4d726a", "x-ms-return-client-request-id": "true" }, @@ -9017,17 +9041,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:06 GMT", + "Date": "Wed, 19 May 2021 18:59:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c4cd8b0-f73a-47d3-b031-cbe0e46c9c83", - "x-ms-ratelimit-remaining-subscription-reads": "11807", - "x-ms-request-id": "7c4cd8b0-f73a-47d3-b031-cbe0e46c9c83", - "x-ms-routing-request-id": "WESTUS2:20210507T012107Z:7c4cd8b0-f73a-47d3-b031-cbe0e46c9c83" + "x-ms-correlation-request-id": "1796910a-c64b-484b-aca4-717f6ec56457", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "1796910a-c64b-484b-aca4-717f6ec56457", + "x-ms-routing-request-id": "WESTUS2:20210519T185917Z:1796910a-c64b-484b-aca4-717f6ec56457" }, "ResponseBody": [] }, @@ -9036,7 +9060,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "16004d411b476fc1de0c9d9dc46c41a4", "x-ms-return-client-request-id": "true" }, @@ -9045,17 +9069,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:07 GMT", + "Date": "Wed, 19 May 2021 18:59:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30c8fff9-f803-4912-8d4f-d50b1cd9cc98", - "x-ms-ratelimit-remaining-subscription-reads": "11805", - "x-ms-request-id": "30c8fff9-f803-4912-8d4f-d50b1cd9cc98", - "x-ms-routing-request-id": "WESTUS2:20210507T012108Z:30c8fff9-f803-4912-8d4f-d50b1cd9cc98" + "x-ms-correlation-request-id": "ea44c125-82b0-4b67-b2c1-3e88403b3ff4", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "ea44c125-82b0-4b67-b2c1-3e88403b3ff4", + "x-ms-routing-request-id": "WESTUS2:20210519T185918Z:ea44c125-82b0-4b67-b2c1-3e88403b3ff4" }, "ResponseBody": [] }, @@ -9064,7 +9088,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f324177453744e31cbb35f7d3dd60f24", "x-ms-return-client-request-id": "true" }, @@ -9073,17 +9097,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:08 GMT", + "Date": "Wed, 19 May 2021 18:59:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0ec78aa-5452-4bb6-9cc5-858beb170f76", - "x-ms-ratelimit-remaining-subscription-reads": "11803", - "x-ms-request-id": "f0ec78aa-5452-4bb6-9cc5-858beb170f76", - "x-ms-routing-request-id": "WESTUS2:20210507T012109Z:f0ec78aa-5452-4bb6-9cc5-858beb170f76" + "x-ms-correlation-request-id": "587392eb-2e3e-481d-b6bb-c1750153bad8", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "587392eb-2e3e-481d-b6bb-c1750153bad8", + "x-ms-routing-request-id": "WESTUS2:20210519T185919Z:587392eb-2e3e-481d-b6bb-c1750153bad8" }, "ResponseBody": [] }, @@ -9092,7 +9116,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "509a584bf2ddce631663b1b0e399eb1a", "x-ms-return-client-request-id": "true" }, @@ -9101,17 +9125,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:09 GMT", + "Date": "Wed, 19 May 2021 18:59:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f294936-a52a-456f-b496-e6fb34ed12c0", - "x-ms-ratelimit-remaining-subscription-reads": "11801", - "x-ms-request-id": "2f294936-a52a-456f-b496-e6fb34ed12c0", - "x-ms-routing-request-id": "WESTUS2:20210507T012110Z:2f294936-a52a-456f-b496-e6fb34ed12c0" + "x-ms-correlation-request-id": "7b2837c7-fe99-4e2a-86bf-db7303a2ed37", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "7b2837c7-fe99-4e2a-86bf-db7303a2ed37", + "x-ms-routing-request-id": "WESTUS2:20210519T185920Z:7b2837c7-fe99-4e2a-86bf-db7303a2ed37" }, "ResponseBody": [] }, @@ -9120,7 +9144,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "938dd9667e29edf61cb24a94bc433107", "x-ms-return-client-request-id": "true" }, @@ -9129,17 +9153,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:10 GMT", + "Date": "Wed, 19 May 2021 18:59:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f674a8fc-d91d-44a3-a147-055651e421ee", - "x-ms-ratelimit-remaining-subscription-reads": "11799", - "x-ms-request-id": "f674a8fc-d91d-44a3-a147-055651e421ee", - "x-ms-routing-request-id": "WESTUS2:20210507T012111Z:f674a8fc-d91d-44a3-a147-055651e421ee" + "x-ms-correlation-request-id": "20d62f9c-f992-42dd-b4f6-9249ad249dab", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "20d62f9c-f992-42dd-b4f6-9249ad249dab", + "x-ms-routing-request-id": "WESTUS2:20210519T185921Z:20d62f9c-f992-42dd-b4f6-9249ad249dab" }, "ResponseBody": [] }, @@ -9148,7 +9172,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6b5278fdf0d182c7b355dc11a1806b32", "x-ms-return-client-request-id": "true" }, @@ -9157,17 +9181,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:11 GMT", + "Date": "Wed, 19 May 2021 18:59:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95cc738e-a2f1-4cb3-ae6d-9aef3a1dc722", - "x-ms-ratelimit-remaining-subscription-reads": "11797", - "x-ms-request-id": "95cc738e-a2f1-4cb3-ae6d-9aef3a1dc722", - "x-ms-routing-request-id": "WESTUS2:20210507T012112Z:95cc738e-a2f1-4cb3-ae6d-9aef3a1dc722" + "x-ms-correlation-request-id": "c1e300df-75cd-4ada-8f60-3912aee53e9d", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "c1e300df-75cd-4ada-8f60-3912aee53e9d", + "x-ms-routing-request-id": "WESTUS2:20210519T185922Z:c1e300df-75cd-4ada-8f60-3912aee53e9d" }, "ResponseBody": [] }, @@ -9176,7 +9200,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "631744c77b49ccfb62ad342ba7cf12d3", "x-ms-return-client-request-id": "true" }, @@ -9185,17 +9209,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:12 GMT", + "Date": "Wed, 19 May 2021 18:59:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45bc810d-799f-48d9-8977-f379bb0ebccf", - "x-ms-ratelimit-remaining-subscription-reads": "11795", - "x-ms-request-id": "45bc810d-799f-48d9-8977-f379bb0ebccf", - "x-ms-routing-request-id": "WESTUS2:20210507T012113Z:45bc810d-799f-48d9-8977-f379bb0ebccf" + "x-ms-correlation-request-id": "8af0bfb0-ca7d-46f7-84d7-63254a71c30d", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "8af0bfb0-ca7d-46f7-84d7-63254a71c30d", + "x-ms-routing-request-id": "WESTUS2:20210519T185923Z:8af0bfb0-ca7d-46f7-84d7-63254a71c30d" }, "ResponseBody": [] }, @@ -9204,7 +9228,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ab3a9317f477549120be0d3a1e54b9b", "x-ms-return-client-request-id": "true" }, @@ -9213,17 +9237,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:13 GMT", + "Date": "Wed, 19 May 2021 18:59:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af454d05-4fbb-4002-bacc-b5434e7d28d0", - "x-ms-ratelimit-remaining-subscription-reads": "11793", - "x-ms-request-id": "af454d05-4fbb-4002-bacc-b5434e7d28d0", - "x-ms-routing-request-id": "WESTUS2:20210507T012114Z:af454d05-4fbb-4002-bacc-b5434e7d28d0" + "x-ms-correlation-request-id": "aa956b3b-7927-49d3-8a38-055cc1db92c8", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "aa956b3b-7927-49d3-8a38-055cc1db92c8", + "x-ms-routing-request-id": "WESTUS2:20210519T185924Z:aa956b3b-7927-49d3-8a38-055cc1db92c8" }, "ResponseBody": [] }, @@ -9232,7 +9256,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "77cc1847ce2b81be7c860924bc9bdae3", "x-ms-return-client-request-id": "true" }, @@ -9241,17 +9265,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:14 GMT", + "Date": "Wed, 19 May 2021 18:59:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1acc2bde-ca14-4544-8778-601b88b61cd6", - "x-ms-ratelimit-remaining-subscription-reads": "11791", - "x-ms-request-id": "1acc2bde-ca14-4544-8778-601b88b61cd6", - "x-ms-routing-request-id": "WESTUS2:20210507T012115Z:1acc2bde-ca14-4544-8778-601b88b61cd6" + "x-ms-correlation-request-id": "39670d8d-1b0a-467e-acac-4c01e0c7bce6", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "39670d8d-1b0a-467e-acac-4c01e0c7bce6", + "x-ms-routing-request-id": "WESTUS2:20210519T185925Z:39670d8d-1b0a-467e-acac-4c01e0c7bce6" }, "ResponseBody": [] }, @@ -9260,7 +9284,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8df094300cd48eafaa2513e9b282a7c", "x-ms-return-client-request-id": "true" }, @@ -9269,17 +9293,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:15 GMT", + "Date": "Wed, 19 May 2021 18:59:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87d82e12-243b-43fe-8acc-01d61180fb5b", - "x-ms-ratelimit-remaining-subscription-reads": "11789", - "x-ms-request-id": "87d82e12-243b-43fe-8acc-01d61180fb5b", - "x-ms-routing-request-id": "WESTUS2:20210507T012116Z:87d82e12-243b-43fe-8acc-01d61180fb5b" + "x-ms-correlation-request-id": "834cb78a-38bd-4435-aec7-62bf88cad6a1", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "834cb78a-38bd-4435-aec7-62bf88cad6a1", + "x-ms-routing-request-id": "WESTUS2:20210519T185926Z:834cb78a-38bd-4435-aec7-62bf88cad6a1" }, "ResponseBody": [] }, @@ -9288,7 +9312,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8fe498619a0362a7eb32edc17625b876", "x-ms-return-client-request-id": "true" }, @@ -9297,17 +9321,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:16 GMT", + "Date": "Wed, 19 May 2021 18:59:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e09c740-c176-4241-aaec-de0f7a36bd28", - "x-ms-ratelimit-remaining-subscription-reads": "11787", - "x-ms-request-id": "4e09c740-c176-4241-aaec-de0f7a36bd28", - "x-ms-routing-request-id": "WESTUS2:20210507T012117Z:4e09c740-c176-4241-aaec-de0f7a36bd28" + "x-ms-correlation-request-id": "3b0c1e6c-deb0-481c-a108-de6dac4d0823", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "3b0c1e6c-deb0-481c-a108-de6dac4d0823", + "x-ms-routing-request-id": "WESTUS2:20210519T185927Z:3b0c1e6c-deb0-481c-a108-de6dac4d0823" }, "ResponseBody": [] }, @@ -9316,7 +9340,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "988ffc30530546ce2d847d897d80e554", "x-ms-return-client-request-id": "true" }, @@ -9325,17 +9349,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:17 GMT", + "Date": "Wed, 19 May 2021 18:59:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f91017e-c962-4c9a-8551-158421a60ea7", - "x-ms-ratelimit-remaining-subscription-reads": "11785", - "x-ms-request-id": "3f91017e-c962-4c9a-8551-158421a60ea7", - "x-ms-routing-request-id": "WESTUS2:20210507T012118Z:3f91017e-c962-4c9a-8551-158421a60ea7" + "x-ms-correlation-request-id": "5bf0f7c4-40d2-413c-83f6-071cd3019c73", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "5bf0f7c4-40d2-413c-83f6-071cd3019c73", + "x-ms-routing-request-id": "WESTUS2:20210519T185928Z:5bf0f7c4-40d2-413c-83f6-071cd3019c73" }, "ResponseBody": [] }, @@ -9344,7 +9368,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23c38c5c4ab7a9e0617c0c9a1229d1d5", "x-ms-return-client-request-id": "true" }, @@ -9353,17 +9377,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:18 GMT", + "Date": "Wed, 19 May 2021 18:59:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf96423c-c69b-4ebc-8a12-3a9b74eeeffd", - "x-ms-ratelimit-remaining-subscription-reads": "11783", - "x-ms-request-id": "bf96423c-c69b-4ebc-8a12-3a9b74eeeffd", - "x-ms-routing-request-id": "WESTUS2:20210507T012119Z:bf96423c-c69b-4ebc-8a12-3a9b74eeeffd" + "x-ms-correlation-request-id": "d2570d81-0378-4b64-a8b3-2e770cc6255c", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "d2570d81-0378-4b64-a8b3-2e770cc6255c", + "x-ms-routing-request-id": "WESTUS2:20210519T185929Z:d2570d81-0378-4b64-a8b3-2e770cc6255c" }, "ResponseBody": [] }, @@ -9372,7 +9396,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9f0ddae991980d77ca9d627e1c1de56b", "x-ms-return-client-request-id": "true" }, @@ -9381,17 +9405,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:19 GMT", + "Date": "Wed, 19 May 2021 18:59:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b7f37f0-bc15-4813-a6a6-9fe977197a69", - "x-ms-ratelimit-remaining-subscription-reads": "11781", - "x-ms-request-id": "8b7f37f0-bc15-4813-a6a6-9fe977197a69", - "x-ms-routing-request-id": "WESTUS2:20210507T012120Z:8b7f37f0-bc15-4813-a6a6-9fe977197a69" + "x-ms-correlation-request-id": "637e0536-efcb-428e-83d6-f0946737a26d", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "637e0536-efcb-428e-83d6-f0946737a26d", + "x-ms-routing-request-id": "WESTUS2:20210519T185930Z:637e0536-efcb-428e-83d6-f0946737a26d" }, "ResponseBody": [] }, @@ -9400,7 +9424,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e965994c9561e5bf1be6368947333404", "x-ms-return-client-request-id": "true" }, @@ -9409,17 +9433,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:21 GMT", + "Date": "Wed, 19 May 2021 18:59:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b939ff5-791b-445a-ad73-0da3764c391e", - "x-ms-ratelimit-remaining-subscription-reads": "11779", - "x-ms-request-id": "4b939ff5-791b-445a-ad73-0da3764c391e", - "x-ms-routing-request-id": "WESTUS2:20210507T012121Z:4b939ff5-791b-445a-ad73-0da3764c391e" + "x-ms-correlation-request-id": "fb617e05-a63e-479b-a386-36f693e07dec", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "fb617e05-a63e-479b-a386-36f693e07dec", + "x-ms-routing-request-id": "WESTUS2:20210519T185931Z:fb617e05-a63e-479b-a386-36f693e07dec" }, "ResponseBody": [] }, @@ -9428,7 +9452,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3a0a7b24672cabb15b65919e8618c43", "x-ms-return-client-request-id": "true" }, @@ -9437,17 +9461,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:23 GMT", + "Date": "Wed, 19 May 2021 18:59:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "112020c6-43ea-473e-bf46-bbc039fc3371", - "x-ms-ratelimit-remaining-subscription-reads": "11777", - "x-ms-request-id": "112020c6-43ea-473e-bf46-bbc039fc3371", - "x-ms-routing-request-id": "WESTUS2:20210507T012123Z:112020c6-43ea-473e-bf46-bbc039fc3371" + "x-ms-correlation-request-id": "25110f74-4e44-42aa-8811-6ea9f435da2b", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "25110f74-4e44-42aa-8811-6ea9f435da2b", + "x-ms-routing-request-id": "WESTUS2:20210519T185932Z:25110f74-4e44-42aa-8811-6ea9f435da2b" }, "ResponseBody": [] }, @@ -9456,7 +9480,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "784ea197e8c354731a2883b25beec596", "x-ms-return-client-request-id": "true" }, @@ -9465,17 +9489,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:24 GMT", + "Date": "Wed, 19 May 2021 18:59:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50d63f1d-4447-4444-b77a-a8c31ad00f85", - "x-ms-ratelimit-remaining-subscription-reads": "11775", - "x-ms-request-id": "50d63f1d-4447-4444-b77a-a8c31ad00f85", - "x-ms-routing-request-id": "WESTUS2:20210507T012124Z:50d63f1d-4447-4444-b77a-a8c31ad00f85" + "x-ms-correlation-request-id": "12c44405-4c7c-40c6-953f-a6a7c46a5468", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "12c44405-4c7c-40c6-953f-a6a7c46a5468", + "x-ms-routing-request-id": "WESTUS2:20210519T185933Z:12c44405-4c7c-40c6-953f-a6a7c46a5468" }, "ResponseBody": [] }, @@ -9484,7 +9508,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75cc5d69427d05f8dd9ad3ab3ba6fcb9", "x-ms-return-client-request-id": "true" }, @@ -9493,17 +9517,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:25 GMT", + "Date": "Wed, 19 May 2021 18:59:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2161205b-370d-42c1-88c5-6d6a14bb77bf", - "x-ms-ratelimit-remaining-subscription-reads": "11773", - "x-ms-request-id": "2161205b-370d-42c1-88c5-6d6a14bb77bf", - "x-ms-routing-request-id": "WESTUS2:20210507T012125Z:2161205b-370d-42c1-88c5-6d6a14bb77bf" + "x-ms-correlation-request-id": "fe7948f3-f09f-4ef2-bb23-912c2eda7742", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "fe7948f3-f09f-4ef2-bb23-912c2eda7742", + "x-ms-routing-request-id": "WESTUS2:20210519T185934Z:fe7948f3-f09f-4ef2-bb23-912c2eda7742" }, "ResponseBody": [] }, @@ -9512,7 +9536,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a5f1f259bbe5ca40344c8849c3096f27", "x-ms-return-client-request-id": "true" }, @@ -9521,17 +9545,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:26 GMT", + "Date": "Wed, 19 May 2021 18:59:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d87c6f1-39b0-434f-a341-c721d0182cab", - "x-ms-ratelimit-remaining-subscription-reads": "11771", - "x-ms-request-id": "2d87c6f1-39b0-434f-a341-c721d0182cab", - "x-ms-routing-request-id": "WESTUS2:20210507T012126Z:2d87c6f1-39b0-434f-a341-c721d0182cab" + "x-ms-correlation-request-id": "b88c2519-baf4-4401-b2a0-7a55fb8b1827", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "b88c2519-baf4-4401-b2a0-7a55fb8b1827", + "x-ms-routing-request-id": "WESTUS2:20210519T185935Z:b88c2519-baf4-4401-b2a0-7a55fb8b1827" }, "ResponseBody": [] }, @@ -9540,7 +9564,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8bb0c3f0179554c6a8489b2914c71874", "x-ms-return-client-request-id": "true" }, @@ -9549,17 +9573,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:27 GMT", + "Date": "Wed, 19 May 2021 18:59:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2fd07d14-b67c-4d6c-8206-cd4c83b13a97", - "x-ms-ratelimit-remaining-subscription-reads": "11769", - "x-ms-request-id": "2fd07d14-b67c-4d6c-8206-cd4c83b13a97", - "x-ms-routing-request-id": "WESTUS2:20210507T012127Z:2fd07d14-b67c-4d6c-8206-cd4c83b13a97" + "x-ms-correlation-request-id": "5adcb3f7-edfd-4702-9081-89341ffdef5d", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "5adcb3f7-edfd-4702-9081-89341ffdef5d", + "x-ms-routing-request-id": "WESTUS2:20210519T185936Z:5adcb3f7-edfd-4702-9081-89341ffdef5d" }, "ResponseBody": [] }, @@ -9568,7 +9592,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6859c92b1ffcadb11c024031b9ae42d4", "x-ms-return-client-request-id": "true" }, @@ -9577,17 +9601,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:28 GMT", + "Date": "Wed, 19 May 2021 18:59:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21ee80b6-af5b-455e-9efc-9c142066e282", - "x-ms-ratelimit-remaining-subscription-reads": "11767", - "x-ms-request-id": "21ee80b6-af5b-455e-9efc-9c142066e282", - "x-ms-routing-request-id": "WESTUS2:20210507T012128Z:21ee80b6-af5b-455e-9efc-9c142066e282" + "x-ms-correlation-request-id": "346bb997-6403-48c1-97b4-dfde0b09f57a", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "346bb997-6403-48c1-97b4-dfde0b09f57a", + "x-ms-routing-request-id": "WESTUS2:20210519T185938Z:346bb997-6403-48c1-97b4-dfde0b09f57a" }, "ResponseBody": [] }, @@ -9596,7 +9620,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "78bbac2b71f542242c9dfd9d2017b66c", "x-ms-return-client-request-id": "true" }, @@ -9605,17 +9629,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:29 GMT", + "Date": "Wed, 19 May 2021 18:59:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c52b8bf9-3d55-46dc-8799-d31770730cc3", - "x-ms-ratelimit-remaining-subscription-reads": "11765", - "x-ms-request-id": "c52b8bf9-3d55-46dc-8799-d31770730cc3", - "x-ms-routing-request-id": "WESTUS2:20210507T012129Z:c52b8bf9-3d55-46dc-8799-d31770730cc3" + "x-ms-correlation-request-id": "0781bc96-90d6-40dc-93d9-6c2dcabab5d6", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "0781bc96-90d6-40dc-93d9-6c2dcabab5d6", + "x-ms-routing-request-id": "WESTUS2:20210519T185939Z:0781bc96-90d6-40dc-93d9-6c2dcabab5d6" }, "ResponseBody": [] }, @@ -9624,7 +9648,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f91e143307afd02b12026e93d6949af9", "x-ms-return-client-request-id": "true" }, @@ -9633,17 +9657,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:30 GMT", + "Date": "Wed, 19 May 2021 18:59:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47d5aa72-8408-4349-96be-6399f17a167b", - "x-ms-ratelimit-remaining-subscription-reads": "11763", - "x-ms-request-id": "47d5aa72-8408-4349-96be-6399f17a167b", - "x-ms-routing-request-id": "WESTUS2:20210507T012130Z:47d5aa72-8408-4349-96be-6399f17a167b" + "x-ms-correlation-request-id": "80e81cd3-6151-49d2-ab99-0a1cd91ca76b", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "80e81cd3-6151-49d2-ab99-0a1cd91ca76b", + "x-ms-routing-request-id": "WESTUS2:20210519T185940Z:80e81cd3-6151-49d2-ab99-0a1cd91ca76b" }, "ResponseBody": [] }, @@ -9652,7 +9676,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "67fec605a00bba7ea5173b5e22148d05", "x-ms-return-client-request-id": "true" }, @@ -9661,17 +9685,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:31 GMT", + "Date": "Wed, 19 May 2021 18:59:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edf3b4f6-6dfc-4663-8a80-325b034ce947", - "x-ms-ratelimit-remaining-subscription-reads": "11761", - "x-ms-request-id": "edf3b4f6-6dfc-4663-8a80-325b034ce947", - "x-ms-routing-request-id": "WESTUS2:20210507T012131Z:edf3b4f6-6dfc-4663-8a80-325b034ce947" + "x-ms-correlation-request-id": "e42f599d-1d3e-4aea-a458-0971d39deb3b", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "e42f599d-1d3e-4aea-a458-0971d39deb3b", + "x-ms-routing-request-id": "WESTUS2:20210519T185941Z:e42f599d-1d3e-4aea-a458-0971d39deb3b" }, "ResponseBody": [] }, @@ -9680,7 +9704,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a4fed44c4990242481eb66f303906b98", "x-ms-return-client-request-id": "true" }, @@ -9689,17 +9713,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:32 GMT", + "Date": "Wed, 19 May 2021 18:59:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d47cb63-7d03-45cf-9da7-3ca553548223", - "x-ms-ratelimit-remaining-subscription-reads": "11759", - "x-ms-request-id": "0d47cb63-7d03-45cf-9da7-3ca553548223", - "x-ms-routing-request-id": "WESTUS2:20210507T012132Z:0d47cb63-7d03-45cf-9da7-3ca553548223" + "x-ms-correlation-request-id": "307078d9-9d53-4d4f-878a-fd0b4a028f83", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "307078d9-9d53-4d4f-878a-fd0b4a028f83", + "x-ms-routing-request-id": "WESTUS2:20210519T185942Z:307078d9-9d53-4d4f-878a-fd0b4a028f83" }, "ResponseBody": [] }, @@ -9708,7 +9732,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "599703024e19936096635398cbccadfd", "x-ms-return-client-request-id": "true" }, @@ -9717,17 +9741,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:33 GMT", + "Date": "Wed, 19 May 2021 18:59:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eea2a1b4-e039-4ebe-a597-bb8cc3f08981", - "x-ms-ratelimit-remaining-subscription-reads": "11757", - "x-ms-request-id": "eea2a1b4-e039-4ebe-a597-bb8cc3f08981", - "x-ms-routing-request-id": "WESTUS2:20210507T012133Z:eea2a1b4-e039-4ebe-a597-bb8cc3f08981" + "x-ms-correlation-request-id": "66ed75b4-31f5-4b04-9c82-1257e7331e4d", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "66ed75b4-31f5-4b04-9c82-1257e7331e4d", + "x-ms-routing-request-id": "WESTUS2:20210519T185943Z:66ed75b4-31f5-4b04-9c82-1257e7331e4d" }, "ResponseBody": [] }, @@ -9736,7 +9760,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "02476875f596bb68a1dae620398ab614", "x-ms-return-client-request-id": "true" }, @@ -9745,17 +9769,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:34 GMT", + "Date": "Wed, 19 May 2021 18:59:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06abe649-ada7-4216-b579-cb4926cfbe43", - "x-ms-ratelimit-remaining-subscription-reads": "11755", - "x-ms-request-id": "06abe649-ada7-4216-b579-cb4926cfbe43", - "x-ms-routing-request-id": "WESTUS2:20210507T012134Z:06abe649-ada7-4216-b579-cb4926cfbe43" + "x-ms-correlation-request-id": "13c13488-d32d-485d-9d5a-9b66f1fdeb83", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "13c13488-d32d-485d-9d5a-9b66f1fdeb83", + "x-ms-routing-request-id": "WESTUS2:20210519T185944Z:13c13488-d32d-485d-9d5a-9b66f1fdeb83" }, "ResponseBody": [] }, @@ -9764,7 +9788,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1f5ca3ab337cfdec736a0e2cf58c58b4", "x-ms-return-client-request-id": "true" }, @@ -9773,17 +9797,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:35 GMT", + "Date": "Wed, 19 May 2021 18:59:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea725fe2-7b19-4e60-9e9b-bdf03ba01a19", - "x-ms-ratelimit-remaining-subscription-reads": "11753", - "x-ms-request-id": "ea725fe2-7b19-4e60-9e9b-bdf03ba01a19", - "x-ms-routing-request-id": "WESTUS2:20210507T012135Z:ea725fe2-7b19-4e60-9e9b-bdf03ba01a19" + "x-ms-correlation-request-id": "441aa8e1-2a51-44c1-b94d-f22c99b20a77", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "441aa8e1-2a51-44c1-b94d-f22c99b20a77", + "x-ms-routing-request-id": "WESTUS2:20210519T185945Z:441aa8e1-2a51-44c1-b94d-f22c99b20a77" }, "ResponseBody": [] }, @@ -9792,7 +9816,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9a7d683d68490c019adcb83f6740590b", "x-ms-return-client-request-id": "true" }, @@ -9801,17 +9825,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:36 GMT", + "Date": "Wed, 19 May 2021 18:59:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d43acfd2-e05e-48f3-938c-a2fc9bebbffe", - "x-ms-ratelimit-remaining-subscription-reads": "11751", - "x-ms-request-id": "d43acfd2-e05e-48f3-938c-a2fc9bebbffe", - "x-ms-routing-request-id": "WESTUS2:20210507T012136Z:d43acfd2-e05e-48f3-938c-a2fc9bebbffe" + "x-ms-correlation-request-id": "90ca585f-5c46-4282-baf5-31de317196a6", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "90ca585f-5c46-4282-baf5-31de317196a6", + "x-ms-routing-request-id": "WESTUS2:20210519T185946Z:90ca585f-5c46-4282-baf5-31de317196a6" }, "ResponseBody": [] }, @@ -9820,7 +9844,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "27ec3fad8e7041817c498f2be73cc515", "x-ms-return-client-request-id": "true" }, @@ -9829,17 +9853,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:37 GMT", + "Date": "Wed, 19 May 2021 18:59:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed556680-455f-4f51-804b-0f99165bc46b", - "x-ms-ratelimit-remaining-subscription-reads": "11749", - "x-ms-request-id": "ed556680-455f-4f51-804b-0f99165bc46b", - "x-ms-routing-request-id": "WESTUS2:20210507T012137Z:ed556680-455f-4f51-804b-0f99165bc46b" + "x-ms-correlation-request-id": "618452f5-a6c9-4d22-9308-54d268184a84", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "618452f5-a6c9-4d22-9308-54d268184a84", + "x-ms-routing-request-id": "WESTUS2:20210519T185947Z:618452f5-a6c9-4d22-9308-54d268184a84" }, "ResponseBody": [] }, @@ -9848,7 +9872,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d1e231811b0d42cba24f84a07bad9533", "x-ms-return-client-request-id": "true" }, @@ -9857,17 +9881,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:38 GMT", + "Date": "Wed, 19 May 2021 18:59:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "259c6ce9-f745-4add-832b-496e7d74266e", - "x-ms-ratelimit-remaining-subscription-reads": "11747", - "x-ms-request-id": "259c6ce9-f745-4add-832b-496e7d74266e", - "x-ms-routing-request-id": "WESTUS2:20210507T012138Z:259c6ce9-f745-4add-832b-496e7d74266e" + "x-ms-correlation-request-id": "a081ae59-9489-4bb4-92ec-afce988e4b53", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "a081ae59-9489-4bb4-92ec-afce988e4b53", + "x-ms-routing-request-id": "WESTUS2:20210519T185948Z:a081ae59-9489-4bb4-92ec-afce988e4b53" }, "ResponseBody": [] }, @@ -9876,7 +9900,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b67f0211319faf44e63b1effd9d6255e", "x-ms-return-client-request-id": "true" }, @@ -9885,17 +9909,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:39 GMT", + "Date": "Wed, 19 May 2021 18:59:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "970ef32b-e9ea-4d72-808b-c52a2f71cdc9", - "x-ms-ratelimit-remaining-subscription-reads": "11745", - "x-ms-request-id": "970ef32b-e9ea-4d72-808b-c52a2f71cdc9", - "x-ms-routing-request-id": "WESTUS2:20210507T012139Z:970ef32b-e9ea-4d72-808b-c52a2f71cdc9" + "x-ms-correlation-request-id": "2c634c9f-d3d1-4111-a478-f5765e74c450", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "2c634c9f-d3d1-4111-a478-f5765e74c450", + "x-ms-routing-request-id": "WESTUS2:20210519T185949Z:2c634c9f-d3d1-4111-a478-f5765e74c450" }, "ResponseBody": [] }, @@ -9904,7 +9928,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "36bda216885d91fe74a9852009e1c6cf", "x-ms-return-client-request-id": "true" }, @@ -9913,17 +9937,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:40 GMT", + "Date": "Wed, 19 May 2021 18:59:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a668cc58-d54b-4a65-bcf0-6916df20b8db", - "x-ms-ratelimit-remaining-subscription-reads": "11743", - "x-ms-request-id": "a668cc58-d54b-4a65-bcf0-6916df20b8db", - "x-ms-routing-request-id": "WESTUS2:20210507T012140Z:a668cc58-d54b-4a65-bcf0-6916df20b8db" + "x-ms-correlation-request-id": "e8e80b9c-6bbd-43b3-89ba-523d0ed272d2", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "e8e80b9c-6bbd-43b3-89ba-523d0ed272d2", + "x-ms-routing-request-id": "WESTUS2:20210519T185950Z:e8e80b9c-6bbd-43b3-89ba-523d0ed272d2" }, "ResponseBody": [] }, @@ -9932,7 +9956,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e41a5cb30ebc4f75ed33ead1fccb69cb", "x-ms-return-client-request-id": "true" }, @@ -9940,15 +9964,15 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 07 May 2021 01:21:41 GMT", + "Date": "Wed, 19 May 2021 18:59:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce220ca2-7817-47f2-b4e4-b48b0c782996", - "x-ms-ratelimit-remaining-subscription-reads": "11741", - "x-ms-request-id": "ce220ca2-7817-47f2-b4e4-b48b0c782996", - "x-ms-routing-request-id": "WESTUS2:20210507T012141Z:ce220ca2-7817-47f2-b4e4-b48b0c782996" + "x-ms-correlation-request-id": "95893556-16c7-4f0c-93a5-40c3b9fa9ae9", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "95893556-16c7-4f0c-93a5-40c3b9fa9ae9", + "x-ms-routing-request-id": "WESTUS2:20210519T185951Z:95893556-16c7-4f0c-93a5-40c3b9fa9ae9" }, "ResponseBody": [] }, @@ -9958,7 +9982,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d889262a5fef88d504ee42f5ab23a605", "x-ms-return-client-request-id": "true" }, @@ -9968,15 +9992,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:21:41 GMT", + "Date": "Wed, 19 May 2021 18:59:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c772a27-6521-4be4-92a8-0ecd6cea7d83", - "x-ms-ratelimit-remaining-subscription-reads": "11740", - "x-ms-request-id": "5c772a27-6521-4be4-92a8-0ecd6cea7d83", - "x-ms-routing-request-id": "WESTUS2:20210507T012141Z:5c772a27-6521-4be4-92a8-0ecd6cea7d83" + "x-ms-correlation-request-id": "424797f4-ba40-4db9-9eec-55666d7b14bc", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "424797f4-ba40-4db9-9eec-55666d7b14bc", + "x-ms-routing-request-id": "WESTUS2:20210519T185951Z:424797f4-ba40-4db9-9eec-55666d7b14bc" }, "ResponseBody": { "value": [] @@ -9988,7 +10012,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d4b4f7540bb07a22c6e482a9e2d94a8", "x-ms-return-client-request-id": "true" }, @@ -9998,15 +10022,15 @@ "Cache-Control": "no-cache", "Content-Length": "278", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:21:41 GMT", + "Date": "Wed, 19 May 2021 18:59:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "954a9af6-4f47-4160-9546-d7d757923ec5", - "x-ms-ratelimit-remaining-subscription-reads": "11739", - "x-ms-request-id": "954a9af6-4f47-4160-9546-d7d757923ec5", - "x-ms-routing-request-id": "WESTUS2:20210507T012141Z:954a9af6-4f47-4160-9546-d7d757923ec5" + "x-ms-correlation-request-id": "1bafbf5e-fa43-45ef-86b6-5d3329005e8a", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "1bafbf5e-fa43-45ef-86b6-5d3329005e8a", + "x-ms-routing-request-id": "WESTUS2:20210519T185951Z:1bafbf5e-fa43-45ef-86b6-5d3329005e8a" }, "ResponseBody": { "value": [ diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag().json index 0c427a47af2d..a34b98feff1f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-48cbc87f973ba94f8846f2fd05ff54b5-1a21417e03ac8245-00", + "Request-Id": "|b84bef2c-4e1fac3c59f9802f.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5e5feb5399cc0d53ed90c001f71c2e1b", "x-ms-return-client-request-id": "true" @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:14 GMT", + "Date": "Wed, 19 May 2021 18:59:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1900aa61-cef0-47be-96d5-cd6179a2e12a", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "1900aa61-cef0-47be-96d5-cd6179a2e12a", - "x-ms-routing-request-id": "WESTUS2:20210507T002315Z:1900aa61-cef0-47be-96d5-cd6179a2e12a" + "x-ms-correlation-request-id": "eb4c0670-5e21-4ec6-a87a-49642ff6ec7f", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "eb4c0670-5e21-4ec6-a87a-49642ff6ec7f", + "x-ms-routing-request-id": "WESTUS2:20210519T185952Z:eb4c0670-5e21-4ec6-a87a-49642ff6ec7f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-fbae2299ca5fe64d801fe3982fa145a5-d752d5808792454c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d960cebb02945c4c875e8cfd8e78b412-2c78bc1fe016244a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "664b5cc708737037afcbbbab9f76f099", "x-ms-return-client-request-id": "true" }, @@ -59,20 +59,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:15 GMT", + "Date": "Wed, 19 May 2021 18:59:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09791617-926e-40f5-b3cd-48628dca1b4b", - "x-ms-ratelimit-remaining-subscription-writes": "1179", - "x-ms-request-id": "09791617-926e-40f5-b3cd-48628dca1b4b", - "x-ms-routing-request-id": "WESTUS2:20210507T002316Z:09791617-926e-40f5-b3cd-48628dca1b4b" + "x-ms-correlation-request-id": "222e4b0c-4d17-4b60-a100-eb7215d5c14a", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "222e4b0c-4d17-4b60-a100-eb7215d5c14a", + "x-ms-routing-request-id": "WESTUS2:20210519T185953Z:222e4b0c-4d17-4b60-a100-eb7215d5c14a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9147", @@ -93,8 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "traceparent": "00-515f7f2dab765e44ab8c8c8ff46631e9-47bdf33c8074894a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e69916b712e5a54391c3455d20cfc5fd-dc658300b88d0646-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0fb22512a483d6e42254ef8d6c681ff3", "x-ms-return-client-request-id": "true" }, @@ -109,15 +109,15 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:15 GMT", + "Date": "Wed, 19 May 2021 18:59:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49726c25-ab5c-4c73-bc96-03682f190ba4", - "x-ms-ratelimit-remaining-subscription-writes": "1178", - "x-ms-request-id": "49726c25-ab5c-4c73-bc96-03682f190ba4", - "x-ms-routing-request-id": "WESTUS2:20210507T002316Z:49726c25-ab5c-4c73-bc96-03682f190ba4" + "x-ms-correlation-request-id": "b9b22be6-abb7-4609-b214-9d8cfeaa2e61", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "b9b22be6-abb7-4609-b214-9d8cfeaa2e61", + "x-ms-routing-request-id": "WESTUS2:20210519T185953Z:b9b22be6-abb7-4609-b214-9d8cfeaa2e61" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9147", @@ -141,8 +141,8 @@ "Authorization": "Sanitized", "Content-Length": "20", "Content-Type": "application/json", - "traceparent": "00-ed589e01c60b9d4aa05988ef52237d56-a3695115964f3045-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-28173523b99a534e8805217219e0ae01-5ba8c5e1f1e2fd46-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f4bd0125f06e3e027ee1cce98614e19", "x-ms-return-client-request-id": "true" }, @@ -156,15 +156,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:16 GMT", + "Date": "Wed, 19 May 2021 18:59:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88e8e5b4-5f25-425a-892a-010c08fc56bc", - "x-ms-ratelimit-remaining-subscription-writes": "1177", - "x-ms-request-id": "88e8e5b4-5f25-425a-892a-010c08fc56bc", - "x-ms-routing-request-id": "WESTUS2:20210507T002316Z:88e8e5b4-5f25-425a-892a-010c08fc56bc" + "x-ms-correlation-request-id": "67a684ce-ff96-44f3-8a89-dfae79c868ac", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "67a684ce-ff96-44f3-8a89-dfae79c868ac", + "x-ms-routing-request-id": "WESTUS2:20210519T185953Z:67a684ce-ff96-44f3-8a89-dfae79c868ac" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9147", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag()Async.json index e50194b24add..eb1690ff2c78 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag()Async.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:12 GMT", + "Date": "Wed, 19 May 2021 18:59:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34c9e461-d56a-4cf1-93f8-45e0bd86bcd3", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "34c9e461-d56a-4cf1-93f8-45e0bd86bcd3", - "x-ms-routing-request-id": "WESTUS2:20210507T002312Z:34c9e461-d56a-4cf1-93f8-45e0bd86bcd3" + "x-ms-correlation-request-id": "886c14d6-5c79-4e1d-9510-e98a8c625457", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "886c14d6-5c79-4e1d-9510-e98a8c625457", + "x-ms-routing-request-id": "WESTUS2:20210519T185952Z:886c14d6-5c79-4e1d-9510-e98a8c625457" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-b98d3fba2ddf8e49a2eab2ee9862f70c-596a4eaa0871a447-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f04ab08933737e42a7d657124e6836c7-651f79eb158af241-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f71698854715d925f7ef394c9033fc77", "x-ms-return-client-request-id": "true" }, @@ -58,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:12 GMT", + "Date": "Wed, 19 May 2021 18:59:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ba89da7-c7d1-49bd-a453-0d9c416f31a9", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-request-id": "5ba89da7-c7d1-49bd-a453-0d9c416f31a9", - "x-ms-routing-request-id": "WESTUS2:20210507T002313Z:5ba89da7-c7d1-49bd-a453-0d9c416f31a9" + "x-ms-correlation-request-id": "2abf619d-e795-4072-a705-ae2321e8d4eb", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "2abf619d-e795-4072-a705-ae2321e8d4eb", + "x-ms-routing-request-id": "WESTUS2:20210519T185953Z:2abf619d-e795-4072-a705-ae2321e8d4eb" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6323", @@ -92,8 +92,8 @@ "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "traceparent": "00-96eca2695b293a4bad2e8bbed1cc3bcc-ac45732ffbd6d040-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-eaa7a04830a21541889282fb268e55f6-973a0b9a0f113e43-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aa1625b397b197d6b5c6d2016a2be3a8", "x-ms-return-client-request-id": "true" }, @@ -108,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:13 GMT", + "Date": "Wed, 19 May 2021 18:59:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80b8baa7-3a46-43d9-b722-fb9dce174fd0", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-request-id": "80b8baa7-3a46-43d9-b722-fb9dce174fd0", - "x-ms-routing-request-id": "WESTUS2:20210507T002313Z:80b8baa7-3a46-43d9-b722-fb9dce174fd0" + "x-ms-correlation-request-id": "8b001328-7486-4a13-89d9-0b0f5d8eeddc", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "8b001328-7486-4a13-89d9-0b0f5d8eeddc", + "x-ms-routing-request-id": "WESTUS2:20210519T185953Z:8b001328-7486-4a13-89d9-0b0f5d8eeddc" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6323", @@ -140,8 +140,8 @@ "Authorization": "Sanitized", "Content-Length": "20", "Content-Type": "application/json", - "traceparent": "00-07abdfa84589fa4e922cfd7a73d7298c-5cb0dcc4229bbc45-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-bef8f9d81fe9594c84de77600100ab1d-5370f130d634ff4f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "69609e9d7b74e281c74936bbd562f3a9", "x-ms-return-client-request-id": "true" }, @@ -155,15 +155,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:13 GMT", + "Date": "Wed, 19 May 2021 18:59:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94a7c20a-8411-4916-a362-a1a42097711d", - "x-ms-ratelimit-remaining-subscription-writes": "1182", - "x-ms-request-id": "94a7c20a-8411-4916-a362-a1a42097711d", - "x-ms-routing-request-id": "WESTUS2:20210507T002314Z:94a7c20a-8411-4916-a362-a1a42097711d" + "x-ms-correlation-request-id": "515bf2e6-df49-45f3-a341-eaa4f28c87dc", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "515bf2e6-df49-45f3-a341-eaa4f28c87dc", + "x-ms-routing-request-id": "WESTUS2:20210519T185953Z:515bf2e6-df49-45f3-a341-eaa4f28c87dc" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6323", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags().json index d4670c05735a..ea1f4596c81f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:16 GMT", + "Date": "Wed, 19 May 2021 18:59:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e1ebef8-808e-4553-a718-f15c8ab9a24e", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "0e1ebef8-808e-4553-a718-f15c8ab9a24e", - "x-ms-routing-request-id": "WESTUS2:20210507T002317Z:0e1ebef8-808e-4553-a718-f15c8ab9a24e" + "x-ms-correlation-request-id": "091c60cc-234c-433a-bd7e-b94bb4da6bc8", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "091c60cc-234c-433a-bd7e-b94bb4da6bc8", + "x-ms-routing-request-id": "WESTUS2:20210519T185954Z:091c60cc-234c-433a-bd7e-b94bb4da6bc8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-893cb71949fa8b49b0cdf3d314b7f505-76f9bfd9c5e6344a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-3d43e3416278664798f3cc65e4bfc757-731604ceb9d01b48-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "86b4681c3c4def3045b1c87641a3416b", "x-ms-return-client-request-id": "true" }, @@ -58,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:17 GMT", + "Date": "Wed, 19 May 2021 18:59:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b128d349-e312-43e7-b168-87a25f9ffb54", - "x-ms-ratelimit-remaining-subscription-writes": "1176", - "x-ms-request-id": "b128d349-e312-43e7-b168-87a25f9ffb54", - "x-ms-routing-request-id": "WESTUS2:20210507T002318Z:b128d349-e312-43e7-b168-87a25f9ffb54" + "x-ms-correlation-request-id": "faadbbf9-ebf9-4745-825f-5481fec4e149", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "faadbbf9-ebf9-4745-825f-5481fec4e149", + "x-ms-routing-request-id": "WESTUS2:20210519T185955Z:faadbbf9-ebf9-4745-825f-5481fec4e149" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8661", @@ -92,8 +92,8 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "traceparent": "00-8b100781a2bd4a48919881f9b1ca78ed-1cb3eec1351d1449-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-79024ac0f7b0224cbbd9fcfb47c697e1-9e63ef990fa99646-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dd69ae84298ff4e49bac24223c840cc0", "x-ms-return-client-request-id": "true" }, @@ -107,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:17 GMT", + "Date": "Wed, 19 May 2021 18:59:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3b3df0d-f0ef-4a09-89ae-f68afcd2941d", - "x-ms-ratelimit-remaining-subscription-writes": "1175", - "x-ms-request-id": "f3b3df0d-f0ef-4a09-89ae-f68afcd2941d", - "x-ms-routing-request-id": "WESTUS2:20210507T002318Z:f3b3df0d-f0ef-4a09-89ae-f68afcd2941d" + "x-ms-correlation-request-id": "3c8eb946-d801-4d55-bed7-a2f901e62ccd", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "3c8eb946-d801-4d55-bed7-a2f901e62ccd", + "x-ms-routing-request-id": "WESTUS2:20210519T185955Z:3c8eb946-d801-4d55-bed7-a2f901e62ccd" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8661", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags()Async.json index cb4b8fa891f3..5e209fedbfa4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags()Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "Request-Id": "|b84bef2d-4e1fac3c59f9802f.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "72342836e7375ffba1980cc764257df9", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:13 GMT", + "Date": "Wed, 19 May 2021 18:59:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60144644-2792-4912-ab60-cc51007e2ae2", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "60144644-2792-4912-ab60-cc51007e2ae2", - "x-ms-routing-request-id": "WESTUS2:20210507T002314Z:60144644-2792-4912-ab60-cc51007e2ae2" + "x-ms-correlation-request-id": "ce23680f-8067-4c8b-9b40-60e56450806b", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "ce23680f-8067-4c8b-9b40-60e56450806b", + "x-ms-routing-request-id": "WESTUS2:20210519T185954Z:ce23680f-8067-4c8b-9b40-60e56450806b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-1c02b03c19ae1745b9d33f1026952b4f-d6c22451e1e8e94a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b3bde1dee0826043aa165d0e8f9afc0f-466599b926fd304a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f2d0eea28a6a3efc8e850d4a9ca96ee5", "x-ms-return-client-request-id": "true" }, @@ -58,20 +59,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:14 GMT", + "Date": "Wed, 19 May 2021 18:59:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d66e64e-c3da-426a-9dc9-4bedf48f2ce6", - "x-ms-ratelimit-remaining-subscription-writes": "1181", - "x-ms-request-id": "6d66e64e-c3da-426a-9dc9-4bedf48f2ce6", - "x-ms-routing-request-id": "WESTUS2:20210507T002315Z:6d66e64e-c3da-426a-9dc9-4bedf48f2ce6" + "x-ms-correlation-request-id": "e8bd183d-48a4-4cef-8f03-07dee68995f2", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "e8bd183d-48a4-4cef-8f03-07dee68995f2", + "x-ms-routing-request-id": "WESTUS2:20210519T185955Z:e8bd183d-48a4-4cef-8f03-07dee68995f2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9531", @@ -92,8 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "traceparent": "00-489da03e38abd24b8c16913f195cdcab-878ef5c36198ff45-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f23f089a1bf1a2438521e826522b75e1-2b8bd3d021bac048-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "afde8377006bef0be701424fd4081ce3", "x-ms-return-client-request-id": "true" }, @@ -107,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 00:23:14 GMT", + "Date": "Wed, 19 May 2021 18:59:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63f73910-5978-47ee-9304-0b8ce94e9590", - "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-request-id": "63f73910-5978-47ee-9304-0b8ce94e9590", - "x-ms-routing-request-id": "WESTUS2:20210507T002315Z:63f73910-5978-47ee-9304-0b8ce94e9590" + "x-ms-correlation-request-id": "143ddd0d-0428-4a55-b0ba-6f2f772d1528", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "143ddd0d-0428-4a55-b0ba-6f2f772d1528", + "x-ms-routing-request-id": "WESTUS2:20210519T185955Z:143ddd0d-0428-4a55-b0ba-6f2f772d1528" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9531", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources().json index 803a98e4efca..c0e1a45c846a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources().json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "Request-Id": "|b84bef2e-4e1fac3c59f9802f.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "453b2680c717a3bccbf12e963815eea3", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:30:53 GMT", + "Date": "Wed, 19 May 2021 18:59:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75a9d696-4c30-436b-ad44-53f4c836b91e", - "x-ms-ratelimit-remaining-subscription-reads": "11794", - "x-ms-request-id": "75a9d696-4c30-436b-ad44-53f4c836b91e", - "x-ms-routing-request-id": "WESTUS2:20210507T203054Z:75a9d696-4c30-436b-ad44-53f4c836b91e" + "x-ms-correlation-request-id": "abb1caad-2623-4f4c-8898-3ac3c2c1f706", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "abb1caad-2623-4f4c-8898-3ac3c2c1f706", + "x-ms-routing-request-id": "WESTUS2:20210519T185956Z:abb1caad-2623-4f4c-8898-3ac3c2c1f706" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-7d368a7ecd41c74686d363dc6b28aa78-0e8d3b1c64c0ac45-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d9f7a99f9bf9e447af2d07f9d6290fc9-3ea2403388171e49-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9cb2cf95062fa547d6a9407a8a870488", "x-ms-return-client-request-id": "true" }, @@ -63,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:30:54 GMT", + "Date": "Wed, 19 May 2021 18:59:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c20d3c8-8950-4c92-8af2-791969c47e70", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "7c20d3c8-8950-4c92-8af2-791969c47e70", - "x-ms-routing-request-id": "WESTUS2:20210507T203055Z:7c20d3c8-8950-4c92-8af2-791969c47e70" + "x-ms-correlation-request-id": "bee77f4b-5fe6-4729-a727-d1e9bf4e5c80", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "bee77f4b-5fe6-4729-a727-d1e9bf4e5c80", + "x-ms-routing-request-id": "WESTUS2:20210519T185957Z:bee77f4b-5fe6-4729-a727-d1e9bf4e5c80" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8712", @@ -92,8 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-9856a9fc8d9867429d3ffd4a7a5f708a-c430b2113a5cd041-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-30160b6ed7089e4684372aacc9e72c7b-6246cb193552b34f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "241c4b5d58b1c4d18aedd52455da3bf8", "x-ms-return-client-request-id": "true" }, @@ -106,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:30:54 GMT", + "Date": "Wed, 19 May 2021 18:59:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aeb9161d-e308-4c0b-a9dd-457422c012e4", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "aeb9161d-e308-4c0b-a9dd-457422c012e4", - "x-ms-routing-request-id": "WESTUS2:20210507T203055Z:aeb9161d-e308-4c0b-a9dd-457422c012e4" + "x-ms-correlation-request-id": "441f0315-bd4b-4228-b9d1-e8df81e0f535", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "441f0315-bd4b-4228-b9d1-e8df81e0f535", + "x-ms-routing-request-id": "WESTUS2:20210519T185957Z:441f0315-bd4b-4228-b9d1-e8df81e0f535" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7256", @@ -141,17 +142,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "52611", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:30:54 GMT", + "Date": "Wed, 19 May 2021 18:59:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f84d1ef3-26a3-45d9-8b58-f66f11e8091d", - "x-ms-ratelimit-remaining-subscription-reads": "11793", - "x-ms-request-id": "f84d1ef3-26a3-45d9-8b58-f66f11e8091d", - "x-ms-routing-request-id": "WESTUS2:20210507T203055Z:f84d1ef3-26a3-45d9-8b58-f66f11e8091d" + "x-ms-correlation-request-id": "4bfe77f0-4742-4ece-b9b4-bfec4425fa40", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "4bfe77f0-4742-4ece-b9b4-bfec4425fa40", + "x-ms-routing-request-id": "WESTUS2:20210519T185957Z:4bfe77f0-4742-4ece-b9b4-bfec4425fa40" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -475,6 +476,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -760,6 +765,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -2778,6 +2787,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -3186,6 +3199,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3846,6 +3863,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4034,6 +4055,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4051,7 +4076,7 @@ "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "86a2b8a2e463e077d7a418728080ce04", "x-ms-return-client-request-id": "true" }, @@ -4071,7 +4096,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:30:55 GMT", + "Date": "Wed, 19 May 2021 18:59:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4081,11 +4106,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "86a2b8a2e463e077d7a418728080ce04", - "x-ms-correlation-request-id": "8bf06331-b1b2-4a0e-b066-e036fdcbd14d", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "4d1a6d8d-9d66-4503-8a23-5ae9b9151b45", - "x-ms-routing-request-id": "WESTUS2:20210507T203056Z:8bf06331-b1b2-4a0e-b066-e036fdcbd14d" + "x-ms-correlation-request-id": "84c10c44-1111-4949-a683-0fc8f31d4f5c", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1194", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "c0e6d4f4-2972-4fff-ba33-327c64004991", + "x-ms-routing-request-id": "WESTUS2:20210519T185958Z:84c10c44-1111-4949-a683-0fc8f31d4f5c" }, "ResponseBody": [ "{\r\n", @@ -4112,8 +4137,8 @@ "Authorization": "Sanitized", "Content-Length": "256", "Content-Type": "application/json", - "traceparent": "00-0d5da875b0b6b54e95990280692cae27-667e171e347ca142-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-6f0e6e8110370e47a0996715684ac624-1481e16daa36bd4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22b217ab719852748a282aac07801fc0", "x-ms-return-client-request-id": "true" }, @@ -4127,17 +4152,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:55 GMT", + "Date": "Wed, 19 May 2021 18:59:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8aacca6-cc70-4538-ac9d-9cc233fd1d88", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "f8aacca6-cc70-4538-ac9d-9cc233fd1d88", - "x-ms-routing-request-id": "WESTUS2:20210507T203056Z:f8aacca6-cc70-4538-ac9d-9cc233fd1d88" + "x-ms-correlation-request-id": "51a0a4b7-00a3-4006-8d3f-6f91bfc9cdf5", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "51a0a4b7-00a3-4006-8d3f-6f91bfc9cdf5", + "x-ms-routing-request-id": "WESTUS2:20210519T185958Z:51a0a4b7-00a3-4006-8d3f-6f91bfc9cdf5" }, "ResponseBody": [] }, @@ -4146,7 +4171,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "69c6945baccd106c3dfe7757686024a8", "x-ms-return-client-request-id": "true" }, @@ -4155,17 +4180,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:55 GMT", + "Date": "Wed, 19 May 2021 18:59:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d02a3d61-9ab7-4923-8891-334cb7774d31", - "x-ms-ratelimit-remaining-subscription-reads": "11792", - "x-ms-request-id": "d02a3d61-9ab7-4923-8891-334cb7774d31", - "x-ms-routing-request-id": "WESTUS2:20210507T203056Z:d02a3d61-9ab7-4923-8891-334cb7774d31" + "x-ms-correlation-request-id": "c6f0590c-72e4-4779-ad62-2766cb3635e2", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "c6f0590c-72e4-4779-ad62-2766cb3635e2", + "x-ms-routing-request-id": "WESTUS2:20210519T185958Z:c6f0590c-72e4-4779-ad62-2766cb3635e2" }, "ResponseBody": [] }, @@ -4174,7 +4199,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ddeaaf65b9f5846989a277211495dd4d", "x-ms-return-client-request-id": "true" }, @@ -4183,17 +4208,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:56 GMT", + "Date": "Wed, 19 May 2021 18:59:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85cb287e-abcc-4128-90a7-e630730c4893", - "x-ms-ratelimit-remaining-subscription-reads": "11791", - "x-ms-request-id": "85cb287e-abcc-4128-90a7-e630730c4893", - "x-ms-routing-request-id": "WESTUS2:20210507T203057Z:85cb287e-abcc-4128-90a7-e630730c4893" + "x-ms-correlation-request-id": "2be6565f-63bd-4a3d-9ce5-a844b9968830", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "2be6565f-63bd-4a3d-9ce5-a844b9968830", + "x-ms-routing-request-id": "WESTUS2:20210519T185959Z:2be6565f-63bd-4a3d-9ce5-a844b9968830" }, "ResponseBody": [] }, @@ -4202,7 +4227,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7250ee9cb5baa3f20b95521aaf36a74a", "x-ms-return-client-request-id": "true" }, @@ -4211,17 +4236,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:57 GMT", + "Date": "Wed, 19 May 2021 18:59:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "246f4a7d-a171-463b-80a1-3dbe6a62fecd", - "x-ms-ratelimit-remaining-subscription-reads": "11790", - "x-ms-request-id": "246f4a7d-a171-463b-80a1-3dbe6a62fecd", - "x-ms-routing-request-id": "WESTUS2:20210507T203058Z:246f4a7d-a171-463b-80a1-3dbe6a62fecd" + "x-ms-correlation-request-id": "2d524ac8-8ed9-4911-afdf-305db347380a", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "2d524ac8-8ed9-4911-afdf-305db347380a", + "x-ms-routing-request-id": "WESTUS2:20210519T190000Z:2d524ac8-8ed9-4911-afdf-305db347380a" }, "ResponseBody": [] }, @@ -4230,7 +4255,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c479b452ad52a1462a42e02a354afca7", "x-ms-return-client-request-id": "true" }, @@ -4239,17 +4264,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:30:59 GMT", + "Date": "Wed, 19 May 2021 19:00:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fedc866-584c-40c1-ae54-05e244f05557", - "x-ms-ratelimit-remaining-subscription-reads": "11789", - "x-ms-request-id": "8fedc866-584c-40c1-ae54-05e244f05557", - "x-ms-routing-request-id": "WESTUS2:20210507T203059Z:8fedc866-584c-40c1-ae54-05e244f05557" + "x-ms-correlation-request-id": "a6c2d618-ae1b-4edf-a0fd-52bf9f496040", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "a6c2d618-ae1b-4edf-a0fd-52bf9f496040", + "x-ms-routing-request-id": "WESTUS2:20210519T190001Z:a6c2d618-ae1b-4edf-a0fd-52bf9f496040" }, "ResponseBody": [] }, @@ -4258,7 +4283,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "79ba2a20b110afedbc46d25f664fd452", "x-ms-return-client-request-id": "true" }, @@ -4267,17 +4292,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:00 GMT", + "Date": "Wed, 19 May 2021 19:00:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "384f2832-c96c-4f84-88f4-2e379ec0b17c", - "x-ms-ratelimit-remaining-subscription-reads": "11788", - "x-ms-request-id": "384f2832-c96c-4f84-88f4-2e379ec0b17c", - "x-ms-routing-request-id": "WESTUS2:20210507T203100Z:384f2832-c96c-4f84-88f4-2e379ec0b17c" + "x-ms-correlation-request-id": "b0e87791-1a18-47ab-b0a1-ff3d161b6587", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "b0e87791-1a18-47ab-b0a1-ff3d161b6587", + "x-ms-routing-request-id": "WESTUS2:20210519T190002Z:b0e87791-1a18-47ab-b0a1-ff3d161b6587" }, "ResponseBody": [] }, @@ -4286,7 +4311,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5fce2dfb191beffaa7ae4778d5c76dc1", "x-ms-return-client-request-id": "true" }, @@ -4295,17 +4320,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:01 GMT", + "Date": "Wed, 19 May 2021 19:00:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55417b22-cb83-4f42-b15e-edfd462e92b0", - "x-ms-ratelimit-remaining-subscription-reads": "11787", - "x-ms-request-id": "55417b22-cb83-4f42-b15e-edfd462e92b0", - "x-ms-routing-request-id": "WESTUS2:20210507T203101Z:55417b22-cb83-4f42-b15e-edfd462e92b0" + "x-ms-correlation-request-id": "6a88cefe-505c-4288-8a45-9cf36e0d7e4e", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "6a88cefe-505c-4288-8a45-9cf36e0d7e4e", + "x-ms-routing-request-id": "WESTUS2:20210519T190003Z:6a88cefe-505c-4288-8a45-9cf36e0d7e4e" }, "ResponseBody": [] }, @@ -4314,7 +4339,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85f9ab992d7ca139c7ca070bdbe63bdb", "x-ms-return-client-request-id": "true" }, @@ -4323,17 +4348,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:02 GMT", + "Date": "Wed, 19 May 2021 19:00:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f1696e5-5017-496f-8c64-8ccf317663d0", - "x-ms-ratelimit-remaining-subscription-reads": "11786", - "x-ms-request-id": "8f1696e5-5017-496f-8c64-8ccf317663d0", - "x-ms-routing-request-id": "WESTUS2:20210507T203102Z:8f1696e5-5017-496f-8c64-8ccf317663d0" + "x-ms-correlation-request-id": "a008bbe7-dd93-44d7-b591-9b314e0755e7", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "a008bbe7-dd93-44d7-b591-9b314e0755e7", + "x-ms-routing-request-id": "WESTUS2:20210519T190004Z:a008bbe7-dd93-44d7-b591-9b314e0755e7" }, "ResponseBody": [] }, @@ -4342,7 +4367,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "082f8d6e9c7c078b2fcbd1616a75daf5", "x-ms-return-client-request-id": "true" }, @@ -4351,17 +4376,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:03 GMT", + "Date": "Wed, 19 May 2021 19:00:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6350ec4-6b42-4a18-a99a-d11054ba78e0", - "x-ms-ratelimit-remaining-subscription-reads": "11785", - "x-ms-request-id": "d6350ec4-6b42-4a18-a99a-d11054ba78e0", - "x-ms-routing-request-id": "WESTUS2:20210507T203104Z:d6350ec4-6b42-4a18-a99a-d11054ba78e0" + "x-ms-correlation-request-id": "cbdb2fc6-331b-483d-93a2-a6546882a1b0", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "cbdb2fc6-331b-483d-93a2-a6546882a1b0", + "x-ms-routing-request-id": "WESTUS2:20210519T190005Z:cbdb2fc6-331b-483d-93a2-a6546882a1b0" }, "ResponseBody": [] }, @@ -4370,7 +4395,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bbc611d94e55cdd6f32d985111ee14c1", "x-ms-return-client-request-id": "true" }, @@ -4379,17 +4404,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:05 GMT", + "Date": "Wed, 19 May 2021 19:00:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d980a6c-8242-46ef-a4b8-503f7f6e0152", - "x-ms-ratelimit-remaining-subscription-reads": "11784", - "x-ms-request-id": "1d980a6c-8242-46ef-a4b8-503f7f6e0152", - "x-ms-routing-request-id": "WESTUS2:20210507T203105Z:1d980a6c-8242-46ef-a4b8-503f7f6e0152" + "x-ms-correlation-request-id": "e9180f18-fa03-4aaf-a57a-41e66c233180", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "e9180f18-fa03-4aaf-a57a-41e66c233180", + "x-ms-routing-request-id": "WESTUS2:20210519T190006Z:e9180f18-fa03-4aaf-a57a-41e66c233180" }, "ResponseBody": [] }, @@ -4398,7 +4423,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "470a6b736598fd451ff256b05bd83751", "x-ms-return-client-request-id": "true" }, @@ -4407,17 +4432,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:06 GMT", + "Date": "Wed, 19 May 2021 19:00:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "428406c2-a943-463b-8303-59f73851938a", - "x-ms-ratelimit-remaining-subscription-reads": "11783", - "x-ms-request-id": "428406c2-a943-463b-8303-59f73851938a", - "x-ms-routing-request-id": "WESTUS2:20210507T203106Z:428406c2-a943-463b-8303-59f73851938a" + "x-ms-correlation-request-id": "d2a9fc5f-55c9-4dab-9bd4-73ac1fa2f45e", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "d2a9fc5f-55c9-4dab-9bd4-73ac1fa2f45e", + "x-ms-routing-request-id": "WESTUS2:20210519T190007Z:d2a9fc5f-55c9-4dab-9bd4-73ac1fa2f45e" }, "ResponseBody": [] }, @@ -4426,7 +4451,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c93212ef7f201f86b761154e0339f541", "x-ms-return-client-request-id": "true" }, @@ -4435,17 +4460,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:07 GMT", + "Date": "Wed, 19 May 2021 19:00:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a17dfda9-194b-4a81-a225-07acc1416261", - "x-ms-ratelimit-remaining-subscription-reads": "11782", - "x-ms-request-id": "a17dfda9-194b-4a81-a225-07acc1416261", - "x-ms-routing-request-id": "WESTUS2:20210507T203107Z:a17dfda9-194b-4a81-a225-07acc1416261" + "x-ms-correlation-request-id": "ebbecf56-ee72-42e3-beb8-dad07bdff52c", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "ebbecf56-ee72-42e3-beb8-dad07bdff52c", + "x-ms-routing-request-id": "WESTUS2:20210519T190008Z:ebbecf56-ee72-42e3-beb8-dad07bdff52c" }, "ResponseBody": [] }, @@ -4454,7 +4479,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "feed10b6926b735cccc89b63f825721a", "x-ms-return-client-request-id": "true" }, @@ -4463,17 +4488,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:08 GMT", + "Date": "Wed, 19 May 2021 19:00:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "533719c7-12f6-4c29-b9cd-1c31598a2d3d", - "x-ms-ratelimit-remaining-subscription-reads": "11781", - "x-ms-request-id": "533719c7-12f6-4c29-b9cd-1c31598a2d3d", - "x-ms-routing-request-id": "WESTUS2:20210507T203108Z:533719c7-12f6-4c29-b9cd-1c31598a2d3d" + "x-ms-correlation-request-id": "b42794fb-1cf0-4f19-b2b5-791eee5ceb16", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "b42794fb-1cf0-4f19-b2b5-791eee5ceb16", + "x-ms-routing-request-id": "WESTUS2:20210519T190009Z:b42794fb-1cf0-4f19-b2b5-791eee5ceb16" }, "ResponseBody": [] }, @@ -4482,7 +4507,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff6147f64abbf4a0e5ea8f3650f6f9e5", "x-ms-return-client-request-id": "true" }, @@ -4491,17 +4516,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:09 GMT", + "Date": "Wed, 19 May 2021 19:00:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82b7c653-4beb-4ed5-bb48-d24a1e063080", - "x-ms-ratelimit-remaining-subscription-reads": "11780", - "x-ms-request-id": "82b7c653-4beb-4ed5-bb48-d24a1e063080", - "x-ms-routing-request-id": "WESTUS2:20210507T203109Z:82b7c653-4beb-4ed5-bb48-d24a1e063080" + "x-ms-correlation-request-id": "4006069a-fab5-47a9-9e09-6acecfea1c34", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "4006069a-fab5-47a9-9e09-6acecfea1c34", + "x-ms-routing-request-id": "WESTUS2:20210519T190010Z:4006069a-fab5-47a9-9e09-6acecfea1c34" }, "ResponseBody": [] }, @@ -4510,7 +4535,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4afa15fc38ea5ce6b5bffd57e3232791", "x-ms-return-client-request-id": "true" }, @@ -4519,17 +4544,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:10 GMT", + "Date": "Wed, 19 May 2021 19:00:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0b0ed23-5b2b-4350-ae65-de87598499d3", - "x-ms-ratelimit-remaining-subscription-reads": "11779", - "x-ms-request-id": "d0b0ed23-5b2b-4350-ae65-de87598499d3", - "x-ms-routing-request-id": "WESTUS2:20210507T203110Z:d0b0ed23-5b2b-4350-ae65-de87598499d3" + "x-ms-correlation-request-id": "814825bd-86d6-4793-ae25-c04b2e1e6ac3", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "814825bd-86d6-4793-ae25-c04b2e1e6ac3", + "x-ms-routing-request-id": "WESTUS2:20210519T190011Z:814825bd-86d6-4793-ae25-c04b2e1e6ac3" }, "ResponseBody": [] }, @@ -4538,7 +4563,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc58faeff6d76c8570f91880032623d5", "x-ms-return-client-request-id": "true" }, @@ -4547,17 +4572,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:11 GMT", + "Date": "Wed, 19 May 2021 19:00:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e917a40c-704b-4632-b4ee-c2104c4da4df", - "x-ms-ratelimit-remaining-subscription-reads": "11778", - "x-ms-request-id": "e917a40c-704b-4632-b4ee-c2104c4da4df", - "x-ms-routing-request-id": "WESTUS2:20210507T203111Z:e917a40c-704b-4632-b4ee-c2104c4da4df" + "x-ms-correlation-request-id": "b3965654-0cb5-48e7-ad59-dba3cf7883f2", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "b3965654-0cb5-48e7-ad59-dba3cf7883f2", + "x-ms-routing-request-id": "WESTUS2:20210519T190013Z:b3965654-0cb5-48e7-ad59-dba3cf7883f2" }, "ResponseBody": [] }, @@ -4566,7 +4591,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e266b6cf272bbd30600549fc4c4810c2", "x-ms-return-client-request-id": "true" }, @@ -4575,17 +4600,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:12 GMT", + "Date": "Wed, 19 May 2021 19:00:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d465ea7c-c600-4d09-b22e-cf311204d7ba", - "x-ms-ratelimit-remaining-subscription-reads": "11777", - "x-ms-request-id": "d465ea7c-c600-4d09-b22e-cf311204d7ba", - "x-ms-routing-request-id": "WESTUS2:20210507T203112Z:d465ea7c-c600-4d09-b22e-cf311204d7ba" + "x-ms-correlation-request-id": "321d2777-ccd6-4680-ad74-80bf7ab165f5", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "321d2777-ccd6-4680-ad74-80bf7ab165f5", + "x-ms-routing-request-id": "WESTUS2:20210519T190014Z:321d2777-ccd6-4680-ad74-80bf7ab165f5" }, "ResponseBody": [] }, @@ -4594,7 +4619,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5547fdc23c9d050d8f8ddaf01f65598f", "x-ms-return-client-request-id": "true" }, @@ -4603,17 +4628,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:13 GMT", + "Date": "Wed, 19 May 2021 19:00:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1451a65-7c2a-4ce9-9030-7e7b8a8dacee", - "x-ms-ratelimit-remaining-subscription-reads": "11776", - "x-ms-request-id": "f1451a65-7c2a-4ce9-9030-7e7b8a8dacee", - "x-ms-routing-request-id": "WESTUS2:20210507T203113Z:f1451a65-7c2a-4ce9-9030-7e7b8a8dacee" + "x-ms-correlation-request-id": "b235f3c6-a876-45a9-86b2-dbe364b452ff", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "b235f3c6-a876-45a9-86b2-dbe364b452ff", + "x-ms-routing-request-id": "WESTUS2:20210519T190015Z:b235f3c6-a876-45a9-86b2-dbe364b452ff" }, "ResponseBody": [] }, @@ -4622,7 +4647,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d88279b44bcc766ca9b5bd2ad881f27", "x-ms-return-client-request-id": "true" }, @@ -4631,17 +4656,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:14 GMT", + "Date": "Wed, 19 May 2021 19:00:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b70be4fc-5e27-4a84-84e1-a6b6e0ede7c3", - "x-ms-ratelimit-remaining-subscription-reads": "11775", - "x-ms-request-id": "b70be4fc-5e27-4a84-84e1-a6b6e0ede7c3", - "x-ms-routing-request-id": "WESTUS2:20210507T203114Z:b70be4fc-5e27-4a84-84e1-a6b6e0ede7c3" + "x-ms-correlation-request-id": "d55a13bf-3bce-4c46-a26c-8fdf0955869a", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "d55a13bf-3bce-4c46-a26c-8fdf0955869a", + "x-ms-routing-request-id": "WESTUS2:20210519T190016Z:d55a13bf-3bce-4c46-a26c-8fdf0955869a" }, "ResponseBody": [] }, @@ -4650,7 +4675,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "05bd56e9cdde9238a861529d4c3f9dfb", "x-ms-return-client-request-id": "true" }, @@ -4659,17 +4684,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:15 GMT", + "Date": "Wed, 19 May 2021 19:00:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2f7cfa6-0f6c-4786-aeef-616e86d14228", - "x-ms-ratelimit-remaining-subscription-reads": "11774", - "x-ms-request-id": "b2f7cfa6-0f6c-4786-aeef-616e86d14228", - "x-ms-routing-request-id": "WESTUS2:20210507T203115Z:b2f7cfa6-0f6c-4786-aeef-616e86d14228" + "x-ms-correlation-request-id": "e07ca779-7304-4dff-a409-09272863f00c", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "e07ca779-7304-4dff-a409-09272863f00c", + "x-ms-routing-request-id": "WESTUS2:20210519T190017Z:e07ca779-7304-4dff-a409-09272863f00c" }, "ResponseBody": [] }, @@ -4678,7 +4703,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2460b9abe2c07e06977f8b02e03a5707", "x-ms-return-client-request-id": "true" }, @@ -4687,17 +4712,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:16 GMT", + "Date": "Wed, 19 May 2021 19:00:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f99bd2c5-d97d-403f-8213-5b6d1680fd52", - "x-ms-ratelimit-remaining-subscription-reads": "11773", - "x-ms-request-id": "f99bd2c5-d97d-403f-8213-5b6d1680fd52", - "x-ms-routing-request-id": "WESTUS2:20210507T203116Z:f99bd2c5-d97d-403f-8213-5b6d1680fd52" + "x-ms-correlation-request-id": "d03a3add-0fe5-4e1d-bdf9-8ed396301bf4", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "d03a3add-0fe5-4e1d-bdf9-8ed396301bf4", + "x-ms-routing-request-id": "WESTUS2:20210519T190018Z:d03a3add-0fe5-4e1d-bdf9-8ed396301bf4" }, "ResponseBody": [] }, @@ -4706,7 +4731,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c907b26e54a7ceb1eff5855af1c97a8a", "x-ms-return-client-request-id": "true" }, @@ -4715,17 +4740,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:17 GMT", + "Date": "Wed, 19 May 2021 19:00:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9bb5196-53c1-4ac4-9960-7b0abf1f2580", - "x-ms-ratelimit-remaining-subscription-reads": "11772", - "x-ms-request-id": "b9bb5196-53c1-4ac4-9960-7b0abf1f2580", - "x-ms-routing-request-id": "WESTUS2:20210507T203117Z:b9bb5196-53c1-4ac4-9960-7b0abf1f2580" + "x-ms-correlation-request-id": "656ea493-2738-4b98-8fb7-4d8f9f73bfb9", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "656ea493-2738-4b98-8fb7-4d8f9f73bfb9", + "x-ms-routing-request-id": "WESTUS2:20210519T190019Z:656ea493-2738-4b98-8fb7-4d8f9f73bfb9" }, "ResponseBody": [] }, @@ -4734,7 +4759,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f42760fdfa270767503f6d5f4135b26d", "x-ms-return-client-request-id": "true" }, @@ -4743,17 +4768,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:18 GMT", + "Date": "Wed, 19 May 2021 19:00:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0dbc5fb1-7d8d-4438-abed-b6392e9382de", - "x-ms-ratelimit-remaining-subscription-reads": "11771", - "x-ms-request-id": "0dbc5fb1-7d8d-4438-abed-b6392e9382de", - "x-ms-routing-request-id": "WESTUS2:20210507T203118Z:0dbc5fb1-7d8d-4438-abed-b6392e9382de" + "x-ms-correlation-request-id": "32362278-e23b-4020-8036-04e7f38e5cce", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "32362278-e23b-4020-8036-04e7f38e5cce", + "x-ms-routing-request-id": "WESTUS2:20210519T190020Z:32362278-e23b-4020-8036-04e7f38e5cce" }, "ResponseBody": [] }, @@ -4762,7 +4787,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9a2f4b09d4385654089235ca5dab8cce", "x-ms-return-client-request-id": "true" }, @@ -4771,17 +4796,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:19 GMT", + "Date": "Wed, 19 May 2021 19:00:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7c866f8-18f5-4544-953c-82a700ca0b43", - "x-ms-ratelimit-remaining-subscription-reads": "11770", - "x-ms-request-id": "e7c866f8-18f5-4544-953c-82a700ca0b43", - "x-ms-routing-request-id": "WESTUS2:20210507T203119Z:e7c866f8-18f5-4544-953c-82a700ca0b43" + "x-ms-correlation-request-id": "0541b1b1-a63c-4fa4-944d-81266c04be3f", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "0541b1b1-a63c-4fa4-944d-81266c04be3f", + "x-ms-routing-request-id": "WESTUS2:20210519T190021Z:0541b1b1-a63c-4fa4-944d-81266c04be3f" }, "ResponseBody": [] }, @@ -4790,7 +4815,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80050104631373df4b007867e7528dba", "x-ms-return-client-request-id": "true" }, @@ -4799,17 +4824,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:20 GMT", + "Date": "Wed, 19 May 2021 19:00:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e4fa6b5-0df1-4abf-a91b-c3ac18226830", - "x-ms-ratelimit-remaining-subscription-reads": "11769", - "x-ms-request-id": "8e4fa6b5-0df1-4abf-a91b-c3ac18226830", - "x-ms-routing-request-id": "WESTUS2:20210507T203120Z:8e4fa6b5-0df1-4abf-a91b-c3ac18226830" + "x-ms-correlation-request-id": "875423a8-a76f-4221-91a2-46187229e104", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "875423a8-a76f-4221-91a2-46187229e104", + "x-ms-routing-request-id": "WESTUS2:20210519T190022Z:875423a8-a76f-4221-91a2-46187229e104" }, "ResponseBody": [] }, @@ -4818,7 +4843,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a5501843e09a28520bd1eb95c59daaa4", "x-ms-return-client-request-id": "true" }, @@ -4827,17 +4852,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:21 GMT", + "Date": "Wed, 19 May 2021 19:00:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84254ad7-1d94-49ba-b775-c0357a7bd8a4", - "x-ms-ratelimit-remaining-subscription-reads": "11768", - "x-ms-request-id": "84254ad7-1d94-49ba-b775-c0357a7bd8a4", - "x-ms-routing-request-id": "WESTUS2:20210507T203121Z:84254ad7-1d94-49ba-b775-c0357a7bd8a4" + "x-ms-correlation-request-id": "eabc4242-634c-4d8a-9cd7-b5536e11822b", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "eabc4242-634c-4d8a-9cd7-b5536e11822b", + "x-ms-routing-request-id": "WESTUS2:20210519T190023Z:eabc4242-634c-4d8a-9cd7-b5536e11822b" }, "ResponseBody": [] }, @@ -4846,7 +4871,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "405a9fb2312fa65a6cbb4e385bec6eb6", "x-ms-return-client-request-id": "true" }, @@ -4855,17 +4880,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:22 GMT", + "Date": "Wed, 19 May 2021 19:00:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec02182e-28cc-471d-a5bf-89a89c0b922e", - "x-ms-ratelimit-remaining-subscription-reads": "11767", - "x-ms-request-id": "ec02182e-28cc-471d-a5bf-89a89c0b922e", - "x-ms-routing-request-id": "WESTUS2:20210507T203123Z:ec02182e-28cc-471d-a5bf-89a89c0b922e" + "x-ms-correlation-request-id": "b11a2ad1-fee9-4d87-b340-bc24aebb07de", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "b11a2ad1-fee9-4d87-b340-bc24aebb07de", + "x-ms-routing-request-id": "WESTUS2:20210519T190024Z:b11a2ad1-fee9-4d87-b340-bc24aebb07de" }, "ResponseBody": [] }, @@ -4874,7 +4899,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44867a05e65b2334aedc74417849aeae", "x-ms-return-client-request-id": "true" }, @@ -4883,17 +4908,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:23 GMT", + "Date": "Wed, 19 May 2021 19:00:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c997a5f-24be-4f86-9316-e4ba66a3ad60", - "x-ms-ratelimit-remaining-subscription-reads": "11766", - "x-ms-request-id": "5c997a5f-24be-4f86-9316-e4ba66a3ad60", - "x-ms-routing-request-id": "WESTUS2:20210507T203124Z:5c997a5f-24be-4f86-9316-e4ba66a3ad60" + "x-ms-correlation-request-id": "c6209333-843c-4455-b8f3-14dea08743f7", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "c6209333-843c-4455-b8f3-14dea08743f7", + "x-ms-routing-request-id": "WESTUS2:20210519T190025Z:c6209333-843c-4455-b8f3-14dea08743f7" }, "ResponseBody": [] }, @@ -4902,7 +4927,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "48b4d4554cf7118abeaa39de911acd1e", "x-ms-return-client-request-id": "true" }, @@ -4911,17 +4936,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:24 GMT", + "Date": "Wed, 19 May 2021 19:00:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd9df64a-2536-4c94-b913-6d2ad82e415e", - "x-ms-ratelimit-remaining-subscription-reads": "11765", - "x-ms-request-id": "bd9df64a-2536-4c94-b913-6d2ad82e415e", - "x-ms-routing-request-id": "WESTUS2:20210507T203125Z:bd9df64a-2536-4c94-b913-6d2ad82e415e" + "x-ms-correlation-request-id": "2586be88-d04b-4c1f-8530-2ae52c955f9d", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "2586be88-d04b-4c1f-8530-2ae52c955f9d", + "x-ms-routing-request-id": "WESTUS2:20210519T190026Z:2586be88-d04b-4c1f-8530-2ae52c955f9d" }, "ResponseBody": [] }, @@ -4930,7 +4955,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a9035626516cc496a369153bc182d22", "x-ms-return-client-request-id": "true" }, @@ -4939,17 +4964,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:25 GMT", + "Date": "Wed, 19 May 2021 19:00:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48aa1243-db89-4e2f-9eeb-cc27c5a70938", - "x-ms-ratelimit-remaining-subscription-reads": "11764", - "x-ms-request-id": "48aa1243-db89-4e2f-9eeb-cc27c5a70938", - "x-ms-routing-request-id": "WESTUS2:20210507T203126Z:48aa1243-db89-4e2f-9eeb-cc27c5a70938" + "x-ms-correlation-request-id": "f43104f6-72b3-48f9-a930-e867597849c7", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "f43104f6-72b3-48f9-a930-e867597849c7", + "x-ms-routing-request-id": "WESTUS2:20210519T190027Z:f43104f6-72b3-48f9-a930-e867597849c7" }, "ResponseBody": [] }, @@ -4958,7 +4983,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87e2a00c2638b8beef7586b0ad559294", "x-ms-return-client-request-id": "true" }, @@ -4967,17 +4992,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:26 GMT", + "Date": "Wed, 19 May 2021 19:00:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32b3fbad-9d6f-415a-b8ca-5b55a066a914", - "x-ms-ratelimit-remaining-subscription-reads": "11763", - "x-ms-request-id": "32b3fbad-9d6f-415a-b8ca-5b55a066a914", - "x-ms-routing-request-id": "WESTUS2:20210507T203127Z:32b3fbad-9d6f-415a-b8ca-5b55a066a914" + "x-ms-correlation-request-id": "3d05864f-fbd4-4af1-a4cc-ed1c4a165eb3", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "3d05864f-fbd4-4af1-a4cc-ed1c4a165eb3", + "x-ms-routing-request-id": "WESTUS2:20210519T190028Z:3d05864f-fbd4-4af1-a4cc-ed1c4a165eb3" }, "ResponseBody": [] }, @@ -4986,7 +5011,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "42df560f63b8f0988be8ddc1bb3754a5", "x-ms-return-client-request-id": "true" }, @@ -4995,17 +5020,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:27 GMT", + "Date": "Wed, 19 May 2021 19:00:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f66c4a00-20dd-43a9-ac1f-8293279dada9", - "x-ms-ratelimit-remaining-subscription-reads": "11762", - "x-ms-request-id": "f66c4a00-20dd-43a9-ac1f-8293279dada9", - "x-ms-routing-request-id": "WESTUS2:20210507T203128Z:f66c4a00-20dd-43a9-ac1f-8293279dada9" + "x-ms-correlation-request-id": "2b774903-7dd0-4175-b712-21fea69a1d00", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "2b774903-7dd0-4175-b712-21fea69a1d00", + "x-ms-routing-request-id": "WESTUS2:20210519T190029Z:2b774903-7dd0-4175-b712-21fea69a1d00" }, "ResponseBody": [] }, @@ -5014,7 +5039,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f1d2167c46373ce676d75ba0de981f14", "x-ms-return-client-request-id": "true" }, @@ -5023,17 +5048,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:28 GMT", + "Date": "Wed, 19 May 2021 19:00:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55749a64-76b4-4e6d-85e7-d75cbad95530", - "x-ms-ratelimit-remaining-subscription-reads": "11761", - "x-ms-request-id": "55749a64-76b4-4e6d-85e7-d75cbad95530", - "x-ms-routing-request-id": "WESTUS2:20210507T203129Z:55749a64-76b4-4e6d-85e7-d75cbad95530" + "x-ms-correlation-request-id": "a417d37e-22ef-41b9-a980-2f08d5a1d6b6", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "a417d37e-22ef-41b9-a980-2f08d5a1d6b6", + "x-ms-routing-request-id": "WESTUS2:20210519T190030Z:a417d37e-22ef-41b9-a980-2f08d5a1d6b6" }, "ResponseBody": [] }, @@ -5042,7 +5067,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6643fca4eb39a96908f1fb4f48fcfdb8", "x-ms-return-client-request-id": "true" }, @@ -5051,17 +5076,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:29 GMT", + "Date": "Wed, 19 May 2021 19:00:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "996ec4cf-3da5-4f7a-ab12-d09ed13d6007", - "x-ms-ratelimit-remaining-subscription-reads": "11760", - "x-ms-request-id": "996ec4cf-3da5-4f7a-ab12-d09ed13d6007", - "x-ms-routing-request-id": "WESTUS2:20210507T203130Z:996ec4cf-3da5-4f7a-ab12-d09ed13d6007" + "x-ms-correlation-request-id": "201e05ff-fa35-4d9f-9ff5-d95d65a31609", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "201e05ff-fa35-4d9f-9ff5-d95d65a31609", + "x-ms-routing-request-id": "WESTUS2:20210519T190031Z:201e05ff-fa35-4d9f-9ff5-d95d65a31609" }, "ResponseBody": [] }, @@ -5070,7 +5095,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9634e120a083c95c6fa2cbe108f712f2", "x-ms-return-client-request-id": "true" }, @@ -5079,17 +5104,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:31 GMT", + "Date": "Wed, 19 May 2021 19:00:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2553c310-4e6d-4617-8ab8-0e96a08ecda9", - "x-ms-ratelimit-remaining-subscription-reads": "11759", - "x-ms-request-id": "2553c310-4e6d-4617-8ab8-0e96a08ecda9", - "x-ms-routing-request-id": "WESTUS2:20210507T203131Z:2553c310-4e6d-4617-8ab8-0e96a08ecda9" + "x-ms-correlation-request-id": "98a328ae-e252-42e6-ac76-5cb923f74d47", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "98a328ae-e252-42e6-ac76-5cb923f74d47", + "x-ms-routing-request-id": "WESTUS2:20210519T190032Z:98a328ae-e252-42e6-ac76-5cb923f74d47" }, "ResponseBody": [] }, @@ -5098,7 +5123,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "be1dc8c9edf4916cac28e8464a97f379", "x-ms-return-client-request-id": "true" }, @@ -5107,17 +5132,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:32 GMT", + "Date": "Wed, 19 May 2021 19:00:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c39c612-b86f-4f34-9f29-93112cbee399", - "x-ms-ratelimit-remaining-subscription-reads": "11758", - "x-ms-request-id": "1c39c612-b86f-4f34-9f29-93112cbee399", - "x-ms-routing-request-id": "WESTUS2:20210507T203132Z:1c39c612-b86f-4f34-9f29-93112cbee399" + "x-ms-correlation-request-id": "64bbb3cb-6ccf-4c7f-adae-9515a8a1c3d0", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "64bbb3cb-6ccf-4c7f-adae-9515a8a1c3d0", + "x-ms-routing-request-id": "WESTUS2:20210519T190033Z:64bbb3cb-6ccf-4c7f-adae-9515a8a1c3d0" }, "ResponseBody": [] }, @@ -5126,7 +5151,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd80a2da88640391a079f7961f88a111", "x-ms-return-client-request-id": "true" }, @@ -5135,17 +5160,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:33 GMT", + "Date": "Wed, 19 May 2021 19:00:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eae0b985-1aa8-4e26-9963-da72649956ca", - "x-ms-ratelimit-remaining-subscription-reads": "11757", - "x-ms-request-id": "eae0b985-1aa8-4e26-9963-da72649956ca", - "x-ms-routing-request-id": "WESTUS2:20210507T203133Z:eae0b985-1aa8-4e26-9963-da72649956ca" + "x-ms-correlation-request-id": "095ab300-fcf6-493b-8cdc-00b0d67fde93", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "095ab300-fcf6-493b-8cdc-00b0d67fde93", + "x-ms-routing-request-id": "WESTUS2:20210519T190034Z:095ab300-fcf6-493b-8cdc-00b0d67fde93" }, "ResponseBody": [] }, @@ -5154,7 +5179,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f8608df3fdf32c475a2e95ab7167fd8", "x-ms-return-client-request-id": "true" }, @@ -5163,17 +5188,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:34 GMT", + "Date": "Wed, 19 May 2021 19:00:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1eb89145-0304-4777-8471-f07269b7b63a", - "x-ms-ratelimit-remaining-subscription-reads": "11756", - "x-ms-request-id": "1eb89145-0304-4777-8471-f07269b7b63a", - "x-ms-routing-request-id": "WESTUS2:20210507T203134Z:1eb89145-0304-4777-8471-f07269b7b63a" + "x-ms-correlation-request-id": "7030a066-aed0-4b1f-9904-104802940d72", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "7030a066-aed0-4b1f-9904-104802940d72", + "x-ms-routing-request-id": "WESTUS2:20210519T190035Z:7030a066-aed0-4b1f-9904-104802940d72" }, "ResponseBody": [] }, @@ -5182,7 +5207,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "650652af1576408e37191d7af6d57223", "x-ms-return-client-request-id": "true" }, @@ -5190,18 +5215,19 @@ "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", + "Connection": "close", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:35 GMT", + "Date": "Wed, 19 May 2021 19:00:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f56ea44-2f6c-4c05-8916-312362f8ede8", - "x-ms-ratelimit-remaining-subscription-reads": "11755", - "x-ms-request-id": "0f56ea44-2f6c-4c05-8916-312362f8ede8", - "x-ms-routing-request-id": "WESTUS2:20210507T203135Z:0f56ea44-2f6c-4c05-8916-312362f8ede8" + "x-ms-correlation-request-id": "57e3f98f-b5c2-4438-af26-345259b6ad7a", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "57e3f98f-b5c2-4438-af26-345259b6ad7a", + "x-ms-routing-request-id": "WESTUS2:20210519T190037Z:57e3f98f-b5c2-4438-af26-345259b6ad7a" }, "ResponseBody": [] }, @@ -5210,7 +5236,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4166d78773119b9ade4d88c19e364c89", "x-ms-return-client-request-id": "true" }, @@ -5219,17 +5245,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:36 GMT", + "Date": "Wed, 19 May 2021 19:00:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70df8620-67bc-44af-868c-889479d642a1", - "x-ms-ratelimit-remaining-subscription-reads": "11754", - "x-ms-request-id": "70df8620-67bc-44af-868c-889479d642a1", - "x-ms-routing-request-id": "WESTUS2:20210507T203136Z:70df8620-67bc-44af-868c-889479d642a1" + "x-ms-correlation-request-id": "dea51426-5e66-4904-ae28-25cfbe32b00e", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "dea51426-5e66-4904-ae28-25cfbe32b00e", + "x-ms-routing-request-id": "WESTUS2:20210519T190038Z:dea51426-5e66-4904-ae28-25cfbe32b00e" }, "ResponseBody": [] }, @@ -5238,7 +5264,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cde61ffa3b82ca9a7a4548c621493c9f", "x-ms-return-client-request-id": "true" }, @@ -5247,17 +5273,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:37 GMT", + "Date": "Wed, 19 May 2021 19:00:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3732d631-2116-4b4b-b0e2-a8a36ae43acd", - "x-ms-ratelimit-remaining-subscription-reads": "11753", - "x-ms-request-id": "3732d631-2116-4b4b-b0e2-a8a36ae43acd", - "x-ms-routing-request-id": "WESTUS2:20210507T203137Z:3732d631-2116-4b4b-b0e2-a8a36ae43acd" + "x-ms-correlation-request-id": "9929a374-3b8a-4e65-8423-2662be65af97", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "9929a374-3b8a-4e65-8423-2662be65af97", + "x-ms-routing-request-id": "WESTUS2:20210519T190039Z:9929a374-3b8a-4e65-8423-2662be65af97" }, "ResponseBody": [] }, @@ -5266,7 +5292,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e0d3c6303daf3cc7b76b86288ccca200", "x-ms-return-client-request-id": "true" }, @@ -5275,17 +5301,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:38 GMT", + "Date": "Wed, 19 May 2021 19:00:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23c19542-8915-49d7-93cc-7fa1704648ad", - "x-ms-ratelimit-remaining-subscription-reads": "11752", - "x-ms-request-id": "23c19542-8915-49d7-93cc-7fa1704648ad", - "x-ms-routing-request-id": "WESTUS2:20210507T203138Z:23c19542-8915-49d7-93cc-7fa1704648ad" + "x-ms-correlation-request-id": "ab80d740-ddd5-4b10-88cc-8c7577e128c0", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "ab80d740-ddd5-4b10-88cc-8c7577e128c0", + "x-ms-routing-request-id": "WESTUS2:20210519T190040Z:ab80d740-ddd5-4b10-88cc-8c7577e128c0" }, "ResponseBody": [] }, @@ -5294,7 +5320,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d78094cda5ee4ca13c9cc7cb2ad37995", "x-ms-return-client-request-id": "true" }, @@ -5303,17 +5329,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:39 GMT", + "Date": "Wed, 19 May 2021 19:00:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e5029acc-d2fe-4901-a050-6f586e94ebe9", - "x-ms-ratelimit-remaining-subscription-reads": "11751", - "x-ms-request-id": "e5029acc-d2fe-4901-a050-6f586e94ebe9", - "x-ms-routing-request-id": "WESTUS2:20210507T203139Z:e5029acc-d2fe-4901-a050-6f586e94ebe9" + "x-ms-correlation-request-id": "7835470b-800d-47e7-b1db-c7f3e422b091", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "7835470b-800d-47e7-b1db-c7f3e422b091", + "x-ms-routing-request-id": "WESTUS2:20210519T190041Z:7835470b-800d-47e7-b1db-c7f3e422b091" }, "ResponseBody": [] }, @@ -5322,7 +5348,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d891e8116b63bcd958aa1517b4723dad", "x-ms-return-client-request-id": "true" }, @@ -5331,17 +5357,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:40 GMT", + "Date": "Wed, 19 May 2021 19:00:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2e4ed69-dc14-46c4-a7a7-efce3919059d", - "x-ms-ratelimit-remaining-subscription-reads": "11750", - "x-ms-request-id": "d2e4ed69-dc14-46c4-a7a7-efce3919059d", - "x-ms-routing-request-id": "WESTUS2:20210507T203140Z:d2e4ed69-dc14-46c4-a7a7-efce3919059d" + "x-ms-correlation-request-id": "091bf66b-2818-4d2d-b42b-0e01998d1a0c", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "091bf66b-2818-4d2d-b42b-0e01998d1a0c", + "x-ms-routing-request-id": "WESTUS2:20210519T190042Z:091bf66b-2818-4d2d-b42b-0e01998d1a0c" }, "ResponseBody": [] }, @@ -5350,7 +5376,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8df847a364c98bb02487a31376fb11e4", "x-ms-return-client-request-id": "true" }, @@ -5359,17 +5385,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:41 GMT", + "Date": "Wed, 19 May 2021 19:00:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51272a0b-c014-469b-a812-4251f1d68ff7", - "x-ms-ratelimit-remaining-subscription-reads": "11749", - "x-ms-request-id": "51272a0b-c014-469b-a812-4251f1d68ff7", - "x-ms-routing-request-id": "WESTUS2:20210507T203141Z:51272a0b-c014-469b-a812-4251f1d68ff7" + "x-ms-correlation-request-id": "ebd43c15-9241-46d0-a547-97e7305914ce", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "ebd43c15-9241-46d0-a547-97e7305914ce", + "x-ms-routing-request-id": "WESTUS2:20210519T190043Z:ebd43c15-9241-46d0-a547-97e7305914ce" }, "ResponseBody": [] }, @@ -5378,7 +5404,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a416f1f1c93b619dbac37f438f8a97ca", "x-ms-return-client-request-id": "true" }, @@ -5386,19 +5412,18 @@ "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Connection": "close", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:42 GMT", + "Date": "Wed, 19 May 2021 19:00:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f32d7b29-23c3-448c-8613-c234777e2e60", - "x-ms-ratelimit-remaining-subscription-reads": "11748", - "x-ms-request-id": "f32d7b29-23c3-448c-8613-c234777e2e60", - "x-ms-routing-request-id": "WESTUS2:20210507T203143Z:f32d7b29-23c3-448c-8613-c234777e2e60" + "x-ms-correlation-request-id": "08b73a0e-f5e6-4404-8bdf-5c3e228334d7", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "08b73a0e-f5e6-4404-8bdf-5c3e228334d7", + "x-ms-routing-request-id": "WESTUS2:20210519T190044Z:08b73a0e-f5e6-4404-8bdf-5c3e228334d7" }, "ResponseBody": [] }, @@ -5407,7 +5432,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e328195eecdaadcb3806b3dbc7c6455c", "x-ms-return-client-request-id": "true" }, @@ -5416,17 +5441,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:43 GMT", + "Date": "Wed, 19 May 2021 19:00:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60a0966b-855f-41b2-93be-4788274f0f42", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "60a0966b-855f-41b2-93be-4788274f0f42", - "x-ms-routing-request-id": "WESTUS2:20210507T203144Z:60a0966b-855f-41b2-93be-4788274f0f42" + "x-ms-correlation-request-id": "4c5c3b9f-5ec0-47ff-b7ea-5728c62f6d3a", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "4c5c3b9f-5ec0-47ff-b7ea-5728c62f6d3a", + "x-ms-routing-request-id": "WESTUS2:20210519T190045Z:4c5c3b9f-5ec0-47ff-b7ea-5728c62f6d3a" }, "ResponseBody": [] }, @@ -5435,7 +5460,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c2253199995bd972a997d205e56cfb9a", "x-ms-return-client-request-id": "true" }, @@ -5444,17 +5469,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:44 GMT", + "Date": "Wed, 19 May 2021 19:00:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a8c4818-cf0b-456a-9f1d-508fcd01eba6", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "7a8c4818-cf0b-456a-9f1d-508fcd01eba6", - "x-ms-routing-request-id": "WESTUS2:20210507T203145Z:7a8c4818-cf0b-456a-9f1d-508fcd01eba6" + "x-ms-correlation-request-id": "211b06fc-9d15-43f0-a1c4-d57754f57d5b", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "211b06fc-9d15-43f0-a1c4-d57754f57d5b", + "x-ms-routing-request-id": "WESTUS2:20210519T190046Z:211b06fc-9d15-43f0-a1c4-d57754f57d5b" }, "ResponseBody": [] }, @@ -5463,7 +5488,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5cb4d9ef2ed2040926696c3516c199f4", "x-ms-return-client-request-id": "true" }, @@ -5472,17 +5497,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:45 GMT", + "Date": "Wed, 19 May 2021 19:00:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c94ec77e-48a4-4db3-8de6-3ec9c9db29d5", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "c94ec77e-48a4-4db3-8de6-3ec9c9db29d5", - "x-ms-routing-request-id": "WESTUS2:20210507T203146Z:c94ec77e-48a4-4db3-8de6-3ec9c9db29d5" + "x-ms-correlation-request-id": "7797fa2a-b440-47b0-96e1-9e4e37356531", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "7797fa2a-b440-47b0-96e1-9e4e37356531", + "x-ms-routing-request-id": "WESTUS2:20210519T190047Z:7797fa2a-b440-47b0-96e1-9e4e37356531" }, "ResponseBody": [] }, @@ -5491,7 +5516,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5eaa227dd564c56ea74f39431ac5c7cb", "x-ms-return-client-request-id": "true" }, @@ -5500,17 +5525,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:46 GMT", + "Date": "Wed, 19 May 2021 19:00:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33ee795c-bd38-44e3-aa55-00aa71eaf0c6", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "33ee795c-bd38-44e3-aa55-00aa71eaf0c6", - "x-ms-routing-request-id": "WESTUS2:20210507T203147Z:33ee795c-bd38-44e3-aa55-00aa71eaf0c6" + "x-ms-correlation-request-id": "d2c0f295-1c6a-425d-be99-35b7d0be248f", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "d2c0f295-1c6a-425d-be99-35b7d0be248f", + "x-ms-routing-request-id": "WESTUS2:20210519T190048Z:d2c0f295-1c6a-425d-be99-35b7d0be248f" }, "ResponseBody": [] }, @@ -5519,7 +5544,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eeec180ae9116b8a27209cf12c3cc2e8", "x-ms-return-client-request-id": "true" }, @@ -5528,17 +5553,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:47 GMT", + "Date": "Wed, 19 May 2021 19:00:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80c4c631-fb67-4686-8b75-8c1110be7df0", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "80c4c631-fb67-4686-8b75-8c1110be7df0", - "x-ms-routing-request-id": "WESTUS2:20210507T203148Z:80c4c631-fb67-4686-8b75-8c1110be7df0" + "x-ms-correlation-request-id": "0df361b1-18af-448b-b0c3-8c6c03234c46", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "0df361b1-18af-448b-b0c3-8c6c03234c46", + "x-ms-routing-request-id": "WESTUS2:20210519T190049Z:0df361b1-18af-448b-b0c3-8c6c03234c46" }, "ResponseBody": [] }, @@ -5547,7 +5572,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c288ddfd9cc219356aeeb583f5c6ea60", "x-ms-return-client-request-id": "true" }, @@ -5556,17 +5581,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:48 GMT", + "Date": "Wed, 19 May 2021 19:00:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c5d3442-98fd-4287-bf88-50d16c91d7a1", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "3c5d3442-98fd-4287-bf88-50d16c91d7a1", - "x-ms-routing-request-id": "WESTUS2:20210507T203149Z:3c5d3442-98fd-4287-bf88-50d16c91d7a1" + "x-ms-correlation-request-id": "1d2b512b-4b16-4cfa-a97f-a0a26fdc3ab5", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "1d2b512b-4b16-4cfa-a97f-a0a26fdc3ab5", + "x-ms-routing-request-id": "WESTUS2:20210519T190050Z:1d2b512b-4b16-4cfa-a97f-a0a26fdc3ab5" }, "ResponseBody": [] }, @@ -5575,7 +5600,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd2aa0a1abd594e3983f3744397c996a", "x-ms-return-client-request-id": "true" }, @@ -5584,17 +5609,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:49 GMT", + "Date": "Wed, 19 May 2021 19:00:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d2d71e7-2a85-487a-a4c4-ba17b5a77e00", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "8d2d71e7-2a85-487a-a4c4-ba17b5a77e00", - "x-ms-routing-request-id": "WESTUS2:20210507T203150Z:8d2d71e7-2a85-487a-a4c4-ba17b5a77e00" + "x-ms-correlation-request-id": "056c673d-107a-4ce0-8e70-b05262d716b7", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "056c673d-107a-4ce0-8e70-b05262d716b7", + "x-ms-routing-request-id": "WESTUS2:20210519T190051Z:056c673d-107a-4ce0-8e70-b05262d716b7" }, "ResponseBody": [] }, @@ -5603,7 +5628,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c45508c043d6e09e2d2832233077561", "x-ms-return-client-request-id": "true" }, @@ -5612,17 +5637,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:50 GMT", + "Date": "Wed, 19 May 2021 19:00:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19b9002b-3c90-48d0-b099-dc48a67041c1", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "19b9002b-3c90-48d0-b099-dc48a67041c1", - "x-ms-routing-request-id": "WESTUS2:20210507T203151Z:19b9002b-3c90-48d0-b099-dc48a67041c1" + "x-ms-correlation-request-id": "c2ba47c5-a7bc-4c3f-9413-cd06033cc465", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "c2ba47c5-a7bc-4c3f-9413-cd06033cc465", + "x-ms-routing-request-id": "WESTUS2:20210519T190052Z:c2ba47c5-a7bc-4c3f-9413-cd06033cc465" }, "ResponseBody": [] }, @@ -5631,7 +5656,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8c503b36c5125213faf42a8265f1e0ed", "x-ms-return-client-request-id": "true" }, @@ -5640,17 +5665,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:52 GMT", + "Date": "Wed, 19 May 2021 19:00:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba7231cb-39b7-4dff-883a-b7cde2468867", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "ba7231cb-39b7-4dff-883a-b7cde2468867", - "x-ms-routing-request-id": "WESTUS2:20210507T203152Z:ba7231cb-39b7-4dff-883a-b7cde2468867" + "x-ms-correlation-request-id": "4a0d0f11-33aa-4eb3-85f9-bd3d3abb12b6", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "4a0d0f11-33aa-4eb3-85f9-bd3d3abb12b6", + "x-ms-routing-request-id": "WESTUS2:20210519T190053Z:4a0d0f11-33aa-4eb3-85f9-bd3d3abb12b6" }, "ResponseBody": [] }, @@ -5659,7 +5684,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a4f64a55ae809c2397bc1a0227c06091", "x-ms-return-client-request-id": "true" }, @@ -5668,17 +5693,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:53 GMT", + "Date": "Wed, 19 May 2021 19:00:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2d53bd3-460a-400c-8983-830ed4444860", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "b2d53bd3-460a-400c-8983-830ed4444860", - "x-ms-routing-request-id": "WESTUS2:20210507T203153Z:b2d53bd3-460a-400c-8983-830ed4444860" + "x-ms-correlation-request-id": "7f9fa024-69d1-4e72-b5e7-9efd1e7f3dea", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "7f9fa024-69d1-4e72-b5e7-9efd1e7f3dea", + "x-ms-routing-request-id": "WESTUS2:20210519T190054Z:7f9fa024-69d1-4e72-b5e7-9efd1e7f3dea" }, "ResponseBody": [] }, @@ -5687,7 +5712,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd0dd5c90d2cc7583df34149da8608f0", "x-ms-return-client-request-id": "true" }, @@ -5696,17 +5721,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:54 GMT", + "Date": "Wed, 19 May 2021 19:00:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0699949e-7f82-4694-9284-7955e1cd1c4e", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "0699949e-7f82-4694-9284-7955e1cd1c4e", - "x-ms-routing-request-id": "WESTUS2:20210507T203154Z:0699949e-7f82-4694-9284-7955e1cd1c4e" + "x-ms-correlation-request-id": "11029c79-ec08-4347-b0bb-1fa11ea66945", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "11029c79-ec08-4347-b0bb-1fa11ea66945", + "x-ms-routing-request-id": "WESTUS2:20210519T190055Z:11029c79-ec08-4347-b0bb-1fa11ea66945" }, "ResponseBody": [] }, @@ -5715,7 +5740,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8cd95f2d11088e018b3f456aa102a3a", "x-ms-return-client-request-id": "true" }, @@ -5724,17 +5749,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:55 GMT", + "Date": "Wed, 19 May 2021 19:00:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "318ad4e0-45dc-47e7-9913-2e49c4ee65dd", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "318ad4e0-45dc-47e7-9913-2e49c4ee65dd", - "x-ms-routing-request-id": "WESTUS2:20210507T203155Z:318ad4e0-45dc-47e7-9913-2e49c4ee65dd" + "x-ms-correlation-request-id": "80644146-914c-4759-b3f3-57eb7676adf1", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "80644146-914c-4759-b3f3-57eb7676adf1", + "x-ms-routing-request-id": "WESTUS2:20210519T190056Z:80644146-914c-4759-b3f3-57eb7676adf1" }, "ResponseBody": [] }, @@ -5743,7 +5768,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8fb99993e3e448c1f22e668c6cd9c211", "x-ms-return-client-request-id": "true" }, @@ -5752,17 +5777,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:56 GMT", + "Date": "Wed, 19 May 2021 19:00:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9811241-fb91-42f5-96f8-93e799d97c6d", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "d9811241-fb91-42f5-96f8-93e799d97c6d", - "x-ms-routing-request-id": "WESTUS2:20210507T203156Z:d9811241-fb91-42f5-96f8-93e799d97c6d" + "x-ms-correlation-request-id": "4993e078-d7e5-402a-839a-07167deaa63c", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "4993e078-d7e5-402a-839a-07167deaa63c", + "x-ms-routing-request-id": "WESTUS2:20210519T190057Z:4993e078-d7e5-402a-839a-07167deaa63c" }, "ResponseBody": [] }, @@ -5771,7 +5796,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "911029b377f2f780f485e47918011c2c", "x-ms-return-client-request-id": "true" }, @@ -5780,17 +5805,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:57 GMT", + "Date": "Wed, 19 May 2021 19:00:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c03d300e-76b0-4e9b-81fe-a805e2e0ee12", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "c03d300e-76b0-4e9b-81fe-a805e2e0ee12", - "x-ms-routing-request-id": "WESTUS2:20210507T203157Z:c03d300e-76b0-4e9b-81fe-a805e2e0ee12" + "x-ms-correlation-request-id": "8584fed6-347d-4be8-80e6-c3b6be49ffa2", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "8584fed6-347d-4be8-80e6-c3b6be49ffa2", + "x-ms-routing-request-id": "WESTUS2:20210519T190058Z:8584fed6-347d-4be8-80e6-c3b6be49ffa2" }, "ResponseBody": [] }, @@ -5799,7 +5824,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "40b507c879cc0e0cd484f6e16b541b3e", "x-ms-return-client-request-id": "true" }, @@ -5808,17 +5833,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:58 GMT", + "Date": "Wed, 19 May 2021 19:00:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "368e5bda-191a-4329-a535-ae8a07e5b472", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "368e5bda-191a-4329-a535-ae8a07e5b472", - "x-ms-routing-request-id": "WESTUS2:20210507T203158Z:368e5bda-191a-4329-a535-ae8a07e5b472" + "x-ms-correlation-request-id": "22e3e975-d7a3-4664-94da-04a606cf7a84", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "22e3e975-d7a3-4664-94da-04a606cf7a84", + "x-ms-routing-request-id": "WESTUS2:20210519T190059Z:22e3e975-d7a3-4664-94da-04a606cf7a84" }, "ResponseBody": [] }, @@ -5827,7 +5852,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80a2e2f099001b4718c29a5efe482ff0", "x-ms-return-client-request-id": "true" }, @@ -5836,17 +5861,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:31:59 GMT", + "Date": "Wed, 19 May 2021 19:01:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8209ab4a-ba14-407c-a1fe-2dcd0c884acc", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "8209ab4a-ba14-407c-a1fe-2dcd0c884acc", - "x-ms-routing-request-id": "WESTUS2:20210507T203159Z:8209ab4a-ba14-407c-a1fe-2dcd0c884acc" + "x-ms-correlation-request-id": "8e20ad52-4cb6-4e33-b095-72780dcacf22", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "8e20ad52-4cb6-4e33-b095-72780dcacf22", + "x-ms-routing-request-id": "WESTUS2:20210519T190100Z:8e20ad52-4cb6-4e33-b095-72780dcacf22" }, "ResponseBody": [] }, @@ -5855,7 +5880,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "64c4391181233a451d01bd6e819e8ca0", "x-ms-return-client-request-id": "true" }, @@ -5864,17 +5889,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:00 GMT", + "Date": "Wed, 19 May 2021 19:01:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "252268b7-b964-4ca8-81f6-5aab59faf461", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "252268b7-b964-4ca8-81f6-5aab59faf461", - "x-ms-routing-request-id": "WESTUS2:20210507T203200Z:252268b7-b964-4ca8-81f6-5aab59faf461" + "x-ms-correlation-request-id": "58225aeb-aae8-4f88-862b-ff92376800de", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "58225aeb-aae8-4f88-862b-ff92376800de", + "x-ms-routing-request-id": "WESTUS2:20210519T190101Z:58225aeb-aae8-4f88-862b-ff92376800de" }, "ResponseBody": [] }, @@ -5883,7 +5908,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3688a5699c5f2f2bbf9a270adeae0f8c", "x-ms-return-client-request-id": "true" }, @@ -5892,17 +5917,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:01 GMT", + "Date": "Wed, 19 May 2021 19:01:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10147eb6-fe81-4306-b301-04b3543927de", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "10147eb6-fe81-4306-b301-04b3543927de", - "x-ms-routing-request-id": "WESTUS2:20210507T203201Z:10147eb6-fe81-4306-b301-04b3543927de" + "x-ms-correlation-request-id": "db0e5e58-72d6-447b-a3f4-d8ae2a600c83", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "db0e5e58-72d6-447b-a3f4-d8ae2a600c83", + "x-ms-routing-request-id": "WESTUS2:20210519T190102Z:db0e5e58-72d6-447b-a3f4-d8ae2a600c83" }, "ResponseBody": [] }, @@ -5911,7 +5936,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31cf0555b78f6e1a9d6863ffdbd99a7a", "x-ms-return-client-request-id": "true" }, @@ -5920,17 +5945,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:02 GMT", + "Date": "Wed, 19 May 2021 19:01:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "238cec0f-8af4-4372-b7a2-ce79dfcd8e55", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "238cec0f-8af4-4372-b7a2-ce79dfcd8e55", - "x-ms-routing-request-id": "WESTUS2:20210507T203202Z:238cec0f-8af4-4372-b7a2-ce79dfcd8e55" + "x-ms-correlation-request-id": "f7213860-b676-4c00-99d2-cb6ff7522e16", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "f7213860-b676-4c00-99d2-cb6ff7522e16", + "x-ms-routing-request-id": "WESTUS2:20210519T190103Z:f7213860-b676-4c00-99d2-cb6ff7522e16" }, "ResponseBody": [] }, @@ -5939,7 +5964,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "58f4f935f9bf75910d95a5895a3a5b6e", "x-ms-return-client-request-id": "true" }, @@ -5948,17 +5973,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:03 GMT", + "Date": "Wed, 19 May 2021 19:01:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "40c76295-b6c1-4494-b47f-a81515c2652c", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "40c76295-b6c1-4494-b47f-a81515c2652c", - "x-ms-routing-request-id": "WESTUS2:20210507T203204Z:40c76295-b6c1-4494-b47f-a81515c2652c" + "x-ms-correlation-request-id": "b606becb-11d2-47df-8af9-57007b2d8c78", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "b606becb-11d2-47df-8af9-57007b2d8c78", + "x-ms-routing-request-id": "WESTUS2:20210519T190104Z:b606becb-11d2-47df-8af9-57007b2d8c78" }, "ResponseBody": [] }, @@ -5967,7 +5992,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7b1931f15bceb2118b1998f6392c53e6", "x-ms-return-client-request-id": "true" }, @@ -5976,17 +6001,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:04 GMT", + "Date": "Wed, 19 May 2021 19:01:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b9cab93-66a0-4c24-bf7d-ba1fcc752b26", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "0b9cab93-66a0-4c24-bf7d-ba1fcc752b26", - "x-ms-routing-request-id": "WESTUS2:20210507T203205Z:0b9cab93-66a0-4c24-bf7d-ba1fcc752b26" + "x-ms-correlation-request-id": "0680dd8f-8f06-4458-b071-ea4d651799ad", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "0680dd8f-8f06-4458-b071-ea4d651799ad", + "x-ms-routing-request-id": "WESTUS2:20210519T190106Z:0680dd8f-8f06-4458-b071-ea4d651799ad" }, "ResponseBody": [] }, @@ -5995,7 +6020,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e5d4ad00b6b95bcc745a23fa11911462", "x-ms-return-client-request-id": "true" }, @@ -6004,17 +6029,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:05 GMT", + "Date": "Wed, 19 May 2021 19:01:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ea8cb01-b0fd-4faa-987e-fbbcbf8b5961", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "3ea8cb01-b0fd-4faa-987e-fbbcbf8b5961", - "x-ms-routing-request-id": "WESTUS2:20210507T203206Z:3ea8cb01-b0fd-4faa-987e-fbbcbf8b5961" + "x-ms-correlation-request-id": "6be4b6e2-044e-415f-aaff-0526747b6fc8", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "6be4b6e2-044e-415f-aaff-0526747b6fc8", + "x-ms-routing-request-id": "WESTUS2:20210519T190107Z:6be4b6e2-044e-415f-aaff-0526747b6fc8" }, "ResponseBody": [] }, @@ -6023,7 +6048,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aa0df40d1ec0d9abe841cda6609a3ce1", "x-ms-return-client-request-id": "true" }, @@ -6032,17 +6057,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:06 GMT", + "Date": "Wed, 19 May 2021 19:01:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f707368-6946-4b70-850a-3be958945782", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "8f707368-6946-4b70-850a-3be958945782", - "x-ms-routing-request-id": "WESTUS2:20210507T203207Z:8f707368-6946-4b70-850a-3be958945782" + "x-ms-correlation-request-id": "a4d7ae11-1fb7-47b6-b8d0-d7e052509777", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "a4d7ae11-1fb7-47b6-b8d0-d7e052509777", + "x-ms-routing-request-id": "WESTUS2:20210519T190108Z:a4d7ae11-1fb7-47b6-b8d0-d7e052509777" }, "ResponseBody": [] }, @@ -6051,7 +6076,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ac89be4175653ab464bd07743817a0fa", "x-ms-return-client-request-id": "true" }, @@ -6060,17 +6085,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:07 GMT", + "Date": "Wed, 19 May 2021 19:01:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "969f89a2-020d-4a85-8b2d-7175915023ef", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "969f89a2-020d-4a85-8b2d-7175915023ef", - "x-ms-routing-request-id": "WESTUS2:20210507T203208Z:969f89a2-020d-4a85-8b2d-7175915023ef" + "x-ms-correlation-request-id": "93a4a004-ca7f-4aeb-8a31-5e26daf26ce6", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "93a4a004-ca7f-4aeb-8a31-5e26daf26ce6", + "x-ms-routing-request-id": "WESTUS2:20210519T190109Z:93a4a004-ca7f-4aeb-8a31-5e26daf26ce6" }, "ResponseBody": [] }, @@ -6079,7 +6104,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44e93604a81ee12502fbfd78e925fad9", "x-ms-return-client-request-id": "true" }, @@ -6088,17 +6113,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:08 GMT", + "Date": "Wed, 19 May 2021 19:01:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efc55349-5a3f-414a-a592-6b427f9f2416", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "efc55349-5a3f-414a-a592-6b427f9f2416", - "x-ms-routing-request-id": "WESTUS2:20210507T203209Z:efc55349-5a3f-414a-a592-6b427f9f2416" + "x-ms-correlation-request-id": "a5a01cab-37bf-4c49-9d50-045c836822e8", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "a5a01cab-37bf-4c49-9d50-045c836822e8", + "x-ms-routing-request-id": "WESTUS2:20210519T190110Z:a5a01cab-37bf-4c49-9d50-045c836822e8" }, "ResponseBody": [] }, @@ -6107,7 +6132,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53b8411e680897fc3fd245021736a1d1", "x-ms-return-client-request-id": "true" }, @@ -6116,17 +6141,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:09 GMT", + "Date": "Wed, 19 May 2021 19:01:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8878cf95-60d1-4ffd-8ee9-bc2404cdd231", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "8878cf95-60d1-4ffd-8ee9-bc2404cdd231", - "x-ms-routing-request-id": "WESTUS2:20210507T203210Z:8878cf95-60d1-4ffd-8ee9-bc2404cdd231" + "x-ms-correlation-request-id": "ef29654b-3db2-4552-a87c-f60ebd4ca686", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "ef29654b-3db2-4552-a87c-f60ebd4ca686", + "x-ms-routing-request-id": "WESTUS2:20210519T190111Z:ef29654b-3db2-4552-a87c-f60ebd4ca686" }, "ResponseBody": [] }, @@ -6135,7 +6160,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2aa1d3a0f7b099c298a7aa6a783c513f", "x-ms-return-client-request-id": "true" }, @@ -6144,17 +6169,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:10 GMT", + "Date": "Wed, 19 May 2021 19:01:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72794e63-1ce5-4e20-9c4c-84c1490d641c", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "72794e63-1ce5-4e20-9c4c-84c1490d641c", - "x-ms-routing-request-id": "WESTUS2:20210507T203211Z:72794e63-1ce5-4e20-9c4c-84c1490d641c" + "x-ms-correlation-request-id": "03990710-7287-4390-8761-01a57018c6c0", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "03990710-7287-4390-8761-01a57018c6c0", + "x-ms-routing-request-id": "WESTUS2:20210519T190112Z:03990710-7287-4390-8761-01a57018c6c0" }, "ResponseBody": [] }, @@ -6163,7 +6188,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f6562dc24d5e9cf23952054b6223cacb", "x-ms-return-client-request-id": "true" }, @@ -6172,17 +6197,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:11 GMT", + "Date": "Wed, 19 May 2021 19:01:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b108c092-cc3e-4ad1-b3db-8106ddf0bacc", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "b108c092-cc3e-4ad1-b3db-8106ddf0bacc", - "x-ms-routing-request-id": "WESTUS2:20210507T203212Z:b108c092-cc3e-4ad1-b3db-8106ddf0bacc" + "x-ms-correlation-request-id": "d99058a7-9ab4-4988-9ee3-2ff435072ddb", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "d99058a7-9ab4-4988-9ee3-2ff435072ddb", + "x-ms-routing-request-id": "WESTUS2:20210519T190113Z:d99058a7-9ab4-4988-9ee3-2ff435072ddb" }, "ResponseBody": [] }, @@ -6191,7 +6216,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "15d72c59d08427297e1fba60be911e03", "x-ms-return-client-request-id": "true" }, @@ -6200,17 +6225,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:12 GMT", + "Date": "Wed, 19 May 2021 19:01:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a912dd0c-6f54-4dc0-b29f-cab86b169c27", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "a912dd0c-6f54-4dc0-b29f-cab86b169c27", - "x-ms-routing-request-id": "WESTUS2:20210507T203213Z:a912dd0c-6f54-4dc0-b29f-cab86b169c27" + "x-ms-correlation-request-id": "1fe72150-5c98-4c48-a079-a015c04286d9", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "1fe72150-5c98-4c48-a079-a015c04286d9", + "x-ms-routing-request-id": "WESTUS2:20210519T190114Z:1fe72150-5c98-4c48-a079-a015c04286d9" }, "ResponseBody": [] }, @@ -6219,7 +6244,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e93f0680abe05372e105f05df2773675", "x-ms-return-client-request-id": "true" }, @@ -6228,17 +6253,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:13 GMT", + "Date": "Wed, 19 May 2021 19:01:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "789d5ffa-c796-4ba6-ba55-9a3939b98567", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "789d5ffa-c796-4ba6-ba55-9a3939b98567", - "x-ms-routing-request-id": "WESTUS2:20210507T203214Z:789d5ffa-c796-4ba6-ba55-9a3939b98567" + "x-ms-correlation-request-id": "da1defa1-137d-4630-ac53-de254b19fe43", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "da1defa1-137d-4630-ac53-de254b19fe43", + "x-ms-routing-request-id": "WESTUS2:20210519T190115Z:da1defa1-137d-4630-ac53-de254b19fe43" }, "ResponseBody": [] }, @@ -6247,7 +6272,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4c11dedc3c65f2bb042f783f9391dda7", "x-ms-return-client-request-id": "true" }, @@ -6256,17 +6281,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:14 GMT", + "Date": "Wed, 19 May 2021 19:01:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "062cff40-c2a9-4aaa-a29f-db8a41b36716", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "062cff40-c2a9-4aaa-a29f-db8a41b36716", - "x-ms-routing-request-id": "WESTUS2:20210507T203215Z:062cff40-c2a9-4aaa-a29f-db8a41b36716" + "x-ms-correlation-request-id": "d1a2ed91-9781-45d9-a8ea-2059c9d4cefb", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "d1a2ed91-9781-45d9-a8ea-2059c9d4cefb", + "x-ms-routing-request-id": "WESTUS2:20210519T190116Z:d1a2ed91-9781-45d9-a8ea-2059c9d4cefb" }, "ResponseBody": [] }, @@ -6275,7 +6300,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5cca0134e1e3aeeab983347edfcb3407", "x-ms-return-client-request-id": "true" }, @@ -6284,17 +6309,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:15 GMT", + "Date": "Wed, 19 May 2021 19:01:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5683e900-4121-4faa-af45-9b1d365d38d5", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "5683e900-4121-4faa-af45-9b1d365d38d5", - "x-ms-routing-request-id": "WESTUS2:20210507T203216Z:5683e900-4121-4faa-af45-9b1d365d38d5" + "x-ms-correlation-request-id": "49569891-4aa2-437c-94ed-338a137295e0", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "49569891-4aa2-437c-94ed-338a137295e0", + "x-ms-routing-request-id": "WESTUS2:20210519T190117Z:49569891-4aa2-437c-94ed-338a137295e0" }, "ResponseBody": [] }, @@ -6303,7 +6328,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df8444e9d280449d4b4de5b13333bf4f", "x-ms-return-client-request-id": "true" }, @@ -6312,17 +6337,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:16 GMT", + "Date": "Wed, 19 May 2021 19:01:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b63cde1b-06d0-4bcf-af8a-983d36320326", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "b63cde1b-06d0-4bcf-af8a-983d36320326", - "x-ms-routing-request-id": "WESTUS2:20210507T203217Z:b63cde1b-06d0-4bcf-af8a-983d36320326" + "x-ms-correlation-request-id": "f01e95cc-c226-49a0-8990-378afbc4ec9a", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "f01e95cc-c226-49a0-8990-378afbc4ec9a", + "x-ms-routing-request-id": "WESTUS2:20210519T190118Z:f01e95cc-c226-49a0-8990-378afbc4ec9a" }, "ResponseBody": [] }, @@ -6331,7 +6356,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f0294827daacfb91f36392e1073c1238", "x-ms-return-client-request-id": "true" }, @@ -6340,17 +6365,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:18 GMT", + "Date": "Wed, 19 May 2021 19:01:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d42e342d-ab26-4716-8514-378fe8ac983a", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "d42e342d-ab26-4716-8514-378fe8ac983a", - "x-ms-routing-request-id": "WESTUS2:20210507T203218Z:d42e342d-ab26-4716-8514-378fe8ac983a" + "x-ms-correlation-request-id": "63ac71bf-6940-43af-8bda-e52bf1cc1cb1", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "63ac71bf-6940-43af-8bda-e52bf1cc1cb1", + "x-ms-routing-request-id": "WESTUS2:20210519T190119Z:63ac71bf-6940-43af-8bda-e52bf1cc1cb1" }, "ResponseBody": [] }, @@ -6359,7 +6384,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e5570fafe0c622764851096fb397b86", "x-ms-return-client-request-id": "true" }, @@ -6368,17 +6393,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:19 GMT", + "Date": "Wed, 19 May 2021 19:01:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6703f12b-b703-47ad-bf7c-01e483dd9f46", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "6703f12b-b703-47ad-bf7c-01e483dd9f46", - "x-ms-routing-request-id": "WESTUS2:20210507T203219Z:6703f12b-b703-47ad-bf7c-01e483dd9f46" + "x-ms-correlation-request-id": "78961952-8837-4d0f-b6d2-de0557540e9c", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "78961952-8837-4d0f-b6d2-de0557540e9c", + "x-ms-routing-request-id": "WESTUS2:20210519T190120Z:78961952-8837-4d0f-b6d2-de0557540e9c" }, "ResponseBody": [] }, @@ -6387,7 +6412,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9756e4c344a20f5bb289eb1c3fbc3d0f", "x-ms-return-client-request-id": "true" }, @@ -6396,17 +6421,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:20 GMT", + "Date": "Wed, 19 May 2021 19:01:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "131d2429-9af3-48f8-872c-d0321a295f99", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "131d2429-9af3-48f8-872c-d0321a295f99", - "x-ms-routing-request-id": "WESTUS2:20210507T203220Z:131d2429-9af3-48f8-872c-d0321a295f99" + "x-ms-correlation-request-id": "9b4a6521-ad46-4d8b-96b9-09134acb0742", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "9b4a6521-ad46-4d8b-96b9-09134acb0742", + "x-ms-routing-request-id": "WESTUS2:20210519T190121Z:9b4a6521-ad46-4d8b-96b9-09134acb0742" }, "ResponseBody": [] }, @@ -6415,7 +6440,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c2b7ad3b71dd294320c78c26c9fbffba", "x-ms-return-client-request-id": "true" }, @@ -6424,17 +6449,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:21 GMT", + "Date": "Wed, 19 May 2021 19:01:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0db876a4-927f-4d9e-b581-a28a30edb074", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "0db876a4-927f-4d9e-b581-a28a30edb074", - "x-ms-routing-request-id": "WESTUS2:20210507T203221Z:0db876a4-927f-4d9e-b581-a28a30edb074" + "x-ms-correlation-request-id": "1b03930b-21e2-4348-881c-63318cb8e8e4", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "1b03930b-21e2-4348-881c-63318cb8e8e4", + "x-ms-routing-request-id": "WESTUS2:20210519T190122Z:1b03930b-21e2-4348-881c-63318cb8e8e4" }, "ResponseBody": [] }, @@ -6443,7 +6468,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "221d0ce87ae5b59615469b83120b22a7", "x-ms-return-client-request-id": "true" }, @@ -6452,17 +6477,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:22 GMT", + "Date": "Wed, 19 May 2021 19:01:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad973cd7-1a6c-48aa-ad88-6ac292c5739e", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "ad973cd7-1a6c-48aa-ad88-6ac292c5739e", - "x-ms-routing-request-id": "WESTUS2:20210507T203223Z:ad973cd7-1a6c-48aa-ad88-6ac292c5739e" + "x-ms-correlation-request-id": "633766e4-1eee-472c-89c3-8021c3f4c67f", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "633766e4-1eee-472c-89c3-8021c3f4c67f", + "x-ms-routing-request-id": "WESTUS2:20210519T190123Z:633766e4-1eee-472c-89c3-8021c3f4c67f" }, "ResponseBody": [] }, @@ -6471,7 +6496,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e5a0148b88252a8a12d76dab83545b6", "x-ms-return-client-request-id": "true" }, @@ -6480,17 +6505,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:23 GMT", + "Date": "Wed, 19 May 2021 19:01:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11f2539d-8f1b-456c-96f2-db899c9f1fc0", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "11f2539d-8f1b-456c-96f2-db899c9f1fc0", - "x-ms-routing-request-id": "WESTUS2:20210507T203224Z:11f2539d-8f1b-456c-96f2-db899c9f1fc0" + "x-ms-correlation-request-id": "b23d3ac3-4b65-427e-950e-38c5db5e3d8c", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "b23d3ac3-4b65-427e-950e-38c5db5e3d8c", + "x-ms-routing-request-id": "WESTUS2:20210519T190124Z:b23d3ac3-4b65-427e-950e-38c5db5e3d8c" }, "ResponseBody": [] }, @@ -6499,7 +6524,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3334318a1a9fc0291601ad97d5bf1615", "x-ms-return-client-request-id": "true" }, @@ -6508,17 +6533,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:24 GMT", + "Date": "Wed, 19 May 2021 19:01:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3785d24-6adf-4cc2-be75-3c3b4b108fde", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "c3785d24-6adf-4cc2-be75-3c3b4b108fde", - "x-ms-routing-request-id": "WESTUS2:20210507T203225Z:c3785d24-6adf-4cc2-be75-3c3b4b108fde" + "x-ms-correlation-request-id": "c289175c-2a07-426a-8b72-a720c5d7e1f3", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "c289175c-2a07-426a-8b72-a720c5d7e1f3", + "x-ms-routing-request-id": "WESTUS2:20210519T190125Z:c289175c-2a07-426a-8b72-a720c5d7e1f3" }, "ResponseBody": [] }, @@ -6527,7 +6552,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c8dde4a4b0a12f3763ca81b804bbfcdf", "x-ms-return-client-request-id": "true" }, @@ -6536,17 +6561,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:25 GMT", + "Date": "Wed, 19 May 2021 19:01:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6e46236-4616-4f9b-864f-7e9db360e37e", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "f6e46236-4616-4f9b-864f-7e9db360e37e", - "x-ms-routing-request-id": "WESTUS2:20210507T203226Z:f6e46236-4616-4f9b-864f-7e9db360e37e" + "x-ms-correlation-request-id": "53b3ddfb-6444-4050-a1e5-05273f976e60", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "53b3ddfb-6444-4050-a1e5-05273f976e60", + "x-ms-routing-request-id": "WESTUS2:20210519T190126Z:53b3ddfb-6444-4050-a1e5-05273f976e60" }, "ResponseBody": [] }, @@ -6555,7 +6580,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1f9e400efd62d08d79a37800b117ce1", "x-ms-return-client-request-id": "true" }, @@ -6564,17 +6589,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:26 GMT", + "Date": "Wed, 19 May 2021 19:01:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f01fe435-cc9b-4c9f-9fca-c79be8aee390", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "f01fe435-cc9b-4c9f-9fca-c79be8aee390", - "x-ms-routing-request-id": "WESTUS2:20210507T203227Z:f01fe435-cc9b-4c9f-9fca-c79be8aee390" + "x-ms-correlation-request-id": "c0631145-d19a-4d77-9dfa-c081ebd5c3a3", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "c0631145-d19a-4d77-9dfa-c081ebd5c3a3", + "x-ms-routing-request-id": "WESTUS2:20210519T190127Z:c0631145-d19a-4d77-9dfa-c081ebd5c3a3" }, "ResponseBody": [] }, @@ -6583,7 +6608,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d33660167d57d915f904cfd49871bc5b", "x-ms-return-client-request-id": "true" }, @@ -6592,17 +6617,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:27 GMT", + "Date": "Wed, 19 May 2021 19:01:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8debf704-dd47-4a4b-b2ea-eee048b95200", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "8debf704-dd47-4a4b-b2ea-eee048b95200", - "x-ms-routing-request-id": "WESTUS2:20210507T203228Z:8debf704-dd47-4a4b-b2ea-eee048b95200" + "x-ms-correlation-request-id": "a0a3a4b2-a26e-4dfe-a88e-e9ec9816ec9a", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "a0a3a4b2-a26e-4dfe-a88e-e9ec9816ec9a", + "x-ms-routing-request-id": "WESTUS2:20210519T190128Z:a0a3a4b2-a26e-4dfe-a88e-e9ec9816ec9a" }, "ResponseBody": [] }, @@ -6611,23 +6636,51 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f196cd0435c6b53edcaff00679b62452", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 19:01:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5d5345da-b7c6-4189-8d76-81109f4c160e", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "5d5345da-b7c6-4189-8d76-81109f4c160e", + "x-ms-routing-request-id": "WESTUS2:20210519T190129Z:5d5345da-b7c6-4189-8d76-81109f4c160e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a3a1a04e28848388ce1fe7d21f339566", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 07 May 2021 20:32:28 GMT", + "Date": "Wed, 19 May 2021 19:01:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6726aec-b8c6-49ca-b118-250119537854", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "e6726aec-b8c6-49ca-b118-250119537854", - "x-ms-routing-request-id": "WESTUS2:20210507T203229Z:e6726aec-b8c6-49ca-b118-250119537854" + "x-ms-correlation-request-id": "7440a168-1c19-45fa-9ff0-c2cc78719314", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "7440a168-1c19-45fa-9ff0-c2cc78719314", + "x-ms-routing-request-id": "WESTUS2:20210519T190130Z:7440a168-1c19-45fa-9ff0-c2cc78719314" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources()Async.json index 39fc9d1d085e..ccf408abbda1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources()Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-e31df6369bc2be4fba0ab0bd312f6860-2a32bc669b9d9c40-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5746292c7b1b2b912f1aef1242e2c3f4", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 02:17:07 GMT", + "Date": "Wed, 19 May 2021 18:59:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4048968-bcac-4fea-99e0-5b6f28213225", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "c4048968-bcac-4fea-99e0-5b6f28213225", - "x-ms-routing-request-id": "WESTUS2:20210507T021707Z:c4048968-bcac-4fea-99e0-5b6f28213225" + "x-ms-correlation-request-id": "5f922663-1bee-4212-b2e0-f21a3d7769d6", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "5f922663-1bee-4212-b2e0-f21a3d7769d6", + "x-ms-routing-request-id": "WESTUS2:20210519T185956Z:5f922663-1bee-4212-b2e0-f21a3d7769d6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-6d586f41ec2a55489ddf047ac28621af-18c37c3b6aac0d49-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-dcd94e60ed74b04eb181d472e0b264f6-e8bae504358b1c4a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "32aed4db0329b97f36a452727b44ecfb", "x-ms-return-client-request-id": "true" }, @@ -58,20 +59,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 02:17:07 GMT", + "Date": "Wed, 19 May 2021 18:59:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95724adc-c452-4797-8292-87e1f714c46a", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "95724adc-c452-4797-8292-87e1f714c46a", - "x-ms-routing-request-id": "WESTUS2:20210507T021708Z:95724adc-c452-4797-8292-87e1f714c46a" + "x-ms-correlation-request-id": "8eabe3f1-b97d-4b86-ac54-2017b67b7b3e", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "8eabe3f1-b97d-4b86-ac54-2017b67b7b3e", + "x-ms-routing-request-id": "WESTUS2:20210519T185956Z:8eabe3f1-b97d-4b86-ac54-2017b67b7b3e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5025", @@ -92,8 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-4b89aec15e6c95499b9649f7eba85666-11027a9d8b0a9745-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-0251c9bccf641042938c0f854fa2a3ba-6052c4b0dc58e740-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c7c046709973cd71891ec61234a5d752", "x-ms-return-client-request-id": "true" }, @@ -106,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 02:17:08 GMT", + "Date": "Wed, 19 May 2021 18:59:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f65f0007-f766-4970-9d67-54fcaba9390d", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "f65f0007-f766-4970-9d67-54fcaba9390d", - "x-ms-routing-request-id": "WESTUS2:20210507T021708Z:f65f0007-f766-4970-9d67-54fcaba9390d" + "x-ms-correlation-request-id": "798c6215-844a-4c1a-bc12-bb4b5b096ac6", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "798c6215-844a-4c1a-bc12-bb4b5b096ac6", + "x-ms-routing-request-id": "WESTUS2:20210519T185957Z:798c6215-844a-4c1a-bc12-bb4b5b096ac6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1194", @@ -133,6 +134,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-606c26ea909acb4a8c21380a1196598c-4378c70ffbed504a-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c9b0c8525029ec6e5d73fb8b4d50216", "x-ms-return-client-request-id": "true" @@ -141,17 +143,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "52611", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 02:17:08 GMT", + "Date": "Wed, 19 May 2021 18:59:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7a5538a-3729-4312-81b0-37c65d85abc2", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "f7a5538a-3729-4312-81b0-37c65d85abc2", - "x-ms-routing-request-id": "WESTUS2:20210507T021709Z:f7a5538a-3729-4312-81b0-37c65d85abc2" + "x-ms-correlation-request-id": "e41e56c0-42e0-4a39-a747-0fe13b80e0cf", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "e41e56c0-42e0-4a39-a747-0fe13b80e0cf", + "x-ms-routing-request-id": "WESTUS2:20210519T185957Z:e41e56c0-42e0-4a39-a747-0fe13b80e0cf" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -475,6 +477,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -760,6 +766,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -2778,6 +2788,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -3186,6 +3200,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3846,6 +3864,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4034,6 +4056,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4051,7 +4077,8 @@ "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-606c26ea909acb4a8c21380a1196598c-d191fc5b6587d54c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "337d720b678c3d3b659fe5b9a602fe7a", "x-ms-return-client-request-id": "true" }, @@ -4071,7 +4098,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 02:17:09 GMT", + "Date": "Wed, 19 May 2021 18:59:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4081,11 +4108,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "337d720b678c3d3b659fe5b9a602fe7a", - "x-ms-correlation-request-id": "a2cb296f-980d-463f-97dd-5f2b0f4080e5", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "8bc9daa2-7acd-4e33-a038-194714ae9f59", - "x-ms-routing-request-id": "WESTUS2:20210507T021709Z:a2cb296f-980d-463f-97dd-5f2b0f4080e5" + "x-ms-correlation-request-id": "63057ab4-98b9-45f6-9879-cf7aab812f73", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1195", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "05525dc5-a033-481e-bbf5-f56d9b7fbd5f", + "x-ms-routing-request-id": "WESTUS2:20210519T185957Z:63057ab4-98b9-45f6-9879-cf7aab812f73" }, "ResponseBody": [ "{\r\n", @@ -4112,8 +4139,8 @@ "Authorization": "Sanitized", "Content-Length": "256", "Content-Type": "application/json", - "traceparent": "00-350fa5bac3546c44beb41e6e3accd426-a5964e981a193b45-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a59dc1ad9ed65c41823ba8f231df6e08-e1105b2aa1619145-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3328fcc31f5a1e90d15ef6623f0cf7e3", "x-ms-return-client-request-id": "true" }, @@ -4127,17 +4154,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:09 GMT", + "Date": "Wed, 19 May 2021 18:59:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6d0c394-a32c-4da4-9374-0bf99bdf73b3", + "x-ms-correlation-request-id": "39448398-9de8-4adc-a08c-8503f19650c3", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "e6d0c394-a32c-4da4-9374-0bf99bdf73b3", - "x-ms-routing-request-id": "WESTUS2:20210507T021710Z:e6d0c394-a32c-4da4-9374-0bf99bdf73b3" + "x-ms-request-id": "39448398-9de8-4adc-a08c-8503f19650c3", + "x-ms-routing-request-id": "WESTUS2:20210519T185958Z:39448398-9de8-4adc-a08c-8503f19650c3" }, "ResponseBody": [] }, @@ -4146,8 +4173,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b57c035c81b59743b2f42d06900ec31f-b0ccfbdf2d4e924d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aaf69ccacad9001fcda00f01e40ae1ed", "x-ms-return-client-request-id": "true" }, @@ -4156,17 +4182,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:09 GMT", + "Date": "Wed, 19 May 2021 18:59:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42ed6f79-b8e9-4c2c-9f66-707903e67020", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "42ed6f79-b8e9-4c2c-9f66-707903e67020", - "x-ms-routing-request-id": "WESTUS2:20210507T021710Z:42ed6f79-b8e9-4c2c-9f66-707903e67020" + "x-ms-correlation-request-id": "8df04af5-9acf-4a3c-869d-ee044a1dc18f", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "8df04af5-9acf-4a3c-869d-ee044a1dc18f", + "x-ms-routing-request-id": "WESTUS2:20210519T185958Z:8df04af5-9acf-4a3c-869d-ee044a1dc18f" }, "ResponseBody": [] }, @@ -4175,7 +4201,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ce9ab317e7ba03246f72ffee52d4558", "x-ms-return-client-request-id": "true" }, @@ -4184,17 +4210,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:10 GMT", + "Date": "Wed, 19 May 2021 18:59:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fdf3707-68c3-4da9-89cc-5ee3a1404787", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "8fdf3707-68c3-4da9-89cc-5ee3a1404787", - "x-ms-routing-request-id": "WESTUS2:20210507T021711Z:8fdf3707-68c3-4da9-89cc-5ee3a1404787" + "x-ms-correlation-request-id": "4b092b36-96bc-4709-b982-267598169dfd", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "4b092b36-96bc-4709-b982-267598169dfd", + "x-ms-routing-request-id": "WESTUS2:20210519T185959Z:4b092b36-96bc-4709-b982-267598169dfd" }, "ResponseBody": [] }, @@ -4203,7 +4229,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a398a5524d150e09a597887513b44bfa", "x-ms-return-client-request-id": "true" }, @@ -4212,17 +4238,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:12 GMT", + "Date": "Wed, 19 May 2021 18:59:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "588f7890-3c9b-485b-be6d-70cce13557a5", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "588f7890-3c9b-485b-be6d-70cce13557a5", - "x-ms-routing-request-id": "WESTUS2:20210507T021712Z:588f7890-3c9b-485b-be6d-70cce13557a5" + "x-ms-correlation-request-id": "04536972-eed5-4bc0-97d4-606b14b6af5e", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "04536972-eed5-4bc0-97d4-606b14b6af5e", + "x-ms-routing-request-id": "WESTUS2:20210519T190000Z:04536972-eed5-4bc0-97d4-606b14b6af5e" }, "ResponseBody": [] }, @@ -4231,7 +4257,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d314c7a9f8f4bd56a5664e19b211b9f", "x-ms-return-client-request-id": "true" }, @@ -4240,17 +4266,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:12 GMT", + "Date": "Wed, 19 May 2021 19:00:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb41d526-3aca-469e-a5bf-44638c004b62", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "cb41d526-3aca-469e-a5bf-44638c004b62", - "x-ms-routing-request-id": "WESTUS2:20210507T021713Z:cb41d526-3aca-469e-a5bf-44638c004b62" + "x-ms-correlation-request-id": "e592c364-8015-46d8-88d6-83b8a04c37d5", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "e592c364-8015-46d8-88d6-83b8a04c37d5", + "x-ms-routing-request-id": "WESTUS2:20210519T190001Z:e592c364-8015-46d8-88d6-83b8a04c37d5" }, "ResponseBody": [] }, @@ -4259,7 +4285,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3fafb65b3e72e3d7a1dac7e4f6bc8c91", "x-ms-return-client-request-id": "true" }, @@ -4268,17 +4294,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:14 GMT", + "Date": "Wed, 19 May 2021 19:00:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "670fadf6-6f22-46da-ab3a-6bd11098360c", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "670fadf6-6f22-46da-ab3a-6bd11098360c", - "x-ms-routing-request-id": "WESTUS2:20210507T021714Z:670fadf6-6f22-46da-ab3a-6bd11098360c" + "x-ms-correlation-request-id": "c8d6e6db-0155-48a1-8d3a-66000b91f1d7", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "c8d6e6db-0155-48a1-8d3a-66000b91f1d7", + "x-ms-routing-request-id": "WESTUS2:20210519T190002Z:c8d6e6db-0155-48a1-8d3a-66000b91f1d7" }, "ResponseBody": [] }, @@ -4287,7 +4313,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "988334ac17fbb3c8d04c38bfe9287383", "x-ms-return-client-request-id": "true" }, @@ -4296,17 +4322,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:15 GMT", + "Date": "Wed, 19 May 2021 19:00:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd6a613e-1012-4d04-b3eb-bb436c138c55", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "bd6a613e-1012-4d04-b3eb-bb436c138c55", - "x-ms-routing-request-id": "WESTUS2:20210507T021715Z:bd6a613e-1012-4d04-b3eb-bb436c138c55" + "x-ms-correlation-request-id": "825ba982-9215-403f-84e9-8b2d461f0ddc", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "825ba982-9215-403f-84e9-8b2d461f0ddc", + "x-ms-routing-request-id": "WESTUS2:20210519T190003Z:825ba982-9215-403f-84e9-8b2d461f0ddc" }, "ResponseBody": [] }, @@ -4315,7 +4341,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c1ae97c0c053c88744d8cb5d8f155ae", "x-ms-return-client-request-id": "true" }, @@ -4324,17 +4350,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:16 GMT", + "Date": "Wed, 19 May 2021 19:00:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b2ccea7-eeff-4510-bae8-d161b0dc6208", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "8b2ccea7-eeff-4510-bae8-d161b0dc6208", - "x-ms-routing-request-id": "WESTUS2:20210507T021716Z:8b2ccea7-eeff-4510-bae8-d161b0dc6208" + "x-ms-correlation-request-id": "9d5467d7-6f22-4c2b-9ec5-8462e044d2b0", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "9d5467d7-6f22-4c2b-9ec5-8462e044d2b0", + "x-ms-routing-request-id": "WESTUS2:20210519T190004Z:9d5467d7-6f22-4c2b-9ec5-8462e044d2b0" }, "ResponseBody": [] }, @@ -4343,7 +4369,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6635d2c9829d44a3eefc6f250518fa78", "x-ms-return-client-request-id": "true" }, @@ -4352,17 +4378,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:17 GMT", + "Date": "Wed, 19 May 2021 19:00:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e1f43de-eb97-4908-a24c-fd80d250b012", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "5e1f43de-eb97-4908-a24c-fd80d250b012", - "x-ms-routing-request-id": "WESTUS2:20210507T021717Z:5e1f43de-eb97-4908-a24c-fd80d250b012" + "x-ms-correlation-request-id": "f8915cbf-c5ad-4515-948a-f962d22b29d5", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "f8915cbf-c5ad-4515-948a-f962d22b29d5", + "x-ms-routing-request-id": "WESTUS2:20210519T190005Z:f8915cbf-c5ad-4515-948a-f962d22b29d5" }, "ResponseBody": [] }, @@ -4371,7 +4397,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0c6743672fa19f8cab4723ad8a13dadf", "x-ms-return-client-request-id": "true" }, @@ -4380,17 +4406,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:18 GMT", + "Date": "Wed, 19 May 2021 19:00:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3cca44ea-e7c7-4e50-939e-5724fe0015a2", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "3cca44ea-e7c7-4e50-939e-5724fe0015a2", - "x-ms-routing-request-id": "WESTUS2:20210507T021718Z:3cca44ea-e7c7-4e50-939e-5724fe0015a2" + "x-ms-correlation-request-id": "e976ad95-340a-427b-868a-d9d28d6329f3", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "e976ad95-340a-427b-868a-d9d28d6329f3", + "x-ms-routing-request-id": "WESTUS2:20210519T190006Z:e976ad95-340a-427b-868a-d9d28d6329f3" }, "ResponseBody": [] }, @@ -4399,7 +4425,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "16f58af60cf2f9e545d56e089d62365c", "x-ms-return-client-request-id": "true" }, @@ -4408,17 +4434,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:19 GMT", + "Date": "Wed, 19 May 2021 19:00:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fcbe234f-db29-4abc-9601-c75b6998610b", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "fcbe234f-db29-4abc-9601-c75b6998610b", - "x-ms-routing-request-id": "WESTUS2:20210507T021719Z:fcbe234f-db29-4abc-9601-c75b6998610b" + "x-ms-correlation-request-id": "21237ea6-e936-49ac-a789-51c4420cf10b", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "21237ea6-e936-49ac-a789-51c4420cf10b", + "x-ms-routing-request-id": "WESTUS2:20210519T190007Z:21237ea6-e936-49ac-a789-51c4420cf10b" }, "ResponseBody": [] }, @@ -4427,7 +4453,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "944d13534989990c4695ba565ef5b9db", "x-ms-return-client-request-id": "true" }, @@ -4436,17 +4462,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:20 GMT", + "Date": "Wed, 19 May 2021 19:00:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80a7bcab-648f-40b5-8b73-c8cb44295e5b", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "80a7bcab-648f-40b5-8b73-c8cb44295e5b", - "x-ms-routing-request-id": "WESTUS2:20210507T021720Z:80a7bcab-648f-40b5-8b73-c8cb44295e5b" + "x-ms-correlation-request-id": "891e5f49-2886-415c-82f6-9a4c8a3691c3", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "891e5f49-2886-415c-82f6-9a4c8a3691c3", + "x-ms-routing-request-id": "WESTUS2:20210519T190008Z:891e5f49-2886-415c-82f6-9a4c8a3691c3" }, "ResponseBody": [] }, @@ -4455,7 +4481,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7b2f9021e4225a855e6ec6ccc1830249", "x-ms-return-client-request-id": "true" }, @@ -4464,17 +4490,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:21 GMT", + "Date": "Wed, 19 May 2021 19:00:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e120393a-fa55-4b75-b183-4d17eeeaa02c", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "e120393a-fa55-4b75-b183-4d17eeeaa02c", - "x-ms-routing-request-id": "WESTUS2:20210507T021721Z:e120393a-fa55-4b75-b183-4d17eeeaa02c" + "x-ms-correlation-request-id": "543c394a-e7dd-4d93-abb7-e95934dfd104", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "543c394a-e7dd-4d93-abb7-e95934dfd104", + "x-ms-routing-request-id": "WESTUS2:20210519T190009Z:543c394a-e7dd-4d93-abb7-e95934dfd104" }, "ResponseBody": [] }, @@ -4483,7 +4509,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "765ac71046c5ad557e5bcf5d528e9a4f", "x-ms-return-client-request-id": "true" }, @@ -4492,17 +4518,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:22 GMT", + "Date": "Wed, 19 May 2021 19:00:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24784315-218e-45b4-8c8f-a819ded89f98", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "24784315-218e-45b4-8c8f-a819ded89f98", - "x-ms-routing-request-id": "WESTUS2:20210507T021722Z:24784315-218e-45b4-8c8f-a819ded89f98" + "x-ms-correlation-request-id": "b0af703e-282c-47ab-a3ac-e88f6d904f06", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "b0af703e-282c-47ab-a3ac-e88f6d904f06", + "x-ms-routing-request-id": "WESTUS2:20210519T190010Z:b0af703e-282c-47ab-a3ac-e88f6d904f06" }, "ResponseBody": [] }, @@ -4511,7 +4537,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0de7921bbb336e3a8ef3361b8240d8c3", "x-ms-return-client-request-id": "true" }, @@ -4520,17 +4546,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:23 GMT", + "Date": "Wed, 19 May 2021 19:00:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d715368e-be83-4173-a061-011d077090a5", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "d715368e-be83-4173-a061-011d077090a5", - "x-ms-routing-request-id": "WESTUS2:20210507T021723Z:d715368e-be83-4173-a061-011d077090a5" + "x-ms-correlation-request-id": "15f75a5d-8754-4fdb-98c3-fd9a67e266b3", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "15f75a5d-8754-4fdb-98c3-fd9a67e266b3", + "x-ms-routing-request-id": "WESTUS2:20210519T190011Z:15f75a5d-8754-4fdb-98c3-fd9a67e266b3" }, "ResponseBody": [] }, @@ -4539,7 +4565,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97467193439bda153a81fdc6152807cf", "x-ms-return-client-request-id": "true" }, @@ -4548,17 +4574,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:24 GMT", + "Date": "Wed, 19 May 2021 19:00:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "776782e3-a3d8-4a68-b31b-0135df3256b4", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "776782e3-a3d8-4a68-b31b-0135df3256b4", - "x-ms-routing-request-id": "WESTUS2:20210507T021724Z:776782e3-a3d8-4a68-b31b-0135df3256b4" + "x-ms-correlation-request-id": "aeba851d-e75b-4d5e-8d96-ea63bc542b32", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "aeba851d-e75b-4d5e-8d96-ea63bc542b32", + "x-ms-routing-request-id": "WESTUS2:20210519T190012Z:aeba851d-e75b-4d5e-8d96-ea63bc542b32" }, "ResponseBody": [] }, @@ -4567,7 +4593,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2fb077d3f59b54158cece8d1103a2b3d", "x-ms-return-client-request-id": "true" }, @@ -4576,17 +4602,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:25 GMT", + "Date": "Wed, 19 May 2021 19:00:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6bf94043-f2d6-433e-8f17-cb7cf0383d5b", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "6bf94043-f2d6-433e-8f17-cb7cf0383d5b", - "x-ms-routing-request-id": "WESTUS2:20210507T021725Z:6bf94043-f2d6-433e-8f17-cb7cf0383d5b" + "x-ms-correlation-request-id": "03a664d9-94cb-4187-9553-b28a7695ae5a", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "03a664d9-94cb-4187-9553-b28a7695ae5a", + "x-ms-routing-request-id": "WESTUS2:20210519T190013Z:03a664d9-94cb-4187-9553-b28a7695ae5a" }, "ResponseBody": [] }, @@ -4595,7 +4621,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1c90b830248d8b47c0cd2b1be745865", "x-ms-return-client-request-id": "true" }, @@ -4604,17 +4630,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:26 GMT", + "Date": "Wed, 19 May 2021 19:00:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ea909d9-2921-491b-bd9c-007183f1fe8c", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "7ea909d9-2921-491b-bd9c-007183f1fe8c", - "x-ms-routing-request-id": "WESTUS2:20210507T021726Z:7ea909d9-2921-491b-bd9c-007183f1fe8c" + "x-ms-correlation-request-id": "92c2a6bf-4efc-42b5-8f03-286905733124", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "92c2a6bf-4efc-42b5-8f03-286905733124", + "x-ms-routing-request-id": "WESTUS2:20210519T190014Z:92c2a6bf-4efc-42b5-8f03-286905733124" }, "ResponseBody": [] }, @@ -4623,7 +4649,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0a4766eba9909e285bf10bae5a44ca00", "x-ms-return-client-request-id": "true" }, @@ -4632,17 +4658,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:27 GMT", + "Date": "Wed, 19 May 2021 19:00:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9dbf8f21-d8fa-45d6-a21a-9c5ce9b7e9fc", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "9dbf8f21-d8fa-45d6-a21a-9c5ce9b7e9fc", - "x-ms-routing-request-id": "WESTUS2:20210507T021728Z:9dbf8f21-d8fa-45d6-a21a-9c5ce9b7e9fc" + "x-ms-correlation-request-id": "24e7f7b7-da2e-48a1-8d91-4254c1869206", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "24e7f7b7-da2e-48a1-8d91-4254c1869206", + "x-ms-routing-request-id": "WESTUS2:20210519T190015Z:24e7f7b7-da2e-48a1-8d91-4254c1869206" }, "ResponseBody": [] }, @@ -4651,7 +4677,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0942bf56265ed086c2d7b28e22649618", "x-ms-return-client-request-id": "true" }, @@ -4660,17 +4686,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:28 GMT", + "Date": "Wed, 19 May 2021 19:00:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9d35a9e-55a9-40d2-8f53-865b6efca5b9", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "f9d35a9e-55a9-40d2-8f53-865b6efca5b9", - "x-ms-routing-request-id": "WESTUS2:20210507T021729Z:f9d35a9e-55a9-40d2-8f53-865b6efca5b9" + "x-ms-correlation-request-id": "3c77dcc9-bb27-4e74-8059-5f5260443552", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "3c77dcc9-bb27-4e74-8059-5f5260443552", + "x-ms-routing-request-id": "WESTUS2:20210519T190016Z:3c77dcc9-bb27-4e74-8059-5f5260443552" }, "ResponseBody": [] }, @@ -4679,7 +4705,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a9e6829320f2daade32b8556f7057d38", "x-ms-return-client-request-id": "true" }, @@ -4688,17 +4714,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:29 GMT", + "Date": "Wed, 19 May 2021 19:00:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "551b2c1c-2c41-492b-9036-aa709365e2ce", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "551b2c1c-2c41-492b-9036-aa709365e2ce", - "x-ms-routing-request-id": "WESTUS2:20210507T021730Z:551b2c1c-2c41-492b-9036-aa709365e2ce" + "x-ms-correlation-request-id": "a2673307-ca8e-4d60-8ff5-785862290f62", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "a2673307-ca8e-4d60-8ff5-785862290f62", + "x-ms-routing-request-id": "WESTUS2:20210519T190017Z:a2673307-ca8e-4d60-8ff5-785862290f62" }, "ResponseBody": [] }, @@ -4707,7 +4733,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff5ad2424f31c406e07748b8f6997bf7", "x-ms-return-client-request-id": "true" }, @@ -4716,17 +4742,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:30 GMT", + "Date": "Wed, 19 May 2021 19:00:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a1b6c44-a16b-4b9b-81a4-3635b3d773fe", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "4a1b6c44-a16b-4b9b-81a4-3635b3d773fe", - "x-ms-routing-request-id": "WESTUS2:20210507T021731Z:4a1b6c44-a16b-4b9b-81a4-3635b3d773fe" + "x-ms-correlation-request-id": "4e2aeafe-9fdb-4e96-9099-2e4b7174e999", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "4e2aeafe-9fdb-4e96-9099-2e4b7174e999", + "x-ms-routing-request-id": "WESTUS2:20210519T190018Z:4e2aeafe-9fdb-4e96-9099-2e4b7174e999" }, "ResponseBody": [] }, @@ -4735,7 +4761,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d81bf25b205d360d11682632a12fd8bc", "x-ms-return-client-request-id": "true" }, @@ -4744,17 +4770,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:31 GMT", + "Date": "Wed, 19 May 2021 19:00:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7033e49d-5431-4dfc-9adf-7212888d6a5b", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "7033e49d-5431-4dfc-9adf-7212888d6a5b", - "x-ms-routing-request-id": "WESTUS2:20210507T021732Z:7033e49d-5431-4dfc-9adf-7212888d6a5b" + "x-ms-correlation-request-id": "05064794-8a66-4eaf-8734-ab4a3a93b4f1", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "05064794-8a66-4eaf-8734-ab4a3a93b4f1", + "x-ms-routing-request-id": "WESTUS2:20210519T190019Z:05064794-8a66-4eaf-8734-ab4a3a93b4f1" }, "ResponseBody": [] }, @@ -4763,7 +4789,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "504b795a960944e67c21c97bd7f5e34a", "x-ms-return-client-request-id": "true" }, @@ -4772,17 +4798,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:32 GMT", + "Date": "Wed, 19 May 2021 19:00:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6abcd2b4-3b8a-4b6c-b01e-4f29245ef374", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "6abcd2b4-3b8a-4b6c-b01e-4f29245ef374", - "x-ms-routing-request-id": "WESTUS2:20210507T021733Z:6abcd2b4-3b8a-4b6c-b01e-4f29245ef374" + "x-ms-correlation-request-id": "ff70e89f-ba06-4bda-8cdf-6c36b83a8734", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "ff70e89f-ba06-4bda-8cdf-6c36b83a8734", + "x-ms-routing-request-id": "WESTUS2:20210519T190020Z:ff70e89f-ba06-4bda-8cdf-6c36b83a8734" }, "ResponseBody": [] }, @@ -4791,7 +4817,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "05fb8db0a5ea21dac424eec929d423b0", "x-ms-return-client-request-id": "true" }, @@ -4800,17 +4826,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:33 GMT", + "Date": "Wed, 19 May 2021 19:00:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09ed4dc7-ec75-4665-8f86-4ca183ecfb8f", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "09ed4dc7-ec75-4665-8f86-4ca183ecfb8f", - "x-ms-routing-request-id": "WESTUS2:20210507T021734Z:09ed4dc7-ec75-4665-8f86-4ca183ecfb8f" + "x-ms-correlation-request-id": "2fa8c2ef-e7fb-49f2-92e9-d6bc6c2ddef6", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "2fa8c2ef-e7fb-49f2-92e9-d6bc6c2ddef6", + "x-ms-routing-request-id": "WESTUS2:20210519T190022Z:2fa8c2ef-e7fb-49f2-92e9-d6bc6c2ddef6" }, "ResponseBody": [] }, @@ -4819,7 +4845,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d5e8b9e2a4dc4ee0bd75c3c57915e1b", "x-ms-return-client-request-id": "true" }, @@ -4828,17 +4854,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:34 GMT", + "Date": "Wed, 19 May 2021 19:00:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b42c36b8-510c-4620-a51f-af370b8fa136", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "b42c36b8-510c-4620-a51f-af370b8fa136", - "x-ms-routing-request-id": "WESTUS2:20210507T021735Z:b42c36b8-510c-4620-a51f-af370b8fa136" + "x-ms-correlation-request-id": "34604dd5-962e-4a23-a14c-5e9df5fd8cbe", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "34604dd5-962e-4a23-a14c-5e9df5fd8cbe", + "x-ms-routing-request-id": "WESTUS2:20210519T190023Z:34604dd5-962e-4a23-a14c-5e9df5fd8cbe" }, "ResponseBody": [] }, @@ -4847,7 +4873,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1381db84d334b4d29e2a8be5a81d1ba7", "x-ms-return-client-request-id": "true" }, @@ -4856,17 +4882,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:35 GMT", + "Date": "Wed, 19 May 2021 19:00:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6576a22-3a59-4244-89d3-a17c57803348", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "a6576a22-3a59-4244-89d3-a17c57803348", - "x-ms-routing-request-id": "WESTUS2:20210507T021736Z:a6576a22-3a59-4244-89d3-a17c57803348" + "x-ms-correlation-request-id": "db057975-4ab7-4379-a148-78fde094a24c", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "db057975-4ab7-4379-a148-78fde094a24c", + "x-ms-routing-request-id": "WESTUS2:20210519T190024Z:db057975-4ab7-4379-a148-78fde094a24c" }, "ResponseBody": [] }, @@ -4875,7 +4901,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4cdd18fd669785fc9f36f913499eca33", "x-ms-return-client-request-id": "true" }, @@ -4884,17 +4910,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:36 GMT", + "Date": "Wed, 19 May 2021 19:00:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0452d138-0a6d-4b1a-904a-97a74a69b989", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "0452d138-0a6d-4b1a-904a-97a74a69b989", - "x-ms-routing-request-id": "WESTUS2:20210507T021737Z:0452d138-0a6d-4b1a-904a-97a74a69b989" + "x-ms-correlation-request-id": "a178250e-1234-44f2-b5c4-ae0f75a47fee", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "a178250e-1234-44f2-b5c4-ae0f75a47fee", + "x-ms-routing-request-id": "WESTUS2:20210519T190025Z:a178250e-1234-44f2-b5c4-ae0f75a47fee" }, "ResponseBody": [] }, @@ -4903,7 +4929,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4d45d2c50f52cb7cb9a9de239f081bee", "x-ms-return-client-request-id": "true" }, @@ -4912,17 +4938,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:37 GMT", + "Date": "Wed, 19 May 2021 19:00:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "40942edb-336f-490a-ba18-284a5a3f2795", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "40942edb-336f-490a-ba18-284a5a3f2795", - "x-ms-routing-request-id": "WESTUS2:20210507T021738Z:40942edb-336f-490a-ba18-284a5a3f2795" + "x-ms-correlation-request-id": "de6b0aa8-665a-49d7-af38-7d581b074714", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "de6b0aa8-665a-49d7-af38-7d581b074714", + "x-ms-routing-request-id": "WESTUS2:20210519T190026Z:de6b0aa8-665a-49d7-af38-7d581b074714" }, "ResponseBody": [] }, @@ -4931,7 +4957,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3e3eb4bc12b41d84dffc73fdd9bf6b00", "x-ms-return-client-request-id": "true" }, @@ -4940,17 +4966,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:38 GMT", + "Date": "Wed, 19 May 2021 19:00:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bab9f99c-59f2-4066-af67-a4ca22623385", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "bab9f99c-59f2-4066-af67-a4ca22623385", - "x-ms-routing-request-id": "WESTUS2:20210507T021739Z:bab9f99c-59f2-4066-af67-a4ca22623385" + "x-ms-correlation-request-id": "761cd75c-ae42-4a81-b199-dc422408a141", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "761cd75c-ae42-4a81-b199-dc422408a141", + "x-ms-routing-request-id": "WESTUS2:20210519T190027Z:761cd75c-ae42-4a81-b199-dc422408a141" }, "ResponseBody": [] }, @@ -4959,7 +4985,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d520585fcdd7ee559c1193ed88d9e697", "x-ms-return-client-request-id": "true" }, @@ -4968,17 +4994,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:39 GMT", + "Date": "Wed, 19 May 2021 19:00:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "120dc4a6-530f-44bd-a4c4-2fbe45d58788", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "120dc4a6-530f-44bd-a4c4-2fbe45d58788", - "x-ms-routing-request-id": "WESTUS2:20210507T021740Z:120dc4a6-530f-44bd-a4c4-2fbe45d58788" + "x-ms-correlation-request-id": "9e4dde71-a1a2-4022-9709-30c897c65193", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "9e4dde71-a1a2-4022-9709-30c897c65193", + "x-ms-routing-request-id": "WESTUS2:20210519T190028Z:9e4dde71-a1a2-4022-9709-30c897c65193" }, "ResponseBody": [] }, @@ -4987,7 +5013,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95560b1a8b5fb27e4e276e569b7ef1f9", "x-ms-return-client-request-id": "true" }, @@ -4996,17 +5022,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:40 GMT", + "Date": "Wed, 19 May 2021 19:00:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7da094ac-3fbd-4f13-af90-215503abb1db", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "7da094ac-3fbd-4f13-af90-215503abb1db", - "x-ms-routing-request-id": "WESTUS2:20210507T021741Z:7da094ac-3fbd-4f13-af90-215503abb1db" + "x-ms-correlation-request-id": "8683e497-85dd-4e9c-bea7-dcf4df34cad5", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "8683e497-85dd-4e9c-bea7-dcf4df34cad5", + "x-ms-routing-request-id": "WESTUS2:20210519T190029Z:8683e497-85dd-4e9c-bea7-dcf4df34cad5" }, "ResponseBody": [] }, @@ -5015,7 +5041,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46c3dd3e46e8ee165e50a2a27f979505", "x-ms-return-client-request-id": "true" }, @@ -5024,17 +5050,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:41 GMT", + "Date": "Wed, 19 May 2021 19:00:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a08694a4-3551-42d3-86ec-45e7d6219372", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "a08694a4-3551-42d3-86ec-45e7d6219372", - "x-ms-routing-request-id": "WESTUS2:20210507T021742Z:a08694a4-3551-42d3-86ec-45e7d6219372" + "x-ms-correlation-request-id": "b676803b-a2ce-444d-b077-3c38dede2c77", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "b676803b-a2ce-444d-b077-3c38dede2c77", + "x-ms-routing-request-id": "WESTUS2:20210519T190030Z:b676803b-a2ce-444d-b077-3c38dede2c77" }, "ResponseBody": [] }, @@ -5043,7 +5069,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cee2dc15d568d4a1da6d87b05fff521d", "x-ms-return-client-request-id": "true" }, @@ -5052,17 +5078,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:42 GMT", + "Date": "Wed, 19 May 2021 19:00:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc0520a7-ea1b-4c12-926f-f247f95b9b73", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "cc0520a7-ea1b-4c12-926f-f247f95b9b73", - "x-ms-routing-request-id": "WESTUS2:20210507T021743Z:cc0520a7-ea1b-4c12-926f-f247f95b9b73" + "x-ms-correlation-request-id": "5f7b77a6-81f4-4e4a-b25a-01a212d690ce", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "5f7b77a6-81f4-4e4a-b25a-01a212d690ce", + "x-ms-routing-request-id": "WESTUS2:20210519T190031Z:5f7b77a6-81f4-4e4a-b25a-01a212d690ce" }, "ResponseBody": [] }, @@ -5071,7 +5097,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "abae99209f15d4aff468360ee8db33b6", "x-ms-return-client-request-id": "true" }, @@ -5080,17 +5106,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:44 GMT", + "Date": "Wed, 19 May 2021 19:00:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd08fd94-9c36-462e-81cc-c30efdd78015", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "cd08fd94-9c36-462e-81cc-c30efdd78015", - "x-ms-routing-request-id": "WESTUS2:20210507T021744Z:cd08fd94-9c36-462e-81cc-c30efdd78015" + "x-ms-correlation-request-id": "d9d8b72b-a195-4d76-ad7e-e8a1bcf67d19", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "d9d8b72b-a195-4d76-ad7e-e8a1bcf67d19", + "x-ms-routing-request-id": "WESTUS2:20210519T190032Z:d9d8b72b-a195-4d76-ad7e-e8a1bcf67d19" }, "ResponseBody": [] }, @@ -5099,7 +5125,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bf406892239c68913bee6c7abe668e5f", "x-ms-return-client-request-id": "true" }, @@ -5108,17 +5134,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:45 GMT", + "Date": "Wed, 19 May 2021 19:00:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5eaa4a45-bb2e-4099-a463-bec4c1a4ed56", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "5eaa4a45-bb2e-4099-a463-bec4c1a4ed56", - "x-ms-routing-request-id": "WESTUS2:20210507T021745Z:5eaa4a45-bb2e-4099-a463-bec4c1a4ed56" + "x-ms-correlation-request-id": "9dbeabc2-df93-41d0-8c42-5efc217cc79c", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "9dbeabc2-df93-41d0-8c42-5efc217cc79c", + "x-ms-routing-request-id": "WESTUS2:20210519T190033Z:9dbeabc2-df93-41d0-8c42-5efc217cc79c" }, "ResponseBody": [] }, @@ -5127,7 +5153,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e58285feeae875ef2d0dd9ff9f92ebfe", "x-ms-return-client-request-id": "true" }, @@ -5136,17 +5162,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:46 GMT", + "Date": "Wed, 19 May 2021 19:00:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e06adcb-9f97-42bd-aac7-0911f998d123", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "6e06adcb-9f97-42bd-aac7-0911f998d123", - "x-ms-routing-request-id": "WESTUS2:20210507T021746Z:6e06adcb-9f97-42bd-aac7-0911f998d123" + "x-ms-correlation-request-id": "96ec89ab-b614-4e66-b964-ce60a25c8d46", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "96ec89ab-b614-4e66-b964-ce60a25c8d46", + "x-ms-routing-request-id": "WESTUS2:20210519T190034Z:96ec89ab-b614-4e66-b964-ce60a25c8d46" }, "ResponseBody": [] }, @@ -5155,7 +5181,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f71dd03a92befd8008456f263334168e", "x-ms-return-client-request-id": "true" }, @@ -5164,17 +5190,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:46 GMT", + "Date": "Wed, 19 May 2021 19:00:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ad7db85-51e5-4000-a109-c20b09526715", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "9ad7db85-51e5-4000-a109-c20b09526715", - "x-ms-routing-request-id": "WESTUS2:20210507T021747Z:9ad7db85-51e5-4000-a109-c20b09526715" + "x-ms-correlation-request-id": "3f854722-055e-4b50-86f5-a536197f709a", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "3f854722-055e-4b50-86f5-a536197f709a", + "x-ms-routing-request-id": "WESTUS2:20210519T190035Z:3f854722-055e-4b50-86f5-a536197f709a" }, "ResponseBody": [] }, @@ -5183,7 +5209,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6310d6d94d59a8cd78cb928f4991c9a8", "x-ms-return-client-request-id": "true" }, @@ -5191,18 +5217,19 @@ "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", + "Connection": "close", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:48 GMT", + "Date": "Wed, 19 May 2021 19:00:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9ec5ace-4f3d-446b-bf21-a3b948d008fe", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "f9ec5ace-4f3d-446b-bf21-a3b948d008fe", - "x-ms-routing-request-id": "WESTUS2:20210507T021748Z:f9ec5ace-4f3d-446b-bf21-a3b948d008fe" + "x-ms-correlation-request-id": "61154a06-5b73-466c-b70d-b86f922d4b88", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "61154a06-5b73-466c-b70d-b86f922d4b88", + "x-ms-routing-request-id": "WESTUS2:20210519T190036Z:61154a06-5b73-466c-b70d-b86f922d4b88" }, "ResponseBody": [] }, @@ -5211,7 +5238,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed3f6d0397486ba10485dda37ac941f8", "x-ms-return-client-request-id": "true" }, @@ -5220,17 +5247,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:49 GMT", + "Date": "Wed, 19 May 2021 19:00:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f29782f2-e4ef-42be-bf58-388b1cc63292", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "f29782f2-e4ef-42be-bf58-388b1cc63292", - "x-ms-routing-request-id": "WESTUS2:20210507T021749Z:f29782f2-e4ef-42be-bf58-388b1cc63292" + "x-ms-correlation-request-id": "f387ef07-8df1-475d-9d8a-6c97dcc2c8dd", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "f387ef07-8df1-475d-9d8a-6c97dcc2c8dd", + "x-ms-routing-request-id": "WESTUS2:20210519T190037Z:f387ef07-8df1-475d-9d8a-6c97dcc2c8dd" }, "ResponseBody": [] }, @@ -5239,7 +5266,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9264bf78882eda502757ff200f1b376", "x-ms-return-client-request-id": "true" }, @@ -5248,17 +5275,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:50 GMT", + "Date": "Wed, 19 May 2021 19:00:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c20c91b8-10c8-4a96-8a4f-bbd7fcfbf926", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "c20c91b8-10c8-4a96-8a4f-bbd7fcfbf926", - "x-ms-routing-request-id": "WESTUS2:20210507T021750Z:c20c91b8-10c8-4a96-8a4f-bbd7fcfbf926" + "x-ms-correlation-request-id": "7700bab9-ce2e-4221-8d3d-913192f74bd2", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "7700bab9-ce2e-4221-8d3d-913192f74bd2", + "x-ms-routing-request-id": "WESTUS2:20210519T190038Z:7700bab9-ce2e-4221-8d3d-913192f74bd2" }, "ResponseBody": [] }, @@ -5267,7 +5294,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c523c67b28f5424534a45fd36f2a2daf", "x-ms-return-client-request-id": "true" }, @@ -5276,17 +5303,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:51 GMT", + "Date": "Wed, 19 May 2021 19:00:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c5ea9f6-35bd-40c1-bcb5-d4d8247700e7", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "3c5ea9f6-35bd-40c1-bcb5-d4d8247700e7", - "x-ms-routing-request-id": "WESTUS2:20210507T021751Z:3c5ea9f6-35bd-40c1-bcb5-d4d8247700e7" + "x-ms-correlation-request-id": "1d258593-4d02-4d96-91b2-521a4cd26119", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "1d258593-4d02-4d96-91b2-521a4cd26119", + "x-ms-routing-request-id": "WESTUS2:20210519T190039Z:1d258593-4d02-4d96-91b2-521a4cd26119" }, "ResponseBody": [] }, @@ -5295,7 +5322,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd989989006b7b25c851ead318ae6b12", "x-ms-return-client-request-id": "true" }, @@ -5304,17 +5331,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:52 GMT", + "Date": "Wed, 19 May 2021 19:00:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91fbdc12-b816-4f0d-94a5-b7707cf939cc", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "91fbdc12-b816-4f0d-94a5-b7707cf939cc", - "x-ms-routing-request-id": "WESTUS2:20210507T021752Z:91fbdc12-b816-4f0d-94a5-b7707cf939cc" + "x-ms-correlation-request-id": "716c125b-f91b-48d7-98b9-650988ab546e", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "716c125b-f91b-48d7-98b9-650988ab546e", + "x-ms-routing-request-id": "WESTUS2:20210519T190040Z:716c125b-f91b-48d7-98b9-650988ab546e" }, "ResponseBody": [] }, @@ -5323,7 +5350,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b42766d17ca5ce0206e394de28d17ed8", "x-ms-return-client-request-id": "true" }, @@ -5332,17 +5359,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:53 GMT", + "Date": "Wed, 19 May 2021 19:00:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc24ae09-5379-4aab-a72b-52643be18fda", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "cc24ae09-5379-4aab-a72b-52643be18fda", - "x-ms-routing-request-id": "WESTUS2:20210507T021753Z:cc24ae09-5379-4aab-a72b-52643be18fda" + "x-ms-correlation-request-id": "a1e153dd-1fd6-46cf-ad25-8dcb20d815dd", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "a1e153dd-1fd6-46cf-ad25-8dcb20d815dd", + "x-ms-routing-request-id": "WESTUS2:20210519T190041Z:a1e153dd-1fd6-46cf-ad25-8dcb20d815dd" }, "ResponseBody": [] }, @@ -5351,7 +5378,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6669cf47b6597b0ba0a8fca43e722a85", "x-ms-return-client-request-id": "true" }, @@ -5360,17 +5387,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:54 GMT", + "Date": "Wed, 19 May 2021 19:00:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd62e1da-7d99-45b4-8741-f32d1acc3aa4", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "fd62e1da-7d99-45b4-8741-f32d1acc3aa4", - "x-ms-routing-request-id": "WESTUS2:20210507T021754Z:fd62e1da-7d99-45b4-8741-f32d1acc3aa4" + "x-ms-correlation-request-id": "65c38cc9-12d1-4a18-8ec3-31dbdfbab5f5", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "65c38cc9-12d1-4a18-8ec3-31dbdfbab5f5", + "x-ms-routing-request-id": "WESTUS2:20210519T190042Z:65c38cc9-12d1-4a18-8ec3-31dbdfbab5f5" }, "ResponseBody": [] }, @@ -5379,7 +5406,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09024d3879020d0996c9f7876b4752f7", "x-ms-return-client-request-id": "true" }, @@ -5388,17 +5415,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:55 GMT", + "Date": "Wed, 19 May 2021 19:00:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6ba8f59-90b6-4551-a9d4-263c3d85c3a9", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "a6ba8f59-90b6-4551-a9d4-263c3d85c3a9", - "x-ms-routing-request-id": "WESTUS2:20210507T021755Z:a6ba8f59-90b6-4551-a9d4-263c3d85c3a9" + "x-ms-correlation-request-id": "adae3a6b-63f9-47b6-8ec4-2bee7ef8d768", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "adae3a6b-63f9-47b6-8ec4-2bee7ef8d768", + "x-ms-routing-request-id": "WESTUS2:20210519T190043Z:adae3a6b-63f9-47b6-8ec4-2bee7ef8d768" }, "ResponseBody": [] }, @@ -5407,7 +5434,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "488b12d304451ab85bab13fc7f5e8f93", "x-ms-return-client-request-id": "true" }, @@ -5416,17 +5443,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:56 GMT", + "Date": "Wed, 19 May 2021 19:00:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6c6957c-f2d5-41e5-8597-43d23b648746", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "f6c6957c-f2d5-41e5-8597-43d23b648746", - "x-ms-routing-request-id": "WESTUS2:20210507T021757Z:f6c6957c-f2d5-41e5-8597-43d23b648746" + "x-ms-correlation-request-id": "86789199-3245-41ea-82a8-22fe7333c920", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "86789199-3245-41ea-82a8-22fe7333c920", + "x-ms-routing-request-id": "WESTUS2:20210519T190044Z:86789199-3245-41ea-82a8-22fe7333c920" }, "ResponseBody": [] }, @@ -5435,7 +5462,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "daa50eb874cecdd5c65cd08fbf830f59", "x-ms-return-client-request-id": "true" }, @@ -5444,17 +5471,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:57 GMT", + "Date": "Wed, 19 May 2021 19:00:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1bdf666-9b36-4c08-95bf-b5174adaa764", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "a1bdf666-9b36-4c08-95bf-b5174adaa764", - "x-ms-routing-request-id": "WESTUS2:20210507T021758Z:a1bdf666-9b36-4c08-95bf-b5174adaa764" + "x-ms-correlation-request-id": "cc552e35-3eab-473f-b8f9-5729427a798e", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "cc552e35-3eab-473f-b8f9-5729427a798e", + "x-ms-routing-request-id": "WESTUS2:20210519T190045Z:cc552e35-3eab-473f-b8f9-5729427a798e" }, "ResponseBody": [] }, @@ -5463,7 +5490,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2cd00555e2e6344095e7ae57660c8d38", "x-ms-return-client-request-id": "true" }, @@ -5472,17 +5499,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:58 GMT", + "Date": "Wed, 19 May 2021 19:00:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ded4c44f-22a3-4751-bd33-50035f571928", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "ded4c44f-22a3-4751-bd33-50035f571928", - "x-ms-routing-request-id": "WESTUS2:20210507T021759Z:ded4c44f-22a3-4751-bd33-50035f571928" + "x-ms-correlation-request-id": "020fefbc-93d3-4a92-9eb4-7956c6b1a523", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "020fefbc-93d3-4a92-9eb4-7956c6b1a523", + "x-ms-routing-request-id": "WESTUS2:20210519T190046Z:020fefbc-93d3-4a92-9eb4-7956c6b1a523" }, "ResponseBody": [] }, @@ -5491,7 +5518,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5dcf633a77a15e283cbd81e934285bd7", "x-ms-return-client-request-id": "true" }, @@ -5500,17 +5527,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:17:59 GMT", + "Date": "Wed, 19 May 2021 19:00:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abf9f9dd-4215-43c8-b4f4-a0afbebd30bb", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "abf9f9dd-4215-43c8-b4f4-a0afbebd30bb", - "x-ms-routing-request-id": "WESTUS2:20210507T021800Z:abf9f9dd-4215-43c8-b4f4-a0afbebd30bb" + "x-ms-correlation-request-id": "61a2877c-0303-4b5e-88dc-2efab1321cb3", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "61a2877c-0303-4b5e-88dc-2efab1321cb3", + "x-ms-routing-request-id": "WESTUS2:20210519T190047Z:61a2877c-0303-4b5e-88dc-2efab1321cb3" }, "ResponseBody": [] }, @@ -5519,7 +5546,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7aa7b99b638dd6accd7145e7c67e67b9", "x-ms-return-client-request-id": "true" }, @@ -5528,17 +5555,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:00 GMT", + "Date": "Wed, 19 May 2021 19:00:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7657b33b-04f3-43be-9a6b-c6c548a6d7da", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "7657b33b-04f3-43be-9a6b-c6c548a6d7da", - "x-ms-routing-request-id": "WESTUS2:20210507T021801Z:7657b33b-04f3-43be-9a6b-c6c548a6d7da" + "x-ms-correlation-request-id": "b6e9e2ed-3563-4fa2-8d53-4764e916ab8d", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "b6e9e2ed-3563-4fa2-8d53-4764e916ab8d", + "x-ms-routing-request-id": "WESTUS2:20210519T190048Z:b6e9e2ed-3563-4fa2-8d53-4764e916ab8d" }, "ResponseBody": [] }, @@ -5547,7 +5574,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b5597ceb2b4ddb8dd72ef296057ff6d", "x-ms-return-client-request-id": "true" }, @@ -5556,17 +5583,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:01 GMT", + "Date": "Wed, 19 May 2021 19:00:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b64dad85-ec20-4373-b686-a63a639a6b82", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "b64dad85-ec20-4373-b686-a63a639a6b82", - "x-ms-routing-request-id": "WESTUS2:20210507T021802Z:b64dad85-ec20-4373-b686-a63a639a6b82" + "x-ms-correlation-request-id": "7d79dd47-6a89-46f8-b8f3-e36e037b2758", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "7d79dd47-6a89-46f8-b8f3-e36e037b2758", + "x-ms-routing-request-id": "WESTUS2:20210519T190050Z:7d79dd47-6a89-46f8-b8f3-e36e037b2758" }, "ResponseBody": [] }, @@ -5575,7 +5602,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "adbbd68c1365d6aab7f88f30324197bd", "x-ms-return-client-request-id": "true" }, @@ -5584,17 +5611,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:02 GMT", + "Date": "Wed, 19 May 2021 19:00:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5055dd1e-f82d-46fb-88ff-8d263b7d1fe7", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "5055dd1e-f82d-46fb-88ff-8d263b7d1fe7", - "x-ms-routing-request-id": "WESTUS2:20210507T021803Z:5055dd1e-f82d-46fb-88ff-8d263b7d1fe7" + "x-ms-correlation-request-id": "f5b6fb1c-0fe9-4169-af15-5065b70083a9", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "f5b6fb1c-0fe9-4169-af15-5065b70083a9", + "x-ms-routing-request-id": "WESTUS2:20210519T190051Z:f5b6fb1c-0fe9-4169-af15-5065b70083a9" }, "ResponseBody": [] }, @@ -5603,7 +5630,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c1ac85600d2e92201c99c1b73837576", "x-ms-return-client-request-id": "true" }, @@ -5612,17 +5639,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:03 GMT", + "Date": "Wed, 19 May 2021 19:00:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f3addea-9ad7-41a3-9081-897081352f7e", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "2f3addea-9ad7-41a3-9081-897081352f7e", - "x-ms-routing-request-id": "WESTUS2:20210507T021804Z:2f3addea-9ad7-41a3-9081-897081352f7e" + "x-ms-correlation-request-id": "5f01acb7-cbba-4672-8b8b-5dfcbfebe9e6", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "5f01acb7-cbba-4672-8b8b-5dfcbfebe9e6", + "x-ms-routing-request-id": "WESTUS2:20210519T190052Z:5f01acb7-cbba-4672-8b8b-5dfcbfebe9e6" }, "ResponseBody": [] }, @@ -5631,7 +5658,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f05ad871bac3bb53ed7ea4bb2288ab9b", "x-ms-return-client-request-id": "true" }, @@ -5640,17 +5667,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:05 GMT", + "Date": "Wed, 19 May 2021 19:00:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03150658-f882-43a6-88fe-9dde3a60fd73", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "03150658-f882-43a6-88fe-9dde3a60fd73", - "x-ms-routing-request-id": "WESTUS2:20210507T021805Z:03150658-f882-43a6-88fe-9dde3a60fd73" + "x-ms-correlation-request-id": "045df98d-301a-4b61-9e3f-7dc2bbac7794", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "045df98d-301a-4b61-9e3f-7dc2bbac7794", + "x-ms-routing-request-id": "WESTUS2:20210519T190053Z:045df98d-301a-4b61-9e3f-7dc2bbac7794" }, "ResponseBody": [] }, @@ -5659,7 +5686,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97d331da633c8c9ab3d1ab9c768e6233", "x-ms-return-client-request-id": "true" }, @@ -5668,17 +5695,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:05 GMT", + "Date": "Wed, 19 May 2021 19:00:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4b1d372-a764-4c5f-ba72-28724c894b56", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "b4b1d372-a764-4c5f-ba72-28724c894b56", - "x-ms-routing-request-id": "WESTUS2:20210507T021806Z:b4b1d372-a764-4c5f-ba72-28724c894b56" + "x-ms-correlation-request-id": "810ef9dc-1224-44fc-b97c-4dbcc467f8d8", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "810ef9dc-1224-44fc-b97c-4dbcc467f8d8", + "x-ms-routing-request-id": "WESTUS2:20210519T190054Z:810ef9dc-1224-44fc-b97c-4dbcc467f8d8" }, "ResponseBody": [] }, @@ -5687,7 +5714,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5abe1882a7e69bfa755fae535b67c678", "x-ms-return-client-request-id": "true" }, @@ -5696,17 +5723,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:07 GMT", + "Date": "Wed, 19 May 2021 19:00:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3029332-6adc-4619-ab88-a1c4219de097", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "c3029332-6adc-4619-ab88-a1c4219de097", - "x-ms-routing-request-id": "WESTUS2:20210507T021807Z:c3029332-6adc-4619-ab88-a1c4219de097" + "x-ms-correlation-request-id": "6f60682b-7134-4f66-81dc-0e6766bda950", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "6f60682b-7134-4f66-81dc-0e6766bda950", + "x-ms-routing-request-id": "WESTUS2:20210519T190055Z:6f60682b-7134-4f66-81dc-0e6766bda950" }, "ResponseBody": [] }, @@ -5715,7 +5742,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4240011edeb00d3a3dce3cf10eb6445f", "x-ms-return-client-request-id": "true" }, @@ -5724,17 +5751,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:08 GMT", + "Date": "Wed, 19 May 2021 19:00:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45dc112a-852e-4138-928d-6c3aa974081c", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "45dc112a-852e-4138-928d-6c3aa974081c", - "x-ms-routing-request-id": "WESTUS2:20210507T021808Z:45dc112a-852e-4138-928d-6c3aa974081c" + "x-ms-correlation-request-id": "b06072ac-79bc-42c9-abc6-3f0415053a0d", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "b06072ac-79bc-42c9-abc6-3f0415053a0d", + "x-ms-routing-request-id": "WESTUS2:20210519T190056Z:b06072ac-79bc-42c9-abc6-3f0415053a0d" }, "ResponseBody": [] }, @@ -5743,7 +5770,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0a39701c50c933b5373722ddb446304c", "x-ms-return-client-request-id": "true" }, @@ -5752,17 +5779,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:09 GMT", + "Date": "Wed, 19 May 2021 19:00:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d7e3246-ff51-4208-ac4a-085c558ec641", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "1d7e3246-ff51-4208-ac4a-085c558ec641", - "x-ms-routing-request-id": "WESTUS2:20210507T021809Z:1d7e3246-ff51-4208-ac4a-085c558ec641" + "x-ms-correlation-request-id": "853079ec-b3f3-45af-9c1f-f77d1deb0ada", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "853079ec-b3f3-45af-9c1f-f77d1deb0ada", + "x-ms-routing-request-id": "WESTUS2:20210519T190057Z:853079ec-b3f3-45af-9c1f-f77d1deb0ada" }, "ResponseBody": [] }, @@ -5771,7 +5798,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "757e320b204da483deb01c176a098dbe", "x-ms-return-client-request-id": "true" }, @@ -5780,17 +5807,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:10 GMT", + "Date": "Wed, 19 May 2021 19:00:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b5700c0-3a37-4fee-b8a6-a53e9356e1fd", + "x-ms-correlation-request-id": "5e1e13e6-30c9-411f-a067-69836f14dcc2", "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "9b5700c0-3a37-4fee-b8a6-a53e9356e1fd", - "x-ms-routing-request-id": "WESTUS2:20210507T021810Z:9b5700c0-3a37-4fee-b8a6-a53e9356e1fd" + "x-ms-request-id": "5e1e13e6-30c9-411f-a067-69836f14dcc2", + "x-ms-routing-request-id": "WESTUS2:20210519T190058Z:5e1e13e6-30c9-411f-a067-69836f14dcc2" }, "ResponseBody": [] }, @@ -5799,7 +5826,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea374f1abc2ecdaf4c0d0a78bc5d59f6", "x-ms-return-client-request-id": "true" }, @@ -5808,17 +5835,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:11 GMT", + "Date": "Wed, 19 May 2021 19:00:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8107bea5-c035-4e04-a0f4-f01eb33044c5", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "8107bea5-c035-4e04-a0f4-f01eb33044c5", - "x-ms-routing-request-id": "WESTUS2:20210507T021811Z:8107bea5-c035-4e04-a0f4-f01eb33044c5" + "x-ms-correlation-request-id": "42029123-6ffb-4102-8b89-72a043e8789c", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "42029123-6ffb-4102-8b89-72a043e8789c", + "x-ms-routing-request-id": "WESTUS2:20210519T190059Z:42029123-6ffb-4102-8b89-72a043e8789c" }, "ResponseBody": [] }, @@ -5827,7 +5854,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dbe6f09ecf38fb11ed942c18339dc82e", "x-ms-return-client-request-id": "true" }, @@ -5836,17 +5863,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:12 GMT", + "Date": "Wed, 19 May 2021 19:01:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a5c639a-2ed4-47bb-8763-59403be94943", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "5a5c639a-2ed4-47bb-8763-59403be94943", - "x-ms-routing-request-id": "WESTUS2:20210507T021812Z:5a5c639a-2ed4-47bb-8763-59403be94943" + "x-ms-correlation-request-id": "e7599428-d27e-49b8-b3ac-346559ff85aa", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "e7599428-d27e-49b8-b3ac-346559ff85aa", + "x-ms-routing-request-id": "WESTUS2:20210519T190100Z:e7599428-d27e-49b8-b3ac-346559ff85aa" }, "ResponseBody": [] }, @@ -5855,7 +5882,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "65c263aa450f4f1e83b02840150ae880", "x-ms-return-client-request-id": "true" }, @@ -5864,17 +5891,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:13 GMT", + "Date": "Wed, 19 May 2021 19:01:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60f4e2ee-22bf-47c6-a458-167274fcfdb9", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "60f4e2ee-22bf-47c6-a458-167274fcfdb9", - "x-ms-routing-request-id": "WESTUS2:20210507T021813Z:60f4e2ee-22bf-47c6-a458-167274fcfdb9" + "x-ms-correlation-request-id": "b4fe6816-0e36-417b-bb5a-49d8cf4db24b", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "b4fe6816-0e36-417b-bb5a-49d8cf4db24b", + "x-ms-routing-request-id": "WESTUS2:20210519T190101Z:b4fe6816-0e36-417b-bb5a-49d8cf4db24b" }, "ResponseBody": [] }, @@ -5883,7 +5910,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a792657b1234a853e3cfd998f969aaf", "x-ms-return-client-request-id": "true" }, @@ -5892,17 +5919,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:14 GMT", + "Date": "Wed, 19 May 2021 19:01:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49427dbb-cff0-423c-9871-99c62344305e", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "49427dbb-cff0-423c-9871-99c62344305e", - "x-ms-routing-request-id": "WESTUS2:20210507T021814Z:49427dbb-cff0-423c-9871-99c62344305e" + "x-ms-correlation-request-id": "f7315f95-f928-4274-b067-027dc310759a", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "f7315f95-f928-4274-b067-027dc310759a", + "x-ms-routing-request-id": "WESTUS2:20210519T190102Z:f7315f95-f928-4274-b067-027dc310759a" }, "ResponseBody": [] }, @@ -5911,7 +5938,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "58cedc44f49a59e7d1965888a6d1e5e2", "x-ms-return-client-request-id": "true" }, @@ -5920,17 +5947,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:15 GMT", + "Date": "Wed, 19 May 2021 19:01:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3cc1bcdd-84a7-4928-a8a6-e90d2615d75c", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "3cc1bcdd-84a7-4928-a8a6-e90d2615d75c", - "x-ms-routing-request-id": "WESTUS2:20210507T021815Z:3cc1bcdd-84a7-4928-a8a6-e90d2615d75c" + "x-ms-correlation-request-id": "2029c357-72f1-43fd-b072-26f743bb265c", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "2029c357-72f1-43fd-b072-26f743bb265c", + "x-ms-routing-request-id": "WESTUS2:20210519T190103Z:2029c357-72f1-43fd-b072-26f743bb265c" }, "ResponseBody": [] }, @@ -5939,7 +5966,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0dc1abac4e24f80ade7727d24784bfed", "x-ms-return-client-request-id": "true" }, @@ -5948,17 +5975,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:16 GMT", + "Date": "Wed, 19 May 2021 19:01:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f33f0b59-ff1a-45ff-9e27-85496e484bde", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "f33f0b59-ff1a-45ff-9e27-85496e484bde", - "x-ms-routing-request-id": "WESTUS2:20210507T021816Z:f33f0b59-ff1a-45ff-9e27-85496e484bde" + "x-ms-correlation-request-id": "f0c6e2e9-7645-43fa-9eec-9d61ea544a02", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "f0c6e2e9-7645-43fa-9eec-9d61ea544a02", + "x-ms-routing-request-id": "WESTUS2:20210519T190104Z:f0c6e2e9-7645-43fa-9eec-9d61ea544a02" }, "ResponseBody": [] }, @@ -5967,7 +5994,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38fb7916903b63e63e20a88c59fda36c", "x-ms-return-client-request-id": "true" }, @@ -5976,17 +6003,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:17 GMT", + "Date": "Wed, 19 May 2021 19:01:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10145025-8069-4083-afc1-eee54e672d51", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "10145025-8069-4083-afc1-eee54e672d51", - "x-ms-routing-request-id": "WESTUS2:20210507T021817Z:10145025-8069-4083-afc1-eee54e672d51" + "x-ms-correlation-request-id": "ab20af02-48e2-43c9-9f5e-bee234dc0129", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "ab20af02-48e2-43c9-9f5e-bee234dc0129", + "x-ms-routing-request-id": "WESTUS2:20210519T190105Z:ab20af02-48e2-43c9-9f5e-bee234dc0129" }, "ResponseBody": [] }, @@ -5995,7 +6022,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e4ed1b568cd4f68ad1d67922cd14114d", "x-ms-return-client-request-id": "true" }, @@ -6004,17 +6031,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:18 GMT", + "Date": "Wed, 19 May 2021 19:01:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f86f0d70-ca98-4c46-aa7f-4d837e6f4f8c", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "f86f0d70-ca98-4c46-aa7f-4d837e6f4f8c", - "x-ms-routing-request-id": "WESTUS2:20210507T021818Z:f86f0d70-ca98-4c46-aa7f-4d837e6f4f8c" + "x-ms-correlation-request-id": "94c4ea5e-134f-409e-9e42-49f6f34b2e3c", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "94c4ea5e-134f-409e-9e42-49f6f34b2e3c", + "x-ms-routing-request-id": "WESTUS2:20210519T190106Z:94c4ea5e-134f-409e-9e42-49f6f34b2e3c" }, "ResponseBody": [] }, @@ -6023,7 +6050,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d716ad7acd51ba6c55ece04a57e9fe0", "x-ms-return-client-request-id": "true" }, @@ -6032,17 +6059,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:19 GMT", + "Date": "Wed, 19 May 2021 19:01:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fe693ac-6708-4546-a4e8-d5b994b3b080", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "8fe693ac-6708-4546-a4e8-d5b994b3b080", - "x-ms-routing-request-id": "WESTUS2:20210507T021819Z:8fe693ac-6708-4546-a4e8-d5b994b3b080" + "x-ms-correlation-request-id": "6fdff3a6-8fe3-49d2-8527-f1937e052c07", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "6fdff3a6-8fe3-49d2-8527-f1937e052c07", + "x-ms-routing-request-id": "WESTUS2:20210519T190107Z:6fdff3a6-8fe3-49d2-8527-f1937e052c07" }, "ResponseBody": [] }, @@ -6051,7 +6078,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2c7cbad3da978918ee05666516c3962a", "x-ms-return-client-request-id": "true" }, @@ -6060,17 +6087,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:20 GMT", + "Date": "Wed, 19 May 2021 19:01:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2477ba8-acb0-4542-a8bc-d8c1adfbd280", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "b2477ba8-acb0-4542-a8bc-d8c1adfbd280", - "x-ms-routing-request-id": "WESTUS2:20210507T021820Z:b2477ba8-acb0-4542-a8bc-d8c1adfbd280" + "x-ms-correlation-request-id": "da220927-9c93-44d8-bf24-fa4efe841e56", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "da220927-9c93-44d8-bf24-fa4efe841e56", + "x-ms-routing-request-id": "WESTUS2:20210519T190108Z:da220927-9c93-44d8-bf24-fa4efe841e56" }, "ResponseBody": [] }, @@ -6079,7 +6106,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eeb45b0e768baa9774d11f76be865053", "x-ms-return-client-request-id": "true" }, @@ -6088,17 +6115,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:21 GMT", + "Date": "Wed, 19 May 2021 19:01:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3aa4c3b-a333-45e8-81d5-f854136893f4", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "b3aa4c3b-a333-45e8-81d5-f854136893f4", - "x-ms-routing-request-id": "WESTUS2:20210507T021821Z:b3aa4c3b-a333-45e8-81d5-f854136893f4" + "x-ms-correlation-request-id": "92bccdcf-bb35-4d5d-a5b9-a386d768075b", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "92bccdcf-bb35-4d5d-a5b9-a386d768075b", + "x-ms-routing-request-id": "WESTUS2:20210519T190109Z:92bccdcf-bb35-4d5d-a5b9-a386d768075b" }, "ResponseBody": [] }, @@ -6107,7 +6134,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "124f9936e498fcb651e83ed045410501", "x-ms-return-client-request-id": "true" }, @@ -6116,17 +6143,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:22 GMT", + "Date": "Wed, 19 May 2021 19:01:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03ccf223-58d7-4cc5-8ddc-a38eeab22472", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "03ccf223-58d7-4cc5-8ddc-a38eeab22472", - "x-ms-routing-request-id": "WESTUS2:20210507T021822Z:03ccf223-58d7-4cc5-8ddc-a38eeab22472" + "x-ms-correlation-request-id": "bd1306cf-2c68-4a72-89e9-cb385898658c", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "bd1306cf-2c68-4a72-89e9-cb385898658c", + "x-ms-routing-request-id": "WESTUS2:20210519T190110Z:bd1306cf-2c68-4a72-89e9-cb385898658c" }, "ResponseBody": [] }, @@ -6135,7 +6162,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4af5a3c7b0ca5c5523d2b8c5bba2cb68", "x-ms-return-client-request-id": "true" }, @@ -6144,17 +6171,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:23 GMT", + "Date": "Wed, 19 May 2021 19:01:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe4af454-48af-4732-9e8f-fc403289c838", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "fe4af454-48af-4732-9e8f-fc403289c838", - "x-ms-routing-request-id": "WESTUS2:20210507T021823Z:fe4af454-48af-4732-9e8f-fc403289c838" + "x-ms-correlation-request-id": "d6115ee2-1630-4796-8c4b-d9d7fcadb3c3", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "d6115ee2-1630-4796-8c4b-d9d7fcadb3c3", + "x-ms-routing-request-id": "WESTUS2:20210519T190111Z:d6115ee2-1630-4796-8c4b-d9d7fcadb3c3" }, "ResponseBody": [] }, @@ -6163,7 +6190,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d2e13b583742992a5b79ca338c66433", "x-ms-return-client-request-id": "true" }, @@ -6172,17 +6199,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:24 GMT", + "Date": "Wed, 19 May 2021 19:01:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "718a17e1-fcfe-48fd-8aee-251d4d5fc380", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "718a17e1-fcfe-48fd-8aee-251d4d5fc380", - "x-ms-routing-request-id": "WESTUS2:20210507T021824Z:718a17e1-fcfe-48fd-8aee-251d4d5fc380" + "x-ms-correlation-request-id": "18002a76-6885-49ef-875b-93a39bd13be8", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "18002a76-6885-49ef-875b-93a39bd13be8", + "x-ms-routing-request-id": "WESTUS2:20210519T190112Z:18002a76-6885-49ef-875b-93a39bd13be8" }, "ResponseBody": [] }, @@ -6191,7 +6218,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1aae1dcc0691868843f2efc62cf041af", "x-ms-return-client-request-id": "true" }, @@ -6200,17 +6227,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:25 GMT", + "Date": "Wed, 19 May 2021 19:01:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a927960-d5b4-4899-aca1-96ed9b40e1cf", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "0a927960-d5b4-4899-aca1-96ed9b40e1cf", - "x-ms-routing-request-id": "WESTUS2:20210507T021826Z:0a927960-d5b4-4899-aca1-96ed9b40e1cf" + "x-ms-correlation-request-id": "c4b78376-19cb-4694-be97-258ba1f69f96", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "c4b78376-19cb-4694-be97-258ba1f69f96", + "x-ms-routing-request-id": "WESTUS2:20210519T190113Z:c4b78376-19cb-4694-be97-258ba1f69f96" }, "ResponseBody": [] }, @@ -6219,7 +6246,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "321bd51c8812448d11cba41213b1245c", "x-ms-return-client-request-id": "true" }, @@ -6228,17 +6255,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:26 GMT", + "Date": "Wed, 19 May 2021 19:01:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9fe9e7d-15f3-411a-a34d-743b6b05d3a3", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "a9fe9e7d-15f3-411a-a34d-743b6b05d3a3", - "x-ms-routing-request-id": "WESTUS2:20210507T021827Z:a9fe9e7d-15f3-411a-a34d-743b6b05d3a3" + "x-ms-correlation-request-id": "9de63580-d626-4fa4-a38d-48ddbef4cd82", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "9de63580-d626-4fa4-a38d-48ddbef4cd82", + "x-ms-routing-request-id": "WESTUS2:20210519T190114Z:9de63580-d626-4fa4-a38d-48ddbef4cd82" }, "ResponseBody": [] }, @@ -6247,7 +6274,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9df9856db0f3aed78aa8398194cbfdb4", "x-ms-return-client-request-id": "true" }, @@ -6256,17 +6283,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:27 GMT", + "Date": "Wed, 19 May 2021 19:01:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43255330-19ac-462e-90e0-ab544524600c", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "43255330-19ac-462e-90e0-ab544524600c", - "x-ms-routing-request-id": "WESTUS2:20210507T021828Z:43255330-19ac-462e-90e0-ab544524600c" + "x-ms-correlation-request-id": "a6e04ae8-5166-4dcc-ad72-e0900744a446", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "a6e04ae8-5166-4dcc-ad72-e0900744a446", + "x-ms-routing-request-id": "WESTUS2:20210519T190115Z:a6e04ae8-5166-4dcc-ad72-e0900744a446" }, "ResponseBody": [] }, @@ -6275,7 +6302,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6286ed7531ab43208f6a08c561767391", "x-ms-return-client-request-id": "true" }, @@ -6284,17 +6311,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:28 GMT", + "Date": "Wed, 19 May 2021 19:01:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3f2cbaa-14ab-4c66-af3b-2ba79a401e34", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "c3f2cbaa-14ab-4c66-af3b-2ba79a401e34", - "x-ms-routing-request-id": "WESTUS2:20210507T021829Z:c3f2cbaa-14ab-4c66-af3b-2ba79a401e34" + "x-ms-correlation-request-id": "28deecf9-74ab-4e30-b228-40ee2a1d4319", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "28deecf9-74ab-4e30-b228-40ee2a1d4319", + "x-ms-routing-request-id": "WESTUS2:20210519T190116Z:28deecf9-74ab-4e30-b228-40ee2a1d4319" }, "ResponseBody": [] }, @@ -6303,7 +6330,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a75893cda4f76cbcfe6ca76a4f0baf46", "x-ms-return-client-request-id": "true" }, @@ -6312,17 +6339,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:29 GMT", + "Date": "Wed, 19 May 2021 19:01:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3685d324-96eb-434d-add5-2690391c517e", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "3685d324-96eb-434d-add5-2690391c517e", - "x-ms-routing-request-id": "WESTUS2:20210507T021830Z:3685d324-96eb-434d-add5-2690391c517e" + "x-ms-correlation-request-id": "789a9317-6e48-4c83-a4c8-ce74e7ddd534", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "789a9317-6e48-4c83-a4c8-ce74e7ddd534", + "x-ms-routing-request-id": "WESTUS2:20210519T190117Z:789a9317-6e48-4c83-a4c8-ce74e7ddd534" }, "ResponseBody": [] }, @@ -6331,7 +6358,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "269cf0cec12b3cb064b50d89a8114d14", "x-ms-return-client-request-id": "true" }, @@ -6340,17 +6367,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:30 GMT", + "Date": "Wed, 19 May 2021 19:01:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9387f6c7-7547-4500-9907-6e3723393e75", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "9387f6c7-7547-4500-9907-6e3723393e75", - "x-ms-routing-request-id": "WESTUS2:20210507T021831Z:9387f6c7-7547-4500-9907-6e3723393e75" + "x-ms-correlation-request-id": "249fcff1-d8c9-4d4b-b379-e9c08262f064", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "249fcff1-d8c9-4d4b-b379-e9c08262f064", + "x-ms-routing-request-id": "WESTUS2:20210519T190118Z:249fcff1-d8c9-4d4b-b379-e9c08262f064" }, "ResponseBody": [] }, @@ -6359,7 +6386,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "01b4a7345673d1bd301a633f8ab6f484", "x-ms-return-client-request-id": "true" }, @@ -6368,17 +6395,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:31 GMT", + "Date": "Wed, 19 May 2021 19:01:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac5f3fa6-20e6-43ff-bf91-7f3725f7b02d", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "ac5f3fa6-20e6-43ff-bf91-7f3725f7b02d", - "x-ms-routing-request-id": "WESTUS2:20210507T021832Z:ac5f3fa6-20e6-43ff-bf91-7f3725f7b02d" + "x-ms-correlation-request-id": "aa38c557-e347-4177-b781-b2a2aebc6026", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "aa38c557-e347-4177-b781-b2a2aebc6026", + "x-ms-routing-request-id": "WESTUS2:20210519T190119Z:aa38c557-e347-4177-b781-b2a2aebc6026" }, "ResponseBody": [] }, @@ -6387,7 +6414,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71f7c2ba4cda0c66e21c42419632c3ed", "x-ms-return-client-request-id": "true" }, @@ -6396,17 +6423,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:32 GMT", + "Date": "Wed, 19 May 2021 19:01:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a912e7a-5395-4d69-9c00-4a940950c45d", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "3a912e7a-5395-4d69-9c00-4a940950c45d", - "x-ms-routing-request-id": "WESTUS2:20210507T021833Z:3a912e7a-5395-4d69-9c00-4a940950c45d" + "x-ms-correlation-request-id": "1de87478-c233-4063-925b-a02aadcda552", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "1de87478-c233-4063-925b-a02aadcda552", + "x-ms-routing-request-id": "WESTUS2:20210519T190120Z:1de87478-c233-4063-925b-a02aadcda552" }, "ResponseBody": [] }, @@ -6415,7 +6442,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a735931eae5777d233caf5105d70b2ae", "x-ms-return-client-request-id": "true" }, @@ -6424,17 +6451,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:33 GMT", + "Date": "Wed, 19 May 2021 19:01:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d17c4b0-1469-4308-a29f-424b7e6d42e1", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "0d17c4b0-1469-4308-a29f-424b7e6d42e1", - "x-ms-routing-request-id": "WESTUS2:20210507T021834Z:0d17c4b0-1469-4308-a29f-424b7e6d42e1" + "x-ms-correlation-request-id": "56de00a5-f84e-4177-9d90-3ae2a0b21a6b", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "56de00a5-f84e-4177-9d90-3ae2a0b21a6b", + "x-ms-routing-request-id": "WESTUS2:20210519T190121Z:56de00a5-f84e-4177-9d90-3ae2a0b21a6b" }, "ResponseBody": [] }, @@ -6443,7 +6470,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6ce89c0dc1ae83a40a71e57147b3afe", "x-ms-return-client-request-id": "true" }, @@ -6452,17 +6479,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:34 GMT", + "Date": "Wed, 19 May 2021 19:01:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b6dcb8c-9abd-4067-9c5f-39805a5b9e1a", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "5b6dcb8c-9abd-4067-9c5f-39805a5b9e1a", - "x-ms-routing-request-id": "WESTUS2:20210507T021835Z:5b6dcb8c-9abd-4067-9c5f-39805a5b9e1a" + "x-ms-correlation-request-id": "9aa3deb1-824c-45ca-86a4-744d83996eb7", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "9aa3deb1-824c-45ca-86a4-744d83996eb7", + "x-ms-routing-request-id": "WESTUS2:20210519T190123Z:9aa3deb1-824c-45ca-86a4-744d83996eb7" }, "ResponseBody": [] }, @@ -6471,7 +6498,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f62076564c800b2cef7f3d0f5755ae71", "x-ms-return-client-request-id": "true" }, @@ -6480,17 +6507,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:35 GMT", + "Date": "Wed, 19 May 2021 19:01:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50783a95-d15c-4031-92e2-a8779aa9cce9", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-request-id": "50783a95-d15c-4031-92e2-a8779aa9cce9", - "x-ms-routing-request-id": "WESTUS2:20210507T021836Z:50783a95-d15c-4031-92e2-a8779aa9cce9" + "x-ms-correlation-request-id": "a400cbc2-8d2a-46fb-86dd-fcac9db2d36a", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "a400cbc2-8d2a-46fb-86dd-fcac9db2d36a", + "x-ms-routing-request-id": "WESTUS2:20210519T190124Z:a400cbc2-8d2a-46fb-86dd-fcac9db2d36a" }, "ResponseBody": [] }, @@ -6499,7 +6526,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d81936add6342d2594d66af8f7b63b7", "x-ms-return-client-request-id": "true" }, @@ -6508,17 +6535,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:36 GMT", + "Date": "Wed, 19 May 2021 19:01:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5194c31a-b3a7-4351-bade-ea4d33d4d52d", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "5194c31a-b3a7-4351-bade-ea4d33d4d52d", - "x-ms-routing-request-id": "WESTUS2:20210507T021837Z:5194c31a-b3a7-4351-bade-ea4d33d4d52d" + "x-ms-correlation-request-id": "7711553b-c3b3-45dc-9cb6-a0b66ae32d8f", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "7711553b-c3b3-45dc-9cb6-a0b66ae32d8f", + "x-ms-routing-request-id": "WESTUS2:20210519T190125Z:7711553b-c3b3-45dc-9cb6-a0b66ae32d8f" }, "ResponseBody": [] }, @@ -6527,7 +6554,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6b9f78fbb4f732d5cc2f69a9e2a90ea", "x-ms-return-client-request-id": "true" }, @@ -6536,17 +6563,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:37 GMT", + "Date": "Wed, 19 May 2021 19:01:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aca56986-dc57-4d77-a4e7-62e597b9b96c", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-request-id": "aca56986-dc57-4d77-a4e7-62e597b9b96c", - "x-ms-routing-request-id": "WESTUS2:20210507T021838Z:aca56986-dc57-4d77-a4e7-62e597b9b96c" + "x-ms-correlation-request-id": "db4c0d9f-c59f-44aa-9a5a-b0b334e58089", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "db4c0d9f-c59f-44aa-9a5a-b0b334e58089", + "x-ms-routing-request-id": "WESTUS2:20210519T190126Z:db4c0d9f-c59f-44aa-9a5a-b0b334e58089" }, "ResponseBody": [] }, @@ -6555,7 +6582,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80edacf92dfa799aa4de9d33e67c7c73", "x-ms-return-client-request-id": "true" }, @@ -6564,17 +6591,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:38 GMT", + "Date": "Wed, 19 May 2021 19:01:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95e3cc53-f81a-4e62-a907-c3957285aef6", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-request-id": "95e3cc53-f81a-4e62-a907-c3957285aef6", - "x-ms-routing-request-id": "WESTUS2:20210507T021839Z:95e3cc53-f81a-4e62-a907-c3957285aef6" + "x-ms-correlation-request-id": "8a8b0597-ef2f-4bfd-9cdf-cc7178d05ed3", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "8a8b0597-ef2f-4bfd-9cdf-cc7178d05ed3", + "x-ms-routing-request-id": "WESTUS2:20210519T190127Z:8a8b0597-ef2f-4bfd-9cdf-cc7178d05ed3" }, "ResponseBody": [] }, @@ -6583,7 +6610,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "607f861cc79cae21660db0a0e637a32e", "x-ms-return-client-request-id": "true" }, @@ -6592,17 +6619,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 02:18:40 GMT", + "Date": "Wed, 19 May 2021 19:01:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1831aa1-7d41-47b8-a530-0e27c88ff413", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-request-id": "b1831aa1-7d41-47b8-a530-0e27c88ff413", - "x-ms-routing-request-id": "WESTUS2:20210507T021840Z:b1831aa1-7d41-47b8-a530-0e27c88ff413" + "x-ms-correlation-request-id": "b9435a8e-c508-4f9a-9991-40b547014dbc", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "b9435a8e-c508-4f9a-9991-40b547014dbc", + "x-ms-routing-request-id": "WESTUS2:20210519T190128Z:b9435a8e-c508-4f9a-9991-40b547014dbc" }, "ResponseBody": [] }, @@ -6611,23 +6638,79 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e2b67cbce38e62bd5c4042711efa8de0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 19:01:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1085845c-73e4-40d3-a45d-c0bc6af720bd", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "1085845c-73e4-40d3-a45d-c0bc6af720bd", + "x-ms-routing-request-id": "WESTUS2:20210519T190129Z:1085845c-73e4-40d3-a45d-c0bc6af720bd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "187e834630ab324e8b3e1aed7cf9926c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 19:01:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6f9c06b1-e138-4ca5-b391-a1ce3b84da4a", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "6f9c06b1-e138-4ca5-b391-a1ce3b84da4a", + "x-ms-routing-request-id": "WESTUS2:20210519T190130Z:6f9c06b1-e138-4ca5-b391-a1ce3b84da4a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "69766e3a99c638e4c81d035b84b0906b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 07 May 2021 02:18:41 GMT", + "Date": "Wed, 19 May 2021 19:01:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8da2c271-1062-424d-b67f-f6731cc88aee", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "8da2c271-1062-424d-b67f-f6731cc88aee", - "x-ms-routing-request-id": "WESTUS2:20210507T021841Z:8da2c271-1062-424d-b67f-f6731cc88aee" + "x-ms-correlation-request-id": "12ab1588-28b6-4408-8e7e-b6e0f1cf3581", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "12ab1588-28b6-4408-8e7e-b6e0f1cf3581", + "x-ms-routing-request-id": "WESTUS2:20210519T190131Z:12ab1588-28b6-4408-8e7e-b6e0f1cf3581" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update().json index d0a91d16e9db..adb5656e87cb 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 21:23:06 GMT", + "Date": "Wed, 19 May 2021 19:01:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59ef9dcf-f825-4cec-b468-ab186776585d", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "59ef9dcf-f825-4cec-b468-ab186776585d", - "x-ms-routing-request-id": "WESTUS2:20210512T212307Z:59ef9dcf-f825-4cec-b468-ab186776585d" + "x-ms-correlation-request-id": "df78f467-004d-4a68-96be-68f21a53deec", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "df78f467-004d-4a68-96be-68f21a53deec", + "x-ms-routing-request-id": "WESTUS2:20210519T190131Z:df78f467-004d-4a68-96be-68f21a53deec" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-e347273f44541d409100e9423a2a42b8-860e83bfc54f5640-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-1d84120ab0796e4db68b505694d07f35-1ef7719e11092f44-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "175a7e2f248b823e718c747dd3a0d29b", "x-ms-return-client-request-id": "true" }, @@ -58,20 +58,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 21:23:07 GMT", + "Date": "Wed, 19 May 2021 19:01:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "feac4257-ee9c-48d9-8b4c-33a7df9a2762", + "x-ms-correlation-request-id": "d28e8292-58ce-47a6-a008-2373228503c3", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "feac4257-ee9c-48d9-8b4c-33a7df9a2762", - "x-ms-routing-request-id": "WESTUS2:20210512T212308Z:feac4257-ee9c-48d9-8b4c-33a7df9a2762" + "x-ms-request-id": "d28e8292-58ce-47a6-a008-2373228503c3", + "x-ms-routing-request-id": "WESTUS2:20210519T190132Z:d28e8292-58ce-47a6-a008-2373228503c3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6338", @@ -92,7 +92,8 @@ "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-6fde6a829817b742ac37b0ec8d4e01f0-6ec3e1776b3f8f42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5893c882a9998b6f87dc1469b1bbedd2", "x-ms-return-client-request-id": "true" }, @@ -104,15 +105,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 21:23:07 GMT", + "Date": "Wed, 19 May 2021 19:01:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b008f61-1d72-4ad0-9ef6-147691742a2b", + "x-ms-correlation-request-id": "afc21987-272f-4f22-99b4-36ba7252bf71", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "9b008f61-1d72-4ad0-9ef6-147691742a2b", - "x-ms-routing-request-id": "WESTUS2:20210512T212308Z:9b008f61-1d72-4ad0-9ef6-147691742a2b" + "x-ms-request-id": "afc21987-272f-4f22-99b4-36ba7252bf71", + "x-ms-routing-request-id": "WESTUS2:20210519T190132Z:afc21987-272f-4f22-99b4-36ba7252bf71" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6338", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update()Async.json index dff5d43470e8..cd9bdfc766af 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update()Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "Request-Id": "|b84bef2f-4e1fac3c59f9802f.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22bcc7038d78f6fd045efe99ff9aada2", "x-ms-return-client-request-id": "true" @@ -16,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 21:19:35 GMT", + "Date": "Wed, 19 May 2021 19:01:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "133a6af1-c705-40ae-b3c6-c92eda30361f", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-request-id": "133a6af1-c705-40ae-b3c6-c92eda30361f", - "x-ms-routing-request-id": "WESTUS2:20210512T211936Z:133a6af1-c705-40ae-b3c6-c92eda30361f" + "x-ms-correlation-request-id": "6d987a5b-79e2-421b-9006-c73528bb29db", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "6d987a5b-79e2-421b-9006-c73528bb29db", + "x-ms-routing-request-id": "WESTUS2:20210519T190131Z:6d987a5b-79e2-421b-9006-c73528bb29db" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-a62bba66404e0d4fae6068fcbafb44ae-fbf651a4e6a3e249-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-efbae915a992094aa692cf5710a0cabc-c2ebf343f3a68944-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7c16de3ea2215c13961a3b1c0ce9393", "x-ms-return-client-request-id": "true" }, @@ -58,20 +59,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 21:19:36 GMT", + "Date": "Wed, 19 May 2021 19:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7399ffec-0b87-4efd-8025-59246afa0560", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "7399ffec-0b87-4efd-8025-59246afa0560", - "x-ms-routing-request-id": "WESTUS2:20210512T211936Z:7399ffec-0b87-4efd-8025-59246afa0560" + "x-ms-correlation-request-id": "d3a929f3-1c1c-4658-a604-e59641920d19", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "d3a929f3-1c1c-4658-a604-e59641920d19", + "x-ms-routing-request-id": "WESTUS2:20210519T190132Z:d3a929f3-1c1c-4658-a604-e59641920d19" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8986", @@ -92,7 +93,7 @@ "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210512.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7ff17edafe1050ffbfffe793a7aeef6d", "x-ms-return-client-request-id": "true" }, @@ -104,15 +105,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 12 May 2021 21:19:36 GMT", + "Date": "Wed, 19 May 2021 19:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "169c52e9-03d1-4f88-91c9-dec90536621e", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "169c52e9-03d1-4f88-91c9-dec90536621e", - "x-ms-routing-request-id": "WESTUS2:20210512T211937Z:169c52e9-03d1-4f88-91c9-dec90536621e" + "x-ms-correlation-request-id": "9a821d65-a050-44fb-8c5e-253204323cfb", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "9a821d65-a050-44fb-8c5e-253204323cfb", + "x-ms-routing-request-id": "WESTUS2:20210519T190133Z:9a821d65-a050-44fb-8c5e-253204323cfb" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8986", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources().json index b7299b6dc012..ad54e6ea3acb 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:32:30 GMT", + "Date": "Wed, 19 May 2021 19:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b213dea-27d7-4bd3-90c5-03af686b4077", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "7b213dea-27d7-4bd3-90c5-03af686b4077", - "x-ms-routing-request-id": "WESTUS2:20210507T203231Z:7b213dea-27d7-4bd3-90c5-03af686b4077" + "x-ms-correlation-request-id": "4d7d1b0d-1735-4ba3-a17a-fbbba906f5ee", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "4d7d1b0d-1735-4ba3-a17a-fbbba906f5ee", + "x-ms-routing-request-id": "WESTUS2:20210519T190133Z:4d7d1b0d-1735-4ba3-a17a-fbbba906f5ee" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +49,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-04eb1b00767f3e4dbea454e14497f3a1-d2b8f6c07164db45-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-27aa784989c8eb4a84ea034d9fa20973-2a8642d84edead4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d76040e41a092731af71dce74da7833", "x-ms-return-client-request-id": "true" }, @@ -63,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:32:31 GMT", + "Date": "Wed, 19 May 2021 19:01:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a53501ed-c4d7-4967-962a-7a3e6f6d7be9", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "a53501ed-c4d7-4967-962a-7a3e6f6d7be9", - "x-ms-routing-request-id": "WESTUS2:20210507T203231Z:a53501ed-c4d7-4967-962a-7a3e6f6d7be9" + "x-ms-correlation-request-id": "f1120882-3b6c-494c-a280-eb6a6f882f0b", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "f1120882-3b6c-494c-a280-eb6a6f882f0b", + "x-ms-routing-request-id": "WESTUS2:20210519T190134Z:f1120882-3b6c-494c-a280-eb6a6f882f0b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2574", @@ -92,8 +92,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-a866c77c590aa441a9ee94f13fc1bd96-b6f062e883478145-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-283c9f9bec20414da1f24bf7dc777eb5-474964ad7e981d45-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "00745b9292fb7b23b1e64c1a3b2733c4", "x-ms-return-client-request-id": "true" }, @@ -106,15 +106,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:32:31 GMT", + "Date": "Wed, 19 May 2021 19:01:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e030d26-eb47-4f13-935e-d015faf754d9", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "2e030d26-eb47-4f13-935e-d015faf754d9", - "x-ms-routing-request-id": "WESTUS2:20210507T203232Z:2e030d26-eb47-4f13-935e-d015faf754d9" + "x-ms-correlation-request-id": "879b304f-c5b3-40cd-bff5-b715f9f0e6b2", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "879b304f-c5b3-40cd-bff5-b715f9f0e6b2", + "x-ms-routing-request-id": "WESTUS2:20210519T190134Z:879b304f-c5b3-40cd-bff5-b715f9f0e6b2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5891", @@ -133,6 +133,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-64aaa9069489cb42a6a6a7a49e6dcb73-666c29ef17760547-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7cfa9b0b73623f47b5da7baf7f391f1d", "x-ms-return-client-request-id": "true" @@ -141,17 +142,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "52611", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:32:31 GMT", + "Date": "Wed, 19 May 2021 19:01:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "678c4f43-0253-4dae-a626-b3f4e3197b38", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "678c4f43-0253-4dae-a626-b3f4e3197b38", - "x-ms-routing-request-id": "WESTUS2:20210507T203232Z:678c4f43-0253-4dae-a626-b3f4e3197b38" + "x-ms-correlation-request-id": "143e84cf-5bc7-45bb-9c3f-855499d7bb08", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "143e84cf-5bc7-45bb-9c3f-855499d7bb08", + "x-ms-routing-request-id": "WESTUS2:20210519T190134Z:143e84cf-5bc7-45bb-9c3f-855499d7bb08" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -475,6 +476,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -760,6 +765,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -2778,6 +2787,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -3186,6 +3199,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3846,6 +3863,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4034,6 +4055,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4051,7 +4076,8 @@ "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-64aaa9069489cb42a6a6a7a49e6dcb73-d37edc3e22cbb648-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "33edf46d12ab537221ee5a2777dfcfea", "x-ms-return-client-request-id": "true" }, @@ -4071,7 +4097,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 20:32:32 GMT", + "Date": "Wed, 19 May 2021 19:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4081,11 +4107,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "33edf46d12ab537221ee5a2777dfcfea", - "x-ms-correlation-request-id": "3ded3f5c-b36f-41b8-ab6d-0911cf96deb7", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "b7729ae7-211b-453e-b48b-b6ce855ad190", - "x-ms-routing-request-id": "WESTUS2:20210507T203233Z:3ded3f5c-b36f-41b8-ab6d-0911cf96deb7" + "x-ms-correlation-request-id": "da194364-47a1-4315-8a8c-b4b848e187f0", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1193", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "6e7a8366-108c-4c11-8bcb-94be2d4925f9", + "x-ms-routing-request-id": "WESTUS2:20210519T190135Z:da194364-47a1-4315-8a8c-b4b848e187f0" }, "ResponseBody": [ "{\r\n", @@ -4112,7 +4138,7 @@ "Authorization": "Sanitized", "Content-Length": "256", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "33cdfc2d9146f8e029a75b731820c8d5", "x-ms-return-client-request-id": "true" }, @@ -4126,17 +4152,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:32 GMT", + "Date": "Wed, 19 May 2021 19:01:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a368a9c2-6c5a-4e6c-8cfd-0edb02a41c6b", + "x-ms-correlation-request-id": "60c614bf-14c0-4bfa-ac05-1749d20c110c", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "a368a9c2-6c5a-4e6c-8cfd-0edb02a41c6b", - "x-ms-routing-request-id": "WESTUS2:20210507T203233Z:a368a9c2-6c5a-4e6c-8cfd-0edb02a41c6b" + "x-ms-request-id": "60c614bf-14c0-4bfa-ac05-1749d20c110c", + "x-ms-routing-request-id": "WESTUS2:20210519T190135Z:60c614bf-14c0-4bfa-ac05-1749d20c110c" }, "ResponseBody": [] }, @@ -4145,7 +4171,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7bf9adbc9b1279a308d5b3900dbccf0d", "x-ms-return-client-request-id": "true" }, @@ -4154,17 +4180,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:32 GMT", + "Date": "Wed, 19 May 2021 19:01:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "476f7c16-cf70-47ad-9e7c-708e78245055", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "476f7c16-cf70-47ad-9e7c-708e78245055", - "x-ms-routing-request-id": "WESTUS2:20210507T203233Z:476f7c16-cf70-47ad-9e7c-708e78245055" + "x-ms-correlation-request-id": "88c1d3dd-2bf9-4cf9-a882-29e176aaa05d", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "88c1d3dd-2bf9-4cf9-a882-29e176aaa05d", + "x-ms-routing-request-id": "WESTUS2:20210519T190135Z:88c1d3dd-2bf9-4cf9-a882-29e176aaa05d" }, "ResponseBody": [] }, @@ -4173,7 +4199,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "15ac70f89a26ea4117c86f418bf52c6e", "x-ms-return-client-request-id": "true" }, @@ -4182,17 +4208,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:33 GMT", + "Date": "Wed, 19 May 2021 19:01:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc73a6b2-683f-4e36-96de-558f42972f5f", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "dc73a6b2-683f-4e36-96de-558f42972f5f", - "x-ms-routing-request-id": "WESTUS2:20210507T203234Z:dc73a6b2-683f-4e36-96de-558f42972f5f" + "x-ms-correlation-request-id": "6d651bea-5152-4b2d-a18c-c18fc719dc15", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "6d651bea-5152-4b2d-a18c-c18fc719dc15", + "x-ms-routing-request-id": "WESTUS2:20210519T190136Z:6d651bea-5152-4b2d-a18c-c18fc719dc15" }, "ResponseBody": [] }, @@ -4201,7 +4227,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ab605fc4c266fc3ee2c8e968e54f707", "x-ms-return-client-request-id": "true" }, @@ -4210,17 +4236,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:35 GMT", + "Date": "Wed, 19 May 2021 19:01:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86576ff5-6f90-421a-8230-7f559aab235b", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "86576ff5-6f90-421a-8230-7f559aab235b", - "x-ms-routing-request-id": "WESTUS2:20210507T203235Z:86576ff5-6f90-421a-8230-7f559aab235b" + "x-ms-correlation-request-id": "bbd8aa53-4442-4aa4-9e2f-aa507501dae1", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "bbd8aa53-4442-4aa4-9e2f-aa507501dae1", + "x-ms-routing-request-id": "WESTUS2:20210519T190137Z:bbd8aa53-4442-4aa4-9e2f-aa507501dae1" }, "ResponseBody": [] }, @@ -4229,7 +4255,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5bf1f836960e222f6c0f644a2b61ee12", "x-ms-return-client-request-id": "true" }, @@ -4238,17 +4264,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:36 GMT", + "Date": "Wed, 19 May 2021 19:01:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "660feb8d-0a4a-4855-a886-592599ef43ff", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "660feb8d-0a4a-4855-a886-592599ef43ff", - "x-ms-routing-request-id": "WESTUS2:20210507T203236Z:660feb8d-0a4a-4855-a886-592599ef43ff" + "x-ms-correlation-request-id": "e173dd1f-7db4-4168-aa34-bceec3bc898a", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "e173dd1f-7db4-4168-aa34-bceec3bc898a", + "x-ms-routing-request-id": "WESTUS2:20210519T190138Z:e173dd1f-7db4-4168-aa34-bceec3bc898a" }, "ResponseBody": [] }, @@ -4257,7 +4283,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "079445a86405abe7ad3c27fa0caa5bc2", "x-ms-return-client-request-id": "true" }, @@ -4266,17 +4292,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:37 GMT", + "Date": "Wed, 19 May 2021 19:01:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fcd2f9e9-903b-4a15-a856-fdea28544e17", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "fcd2f9e9-903b-4a15-a856-fdea28544e17", - "x-ms-routing-request-id": "WESTUS2:20210507T203237Z:fcd2f9e9-903b-4a15-a856-fdea28544e17" + "x-ms-correlation-request-id": "98df7429-732c-4f92-aa71-059b49bbc4ba", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "98df7429-732c-4f92-aa71-059b49bbc4ba", + "x-ms-routing-request-id": "WESTUS2:20210519T190139Z:98df7429-732c-4f92-aa71-059b49bbc4ba" }, "ResponseBody": [] }, @@ -4285,7 +4311,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "920b68d0d0046560d694fe16e878448c", "x-ms-return-client-request-id": "true" }, @@ -4294,17 +4320,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:38 GMT", + "Date": "Wed, 19 May 2021 19:01:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a92f96c7-a33f-4b69-859d-c0ff5c48e8e8", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "a92f96c7-a33f-4b69-859d-c0ff5c48e8e8", - "x-ms-routing-request-id": "WESTUS2:20210507T203238Z:a92f96c7-a33f-4b69-859d-c0ff5c48e8e8" + "x-ms-correlation-request-id": "d0df4325-37b9-4009-8413-5fe537e5985a", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "d0df4325-37b9-4009-8413-5fe537e5985a", + "x-ms-routing-request-id": "WESTUS2:20210519T190140Z:d0df4325-37b9-4009-8413-5fe537e5985a" }, "ResponseBody": [] }, @@ -4313,7 +4339,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "49ee7b3df0c0d2021145add16f3415c1", "x-ms-return-client-request-id": "true" }, @@ -4322,17 +4348,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:39 GMT", + "Date": "Wed, 19 May 2021 19:01:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1135fc84-3474-4854-ab2a-916282d7bb3c", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "1135fc84-3474-4854-ab2a-916282d7bb3c", - "x-ms-routing-request-id": "WESTUS2:20210507T203240Z:1135fc84-3474-4854-ab2a-916282d7bb3c" + "x-ms-correlation-request-id": "70e63596-0635-4343-895d-4fdc4b5afb71", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "70e63596-0635-4343-895d-4fdc4b5afb71", + "x-ms-routing-request-id": "WESTUS2:20210519T190141Z:70e63596-0635-4343-895d-4fdc4b5afb71" }, "ResponseBody": [] }, @@ -4341,7 +4367,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c379a1b45b56d70ee52e317065d0c334", "x-ms-return-client-request-id": "true" }, @@ -4350,17 +4376,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:41 GMT", + "Date": "Wed, 19 May 2021 19:01:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84f6c107-e425-4399-a603-72ec4eea09f6", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "84f6c107-e425-4399-a603-72ec4eea09f6", - "x-ms-routing-request-id": "WESTUS2:20210507T203241Z:84f6c107-e425-4399-a603-72ec4eea09f6" + "x-ms-correlation-request-id": "856d5294-ee26-46a2-bc88-41b6bd274789", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "856d5294-ee26-46a2-bc88-41b6bd274789", + "x-ms-routing-request-id": "WESTUS2:20210519T190142Z:856d5294-ee26-46a2-bc88-41b6bd274789" }, "ResponseBody": [] }, @@ -4369,7 +4395,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90bc9af811bce001653980bf238ef6a1", "x-ms-return-client-request-id": "true" }, @@ -4378,17 +4404,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:42 GMT", + "Date": "Wed, 19 May 2021 19:01:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ad4d78e-57ec-42c3-8802-bdd5bf7c0d97", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "9ad4d78e-57ec-42c3-8802-bdd5bf7c0d97", - "x-ms-routing-request-id": "WESTUS2:20210507T203242Z:9ad4d78e-57ec-42c3-8802-bdd5bf7c0d97" + "x-ms-correlation-request-id": "878d1a35-ed57-42e3-8bf1-5333837bf075", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "878d1a35-ed57-42e3-8bf1-5333837bf075", + "x-ms-routing-request-id": "WESTUS2:20210519T190143Z:878d1a35-ed57-42e3-8bf1-5333837bf075" }, "ResponseBody": [] }, @@ -4397,7 +4423,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46623d7f80ffe1356d166491be926c41", "x-ms-return-client-request-id": "true" }, @@ -4406,17 +4432,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:43 GMT", + "Date": "Wed, 19 May 2021 19:01:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ddf907f2-e8d5-4222-bd2e-5df40bbfa45d", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "ddf907f2-e8d5-4222-bd2e-5df40bbfa45d", - "x-ms-routing-request-id": "WESTUS2:20210507T203243Z:ddf907f2-e8d5-4222-bd2e-5df40bbfa45d" + "x-ms-correlation-request-id": "9b338d11-8de1-4aca-a044-56f73e287552", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "9b338d11-8de1-4aca-a044-56f73e287552", + "x-ms-routing-request-id": "WESTUS2:20210519T190144Z:9b338d11-8de1-4aca-a044-56f73e287552" }, "ResponseBody": [] }, @@ -4425,7 +4451,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d4d879828577a2049f995d1ddb4fb456", "x-ms-return-client-request-id": "true" }, @@ -4434,17 +4460,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:44 GMT", + "Date": "Wed, 19 May 2021 19:01:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d96807a6-a435-4e22-8605-890d032a281f", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "d96807a6-a435-4e22-8605-890d032a281f", - "x-ms-routing-request-id": "WESTUS2:20210507T203244Z:d96807a6-a435-4e22-8605-890d032a281f" + "x-ms-correlation-request-id": "34b9a5e8-b07c-42ad-82fd-0dd4507a0551", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "34b9a5e8-b07c-42ad-82fd-0dd4507a0551", + "x-ms-routing-request-id": "WESTUS2:20210519T190145Z:34b9a5e8-b07c-42ad-82fd-0dd4507a0551" }, "ResponseBody": [] }, @@ -4453,7 +4479,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "27f18f377c6d783564da22a6ad7021d3", "x-ms-return-client-request-id": "true" }, @@ -4462,17 +4488,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:45 GMT", + "Date": "Wed, 19 May 2021 19:01:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f1cc3b7-e74f-4729-8625-57f51e02e43d", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "7f1cc3b7-e74f-4729-8625-57f51e02e43d", - "x-ms-routing-request-id": "WESTUS2:20210507T203245Z:7f1cc3b7-e74f-4729-8625-57f51e02e43d" + "x-ms-correlation-request-id": "ee2d05ec-0cd0-4a81-90e9-d6a384aa6127", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "ee2d05ec-0cd0-4a81-90e9-d6a384aa6127", + "x-ms-routing-request-id": "WESTUS2:20210519T190146Z:ee2d05ec-0cd0-4a81-90e9-d6a384aa6127" }, "ResponseBody": [] }, @@ -4481,7 +4507,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aa3c3fcc22b5f92939c0a6652218061e", "x-ms-return-client-request-id": "true" }, @@ -4490,17 +4516,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:46 GMT", + "Date": "Wed, 19 May 2021 19:01:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fb83d07-f3ab-468e-9c94-07307ce0eb53", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "8fb83d07-f3ab-468e-9c94-07307ce0eb53", - "x-ms-routing-request-id": "WESTUS2:20210507T203246Z:8fb83d07-f3ab-468e-9c94-07307ce0eb53" + "x-ms-correlation-request-id": "35e34b46-d293-42e3-9771-d1f06da31809", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "35e34b46-d293-42e3-9771-d1f06da31809", + "x-ms-routing-request-id": "WESTUS2:20210519T190147Z:35e34b46-d293-42e3-9771-d1f06da31809" }, "ResponseBody": [] }, @@ -4509,7 +4535,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2e5a0d6144a005d443606f9d635df42f", "x-ms-return-client-request-id": "true" }, @@ -4518,17 +4544,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:47 GMT", + "Date": "Wed, 19 May 2021 19:01:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4fddc5b9-07e1-4b5c-918b-2ec9a9f91166", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "4fddc5b9-07e1-4b5c-918b-2ec9a9f91166", - "x-ms-routing-request-id": "WESTUS2:20210507T203247Z:4fddc5b9-07e1-4b5c-918b-2ec9a9f91166" + "x-ms-correlation-request-id": "11aeab28-93f5-4844-bebf-6ae8f6fbf3f3", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "11aeab28-93f5-4844-bebf-6ae8f6fbf3f3", + "x-ms-routing-request-id": "WESTUS2:20210519T190149Z:11aeab28-93f5-4844-bebf-6ae8f6fbf3f3" }, "ResponseBody": [] }, @@ -4537,7 +4563,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c518a770a1215a066f7eeacd5d0554c", "x-ms-return-client-request-id": "true" }, @@ -4546,17 +4572,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:48 GMT", + "Date": "Wed, 19 May 2021 19:01:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4104fd1c-bf4b-4744-96c3-6f7b17e7af6c", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "4104fd1c-bf4b-4744-96c3-6f7b17e7af6c", - "x-ms-routing-request-id": "WESTUS2:20210507T203248Z:4104fd1c-bf4b-4744-96c3-6f7b17e7af6c" + "x-ms-correlation-request-id": "889b1e5e-5c98-42d4-899e-90984fcf782e", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "889b1e5e-5c98-42d4-899e-90984fcf782e", + "x-ms-routing-request-id": "WESTUS2:20210519T190150Z:889b1e5e-5c98-42d4-899e-90984fcf782e" }, "ResponseBody": [] }, @@ -4565,7 +4591,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a04404d4f21687336b376655b28c96db", "x-ms-return-client-request-id": "true" }, @@ -4574,17 +4600,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:49 GMT", + "Date": "Wed, 19 May 2021 19:01:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4be0348-a896-41f4-a35f-91cf5f1a5b92", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "e4be0348-a896-41f4-a35f-91cf5f1a5b92", - "x-ms-routing-request-id": "WESTUS2:20210507T203249Z:e4be0348-a896-41f4-a35f-91cf5f1a5b92" + "x-ms-correlation-request-id": "c82bdf82-81c1-437a-aa2f-c1796b2cd5bc", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "c82bdf82-81c1-437a-aa2f-c1796b2cd5bc", + "x-ms-routing-request-id": "WESTUS2:20210519T190151Z:c82bdf82-81c1-437a-aa2f-c1796b2cd5bc" }, "ResponseBody": [] }, @@ -4593,7 +4619,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "98ed76cc6ac7570c6c44c8a855273072", "x-ms-return-client-request-id": "true" }, @@ -4602,17 +4628,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:50 GMT", + "Date": "Wed, 19 May 2021 19:01:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25e5457c-52b5-44dc-b8d0-e069b186e2e2", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "25e5457c-52b5-44dc-b8d0-e069b186e2e2", - "x-ms-routing-request-id": "WESTUS2:20210507T203250Z:25e5457c-52b5-44dc-b8d0-e069b186e2e2" + "x-ms-correlation-request-id": "0b7e56af-0efd-4e29-b493-baf0a15250c4", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "0b7e56af-0efd-4e29-b493-baf0a15250c4", + "x-ms-routing-request-id": "WESTUS2:20210519T190152Z:0b7e56af-0efd-4e29-b493-baf0a15250c4" }, "ResponseBody": [] }, @@ -4621,7 +4647,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ec8230b5419841957c931dba34b63d9", "x-ms-return-client-request-id": "true" }, @@ -4630,17 +4656,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:51 GMT", + "Date": "Wed, 19 May 2021 19:01:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ff83414-9001-49d2-b2ce-2848cda10216", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "1ff83414-9001-49d2-b2ce-2848cda10216", - "x-ms-routing-request-id": "WESTUS2:20210507T203251Z:1ff83414-9001-49d2-b2ce-2848cda10216" + "x-ms-correlation-request-id": "064888be-68e5-4920-b62f-57733b40cccf", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "064888be-68e5-4920-b62f-57733b40cccf", + "x-ms-routing-request-id": "WESTUS2:20210519T190153Z:064888be-68e5-4920-b62f-57733b40cccf" }, "ResponseBody": [] }, @@ -4649,7 +4675,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ee01361bce26a85f8ed33d12a8a3143", "x-ms-return-client-request-id": "true" }, @@ -4658,17 +4684,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:52 GMT", + "Date": "Wed, 19 May 2021 19:01:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d470ce3-de77-4c47-a082-508dc9da696c", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "8d470ce3-de77-4c47-a082-508dc9da696c", - "x-ms-routing-request-id": "WESTUS2:20210507T203252Z:8d470ce3-de77-4c47-a082-508dc9da696c" + "x-ms-correlation-request-id": "a108724e-d5ec-4e67-84c0-3a8485c249f6", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "a108724e-d5ec-4e67-84c0-3a8485c249f6", + "x-ms-routing-request-id": "WESTUS2:20210519T190154Z:a108724e-d5ec-4e67-84c0-3a8485c249f6" }, "ResponseBody": [] }, @@ -4677,7 +4703,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8e49f30637c477c25d6841fd3830b321", "x-ms-return-client-request-id": "true" }, @@ -4686,17 +4712,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:53 GMT", + "Date": "Wed, 19 May 2021 19:01:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cdf950af-5ca4-4138-8df1-d24958f41236", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "cdf950af-5ca4-4138-8df1-d24958f41236", - "x-ms-routing-request-id": "WESTUS2:20210507T203253Z:cdf950af-5ca4-4138-8df1-d24958f41236" + "x-ms-correlation-request-id": "1c33972b-42f5-4000-9144-e85a73c7f46b", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "1c33972b-42f5-4000-9144-e85a73c7f46b", + "x-ms-routing-request-id": "WESTUS2:20210519T190155Z:1c33972b-42f5-4000-9144-e85a73c7f46b" }, "ResponseBody": [] }, @@ -4705,7 +4731,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4247efe0d1464e909d5e662c20485acc", "x-ms-return-client-request-id": "true" }, @@ -4714,17 +4740,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:54 GMT", + "Date": "Wed, 19 May 2021 19:01:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8aab554b-c652-4ac1-bd42-969b65a207c8", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-request-id": "8aab554b-c652-4ac1-bd42-969b65a207c8", - "x-ms-routing-request-id": "WESTUS2:20210507T203254Z:8aab554b-c652-4ac1-bd42-969b65a207c8" + "x-ms-correlation-request-id": "ff846d18-4ecd-40d6-af01-f10582611894", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "ff846d18-4ecd-40d6-af01-f10582611894", + "x-ms-routing-request-id": "WESTUS2:20210519T190156Z:ff846d18-4ecd-40d6-af01-f10582611894" }, "ResponseBody": [] }, @@ -4733,7 +4759,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "afd4ed97d4012a15516801797a8731c7", "x-ms-return-client-request-id": "true" }, @@ -4742,17 +4768,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:55 GMT", + "Date": "Wed, 19 May 2021 19:01:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b272fad-efac-4335-b709-4d4aa495eb8b", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "1b272fad-efac-4335-b709-4d4aa495eb8b", - "x-ms-routing-request-id": "WESTUS2:20210507T203255Z:1b272fad-efac-4335-b709-4d4aa495eb8b" + "x-ms-correlation-request-id": "badf36b8-0255-4b20-86f3-08826a806f29", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "badf36b8-0255-4b20-86f3-08826a806f29", + "x-ms-routing-request-id": "WESTUS2:20210519T190157Z:badf36b8-0255-4b20-86f3-08826a806f29" }, "ResponseBody": [] }, @@ -4761,7 +4787,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3bf01239ef4335fd63fbf066d0955715", "x-ms-return-client-request-id": "true" }, @@ -4770,17 +4796,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:56 GMT", + "Date": "Wed, 19 May 2021 19:01:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6003901e-e348-43ac-9099-2a4b3122fa4d", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "6003901e-e348-43ac-9099-2a4b3122fa4d", - "x-ms-routing-request-id": "WESTUS2:20210507T203256Z:6003901e-e348-43ac-9099-2a4b3122fa4d" + "x-ms-correlation-request-id": "a49ccd44-d0f4-496a-98db-99f2d8d67f68", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "a49ccd44-d0f4-496a-98db-99f2d8d67f68", + "x-ms-routing-request-id": "WESTUS2:20210519T190158Z:a49ccd44-d0f4-496a-98db-99f2d8d67f68" }, "ResponseBody": [] }, @@ -4789,7 +4815,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4b66750e035c0c1fd91cf1ddd016d416", "x-ms-return-client-request-id": "true" }, @@ -4798,17 +4824,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:57 GMT", + "Date": "Wed, 19 May 2021 19:01:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a7b8d26-0c6d-45ca-9dad-c9fdfaad6fcc", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "4a7b8d26-0c6d-45ca-9dad-c9fdfaad6fcc", - "x-ms-routing-request-id": "WESTUS2:20210507T203257Z:4a7b8d26-0c6d-45ca-9dad-c9fdfaad6fcc" + "x-ms-correlation-request-id": "12646622-68a3-40b9-838a-e922c5ee1ac9", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "12646622-68a3-40b9-838a-e922c5ee1ac9", + "x-ms-routing-request-id": "WESTUS2:20210519T190159Z:12646622-68a3-40b9-838a-e922c5ee1ac9" }, "ResponseBody": [] }, @@ -4817,7 +4843,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0ef29f2c1f57a789f09e4c06e3af59bb", "x-ms-return-client-request-id": "true" }, @@ -4826,17 +4852,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:58 GMT", + "Date": "Wed, 19 May 2021 19:02:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f48df89b-d476-4a7c-991e-f2481f79424f", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "f48df89b-d476-4a7c-991e-f2481f79424f", - "x-ms-routing-request-id": "WESTUS2:20210507T203259Z:f48df89b-d476-4a7c-991e-f2481f79424f" + "x-ms-correlation-request-id": "676f7bb5-d82b-4aa7-97d6-3936056fadf1", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "676f7bb5-d82b-4aa7-97d6-3936056fadf1", + "x-ms-routing-request-id": "WESTUS2:20210519T190200Z:676f7bb5-d82b-4aa7-97d6-3936056fadf1" }, "ResponseBody": [] }, @@ -4845,7 +4871,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "056bec11e521356af3e46126fe1f654c", "x-ms-return-client-request-id": "true" }, @@ -4854,17 +4880,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:32:59 GMT", + "Date": "Wed, 19 May 2021 19:02:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a15dbc0e-2145-4e98-a0e3-275757aed4e1", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "a15dbc0e-2145-4e98-a0e3-275757aed4e1", - "x-ms-routing-request-id": "WESTUS2:20210507T203300Z:a15dbc0e-2145-4e98-a0e3-275757aed4e1" + "x-ms-correlation-request-id": "b1f8491e-1244-40e6-993f-e1f273b03ec8", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "b1f8491e-1244-40e6-993f-e1f273b03ec8", + "x-ms-routing-request-id": "WESTUS2:20210519T190201Z:b1f8491e-1244-40e6-993f-e1f273b03ec8" }, "ResponseBody": [] }, @@ -4873,7 +4899,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3039da2749a2eebdebbe5bbdb718282a", "x-ms-return-client-request-id": "true" }, @@ -4882,17 +4908,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:00 GMT", + "Date": "Wed, 19 May 2021 19:02:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68dcd81d-d221-4588-b9a2-a3e3dbce1a1c", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "68dcd81d-d221-4588-b9a2-a3e3dbce1a1c", - "x-ms-routing-request-id": "WESTUS2:20210507T203301Z:68dcd81d-d221-4588-b9a2-a3e3dbce1a1c" + "x-ms-correlation-request-id": "bbac1984-9b2b-4285-803c-41d7a0cdc290", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "bbac1984-9b2b-4285-803c-41d7a0cdc290", + "x-ms-routing-request-id": "WESTUS2:20210519T190202Z:bbac1984-9b2b-4285-803c-41d7a0cdc290" }, "ResponseBody": [] }, @@ -4901,7 +4927,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e3cc35c3ceab46f534bd1a72be63a9d0", "x-ms-return-client-request-id": "true" }, @@ -4910,17 +4936,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:01 GMT", + "Date": "Wed, 19 May 2021 19:02:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e8616ed-19db-425f-8376-fafa85721245", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "5e8616ed-19db-425f-8376-fafa85721245", - "x-ms-routing-request-id": "WESTUS2:20210507T203302Z:5e8616ed-19db-425f-8376-fafa85721245" + "x-ms-correlation-request-id": "90f8ca26-bac8-462a-a45e-629f645f5a29", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "90f8ca26-bac8-462a-a45e-629f645f5a29", + "x-ms-routing-request-id": "WESTUS2:20210519T190203Z:90f8ca26-bac8-462a-a45e-629f645f5a29" }, "ResponseBody": [] }, @@ -4929,7 +4955,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "08dfff392875c8182e7c19628aad7dda", "x-ms-return-client-request-id": "true" }, @@ -4938,17 +4964,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:02 GMT", + "Date": "Wed, 19 May 2021 19:02:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6cd3c23-eb7c-4038-8c24-1054a25ad65f", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "d6cd3c23-eb7c-4038-8c24-1054a25ad65f", - "x-ms-routing-request-id": "WESTUS2:20210507T203303Z:d6cd3c23-eb7c-4038-8c24-1054a25ad65f" + "x-ms-correlation-request-id": "170f2536-1866-475b-935b-930c8884b735", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "170f2536-1866-475b-935b-930c8884b735", + "x-ms-routing-request-id": "WESTUS2:20210519T190204Z:170f2536-1866-475b-935b-930c8884b735" }, "ResponseBody": [] }, @@ -4957,7 +4983,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c86336bb815258a1e5f2fbe52e4a3088", "x-ms-return-client-request-id": "true" }, @@ -4966,17 +4992,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:03 GMT", + "Date": "Wed, 19 May 2021 19:02:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ebb109c-b3fe-4457-a247-b2f46b496bca", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "5ebb109c-b3fe-4457-a247-b2f46b496bca", - "x-ms-routing-request-id": "WESTUS2:20210507T203304Z:5ebb109c-b3fe-4457-a247-b2f46b496bca" + "x-ms-correlation-request-id": "5df8e721-a5f2-4731-b1ad-18e4da705e86", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "5df8e721-a5f2-4731-b1ad-18e4da705e86", + "x-ms-routing-request-id": "WESTUS2:20210519T190205Z:5df8e721-a5f2-4731-b1ad-18e4da705e86" }, "ResponseBody": [] }, @@ -4985,7 +5011,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b8838a151f389ab41c04b42eb492bb87", "x-ms-return-client-request-id": "true" }, @@ -4994,17 +5020,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:04 GMT", + "Date": "Wed, 19 May 2021 19:02:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "540821d7-f326-46b0-ac80-a94d8a406711", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "540821d7-f326-46b0-ac80-a94d8a406711", - "x-ms-routing-request-id": "WESTUS2:20210507T203305Z:540821d7-f326-46b0-ac80-a94d8a406711" + "x-ms-correlation-request-id": "3e36941b-7257-41f6-b880-42ad495b0907", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "3e36941b-7257-41f6-b880-42ad495b0907", + "x-ms-routing-request-id": "WESTUS2:20210519T190206Z:3e36941b-7257-41f6-b880-42ad495b0907" }, "ResponseBody": [] }, @@ -5013,7 +5039,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87b64040e0ffb77e5e8723832d339ae3", "x-ms-return-client-request-id": "true" }, @@ -5022,17 +5048,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:06 GMT", + "Date": "Wed, 19 May 2021 19:02:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a1f80f3-899b-4a0d-a68d-034e9ea450ef", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "6a1f80f3-899b-4a0d-a68d-034e9ea450ef", - "x-ms-routing-request-id": "WESTUS2:20210507T203306Z:6a1f80f3-899b-4a0d-a68d-034e9ea450ef" + "x-ms-correlation-request-id": "9a563087-2c84-47d2-964a-8cc6c745be3b", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "9a563087-2c84-47d2-964a-8cc6c745be3b", + "x-ms-routing-request-id": "WESTUS2:20210519T190207Z:9a563087-2c84-47d2-964a-8cc6c745be3b" }, "ResponseBody": [] }, @@ -5041,7 +5067,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "004d914cc5299ca182c9ac4ecc72a352", "x-ms-return-client-request-id": "true" }, @@ -5050,17 +5076,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:07 GMT", + "Date": "Wed, 19 May 2021 19:02:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b48bd1a3-f0f0-4739-bb5a-53bd6a4e1c6b", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "b48bd1a3-f0f0-4739-bb5a-53bd6a4e1c6b", - "x-ms-routing-request-id": "WESTUS2:20210507T203307Z:b48bd1a3-f0f0-4739-bb5a-53bd6a4e1c6b" + "x-ms-correlation-request-id": "10a53d1f-b72f-4d40-b520-96a17daf61b9", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "10a53d1f-b72f-4d40-b520-96a17daf61b9", + "x-ms-routing-request-id": "WESTUS2:20210519T190208Z:10a53d1f-b72f-4d40-b520-96a17daf61b9" }, "ResponseBody": [] }, @@ -5069,7 +5095,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eda57436a89434880ccb5ab1fc316de9", "x-ms-return-client-request-id": "true" }, @@ -5078,17 +5104,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:08 GMT", + "Date": "Wed, 19 May 2021 19:02:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa9152ba-5244-47c3-a0e3-b3d71b0b2747", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "aa9152ba-5244-47c3-a0e3-b3d71b0b2747", - "x-ms-routing-request-id": "WESTUS2:20210507T203308Z:aa9152ba-5244-47c3-a0e3-b3d71b0b2747" + "x-ms-correlation-request-id": "37e034c8-2da8-4d9e-b600-06496c773d23", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "37e034c8-2da8-4d9e-b600-06496c773d23", + "x-ms-routing-request-id": "WESTUS2:20210519T190209Z:37e034c8-2da8-4d9e-b600-06496c773d23" }, "ResponseBody": [] }, @@ -5097,7 +5123,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23e2d16abb457a5e9e1a0536342febeb", "x-ms-return-client-request-id": "true" }, @@ -5106,17 +5132,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:09 GMT", + "Date": "Wed, 19 May 2021 19:02:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "993eca3a-a390-43a3-a751-5acdc9af99e1", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "993eca3a-a390-43a3-a751-5acdc9af99e1", - "x-ms-routing-request-id": "WESTUS2:20210507T203309Z:993eca3a-a390-43a3-a751-5acdc9af99e1" + "x-ms-correlation-request-id": "a59db560-e07d-4691-a37e-0a4cfe143fc7", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "a59db560-e07d-4691-a37e-0a4cfe143fc7", + "x-ms-routing-request-id": "WESTUS2:20210519T190210Z:a59db560-e07d-4691-a37e-0a4cfe143fc7" }, "ResponseBody": [] }, @@ -5125,7 +5151,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b84cd0e3ac8ea34f0818f45d6befa051", "x-ms-return-client-request-id": "true" }, @@ -5134,17 +5160,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:10 GMT", + "Date": "Wed, 19 May 2021 19:02:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b2b3df2-0a55-4e08-86d3-a83e6ca48d32", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "1b2b3df2-0a55-4e08-86d3-a83e6ca48d32", - "x-ms-routing-request-id": "WESTUS2:20210507T203310Z:1b2b3df2-0a55-4e08-86d3-a83e6ca48d32" + "x-ms-correlation-request-id": "293b9d83-d485-4eff-b8a0-7d71d8a1379d", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "293b9d83-d485-4eff-b8a0-7d71d8a1379d", + "x-ms-routing-request-id": "WESTUS2:20210519T190211Z:293b9d83-d485-4eff-b8a0-7d71d8a1379d" }, "ResponseBody": [] }, @@ -5153,7 +5179,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fbe4c25c80907b0c162a4f79a35200dc", "x-ms-return-client-request-id": "true" }, @@ -5162,17 +5188,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:11 GMT", + "Date": "Wed, 19 May 2021 19:02:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db5d04e4-eb2c-461e-bef3-3d55aba8c82a", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "db5d04e4-eb2c-461e-bef3-3d55aba8c82a", - "x-ms-routing-request-id": "WESTUS2:20210507T203311Z:db5d04e4-eb2c-461e-bef3-3d55aba8c82a" + "x-ms-correlation-request-id": "acbe2fe3-a2b8-474c-a370-2730d0d5fd92", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "acbe2fe3-a2b8-474c-a370-2730d0d5fd92", + "x-ms-routing-request-id": "WESTUS2:20210519T190212Z:acbe2fe3-a2b8-474c-a370-2730d0d5fd92" }, "ResponseBody": [] }, @@ -5181,7 +5207,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2bce6ee0b4e4bd5b813e1a2dc6000faf", "x-ms-return-client-request-id": "true" }, @@ -5190,17 +5216,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:12 GMT", + "Date": "Wed, 19 May 2021 19:02:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2ab9f7a-f6c3-4c16-94cf-a000374bad24", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "d2ab9f7a-f6c3-4c16-94cf-a000374bad24", - "x-ms-routing-request-id": "WESTUS2:20210507T203312Z:d2ab9f7a-f6c3-4c16-94cf-a000374bad24" + "x-ms-correlation-request-id": "f020db91-d933-4588-8dbf-fa81ef574dbb", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "f020db91-d933-4588-8dbf-fa81ef574dbb", + "x-ms-routing-request-id": "WESTUS2:20210519T190213Z:f020db91-d933-4588-8dbf-fa81ef574dbb" }, "ResponseBody": [] }, @@ -5209,7 +5235,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71dab47aef4b625ac3d1a2635dd600b6", "x-ms-return-client-request-id": "true" }, @@ -5218,17 +5244,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:13 GMT", + "Date": "Wed, 19 May 2021 19:02:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "22e7e462-43e3-45c4-907f-b0fe4b215604", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "22e7e462-43e3-45c4-907f-b0fe4b215604", - "x-ms-routing-request-id": "WESTUS2:20210507T203313Z:22e7e462-43e3-45c4-907f-b0fe4b215604" + "x-ms-correlation-request-id": "b25556c7-32b4-4548-ad90-b74eaf01472f", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "b25556c7-32b4-4548-ad90-b74eaf01472f", + "x-ms-routing-request-id": "WESTUS2:20210519T190214Z:b25556c7-32b4-4548-ad90-b74eaf01472f" }, "ResponseBody": [] }, @@ -5237,7 +5263,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fc7c18187420a76c67267a5266dfb415", "x-ms-return-client-request-id": "true" }, @@ -5246,17 +5272,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:14 GMT", + "Date": "Wed, 19 May 2021 19:02:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aeb57dbe-a024-4947-962e-1998876ee27c", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "aeb57dbe-a024-4947-962e-1998876ee27c", - "x-ms-routing-request-id": "WESTUS2:20210507T203314Z:aeb57dbe-a024-4947-962e-1998876ee27c" + "x-ms-correlation-request-id": "32a6cf17-a876-4868-b2f8-f96ed7450891", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "32a6cf17-a876-4868-b2f8-f96ed7450891", + "x-ms-routing-request-id": "WESTUS2:20210519T190215Z:32a6cf17-a876-4868-b2f8-f96ed7450891" }, "ResponseBody": [] }, @@ -5265,7 +5291,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "efffa01b8e77f191146c671311f760ab", "x-ms-return-client-request-id": "true" }, @@ -5274,17 +5300,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:15 GMT", + "Date": "Wed, 19 May 2021 19:02:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c3b3e18-0adc-476b-9698-0e49eabf57c5", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "1c3b3e18-0adc-476b-9698-0e49eabf57c5", - "x-ms-routing-request-id": "WESTUS2:20210507T203315Z:1c3b3e18-0adc-476b-9698-0e49eabf57c5" + "x-ms-correlation-request-id": "41de0070-a5d9-464f-9e89-effebce89097", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "41de0070-a5d9-464f-9e89-effebce89097", + "x-ms-routing-request-id": "WESTUS2:20210519T190216Z:41de0070-a5d9-464f-9e89-effebce89097" }, "ResponseBody": [] }, @@ -5293,7 +5319,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ae15643e1283058e48320a247508fce4", "x-ms-return-client-request-id": "true" }, @@ -5302,17 +5328,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:16 GMT", + "Date": "Wed, 19 May 2021 19:02:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1705a67-d174-45a9-9495-5ef893fbe1d1", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "c1705a67-d174-45a9-9495-5ef893fbe1d1", - "x-ms-routing-request-id": "WESTUS2:20210507T203316Z:c1705a67-d174-45a9-9495-5ef893fbe1d1" + "x-ms-correlation-request-id": "c779c247-20fe-4204-b4c9-9562ebe7a84a", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "c779c247-20fe-4204-b4c9-9562ebe7a84a", + "x-ms-routing-request-id": "WESTUS2:20210519T190217Z:c779c247-20fe-4204-b4c9-9562ebe7a84a" }, "ResponseBody": [] }, @@ -5321,7 +5347,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc478c1c10d6893f868be8b40d58966f", "x-ms-return-client-request-id": "true" }, @@ -5330,17 +5356,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:17 GMT", + "Date": "Wed, 19 May 2021 19:02:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfea747d-69d2-4e47-89b2-cbc40b4ca5a1", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "cfea747d-69d2-4e47-89b2-cbc40b4ca5a1", - "x-ms-routing-request-id": "WESTUS2:20210507T203317Z:cfea747d-69d2-4e47-89b2-cbc40b4ca5a1" + "x-ms-correlation-request-id": "af6de1e7-3817-4b74-a168-65913034c4f3", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "af6de1e7-3817-4b74-a168-65913034c4f3", + "x-ms-routing-request-id": "WESTUS2:20210519T190219Z:af6de1e7-3817-4b74-a168-65913034c4f3" }, "ResponseBody": [] }, @@ -5349,7 +5375,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0213cfc505ca089212f9a744836c7c0c", "x-ms-return-client-request-id": "true" }, @@ -5358,17 +5384,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:18 GMT", + "Date": "Wed, 19 May 2021 19:02:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0cc37f01-9df7-4963-b5d6-5b0ac785a083", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "0cc37f01-9df7-4963-b5d6-5b0ac785a083", - "x-ms-routing-request-id": "WESTUS2:20210507T203318Z:0cc37f01-9df7-4963-b5d6-5b0ac785a083" + "x-ms-correlation-request-id": "4f179f69-521a-482e-a1c6-06b08788c56b", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "4f179f69-521a-482e-a1c6-06b08788c56b", + "x-ms-routing-request-id": "WESTUS2:20210519T190220Z:4f179f69-521a-482e-a1c6-06b08788c56b" }, "ResponseBody": [] }, @@ -5377,7 +5403,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "84f78370a3af2dd4258b27f72ad9f8ef", "x-ms-return-client-request-id": "true" }, @@ -5386,17 +5412,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:19 GMT", + "Date": "Wed, 19 May 2021 19:02:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3028cf30-3d7d-4f3e-ac73-17d730000a98", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "3028cf30-3d7d-4f3e-ac73-17d730000a98", - "x-ms-routing-request-id": "WESTUS2:20210507T203320Z:3028cf30-3d7d-4f3e-ac73-17d730000a98" + "x-ms-correlation-request-id": "ac8bf05f-2778-43d8-baa0-ae4f16378fed", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "ac8bf05f-2778-43d8-baa0-ae4f16378fed", + "x-ms-routing-request-id": "WESTUS2:20210519T190221Z:ac8bf05f-2778-43d8-baa0-ae4f16378fed" }, "ResponseBody": [] }, @@ -5405,7 +5431,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a55e9b9cfaf41719fa3faadc69fa061a", "x-ms-return-client-request-id": "true" }, @@ -5414,17 +5440,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:20 GMT", + "Date": "Wed, 19 May 2021 19:02:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0dd99aed-4829-4a89-987e-8f46bfbe8960", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "0dd99aed-4829-4a89-987e-8f46bfbe8960", - "x-ms-routing-request-id": "WESTUS2:20210507T203321Z:0dd99aed-4829-4a89-987e-8f46bfbe8960" + "x-ms-correlation-request-id": "cefacc26-3fb6-4a1f-86b9-91f7869d20ee", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "cefacc26-3fb6-4a1f-86b9-91f7869d20ee", + "x-ms-routing-request-id": "WESTUS2:20210519T190222Z:cefacc26-3fb6-4a1f-86b9-91f7869d20ee" }, "ResponseBody": [] }, @@ -5433,7 +5459,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8944db0f126121bffae6dd3fdd9ade38", "x-ms-return-client-request-id": "true" }, @@ -5442,17 +5468,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:21 GMT", + "Date": "Wed, 19 May 2021 19:02:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14986497-5003-42fb-8210-270269a417f6", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "14986497-5003-42fb-8210-270269a417f6", - "x-ms-routing-request-id": "WESTUS2:20210507T203322Z:14986497-5003-42fb-8210-270269a417f6" + "x-ms-correlation-request-id": "a0bb12e8-9e62-4935-bd57-2ae7a1478ef4", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "a0bb12e8-9e62-4935-bd57-2ae7a1478ef4", + "x-ms-routing-request-id": "WESTUS2:20210519T190223Z:a0bb12e8-9e62-4935-bd57-2ae7a1478ef4" }, "ResponseBody": [] }, @@ -5461,7 +5487,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8a8b701d60d761869e08970f8f8c32a", "x-ms-return-client-request-id": "true" }, @@ -5470,17 +5496,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:22 GMT", + "Date": "Wed, 19 May 2021 19:02:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18315873-c8d2-405f-8708-52e3e60ac921", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "18315873-c8d2-405f-8708-52e3e60ac921", - "x-ms-routing-request-id": "WESTUS2:20210507T203323Z:18315873-c8d2-405f-8708-52e3e60ac921" + "x-ms-correlation-request-id": "695bbb56-c2ed-4e94-88fc-df0c791f7e48", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "695bbb56-c2ed-4e94-88fc-df0c791f7e48", + "x-ms-routing-request-id": "WESTUS2:20210519T190224Z:695bbb56-c2ed-4e94-88fc-df0c791f7e48" }, "ResponseBody": [] }, @@ -5489,7 +5515,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4ee80d856e95898edb3cab0d1dda3960", "x-ms-return-client-request-id": "true" }, @@ -5498,17 +5524,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:23 GMT", + "Date": "Wed, 19 May 2021 19:02:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9eec1ba-6d8d-4b60-a398-b1e81cb5033b", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "d9eec1ba-6d8d-4b60-a398-b1e81cb5033b", - "x-ms-routing-request-id": "WESTUS2:20210507T203324Z:d9eec1ba-6d8d-4b60-a398-b1e81cb5033b" + "x-ms-correlation-request-id": "a76b715a-6a21-4d26-9110-3d8e9b7b2d6f", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "a76b715a-6a21-4d26-9110-3d8e9b7b2d6f", + "x-ms-routing-request-id": "WESTUS2:20210519T190225Z:a76b715a-6a21-4d26-9110-3d8e9b7b2d6f" }, "ResponseBody": [] }, @@ -5517,7 +5543,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b2da72601d51390cc3cd1f80884e2802", "x-ms-return-client-request-id": "true" }, @@ -5526,17 +5552,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:24 GMT", + "Date": "Wed, 19 May 2021 19:02:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebebc9bd-367c-4384-8708-c58cfdd34d87", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "ebebc9bd-367c-4384-8708-c58cfdd34d87", - "x-ms-routing-request-id": "WESTUS2:20210507T203325Z:ebebc9bd-367c-4384-8708-c58cfdd34d87" + "x-ms-correlation-request-id": "7be8f30a-e6d2-4721-8908-f669ca79644e", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "7be8f30a-e6d2-4721-8908-f669ca79644e", + "x-ms-routing-request-id": "WESTUS2:20210519T190226Z:7be8f30a-e6d2-4721-8908-f669ca79644e" }, "ResponseBody": [] }, @@ -5545,7 +5571,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0bab2228fb193a2281e0dd02a0a598f", "x-ms-return-client-request-id": "true" }, @@ -5554,17 +5580,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:25 GMT", + "Date": "Wed, 19 May 2021 19:02:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "618b8d0a-1f5a-4bb6-9288-633db6cb7e07", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "618b8d0a-1f5a-4bb6-9288-633db6cb7e07", - "x-ms-routing-request-id": "WESTUS2:20210507T203326Z:618b8d0a-1f5a-4bb6-9288-633db6cb7e07" + "x-ms-correlation-request-id": "ab22afc1-3403-45f4-9c63-652b9e65f22a", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "ab22afc1-3403-45f4-9c63-652b9e65f22a", + "x-ms-routing-request-id": "WESTUS2:20210519T190227Z:ab22afc1-3403-45f4-9c63-652b9e65f22a" }, "ResponseBody": [] }, @@ -5573,7 +5599,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "861029a6111d67d901af8bc74e0d018c", "x-ms-return-client-request-id": "true" }, @@ -5582,17 +5608,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:26 GMT", + "Date": "Wed, 19 May 2021 19:02:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aede5dc6-613c-413d-b840-0c42a962c574", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "aede5dc6-613c-413d-b840-0c42a962c574", - "x-ms-routing-request-id": "WESTUS2:20210507T203327Z:aede5dc6-613c-413d-b840-0c42a962c574" + "x-ms-correlation-request-id": "bfcae9e7-7803-42fe-87a8-96ce88447655", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "bfcae9e7-7803-42fe-87a8-96ce88447655", + "x-ms-routing-request-id": "WESTUS2:20210519T190228Z:bfcae9e7-7803-42fe-87a8-96ce88447655" }, "ResponseBody": [] }, @@ -5601,7 +5627,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6aeaa914691fd1aecf478933103b0eb8", "x-ms-return-client-request-id": "true" }, @@ -5610,17 +5636,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:27 GMT", + "Date": "Wed, 19 May 2021 19:02:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6607980e-834b-4f91-b6dd-d4faaa4e435d", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "6607980e-834b-4f91-b6dd-d4faaa4e435d", - "x-ms-routing-request-id": "WESTUS2:20210507T203328Z:6607980e-834b-4f91-b6dd-d4faaa4e435d" + "x-ms-correlation-request-id": "3f7ef8f3-50d6-49cc-a887-0266c58c4dbe", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "3f7ef8f3-50d6-49cc-a887-0266c58c4dbe", + "x-ms-routing-request-id": "WESTUS2:20210519T190229Z:3f7ef8f3-50d6-49cc-a887-0266c58c4dbe" }, "ResponseBody": [] }, @@ -5629,7 +5655,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5fd98f74a23e10e4d952cf0204db441a", "x-ms-return-client-request-id": "true" }, @@ -5638,17 +5664,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:28 GMT", + "Date": "Wed, 19 May 2021 19:02:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84a70743-c307-4e7e-a7d9-c6cd6c074eac", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "84a70743-c307-4e7e-a7d9-c6cd6c074eac", - "x-ms-routing-request-id": "WESTUS2:20210507T203329Z:84a70743-c307-4e7e-a7d9-c6cd6c074eac" + "x-ms-correlation-request-id": "64ba9cd5-8828-4216-853f-199141f33833", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "64ba9cd5-8828-4216-853f-199141f33833", + "x-ms-routing-request-id": "WESTUS2:20210519T190230Z:64ba9cd5-8828-4216-853f-199141f33833" }, "ResponseBody": [] }, @@ -5657,7 +5683,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "81bc801dee1f3d707a3fb6d588a556c5", "x-ms-return-client-request-id": "true" }, @@ -5666,17 +5692,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:29 GMT", + "Date": "Wed, 19 May 2021 19:02:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f61b143-d003-4e4b-97a5-3f92d3e01146", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "9f61b143-d003-4e4b-97a5-3f92d3e01146", - "x-ms-routing-request-id": "WESTUS2:20210507T203330Z:9f61b143-d003-4e4b-97a5-3f92d3e01146" + "x-ms-correlation-request-id": "25e4f5a9-fe83-46f5-bee5-0cb0f69ada88", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "25e4f5a9-fe83-46f5-bee5-0cb0f69ada88", + "x-ms-routing-request-id": "WESTUS2:20210519T190231Z:25e4f5a9-fe83-46f5-bee5-0cb0f69ada88" }, "ResponseBody": [] }, @@ -5685,7 +5711,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "be53d2a1a233714dc4da91cc9aaccdf4", "x-ms-return-client-request-id": "true" }, @@ -5694,17 +5720,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:30 GMT", + "Date": "Wed, 19 May 2021 19:02:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "925aa712-f94d-4e90-bd64-62fd7fd28eb0", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "925aa712-f94d-4e90-bd64-62fd7fd28eb0", - "x-ms-routing-request-id": "WESTUS2:20210507T203331Z:925aa712-f94d-4e90-bd64-62fd7fd28eb0" + "x-ms-correlation-request-id": "b100d071-d700-4bf9-9aea-ef5ba741e013", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "b100d071-d700-4bf9-9aea-ef5ba741e013", + "x-ms-routing-request-id": "WESTUS2:20210519T190232Z:b100d071-d700-4bf9-9aea-ef5ba741e013" }, "ResponseBody": [] }, @@ -5713,7 +5739,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8f156e028d7f86991f9ce5ffeb0e8833", "x-ms-return-client-request-id": "true" }, @@ -5722,17 +5748,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:31 GMT", + "Date": "Wed, 19 May 2021 19:02:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eefa7abe-cafe-4177-84c7-e30ba86b4032", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-request-id": "eefa7abe-cafe-4177-84c7-e30ba86b4032", - "x-ms-routing-request-id": "WESTUS2:20210507T203332Z:eefa7abe-cafe-4177-84c7-e30ba86b4032" + "x-ms-correlation-request-id": "f2336436-309d-4c63-a273-b25409b22a02", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "f2336436-309d-4c63-a273-b25409b22a02", + "x-ms-routing-request-id": "WESTUS2:20210519T190233Z:f2336436-309d-4c63-a273-b25409b22a02" }, "ResponseBody": [] }, @@ -5741,7 +5767,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "316009fb86887be6324bbc455da3a3cd", "x-ms-return-client-request-id": "true" }, @@ -5750,17 +5776,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:32 GMT", + "Date": "Wed, 19 May 2021 19:02:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4fdc383-cb5f-4338-b30d-3baa3d6e96cb", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "f4fdc383-cb5f-4338-b30d-3baa3d6e96cb", - "x-ms-routing-request-id": "WESTUS2:20210507T203333Z:f4fdc383-cb5f-4338-b30d-3baa3d6e96cb" + "x-ms-correlation-request-id": "7efae90d-63ea-4978-ab5c-f0da8c19f46e", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "7efae90d-63ea-4978-ab5c-f0da8c19f46e", + "x-ms-routing-request-id": "WESTUS2:20210519T190234Z:7efae90d-63ea-4978-ab5c-f0da8c19f46e" }, "ResponseBody": [] }, @@ -5769,7 +5795,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1ad3c271c790134639cc9e97bd4e85b5", "x-ms-return-client-request-id": "true" }, @@ -5778,17 +5804,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:33 GMT", + "Date": "Wed, 19 May 2021 19:02:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "877ef9b8-c6e0-4cab-97d5-a40ed0f8eb0f", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "877ef9b8-c6e0-4cab-97d5-a40ed0f8eb0f", - "x-ms-routing-request-id": "WESTUS2:20210507T203334Z:877ef9b8-c6e0-4cab-97d5-a40ed0f8eb0f" + "x-ms-correlation-request-id": "57a153f2-65ae-4265-a228-053186ad85b3", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "57a153f2-65ae-4265-a228-053186ad85b3", + "x-ms-routing-request-id": "WESTUS2:20210519T190235Z:57a153f2-65ae-4265-a228-053186ad85b3" }, "ResponseBody": [] }, @@ -5797,7 +5823,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90d05e519b4c7c6c879a5d34d053297c", "x-ms-return-client-request-id": "true" }, @@ -5806,17 +5832,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:34 GMT", + "Date": "Wed, 19 May 2021 19:02:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "268c47fb-2aa5-4ed0-ad42-639a0db34b55", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "268c47fb-2aa5-4ed0-ad42-639a0db34b55", - "x-ms-routing-request-id": "WESTUS2:20210507T203335Z:268c47fb-2aa5-4ed0-ad42-639a0db34b55" + "x-ms-correlation-request-id": "f9cc29f1-78b7-4484-ad8f-32a155124e6d", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "f9cc29f1-78b7-4484-ad8f-32a155124e6d", + "x-ms-routing-request-id": "WESTUS2:20210519T190236Z:f9cc29f1-78b7-4484-ad8f-32a155124e6d" }, "ResponseBody": [] }, @@ -5825,7 +5851,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "298d17f86e3b34a3c34cf7bbe74fbde4", "x-ms-return-client-request-id": "true" }, @@ -5834,17 +5860,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:35 GMT", + "Date": "Wed, 19 May 2021 19:02:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12e42174-d888-482d-9690-7686200e6f25", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-request-id": "12e42174-d888-482d-9690-7686200e6f25", - "x-ms-routing-request-id": "WESTUS2:20210507T203336Z:12e42174-d888-482d-9690-7686200e6f25" + "x-ms-correlation-request-id": "d4cb8a7b-9a59-471c-a5c7-fba426d7af9b", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "d4cb8a7b-9a59-471c-a5c7-fba426d7af9b", + "x-ms-routing-request-id": "WESTUS2:20210519T190237Z:d4cb8a7b-9a59-471c-a5c7-fba426d7af9b" }, "ResponseBody": [] }, @@ -5853,7 +5879,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fef306c513d2d681555692f5691142e5", "x-ms-return-client-request-id": "true" }, @@ -5862,17 +5888,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:36 GMT", + "Date": "Wed, 19 May 2021 19:02:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41bc8dc1-bb66-4a56-adc3-c31ebcc58b4b", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-request-id": "41bc8dc1-bb66-4a56-adc3-c31ebcc58b4b", - "x-ms-routing-request-id": "WESTUS2:20210507T203337Z:41bc8dc1-bb66-4a56-adc3-c31ebcc58b4b" + "x-ms-correlation-request-id": "dd2a9834-feb5-4780-99b7-f0fcf1f38568", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "dd2a9834-feb5-4780-99b7-f0fcf1f38568", + "x-ms-routing-request-id": "WESTUS2:20210519T190238Z:dd2a9834-feb5-4780-99b7-f0fcf1f38568" }, "ResponseBody": [] }, @@ -5881,7 +5907,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a59f22a35cc0e379ba9cccffa3b09538", "x-ms-return-client-request-id": "true" }, @@ -5890,17 +5916,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:39 GMT", + "Date": "Wed, 19 May 2021 19:02:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73ddf84d-7188-48c1-8932-596b771a1b72", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-request-id": "73ddf84d-7188-48c1-8932-596b771a1b72", - "x-ms-routing-request-id": "WESTUS2:20210507T203339Z:73ddf84d-7188-48c1-8932-596b771a1b72" + "x-ms-correlation-request-id": "bd6daf95-bd89-427a-b0aa-50d594a753af", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "bd6daf95-bd89-427a-b0aa-50d594a753af", + "x-ms-routing-request-id": "WESTUS2:20210519T190239Z:bd6daf95-bd89-427a-b0aa-50d594a753af" }, "ResponseBody": [] }, @@ -5909,7 +5935,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ca6e79dc2a5fe5aa96b7d3e5dbadcab1", "x-ms-return-client-request-id": "true" }, @@ -5918,17 +5944,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:40 GMT", + "Date": "Wed, 19 May 2021 19:02:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06b27c55-4cff-478f-b04c-7e3dfea5f9ea", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-request-id": "06b27c55-4cff-478f-b04c-7e3dfea5f9ea", - "x-ms-routing-request-id": "WESTUS2:20210507T203340Z:06b27c55-4cff-478f-b04c-7e3dfea5f9ea" + "x-ms-correlation-request-id": "f9bee9b6-3267-4a9e-a14e-605d58898bad", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "f9bee9b6-3267-4a9e-a14e-605d58898bad", + "x-ms-routing-request-id": "WESTUS2:20210519T190240Z:f9bee9b6-3267-4a9e-a14e-605d58898bad" }, "ResponseBody": [] }, @@ -5937,7 +5963,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c517120a18af68238c104336468232a5", "x-ms-return-client-request-id": "true" }, @@ -5946,17 +5972,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:41 GMT", + "Date": "Wed, 19 May 2021 19:02:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a228a419-7801-4efe-ad92-4500cdf85aba", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-request-id": "a228a419-7801-4efe-ad92-4500cdf85aba", - "x-ms-routing-request-id": "WESTUS2:20210507T203341Z:a228a419-7801-4efe-ad92-4500cdf85aba" + "x-ms-correlation-request-id": "64a7e942-e6f3-4623-95e1-260d83407506", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "64a7e942-e6f3-4623-95e1-260d83407506", + "x-ms-routing-request-id": "WESTUS2:20210519T190241Z:64a7e942-e6f3-4623-95e1-260d83407506" }, "ResponseBody": [] }, @@ -5965,7 +5991,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f0185ac178a3798677b90f098994070d", "x-ms-return-client-request-id": "true" }, @@ -5974,17 +6000,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:42 GMT", + "Date": "Wed, 19 May 2021 19:02:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc997a7c-94e6-45ab-ab1d-55dae5b0f5a4", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "cc997a7c-94e6-45ab-ab1d-55dae5b0f5a4", - "x-ms-routing-request-id": "WESTUS2:20210507T203342Z:cc997a7c-94e6-45ab-ab1d-55dae5b0f5a4" + "x-ms-correlation-request-id": "97a26f87-09a3-4c98-b1cf-0f5e34ea5c62", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "97a26f87-09a3-4c98-b1cf-0f5e34ea5c62", + "x-ms-routing-request-id": "WESTUS2:20210519T190242Z:97a26f87-09a3-4c98-b1cf-0f5e34ea5c62" }, "ResponseBody": [] }, @@ -5993,7 +6019,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "91f41ad1d099c48855063d4fe6749e13", "x-ms-return-client-request-id": "true" }, @@ -6002,17 +6028,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:43 GMT", + "Date": "Wed, 19 May 2021 19:02:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c8ea119-6ee0-47c0-84e2-89a75ae9525b", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-request-id": "6c8ea119-6ee0-47c0-84e2-89a75ae9525b", - "x-ms-routing-request-id": "WESTUS2:20210507T203343Z:6c8ea119-6ee0-47c0-84e2-89a75ae9525b" + "x-ms-correlation-request-id": "8d59dced-c09c-45ce-938a-682c4f4e856d", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "8d59dced-c09c-45ce-938a-682c4f4e856d", + "x-ms-routing-request-id": "WESTUS2:20210519T190243Z:8d59dced-c09c-45ce-938a-682c4f4e856d" }, "ResponseBody": [] }, @@ -6021,7 +6047,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "81242e85da95910e8b9e4df5091adff8", "x-ms-return-client-request-id": "true" }, @@ -6030,17 +6056,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:44 GMT", + "Date": "Wed, 19 May 2021 19:02:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42425b85-e247-4206-aeec-3c24c5e0af6f", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-request-id": "42425b85-e247-4206-aeec-3c24c5e0af6f", - "x-ms-routing-request-id": "WESTUS2:20210507T203344Z:42425b85-e247-4206-aeec-3c24c5e0af6f" + "x-ms-correlation-request-id": "fdb2699a-42ad-4dde-a366-5462c72a9224", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "fdb2699a-42ad-4dde-a366-5462c72a9224", + "x-ms-routing-request-id": "WESTUS2:20210519T190244Z:fdb2699a-42ad-4dde-a366-5462c72a9224" }, "ResponseBody": [] }, @@ -6049,7 +6075,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2c653608a08df10bd1539b9c3b369303", "x-ms-return-client-request-id": "true" }, @@ -6058,17 +6084,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:45 GMT", + "Date": "Wed, 19 May 2021 19:02:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b0c6147-8dac-45f0-94b1-99efd3e3e8d1", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-request-id": "4b0c6147-8dac-45f0-94b1-99efd3e3e8d1", - "x-ms-routing-request-id": "WESTUS2:20210507T203345Z:4b0c6147-8dac-45f0-94b1-99efd3e3e8d1" + "x-ms-correlation-request-id": "b9901031-9d71-478d-b62a-bd093e677ecb", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "b9901031-9d71-478d-b62a-bd093e677ecb", + "x-ms-routing-request-id": "WESTUS2:20210519T190245Z:b9901031-9d71-478d-b62a-bd093e677ecb" }, "ResponseBody": [] }, @@ -6077,7 +6103,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a84fb1b866ff7770b6305fa8292bb3b", "x-ms-return-client-request-id": "true" }, @@ -6086,17 +6112,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:46 GMT", + "Date": "Wed, 19 May 2021 19:02:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c3cdfe2-c483-435c-a32f-e6cb5f19b004", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-request-id": "6c3cdfe2-c483-435c-a32f-e6cb5f19b004", - "x-ms-routing-request-id": "WESTUS2:20210507T203346Z:6c3cdfe2-c483-435c-a32f-e6cb5f19b004" + "x-ms-correlation-request-id": "e9d6903c-3271-4d42-8e5d-4be6fc92bb96", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "e9d6903c-3271-4d42-8e5d-4be6fc92bb96", + "x-ms-routing-request-id": "WESTUS2:20210519T190246Z:e9d6903c-3271-4d42-8e5d-4be6fc92bb96" }, "ResponseBody": [] }, @@ -6105,7 +6131,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af474426720ee4862233af413e725555", "x-ms-return-client-request-id": "true" }, @@ -6114,17 +6140,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:47 GMT", + "Date": "Wed, 19 May 2021 19:02:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a29b378-46b0-4fbd-be88-60703a157779", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-request-id": "5a29b378-46b0-4fbd-be88-60703a157779", - "x-ms-routing-request-id": "WESTUS2:20210507T203347Z:5a29b378-46b0-4fbd-be88-60703a157779" + "x-ms-correlation-request-id": "6f46ee75-0f7b-43ef-9bd3-e6f97b7a1998", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "6f46ee75-0f7b-43ef-9bd3-e6f97b7a1998", + "x-ms-routing-request-id": "WESTUS2:20210519T190247Z:6f46ee75-0f7b-43ef-9bd3-e6f97b7a1998" }, "ResponseBody": [] }, @@ -6133,7 +6159,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0dda490b84968288be6e20299b116e3f", "x-ms-return-client-request-id": "true" }, @@ -6142,17 +6168,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:48 GMT", + "Date": "Wed, 19 May 2021 19:02:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fddf7f02-e201-41ba-aa43-dc2146cf60f1", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-request-id": "fddf7f02-e201-41ba-aa43-dc2146cf60f1", - "x-ms-routing-request-id": "WESTUS2:20210507T203348Z:fddf7f02-e201-41ba-aa43-dc2146cf60f1" + "x-ms-correlation-request-id": "3d92a23c-96a6-418b-8d96-0a622fc79aa0", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "3d92a23c-96a6-418b-8d96-0a622fc79aa0", + "x-ms-routing-request-id": "WESTUS2:20210519T190249Z:3d92a23c-96a6-418b-8d96-0a622fc79aa0" }, "ResponseBody": [] }, @@ -6161,7 +6187,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f6756098e3efa9f4749f383cd636b899", "x-ms-return-client-request-id": "true" }, @@ -6170,17 +6196,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:49 GMT", + "Date": "Wed, 19 May 2021 19:02:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a2aac24-3cb3-48d8-a393-94761dacd5f6", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-request-id": "4a2aac24-3cb3-48d8-a393-94761dacd5f6", - "x-ms-routing-request-id": "WESTUS2:20210507T203349Z:4a2aac24-3cb3-48d8-a393-94761dacd5f6" + "x-ms-correlation-request-id": "5d9ffcdc-95b5-4a72-aa49-a6984ed2ede7", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "5d9ffcdc-95b5-4a72-aa49-a6984ed2ede7", + "x-ms-routing-request-id": "WESTUS2:20210519T190250Z:5d9ffcdc-95b5-4a72-aa49-a6984ed2ede7" }, "ResponseBody": [] }, @@ -6189,7 +6215,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38efb00dadb8a1a4bbc4f0a0515d4911", "x-ms-return-client-request-id": "true" }, @@ -6198,17 +6224,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:50 GMT", + "Date": "Wed, 19 May 2021 19:02:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af3b6e65-5740-4c35-a1d1-e95bdcab290e", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "af3b6e65-5740-4c35-a1d1-e95bdcab290e", - "x-ms-routing-request-id": "WESTUS2:20210507T203350Z:af3b6e65-5740-4c35-a1d1-e95bdcab290e" + "x-ms-correlation-request-id": "4dcaaa23-1844-47b0-98e3-8e699c9d20de", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "4dcaaa23-1844-47b0-98e3-8e699c9d20de", + "x-ms-routing-request-id": "WESTUS2:20210519T190251Z:4dcaaa23-1844-47b0-98e3-8e699c9d20de" }, "ResponseBody": [] }, @@ -6217,7 +6243,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dea870c45efc2765553199f64c4cab88", "x-ms-return-client-request-id": "true" }, @@ -6226,17 +6252,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:51 GMT", + "Date": "Wed, 19 May 2021 19:02:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab5de67c-3ec0-44e4-ab95-19401550b8b9", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-request-id": "ab5de67c-3ec0-44e4-ab95-19401550b8b9", - "x-ms-routing-request-id": "WESTUS2:20210507T203351Z:ab5de67c-3ec0-44e4-ab95-19401550b8b9" + "x-ms-correlation-request-id": "17938e0a-9b34-4a24-8b1a-ecd95bcf1ddf", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "17938e0a-9b34-4a24-8b1a-ecd95bcf1ddf", + "x-ms-routing-request-id": "WESTUS2:20210519T190252Z:17938e0a-9b34-4a24-8b1a-ecd95bcf1ddf" }, "ResponseBody": [] }, @@ -6245,7 +6271,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea1b86b53621eb87bbd33b2af2545717", "x-ms-return-client-request-id": "true" }, @@ -6254,17 +6280,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:52 GMT", + "Date": "Wed, 19 May 2021 19:02:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e0d4f0e-b652-4786-be2f-598e6cc5394d", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-request-id": "3e0d4f0e-b652-4786-be2f-598e6cc5394d", - "x-ms-routing-request-id": "WESTUS2:20210507T203352Z:3e0d4f0e-b652-4786-be2f-598e6cc5394d" + "x-ms-correlation-request-id": "e8048ec6-5dc4-441b-b452-13d0e405ed4c", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "e8048ec6-5dc4-441b-b452-13d0e405ed4c", + "x-ms-routing-request-id": "WESTUS2:20210519T190253Z:e8048ec6-5dc4-441b-b452-13d0e405ed4c" }, "ResponseBody": [] }, @@ -6273,7 +6299,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "65772656d98dae9d4ac7e38613ae556f", "x-ms-return-client-request-id": "true" }, @@ -6282,17 +6308,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:53 GMT", + "Date": "Wed, 19 May 2021 19:02:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60c6a1cb-8ba5-4880-b03d-231d2588317e", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-request-id": "60c6a1cb-8ba5-4880-b03d-231d2588317e", - "x-ms-routing-request-id": "WESTUS2:20210507T203353Z:60c6a1cb-8ba5-4880-b03d-231d2588317e" + "x-ms-correlation-request-id": "931bd314-9dc1-4891-838f-27c44f8fa1d5", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "931bd314-9dc1-4891-838f-27c44f8fa1d5", + "x-ms-routing-request-id": "WESTUS2:20210519T190254Z:931bd314-9dc1-4891-838f-27c44f8fa1d5" }, "ResponseBody": [] }, @@ -6301,7 +6327,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cbea68195e418eefe9bd2328233a3501", "x-ms-return-client-request-id": "true" }, @@ -6310,17 +6336,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:54 GMT", + "Date": "Wed, 19 May 2021 19:02:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b40c5ea4-245f-4641-84ee-8fad07edea6a", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-request-id": "b40c5ea4-245f-4641-84ee-8fad07edea6a", - "x-ms-routing-request-id": "WESTUS2:20210507T203354Z:b40c5ea4-245f-4641-84ee-8fad07edea6a" + "x-ms-correlation-request-id": "a39139ff-353f-4d49-bd51-ec8b01e58dcd", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "a39139ff-353f-4d49-bd51-ec8b01e58dcd", + "x-ms-routing-request-id": "WESTUS2:20210519T190255Z:a39139ff-353f-4d49-bd51-ec8b01e58dcd" }, "ResponseBody": [] }, @@ -6329,7 +6355,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "25a081da46d4dcfae96d9f5a5300d70d", "x-ms-return-client-request-id": "true" }, @@ -6338,17 +6364,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:55 GMT", + "Date": "Wed, 19 May 2021 19:02:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "660e60f8-8f9d-4e9a-86a5-b73c9c5d69b3", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-request-id": "660e60f8-8f9d-4e9a-86a5-b73c9c5d69b3", - "x-ms-routing-request-id": "WESTUS2:20210507T203355Z:660e60f8-8f9d-4e9a-86a5-b73c9c5d69b3" + "x-ms-correlation-request-id": "ec6b11dd-36db-4e11-bd7b-3f6a01f4d7ee", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "ec6b11dd-36db-4e11-bd7b-3f6a01f4d7ee", + "x-ms-routing-request-id": "WESTUS2:20210519T190256Z:ec6b11dd-36db-4e11-bd7b-3f6a01f4d7ee" }, "ResponseBody": [] }, @@ -6357,7 +6383,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8a11cb7e8b69f7d636e97cd0b6758b10", "x-ms-return-client-request-id": "true" }, @@ -6366,17 +6392,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:56 GMT", + "Date": "Wed, 19 May 2021 19:02:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e39381f-d188-478a-b4cc-6010e5b3da17", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "3e39381f-d188-478a-b4cc-6010e5b3da17", - "x-ms-routing-request-id": "WESTUS2:20210507T203356Z:3e39381f-d188-478a-b4cc-6010e5b3da17" + "x-ms-correlation-request-id": "90896b44-20bb-4a58-a5a9-ca78902291e5", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "90896b44-20bb-4a58-a5a9-ca78902291e5", + "x-ms-routing-request-id": "WESTUS2:20210519T190257Z:90896b44-20bb-4a58-a5a9-ca78902291e5" }, "ResponseBody": [] }, @@ -6385,7 +6411,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "91ace2922f0ed39a6d0ee2d4bf953be9", "x-ms-return-client-request-id": "true" }, @@ -6394,17 +6420,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:57 GMT", + "Date": "Wed, 19 May 2021 19:02:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e225d6da-b0c8-4e76-b7cd-8491ce4e8a6f", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-request-id": "e225d6da-b0c8-4e76-b7cd-8491ce4e8a6f", - "x-ms-routing-request-id": "WESTUS2:20210507T203358Z:e225d6da-b0c8-4e76-b7cd-8491ce4e8a6f" + "x-ms-correlation-request-id": "2d543637-fefa-49f8-9285-df1da02a185e", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "2d543637-fefa-49f8-9285-df1da02a185e", + "x-ms-routing-request-id": "WESTUS2:20210519T190258Z:2d543637-fefa-49f8-9285-df1da02a185e" }, "ResponseBody": [] }, @@ -6413,7 +6439,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "57a915e6aa294e97aba8eeebca2a2573", "x-ms-return-client-request-id": "true" }, @@ -6422,17 +6448,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:58 GMT", + "Date": "Wed, 19 May 2021 19:02:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3dc46b35-ddf3-402c-89c3-32e714511e18", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-request-id": "3dc46b35-ddf3-402c-89c3-32e714511e18", - "x-ms-routing-request-id": "WESTUS2:20210507T203359Z:3dc46b35-ddf3-402c-89c3-32e714511e18" + "x-ms-correlation-request-id": "0b0e7c62-dfe9-4a73-880a-dff1a4360b6d", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "0b0e7c62-dfe9-4a73-880a-dff1a4360b6d", + "x-ms-routing-request-id": "WESTUS2:20210519T190259Z:0b0e7c62-dfe9-4a73-880a-dff1a4360b6d" }, "ResponseBody": [] }, @@ -6441,7 +6467,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71c78fe145534ffe313e1c5aa90238a1", "x-ms-return-client-request-id": "true" }, @@ -6450,17 +6476,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:33:59 GMT", + "Date": "Wed, 19 May 2021 19:03:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "431e1342-3a4c-43ff-8fd3-23ddb816fa53", - "x-ms-ratelimit-remaining-subscription-reads": "11864", - "x-ms-request-id": "431e1342-3a4c-43ff-8fd3-23ddb816fa53", - "x-ms-routing-request-id": "WESTUS2:20210507T203400Z:431e1342-3a4c-43ff-8fd3-23ddb816fa53" + "x-ms-correlation-request-id": "587f52c5-1571-41f9-9499-6aa55a920520", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "587f52c5-1571-41f9-9499-6aa55a920520", + "x-ms-routing-request-id": "WESTUS2:20210519T190300Z:587f52c5-1571-41f9-9499-6aa55a920520" }, "ResponseBody": [] }, @@ -6469,7 +6495,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a0e992ad33cbe7e64a5ee66640ae0843", "x-ms-return-client-request-id": "true" }, @@ -6478,17 +6504,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:34:00 GMT", + "Date": "Wed, 19 May 2021 19:03:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ef6c0e9-1fa1-4570-985d-48604b96791d", - "x-ms-ratelimit-remaining-subscription-reads": "11863", - "x-ms-request-id": "5ef6c0e9-1fa1-4570-985d-48604b96791d", - "x-ms-routing-request-id": "WESTUS2:20210507T203401Z:5ef6c0e9-1fa1-4570-985d-48604b96791d" + "x-ms-correlation-request-id": "9e15a922-2bb8-4fb4-9353-6ab1d822e35d", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "9e15a922-2bb8-4fb4-9353-6ab1d822e35d", + "x-ms-routing-request-id": "WESTUS2:20210519T190301Z:9e15a922-2bb8-4fb4-9353-6ab1d822e35d" }, "ResponseBody": [] }, @@ -6497,7 +6523,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ff26ee9cacea195165a26ea8e3da4a9", "x-ms-return-client-request-id": "true" }, @@ -6506,17 +6532,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:34:01 GMT", + "Date": "Wed, 19 May 2021 19:03:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73d9e330-ebe5-46c8-b817-558f56ffbc1e", - "x-ms-ratelimit-remaining-subscription-reads": "11862", - "x-ms-request-id": "73d9e330-ebe5-46c8-b817-558f56ffbc1e", - "x-ms-routing-request-id": "WESTUS2:20210507T203402Z:73d9e330-ebe5-46c8-b817-558f56ffbc1e" + "x-ms-correlation-request-id": "80d5671d-c715-4327-ae1b-364d45b020af", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "80d5671d-c715-4327-ae1b-364d45b020af", + "x-ms-routing-request-id": "WESTUS2:20210519T190302Z:80d5671d-c715-4327-ae1b-364d45b020af" }, "ResponseBody": [] }, @@ -6525,7 +6551,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "373d4d6f8440aea8a8df26f55f980e82", "x-ms-return-client-request-id": "true" }, @@ -6534,17 +6560,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:34:02 GMT", + "Date": "Wed, 19 May 2021 19:03:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1fbc255e-5ef1-4222-bd63-eee3b76f1e19", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-request-id": "1fbc255e-5ef1-4222-bd63-eee3b76f1e19", - "x-ms-routing-request-id": "WESTUS2:20210507T203403Z:1fbc255e-5ef1-4222-bd63-eee3b76f1e19" + "x-ms-correlation-request-id": "cab1d960-e692-4632-8693-00645e13cde4", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "cab1d960-e692-4632-8693-00645e13cde4", + "x-ms-routing-request-id": "WESTUS2:20210519T190303Z:cab1d960-e692-4632-8693-00645e13cde4" }, "ResponseBody": [] }, @@ -6553,7 +6579,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3a71d8350810e3d2fc4889700cfc590c", "x-ms-return-client-request-id": "true" }, @@ -6562,17 +6588,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:34:03 GMT", + "Date": "Wed, 19 May 2021 19:03:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c30ae341-01e4-4343-a7a9-3122806627f3", - "x-ms-ratelimit-remaining-subscription-reads": "11860", - "x-ms-request-id": "c30ae341-01e4-4343-a7a9-3122806627f3", - "x-ms-routing-request-id": "WESTUS2:20210507T203404Z:c30ae341-01e4-4343-a7a9-3122806627f3" + "x-ms-correlation-request-id": "cdefcc84-7193-4b11-8cde-ac29731b3c0f", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "cdefcc84-7193-4b11-8cde-ac29731b3c0f", + "x-ms-routing-request-id": "WESTUS2:20210519T190304Z:cdefcc84-7193-4b11-8cde-ac29731b3c0f" }, "ResponseBody": [] }, @@ -6581,7 +6607,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f2f63cb9d1706402c54386eea3a0417e", "x-ms-return-client-request-id": "true" }, @@ -6590,17 +6616,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 20:34:04 GMT", + "Date": "Wed, 19 May 2021 19:03:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5dcd8d9-749b-40df-899e-9dc31800db25", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-request-id": "b5dcd8d9-749b-40df-899e-9dc31800db25", - "x-ms-routing-request-id": "WESTUS2:20210507T203405Z:b5dcd8d9-749b-40df-899e-9dc31800db25" + "x-ms-correlation-request-id": "b70349ac-6879-4012-b11a-96be28b61b92", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "b70349ac-6879-4012-b11a-96be28b61b92", + "x-ms-routing-request-id": "WESTUS2:20210519T190305Z:b70349ac-6879-4012-b11a-96be28b61b92" }, "ResponseBody": [] }, @@ -6609,23 +6635,107 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b5b5a44c69cc66997a5a3af7fa38a2ac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 19:03:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a610b887-8055-4c82-a6f3-a2b4b7acf560", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "a610b887-8055-4c82-a6f3-a2b4b7acf560", + "x-ms-routing-request-id": "WESTUS2:20210519T190306Z:a610b887-8055-4c82-a6f3-a2b4b7acf560" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "223b1a861ba26411d50c75cc82e4405c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 19:03:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "106c1f55-18bf-4070-869c-28d4b732cdf6", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "106c1f55-18bf-4070-869c-28d4b732cdf6", + "x-ms-routing-request-id": "WESTUS2:20210519T190307Z:106c1f55-18bf-4070-869c-28d4b732cdf6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "68230b06a3464f3fa38f7716970a698d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 19 May 2021 19:03:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "69d1eb9e-30ee-43c3-8b1d-bc13d03faa37", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "69d1eb9e-30ee-43c3-8b1d-bc13d03faa37", + "x-ms-routing-request-id": "WESTUS2:20210519T190308Z:69d1eb9e-30ee-43c3-8b1d-bc13d03faa37" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8868daa01f6530db9251dfc0f4cce496", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 07 May 2021 20:34:05 GMT", + "Date": "Wed, 19 May 2021 19:03:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "843c8f50-6f0a-48d7-8fc3-d2dd7d7e58a8", - "x-ms-ratelimit-remaining-subscription-reads": "11858", - "x-ms-request-id": "843c8f50-6f0a-48d7-8fc3-d2dd7d7e58a8", - "x-ms-routing-request-id": "WESTUS2:20210507T203406Z:843c8f50-6f0a-48d7-8fc3-d2dd7d7e58a8" + "x-ms-correlation-request-id": "aed4204c-8ed3-43e1-afef-cebd4f3cef00", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "aed4204c-8ed3-43e1-afef-cebd4f3cef00", + "x-ms-routing-request-id": "WESTUS2:20210519T190309Z:aed4204c-8ed3-43e1-afef-cebd4f3cef00" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources()Async.json index bc9cdd4b3b20..cd0e66e06565 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3133f0eeed38704b97af3f3480b4ffb1-88b15c11843b8347-00", + "Request-Id": "|b84bef30-4e1fac3c59f9802f.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f3e3d74074b9262fa37a99b59ebce8fc", "x-ms-return-client-request-id": "true" @@ -17,15 +17,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:21:44 GMT", + "Date": "Wed, 19 May 2021 19:01:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55105896-2e29-4236-995d-e26d38c49375", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "55105896-2e29-4236-995d-e26d38c49375", - "x-ms-routing-request-id": "WESTUS:20210507T012145Z:55105896-2e29-4236-995d-e26d38c49375" + "x-ms-correlation-request-id": "44273b6d-0c38-45f3-897b-7780ecc8948e", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "44273b6d-0c38-45f3-897b-7780ecc8948e", + "x-ms-routing-request-id": "WESTUS2:20210519T190133Z:44273b6d-0c38-45f3-897b-7780ecc8948e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +50,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-5d5f5630a16f234b9f7edfe150f7b968-ceb63a358a39b14d-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-2c34268e6de9df4ba3dd54afe1cf0d36-9a5edc7a6fb71c4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85244823929167409346d1ab79935047", "x-ms-return-client-request-id": "true" }, @@ -64,15 +64,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:21:45 GMT", + "Date": "Wed, 19 May 2021 19:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64fee2ed-4fc9-4068-b6d2-5061419d67ca", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "64fee2ed-4fc9-4068-b6d2-5061419d67ca", - "x-ms-routing-request-id": "WESTUS:20210507T012146Z:64fee2ed-4fc9-4068-b6d2-5061419d67ca" + "x-ms-correlation-request-id": "bff20825-8504-496e-bd10-7b15d31eafd2", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "bff20825-8504-496e-bd10-7b15d31eafd2", + "x-ms-routing-request-id": "WESTUS2:20210519T190134Z:bff20825-8504-496e-bd10-7b15d31eafd2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8911", @@ -93,8 +93,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-2800a2b5d83c304b8a7c9277aa410894-4079b4ee6c5b6641-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-0f8718b913f3d742950d53d83baef83d-a6eb74236506bd4b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ae8f175a5fe7bff3256681ae49519f98", "x-ms-return-client-request-id": "true" }, @@ -107,15 +107,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:21:46 GMT", + "Date": "Wed, 19 May 2021 19:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d69c20e-d5c2-40e0-bf76-12a3a9a15484", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "4d69c20e-d5c2-40e0-bf76-12a3a9a15484", - "x-ms-routing-request-id": "WESTUS2:20210507T012146Z:4d69c20e-d5c2-40e0-bf76-12a3a9a15484" + "x-ms-correlation-request-id": "55d16b81-3e8c-4aa7-9a82-c81527653ae3", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "55d16b81-3e8c-4aa7-9a82-c81527653ae3", + "x-ms-routing-request-id": "WESTUS2:20210519T190134Z:55d16b81-3e8c-4aa7-9a82-c81527653ae3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6530", @@ -142,17 +142,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "52611", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:21:46 GMT", + "Date": "Wed, 19 May 2021 19:01:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fedfab07-686a-457c-afe7-188cff29da2e", - "x-ms-ratelimit-remaining-subscription-reads": "11726", - "x-ms-request-id": "fedfab07-686a-457c-afe7-188cff29da2e", - "x-ms-routing-request-id": "WESTUS2:20210507T012147Z:fedfab07-686a-457c-afe7-188cff29da2e" + "x-ms-correlation-request-id": "ebd353af-a688-4be3-b9bc-4deb8ae891ed", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "ebd353af-a688-4be3-b9bc-4deb8ae891ed", + "x-ms-routing-request-id": "WESTUS2:20210519T190134Z:ebd353af-a688-4be3-b9bc-4deb8ae891ed" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -476,6 +476,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -761,6 +765,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -2779,6 +2787,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -3187,6 +3199,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3847,6 +3863,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4035,6 +4055,10 @@ { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4052,8 +4076,7 @@ "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "Request-Id": "|4d1f45e8-4e38d8954989ab9d.", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6dd161e33b0c31e9c66c2bbfb94af432", "x-ms-return-client-request-id": "true" }, @@ -4073,7 +4096,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 01:21:47 GMT", + "Date": "Wed, 19 May 2021 19:01:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4083,11 +4106,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6dd161e33b0c31e9c66c2bbfb94af432", - "x-ms-correlation-request-id": "24a24b89-3f2c-4b05-91e6-8e7c3507e683", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1193", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "3c25809d-6a7f-44ba-a34e-dcbfb13b71b4", - "x-ms-routing-request-id": "WESTUS2:20210507T012147Z:24a24b89-3f2c-4b05-91e6-8e7c3507e683" + "x-ms-correlation-request-id": "604d9013-9a58-43fa-b6d7-d5ad5c0e370c", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1192", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "ea4ffaf6-d0e4-4dec-ab27-594511a8abaa", + "x-ms-routing-request-id": "WESTUS2:20210519T190135Z:604d9013-9a58-43fa-b6d7-d5ad5c0e370c" }, "ResponseBody": [ "{\r\n", @@ -4114,8 +4137,7 @@ "Authorization": "Sanitized", "Content-Length": "256", "Content-Type": "application/json", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-76c46ece50723f4b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef6641382aceec6b2cae76431ae2d3db", "x-ms-return-client-request-id": "true" }, @@ -4129,17 +4151,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:47 GMT", + "Date": "Wed, 19 May 2021 19:01:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb1c887e-7e4a-4e80-ade5-08cf22cdaead", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "fb1c887e-7e4a-4e80-ade5-08cf22cdaead", - "x-ms-routing-request-id": "WESTUS2:20210507T012147Z:fb1c887e-7e4a-4e80-ade5-08cf22cdaead" + "x-ms-correlation-request-id": "cd0f2cc6-42e4-4d98-a080-220eb87a1476", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "cd0f2cc6-42e4-4d98-a080-220eb87a1476", + "x-ms-routing-request-id": "WESTUS2:20210519T190136Z:cd0f2cc6-42e4-4d98-a080-220eb87a1476" }, "ResponseBody": [] }, @@ -4148,8 +4170,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-a6d55e955583a84a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7787ab7105e4e864947d0cb90767b70a", "x-ms-return-client-request-id": "true" }, @@ -4158,17 +4179,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:47 GMT", + "Date": "Wed, 19 May 2021 19:01:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21116d40-5bce-4189-9a2c-424e744eb786", - "x-ms-ratelimit-remaining-subscription-reads": "11725", - "x-ms-request-id": "21116d40-5bce-4189-9a2c-424e744eb786", - "x-ms-routing-request-id": "WESTUS2:20210507T012147Z:21116d40-5bce-4189-9a2c-424e744eb786" + "x-ms-correlation-request-id": "0799ff58-fde5-4d92-a318-db434af92752", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "0799ff58-fde5-4d92-a318-db434af92752", + "x-ms-routing-request-id": "WESTUS2:20210519T190136Z:0799ff58-fde5-4d92-a318-db434af92752" }, "ResponseBody": [] }, @@ -4177,8 +4198,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-c29d25b96aa72f41-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6af8e54ed0dc28033b0138cdaa807274", "x-ms-return-client-request-id": "true" }, @@ -4187,17 +4207,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:48 GMT", + "Date": "Wed, 19 May 2021 19:01:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "180979b4-c07a-4eeb-8114-4a2a37b456ff", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "180979b4-c07a-4eeb-8114-4a2a37b456ff", - "x-ms-routing-request-id": "WESTUS:20210507T012148Z:180979b4-c07a-4eeb-8114-4a2a37b456ff" + "x-ms-correlation-request-id": "7d09bdc2-0591-422e-b566-be31a061a3a3", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "7d09bdc2-0591-422e-b566-be31a061a3a3", + "x-ms-routing-request-id": "WESTUS2:20210519T190137Z:7d09bdc2-0591-422e-b566-be31a061a3a3" }, "ResponseBody": [] }, @@ -4206,8 +4226,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ed1f5125b5b33f7c77f95fe024c5d4f", "x-ms-return-client-request-id": "true" }, @@ -4216,17 +4235,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:49 GMT", + "Date": "Wed, 19 May 2021 19:01:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef8f550a-1cc3-4ecc-8472-7de3f2538eb8", - "x-ms-ratelimit-remaining-subscription-reads": "11722", - "x-ms-request-id": "ef8f550a-1cc3-4ecc-8472-7de3f2538eb8", - "x-ms-routing-request-id": "WESTUS2:20210507T012149Z:ef8f550a-1cc3-4ecc-8472-7de3f2538eb8" + "x-ms-correlation-request-id": "c773ddb9-a405-4e1b-81c4-e74405c0250f", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "c773ddb9-a405-4e1b-81c4-e74405c0250f", + "x-ms-routing-request-id": "WESTUS2:20210519T190138Z:c773ddb9-a405-4e1b-81c4-e74405c0250f" }, "ResponseBody": [] }, @@ -4235,8 +4254,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "949c764932c0a0a5a75e3ce2cc963e14", "x-ms-return-client-request-id": "true" }, @@ -4245,17 +4263,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:50 GMT", + "Date": "Wed, 19 May 2021 19:01:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e63287e-1a1f-44bb-84a2-c370c50140ef", - "x-ms-ratelimit-remaining-subscription-reads": "11720", - "x-ms-request-id": "8e63287e-1a1f-44bb-84a2-c370c50140ef", - "x-ms-routing-request-id": "WESTUS2:20210507T012150Z:8e63287e-1a1f-44bb-84a2-c370c50140ef" + "x-ms-correlation-request-id": "d2235266-3cce-44c8-bf0f-fdf50c41bb0d", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "d2235266-3cce-44c8-bf0f-fdf50c41bb0d", + "x-ms-routing-request-id": "WESTUS2:20210519T190139Z:d2235266-3cce-44c8-bf0f-fdf50c41bb0d" }, "ResponseBody": [] }, @@ -4264,8 +4282,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "12a7980b4895f3aeeec4a25d3b0525ef", "x-ms-return-client-request-id": "true" }, @@ -4274,17 +4291,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:51 GMT", + "Date": "Wed, 19 May 2021 19:01:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46b7bd51-c61e-4bfa-a818-aa776acd086f", - "x-ms-ratelimit-remaining-subscription-reads": "11718", - "x-ms-request-id": "46b7bd51-c61e-4bfa-a818-aa776acd086f", - "x-ms-routing-request-id": "WESTUS2:20210507T012151Z:46b7bd51-c61e-4bfa-a818-aa776acd086f" + "x-ms-correlation-request-id": "64379dfa-73e8-4e7e-b899-f9b3b204c19c", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "64379dfa-73e8-4e7e-b899-f9b3b204c19c", + "x-ms-routing-request-id": "WESTUS2:20210519T190140Z:64379dfa-73e8-4e7e-b899-f9b3b204c19c" }, "ResponseBody": [] }, @@ -4293,8 +4310,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3484e9a4dde4dfb34f31c7fd1f146631", "x-ms-return-client-request-id": "true" }, @@ -4303,17 +4319,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:52 GMT", + "Date": "Wed, 19 May 2021 19:01:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9dbaf9d7-e5b7-4793-b519-f304895c598e", - "x-ms-ratelimit-remaining-subscription-reads": "11716", - "x-ms-request-id": "9dbaf9d7-e5b7-4793-b519-f304895c598e", - "x-ms-routing-request-id": "WESTUS2:20210507T012153Z:9dbaf9d7-e5b7-4793-b519-f304895c598e" + "x-ms-correlation-request-id": "49c8b5c0-ef1e-4f47-8cf5-685e8f79c53e", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "49c8b5c0-ef1e-4f47-8cf5-685e8f79c53e", + "x-ms-routing-request-id": "WESTUS2:20210519T190141Z:49c8b5c0-ef1e-4f47-8cf5-685e8f79c53e" }, "ResponseBody": [] }, @@ -4322,8 +4338,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6af281404aa401b9c7a9a6fb8f4865a2", "x-ms-return-client-request-id": "true" }, @@ -4332,17 +4347,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:53 GMT", + "Date": "Wed, 19 May 2021 19:01:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a28941a0-4f74-496e-b1e1-63c97c37a2b9", - "x-ms-ratelimit-remaining-subscription-reads": "11714", - "x-ms-request-id": "a28941a0-4f74-496e-b1e1-63c97c37a2b9", - "x-ms-routing-request-id": "WESTUS2:20210507T012154Z:a28941a0-4f74-496e-b1e1-63c97c37a2b9" + "x-ms-correlation-request-id": "809e6ea0-a9a1-487a-92a7-67d433ef9871", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "809e6ea0-a9a1-487a-92a7-67d433ef9871", + "x-ms-routing-request-id": "WESTUS2:20210519T190142Z:809e6ea0-a9a1-487a-92a7-67d433ef9871" }, "ResponseBody": [] }, @@ -4351,8 +4366,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e33e4c380a112d2fe5c7c26480b1d3d9", "x-ms-return-client-request-id": "true" }, @@ -4361,17 +4375,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:54 GMT", + "Date": "Wed, 19 May 2021 19:01:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25852fe0-31f4-4285-9761-91d79cdd92cb", - "x-ms-ratelimit-remaining-subscription-reads": "11712", - "x-ms-request-id": "25852fe0-31f4-4285-9761-91d79cdd92cb", - "x-ms-routing-request-id": "WESTUS2:20210507T012155Z:25852fe0-31f4-4285-9761-91d79cdd92cb" + "x-ms-correlation-request-id": "1247bfcc-7dcb-448e-acd6-969b161efccd", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "1247bfcc-7dcb-448e-acd6-969b161efccd", + "x-ms-routing-request-id": "WESTUS2:20210519T190143Z:1247bfcc-7dcb-448e-acd6-969b161efccd" }, "ResponseBody": [] }, @@ -4380,8 +4394,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ba1c715ebb12594a30836c3b37b75007", "x-ms-return-client-request-id": "true" }, @@ -4390,17 +4403,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:55 GMT", + "Date": "Wed, 19 May 2021 19:01:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae55b8a7-df8d-42f1-82da-1d07b8d2d0ef", - "x-ms-ratelimit-remaining-subscription-reads": "11710", - "x-ms-request-id": "ae55b8a7-df8d-42f1-82da-1d07b8d2d0ef", - "x-ms-routing-request-id": "WESTUS2:20210507T012156Z:ae55b8a7-df8d-42f1-82da-1d07b8d2d0ef" + "x-ms-correlation-request-id": "e287efc2-e337-4269-9c03-2836da31db58", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "e287efc2-e337-4269-9c03-2836da31db58", + "x-ms-routing-request-id": "WESTUS2:20210519T190144Z:e287efc2-e337-4269-9c03-2836da31db58" }, "ResponseBody": [] }, @@ -4409,8 +4422,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2c424cb82d5361f51c585dd87548016", "x-ms-return-client-request-id": "true" }, @@ -4419,17 +4431,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:56 GMT", + "Date": "Wed, 19 May 2021 19:01:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b1452bc-7dad-4c0b-92f6-bcdd9990ec58", - "x-ms-ratelimit-remaining-subscription-reads": "11708", - "x-ms-request-id": "8b1452bc-7dad-4c0b-92f6-bcdd9990ec58", - "x-ms-routing-request-id": "WESTUS2:20210507T012157Z:8b1452bc-7dad-4c0b-92f6-bcdd9990ec58" + "x-ms-correlation-request-id": "22b46db3-8f82-493a-b431-256d9a892bf1", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "22b46db3-8f82-493a-b431-256d9a892bf1", + "x-ms-routing-request-id": "WESTUS2:20210519T190145Z:22b46db3-8f82-493a-b431-256d9a892bf1" }, "ResponseBody": [] }, @@ -4438,8 +4450,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d9dccd5ab2c7d8f01e5b38e9df3f62d", "x-ms-return-client-request-id": "true" }, @@ -4448,17 +4459,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:57 GMT", + "Date": "Wed, 19 May 2021 19:01:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b330446-8ddc-478e-857f-7e5d83f28198", - "x-ms-ratelimit-remaining-subscription-reads": "11706", - "x-ms-request-id": "8b330446-8ddc-478e-857f-7e5d83f28198", - "x-ms-routing-request-id": "WESTUS2:20210507T012158Z:8b330446-8ddc-478e-857f-7e5d83f28198" + "x-ms-correlation-request-id": "6fad4075-cfe2-4747-8dbe-d741b2136b9b", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "6fad4075-cfe2-4747-8dbe-d741b2136b9b", + "x-ms-routing-request-id": "WESTUS2:20210519T190146Z:6fad4075-cfe2-4747-8dbe-d741b2136b9b" }, "ResponseBody": [] }, @@ -4467,8 +4478,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c99bb7700eddb0352e5684c366dd1db", "x-ms-return-client-request-id": "true" }, @@ -4477,17 +4487,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:58 GMT", + "Date": "Wed, 19 May 2021 19:01:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5e237cc-89ed-49bf-8e3b-a185649a316e", - "x-ms-ratelimit-remaining-subscription-reads": "11704", - "x-ms-request-id": "a5e237cc-89ed-49bf-8e3b-a185649a316e", - "x-ms-routing-request-id": "WESTUS2:20210507T012159Z:a5e237cc-89ed-49bf-8e3b-a185649a316e" + "x-ms-correlation-request-id": "142c0e81-10c3-4612-8161-a61ec98c3744", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "142c0e81-10c3-4612-8161-a61ec98c3744", + "x-ms-routing-request-id": "WESTUS2:20210519T190147Z:142c0e81-10c3-4612-8161-a61ec98c3744" }, "ResponseBody": [] }, @@ -4496,8 +4506,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a665603321a20db9546d1f0cf90985d", "x-ms-return-client-request-id": "true" }, @@ -4506,17 +4515,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:21:59 GMT", + "Date": "Wed, 19 May 2021 19:01:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e66af320-78d4-44ad-af86-9e99207db86a", - "x-ms-ratelimit-remaining-subscription-reads": "11702", - "x-ms-request-id": "e66af320-78d4-44ad-af86-9e99207db86a", - "x-ms-routing-request-id": "WESTUS2:20210507T012200Z:e66af320-78d4-44ad-af86-9e99207db86a" + "x-ms-correlation-request-id": "19e4881e-f284-4d99-84fa-c533f5fc41d8", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "19e4881e-f284-4d99-84fa-c533f5fc41d8", + "x-ms-routing-request-id": "WESTUS2:20210519T190148Z:19e4881e-f284-4d99-84fa-c533f5fc41d8" }, "ResponseBody": [] }, @@ -4525,8 +4534,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cc6657cf24bad428c9c2cb4642424693", "x-ms-return-client-request-id": "true" }, @@ -4535,17 +4543,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:00 GMT", + "Date": "Wed, 19 May 2021 19:01:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8248518-3e27-4fb6-a74f-57114f68ba18", - "x-ms-ratelimit-remaining-subscription-reads": "11700", - "x-ms-request-id": "f8248518-3e27-4fb6-a74f-57114f68ba18", - "x-ms-routing-request-id": "WESTUS2:20210507T012201Z:f8248518-3e27-4fb6-a74f-57114f68ba18" + "x-ms-correlation-request-id": "9e7c0a00-a2bd-4b0a-8e7e-1bca70ea05ea", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "9e7c0a00-a2bd-4b0a-8e7e-1bca70ea05ea", + "x-ms-routing-request-id": "WESTUS2:20210519T190149Z:9e7c0a00-a2bd-4b0a-8e7e-1bca70ea05ea" }, "ResponseBody": [] }, @@ -4554,8 +4562,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "478bd7138b8d4413e078c6a62f120bc2", "x-ms-return-client-request-id": "true" }, @@ -4564,17 +4571,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:01 GMT", + "Date": "Wed, 19 May 2021 19:01:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60bf3ca9-dc6e-4005-97b3-ada3e50bbe13", - "x-ms-ratelimit-remaining-subscription-reads": "11698", - "x-ms-request-id": "60bf3ca9-dc6e-4005-97b3-ada3e50bbe13", - "x-ms-routing-request-id": "WESTUS2:20210507T012202Z:60bf3ca9-dc6e-4005-97b3-ada3e50bbe13" + "x-ms-correlation-request-id": "adf589be-d119-4ec0-b52c-88c8e8858a74", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "adf589be-d119-4ec0-b52c-88c8e8858a74", + "x-ms-routing-request-id": "WESTUS2:20210519T190150Z:adf589be-d119-4ec0-b52c-88c8e8858a74" }, "ResponseBody": [] }, @@ -4583,8 +4590,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "de7d0a4c0407df212d91a1576794de52", "x-ms-return-client-request-id": "true" }, @@ -4593,17 +4599,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:02 GMT", + "Date": "Wed, 19 May 2021 19:01:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "682b3d92-325a-438d-872c-a9bb55e844d3", - "x-ms-ratelimit-remaining-subscription-reads": "11696", - "x-ms-request-id": "682b3d92-325a-438d-872c-a9bb55e844d3", - "x-ms-routing-request-id": "WESTUS2:20210507T012203Z:682b3d92-325a-438d-872c-a9bb55e844d3" + "x-ms-correlation-request-id": "fce3e3ef-0bb3-4a31-a72e-97a0199397ac", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "fce3e3ef-0bb3-4a31-a72e-97a0199397ac", + "x-ms-routing-request-id": "WESTUS2:20210519T190151Z:fce3e3ef-0bb3-4a31-a72e-97a0199397ac" }, "ResponseBody": [] }, @@ -4612,8 +4618,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7dd3d00510443d04421ec425d82a4b6", "x-ms-return-client-request-id": "true" }, @@ -4622,17 +4627,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:03 GMT", + "Date": "Wed, 19 May 2021 19:01:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6400cd54-6ddd-4358-beea-57c51124135f", - "x-ms-ratelimit-remaining-subscription-reads": "11694", - "x-ms-request-id": "6400cd54-6ddd-4358-beea-57c51124135f", - "x-ms-routing-request-id": "WESTUS2:20210507T012204Z:6400cd54-6ddd-4358-beea-57c51124135f" + "x-ms-correlation-request-id": "f5cf5378-37ef-4161-828e-7769a657198e", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "f5cf5378-37ef-4161-828e-7769a657198e", + "x-ms-routing-request-id": "WESTUS2:20210519T190152Z:f5cf5378-37ef-4161-828e-7769a657198e" }, "ResponseBody": [] }, @@ -4641,8 +4646,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "37f908b768c40e8cb6ac19fceabbdd4b", "x-ms-return-client-request-id": "true" }, @@ -4651,17 +4655,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:04 GMT", + "Date": "Wed, 19 May 2021 19:01:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51aeced1-1cfe-4994-9bd3-102a64e02679", - "x-ms-ratelimit-remaining-subscription-reads": "11692", - "x-ms-request-id": "51aeced1-1cfe-4994-9bd3-102a64e02679", - "x-ms-routing-request-id": "WESTUS2:20210507T012205Z:51aeced1-1cfe-4994-9bd3-102a64e02679" + "x-ms-correlation-request-id": "bf9e97f5-0c19-41bd-8e98-16fb4cb5aee4", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "bf9e97f5-0c19-41bd-8e98-16fb4cb5aee4", + "x-ms-routing-request-id": "WESTUS2:20210519T190153Z:bf9e97f5-0c19-41bd-8e98-16fb4cb5aee4" }, "ResponseBody": [] }, @@ -4670,8 +4674,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f2a6749a1335fbbd3a3a99e618de81aa", "x-ms-return-client-request-id": "true" }, @@ -4680,17 +4683,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:05 GMT", + "Date": "Wed, 19 May 2021 19:01:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72c3a541-935e-4302-9431-b43fc488f1b5", - "x-ms-ratelimit-remaining-subscription-reads": "11690", - "x-ms-request-id": "72c3a541-935e-4302-9431-b43fc488f1b5", - "x-ms-routing-request-id": "WESTUS2:20210507T012206Z:72c3a541-935e-4302-9431-b43fc488f1b5" + "x-ms-correlation-request-id": "96e61da1-d5d7-4a4a-b943-fc3d0cf4243c", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "96e61da1-d5d7-4a4a-b943-fc3d0cf4243c", + "x-ms-routing-request-id": "WESTUS2:20210519T190154Z:96e61da1-d5d7-4a4a-b943-fc3d0cf4243c" }, "ResponseBody": [] }, @@ -4699,8 +4702,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ea0eaeca69b978db1ce415837d35889", "x-ms-return-client-request-id": "true" }, @@ -4709,17 +4711,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:06 GMT", + "Date": "Wed, 19 May 2021 19:01:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8089cb9-f344-41ab-a5dd-074308e5d56a", - "x-ms-ratelimit-remaining-subscription-reads": "11688", - "x-ms-request-id": "d8089cb9-f344-41ab-a5dd-074308e5d56a", - "x-ms-routing-request-id": "WESTUS2:20210507T012207Z:d8089cb9-f344-41ab-a5dd-074308e5d56a" + "x-ms-correlation-request-id": "6e0f516c-37e4-4a6d-8849-7b74d8b58e1a", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "6e0f516c-37e4-4a6d-8849-7b74d8b58e1a", + "x-ms-routing-request-id": "WESTUS2:20210519T190155Z:6e0f516c-37e4-4a6d-8849-7b74d8b58e1a" }, "ResponseBody": [] }, @@ -4728,8 +4730,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8a7a044b2dca3804bfdfc8acea6f5d7", "x-ms-return-client-request-id": "true" }, @@ -4738,17 +4739,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:07 GMT", + "Date": "Wed, 19 May 2021 19:01:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "322e5e0f-51ca-4208-bc62-7f134294b29a", - "x-ms-ratelimit-remaining-subscription-reads": "11686", - "x-ms-request-id": "322e5e0f-51ca-4208-bc62-7f134294b29a", - "x-ms-routing-request-id": "WESTUS2:20210507T012208Z:322e5e0f-51ca-4208-bc62-7f134294b29a" + "x-ms-correlation-request-id": "818c2b96-27b5-4938-8bcf-8b15294bc6e3", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "818c2b96-27b5-4938-8bcf-8b15294bc6e3", + "x-ms-routing-request-id": "WESTUS2:20210519T190156Z:818c2b96-27b5-4938-8bcf-8b15294bc6e3" }, "ResponseBody": [] }, @@ -4757,8 +4758,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff0f6e2a7e1bf3b0e70e4066d265c366", "x-ms-return-client-request-id": "true" }, @@ -4767,17 +4767,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:09 GMT", + "Date": "Wed, 19 May 2021 19:01:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d86edead-993a-4c78-94c2-3598a2f50eaa", - "x-ms-ratelimit-remaining-subscription-reads": "11684", - "x-ms-request-id": "d86edead-993a-4c78-94c2-3598a2f50eaa", - "x-ms-routing-request-id": "WESTUS2:20210507T012209Z:d86edead-993a-4c78-94c2-3598a2f50eaa" + "x-ms-correlation-request-id": "184261fd-1604-4da1-8832-ef18e0b3d667", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "184261fd-1604-4da1-8832-ef18e0b3d667", + "x-ms-routing-request-id": "WESTUS2:20210519T190157Z:184261fd-1604-4da1-8832-ef18e0b3d667" }, "ResponseBody": [] }, @@ -4786,8 +4786,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "78a210e299373ace6afc139da902c90b", "x-ms-return-client-request-id": "true" }, @@ -4796,17 +4795,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:10 GMT", + "Date": "Wed, 19 May 2021 19:01:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "252600d2-d1ca-4ccc-a6ac-55a3d5d97f5c", - "x-ms-ratelimit-remaining-subscription-reads": "11682", - "x-ms-request-id": "252600d2-d1ca-4ccc-a6ac-55a3d5d97f5c", - "x-ms-routing-request-id": "WESTUS2:20210507T012210Z:252600d2-d1ca-4ccc-a6ac-55a3d5d97f5c" + "x-ms-correlation-request-id": "ad79c8d3-d17b-4c6e-9abe-d9455d4760a6", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "ad79c8d3-d17b-4c6e-9abe-d9455d4760a6", + "x-ms-routing-request-id": "WESTUS2:20210519T190158Z:ad79c8d3-d17b-4c6e-9abe-d9455d4760a6" }, "ResponseBody": [] }, @@ -4815,8 +4814,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c82d6ad858c4c56df0b300cd7119d1e6", "x-ms-return-client-request-id": "true" }, @@ -4825,17 +4823,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:11 GMT", + "Date": "Wed, 19 May 2021 19:01:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7bfed2b9-252d-4e13-888e-1d4030456b55", - "x-ms-ratelimit-remaining-subscription-reads": "11680", - "x-ms-request-id": "7bfed2b9-252d-4e13-888e-1d4030456b55", - "x-ms-routing-request-id": "WESTUS2:20210507T012211Z:7bfed2b9-252d-4e13-888e-1d4030456b55" + "x-ms-correlation-request-id": "7d3a6e78-17a7-4b84-950b-3fee2a4e506a", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "7d3a6e78-17a7-4b84-950b-3fee2a4e506a", + "x-ms-routing-request-id": "WESTUS2:20210519T190159Z:7d3a6e78-17a7-4b84-950b-3fee2a4e506a" }, "ResponseBody": [] }, @@ -4844,8 +4842,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bda7953a7d0391a0a0d5951f6b124ae4", "x-ms-return-client-request-id": "true" }, @@ -4854,17 +4851,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:12 GMT", + "Date": "Wed, 19 May 2021 19:02:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f190a598-e976-4d8d-a60a-a294377276c5", - "x-ms-ratelimit-remaining-subscription-reads": "11678", - "x-ms-request-id": "f190a598-e976-4d8d-a60a-a294377276c5", - "x-ms-routing-request-id": "WESTUS2:20210507T012212Z:f190a598-e976-4d8d-a60a-a294377276c5" + "x-ms-correlation-request-id": "dcfcf09f-c205-4b16-888b-b739116b2018", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "dcfcf09f-c205-4b16-888b-b739116b2018", + "x-ms-routing-request-id": "WESTUS2:20210519T190200Z:dcfcf09f-c205-4b16-888b-b739116b2018" }, "ResponseBody": [] }, @@ -4873,8 +4870,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "688d3545fb3789a2a3dc87839801c850", "x-ms-return-client-request-id": "true" }, @@ -4883,17 +4879,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:13 GMT", + "Date": "Wed, 19 May 2021 19:02:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1538088d-935a-4d2d-8366-d9ebf7672eac", - "x-ms-ratelimit-remaining-subscription-reads": "11676", - "x-ms-request-id": "1538088d-935a-4d2d-8366-d9ebf7672eac", - "x-ms-routing-request-id": "WESTUS2:20210507T012213Z:1538088d-935a-4d2d-8366-d9ebf7672eac" + "x-ms-correlation-request-id": "1fd9e652-434e-4c52-a46f-21d2f4f4da29", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "1fd9e652-434e-4c52-a46f-21d2f4f4da29", + "x-ms-routing-request-id": "WESTUS2:20210519T190201Z:1fd9e652-434e-4c52-a46f-21d2f4f4da29" }, "ResponseBody": [] }, @@ -4902,8 +4898,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "14632c2a0b5b5b07c99c28efc34e5add", "x-ms-return-client-request-id": "true" }, @@ -4912,17 +4907,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:14 GMT", + "Date": "Wed, 19 May 2021 19:02:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05ab254e-9262-444b-b7a8-95068a1143fd", - "x-ms-ratelimit-remaining-subscription-reads": "11674", - "x-ms-request-id": "05ab254e-9262-444b-b7a8-95068a1143fd", - "x-ms-routing-request-id": "WESTUS2:20210507T012214Z:05ab254e-9262-444b-b7a8-95068a1143fd" + "x-ms-correlation-request-id": "46aaae6c-ba7b-4f87-bbe2-9634f7290009", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "46aaae6c-ba7b-4f87-bbe2-9634f7290009", + "x-ms-routing-request-id": "WESTUS2:20210519T190202Z:46aaae6c-ba7b-4f87-bbe2-9634f7290009" }, "ResponseBody": [] }, @@ -4931,8 +4926,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c881c69698c3faef31e1a27f61cf89e", "x-ms-return-client-request-id": "true" }, @@ -4941,17 +4935,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:15 GMT", + "Date": "Wed, 19 May 2021 19:02:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "643119a3-8e69-4eae-b5b4-ed4c1007ea5f", - "x-ms-ratelimit-remaining-subscription-reads": "11672", - "x-ms-request-id": "643119a3-8e69-4eae-b5b4-ed4c1007ea5f", - "x-ms-routing-request-id": "WESTUS2:20210507T012215Z:643119a3-8e69-4eae-b5b4-ed4c1007ea5f" + "x-ms-correlation-request-id": "850f5ccf-8190-4b37-97dc-8494fe1c5099", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "850f5ccf-8190-4b37-97dc-8494fe1c5099", + "x-ms-routing-request-id": "WESTUS2:20210519T190203Z:850f5ccf-8190-4b37-97dc-8494fe1c5099" }, "ResponseBody": [] }, @@ -4960,8 +4954,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3ef4450c36af39892e329e9bd2b2c655", "x-ms-return-client-request-id": "true" }, @@ -4970,17 +4963,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:16 GMT", + "Date": "Wed, 19 May 2021 19:02:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26b2ede9-8cee-4972-a239-f7c216bb2aa0", - "x-ms-ratelimit-remaining-subscription-reads": "11670", - "x-ms-request-id": "26b2ede9-8cee-4972-a239-f7c216bb2aa0", - "x-ms-routing-request-id": "WESTUS2:20210507T012216Z:26b2ede9-8cee-4972-a239-f7c216bb2aa0" + "x-ms-correlation-request-id": "e0bb3515-cad1-4eac-8ecf-c7aff8199621", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "e0bb3515-cad1-4eac-8ecf-c7aff8199621", + "x-ms-routing-request-id": "WESTUS2:20210519T190205Z:e0bb3515-cad1-4eac-8ecf-c7aff8199621" }, "ResponseBody": [] }, @@ -4989,8 +4982,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7c1aaa828c78c1c37d24203cf1df65ad", "x-ms-return-client-request-id": "true" }, @@ -4999,17 +4991,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:17 GMT", + "Date": "Wed, 19 May 2021 19:02:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3298d483-8eef-48da-afa5-56c0bf746fb0", - "x-ms-ratelimit-remaining-subscription-reads": "11668", - "x-ms-request-id": "3298d483-8eef-48da-afa5-56c0bf746fb0", - "x-ms-routing-request-id": "WESTUS2:20210507T012217Z:3298d483-8eef-48da-afa5-56c0bf746fb0" + "x-ms-correlation-request-id": "2c2b15b5-7eaf-4a19-a094-8704a55d2eac", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "2c2b15b5-7eaf-4a19-a094-8704a55d2eac", + "x-ms-routing-request-id": "WESTUS2:20210519T190206Z:2c2b15b5-7eaf-4a19-a094-8704a55d2eac" }, "ResponseBody": [] }, @@ -5018,8 +5010,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7de289a31b59332d924f0d59cb136c40", "x-ms-return-client-request-id": "true" }, @@ -5028,17 +5019,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:18 GMT", + "Date": "Wed, 19 May 2021 19:02:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "932f2751-2429-4f4e-95d9-8a3a0bbcedc7", - "x-ms-ratelimit-remaining-subscription-reads": "11666", - "x-ms-request-id": "932f2751-2429-4f4e-95d9-8a3a0bbcedc7", - "x-ms-routing-request-id": "WESTUS2:20210507T012218Z:932f2751-2429-4f4e-95d9-8a3a0bbcedc7" + "x-ms-correlation-request-id": "8bc70176-dbfd-4f11-9ddf-7f5ab7b31b91", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "8bc70176-dbfd-4f11-9ddf-7f5ab7b31b91", + "x-ms-routing-request-id": "WESTUS2:20210519T190207Z:8bc70176-dbfd-4f11-9ddf-7f5ab7b31b91" }, "ResponseBody": [] }, @@ -5047,8 +5038,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4ba5c4577c0280268132c08b154c474e", "x-ms-return-client-request-id": "true" }, @@ -5057,17 +5047,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:19 GMT", + "Date": "Wed, 19 May 2021 19:02:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df7380fe-97f7-45d9-bec2-e9a261cd6e76", - "x-ms-ratelimit-remaining-subscription-reads": "11664", - "x-ms-request-id": "df7380fe-97f7-45d9-bec2-e9a261cd6e76", - "x-ms-routing-request-id": "WESTUS2:20210507T012219Z:df7380fe-97f7-45d9-bec2-e9a261cd6e76" + "x-ms-correlation-request-id": "e3a4f93f-70d8-402b-b5ee-c9ddeb9d7baf", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "e3a4f93f-70d8-402b-b5ee-c9ddeb9d7baf", + "x-ms-routing-request-id": "WESTUS2:20210519T190208Z:e3a4f93f-70d8-402b-b5ee-c9ddeb9d7baf" }, "ResponseBody": [] }, @@ -5076,8 +5066,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "48f8f0cd49cf66fb7ce6e9297e6af66a", "x-ms-return-client-request-id": "true" }, @@ -5086,17 +5075,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:20 GMT", + "Date": "Wed, 19 May 2021 19:02:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c23f3b12-34cb-489e-bc2c-982eb4ad4402", - "x-ms-ratelimit-remaining-subscription-reads": "11662", - "x-ms-request-id": "c23f3b12-34cb-489e-bc2c-982eb4ad4402", - "x-ms-routing-request-id": "WESTUS2:20210507T012221Z:c23f3b12-34cb-489e-bc2c-982eb4ad4402" + "x-ms-correlation-request-id": "e4ccd62d-07e0-40c1-9746-19b530e73b47", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "e4ccd62d-07e0-40c1-9746-19b530e73b47", + "x-ms-routing-request-id": "WESTUS2:20210519T190209Z:e4ccd62d-07e0-40c1-9746-19b530e73b47" }, "ResponseBody": [] }, @@ -5105,8 +5094,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2de5dfb7193a26aa6362fc275aa21d46", "x-ms-return-client-request-id": "true" }, @@ -5115,17 +5103,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:21 GMT", + "Date": "Wed, 19 May 2021 19:02:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04f07f88-f960-4b2a-95e4-9d49609ec5ce", - "x-ms-ratelimit-remaining-subscription-reads": "11660", - "x-ms-request-id": "04f07f88-f960-4b2a-95e4-9d49609ec5ce", - "x-ms-routing-request-id": "WESTUS2:20210507T012222Z:04f07f88-f960-4b2a-95e4-9d49609ec5ce" + "x-ms-correlation-request-id": "6e4ff7f8-8bba-4073-87f4-666e3c79397c", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "6e4ff7f8-8bba-4073-87f4-666e3c79397c", + "x-ms-routing-request-id": "WESTUS2:20210519T190210Z:6e4ff7f8-8bba-4073-87f4-666e3c79397c" }, "ResponseBody": [] }, @@ -5134,8 +5122,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da8cbe08241b0e71c93ecf1b93fc0217", "x-ms-return-client-request-id": "true" }, @@ -5144,17 +5131,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:22 GMT", + "Date": "Wed, 19 May 2021 19:02:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dbb25675-f791-4f71-a682-aeb377e23b10", - "x-ms-ratelimit-remaining-subscription-reads": "11658", - "x-ms-request-id": "dbb25675-f791-4f71-a682-aeb377e23b10", - "x-ms-routing-request-id": "WESTUS2:20210507T012223Z:dbb25675-f791-4f71-a682-aeb377e23b10" + "x-ms-correlation-request-id": "5aefb44a-3787-4fa7-97ad-608f89d31697", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "5aefb44a-3787-4fa7-97ad-608f89d31697", + "x-ms-routing-request-id": "WESTUS2:20210519T190211Z:5aefb44a-3787-4fa7-97ad-608f89d31697" }, "ResponseBody": [] }, @@ -5163,8 +5150,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "36d4563c1a66b41445d1e46d4dd40cda", "x-ms-return-client-request-id": "true" }, @@ -5173,17 +5159,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:23 GMT", + "Date": "Wed, 19 May 2021 19:02:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e21f27e-de83-4838-849a-d9b550dcddb4", - "x-ms-ratelimit-remaining-subscription-reads": "11656", - "x-ms-request-id": "0e21f27e-de83-4838-849a-d9b550dcddb4", - "x-ms-routing-request-id": "WESTUS2:20210507T012224Z:0e21f27e-de83-4838-849a-d9b550dcddb4" + "x-ms-correlation-request-id": "e5c20f5a-4d6a-41b0-884c-d768d69e1d00", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "e5c20f5a-4d6a-41b0-884c-d768d69e1d00", + "x-ms-routing-request-id": "WESTUS2:20210519T190212Z:e5c20f5a-4d6a-41b0-884c-d768d69e1d00" }, "ResponseBody": [] }, @@ -5192,8 +5178,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bf20a2c81bde934e6ed763fb498f9367", "x-ms-return-client-request-id": "true" }, @@ -5202,17 +5187,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:24 GMT", + "Date": "Wed, 19 May 2021 19:02:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc29b5f9-9975-42fe-aa0d-d2b31ac2d989", - "x-ms-ratelimit-remaining-subscription-reads": "11654", - "x-ms-request-id": "dc29b5f9-9975-42fe-aa0d-d2b31ac2d989", - "x-ms-routing-request-id": "WESTUS2:20210507T012225Z:dc29b5f9-9975-42fe-aa0d-d2b31ac2d989" + "x-ms-correlation-request-id": "66867bf0-37dc-40eb-9fc3-7fac57fcd31b", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "66867bf0-37dc-40eb-9fc3-7fac57fcd31b", + "x-ms-routing-request-id": "WESTUS2:20210519T190213Z:66867bf0-37dc-40eb-9fc3-7fac57fcd31b" }, "ResponseBody": [] }, @@ -5221,8 +5206,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "03eae560e7cdeedfaad7944a3f03c1f5", "x-ms-return-client-request-id": "true" }, @@ -5231,17 +5215,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:25 GMT", + "Date": "Wed, 19 May 2021 19:02:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3ef88c5-8716-462b-be11-402bffaea55f", - "x-ms-ratelimit-remaining-subscription-reads": "11652", - "x-ms-request-id": "b3ef88c5-8716-462b-be11-402bffaea55f", - "x-ms-routing-request-id": "WESTUS2:20210507T012226Z:b3ef88c5-8716-462b-be11-402bffaea55f" + "x-ms-correlation-request-id": "ca07d24e-9755-41b8-9cd8-9452b8e3af85", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "ca07d24e-9755-41b8-9cd8-9452b8e3af85", + "x-ms-routing-request-id": "WESTUS2:20210519T190214Z:ca07d24e-9755-41b8-9cd8-9452b8e3af85" }, "ResponseBody": [] }, @@ -5250,8 +5234,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f052f43242dc21380841c78fb6196ab6", "x-ms-return-client-request-id": "true" }, @@ -5260,17 +5243,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:26 GMT", + "Date": "Wed, 19 May 2021 19:02:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc0974b7-c11d-4a7c-8391-7780e914e4ca", - "x-ms-ratelimit-remaining-subscription-reads": "11650", - "x-ms-request-id": "dc0974b7-c11d-4a7c-8391-7780e914e4ca", - "x-ms-routing-request-id": "WESTUS2:20210507T012227Z:dc0974b7-c11d-4a7c-8391-7780e914e4ca" + "x-ms-correlation-request-id": "e4999d76-42e8-493c-9ed6-02a36e41f8d9", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "e4999d76-42e8-493c-9ed6-02a36e41f8d9", + "x-ms-routing-request-id": "WESTUS2:20210519T190215Z:e4999d76-42e8-493c-9ed6-02a36e41f8d9" }, "ResponseBody": [] }, @@ -5279,8 +5262,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "670d7d3e08e9e10cc33215068604536b", "x-ms-return-client-request-id": "true" }, @@ -5289,17 +5271,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:27 GMT", + "Date": "Wed, 19 May 2021 19:02:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "220b7f15-39fe-4656-a771-7d9b3909c180", - "x-ms-ratelimit-remaining-subscription-reads": "11648", - "x-ms-request-id": "220b7f15-39fe-4656-a771-7d9b3909c180", - "x-ms-routing-request-id": "WESTUS2:20210507T012228Z:220b7f15-39fe-4656-a771-7d9b3909c180" + "x-ms-correlation-request-id": "1e036e1c-d2cc-4872-89f8-f60398f3eab7", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "1e036e1c-d2cc-4872-89f8-f60398f3eab7", + "x-ms-routing-request-id": "WESTUS2:20210519T190216Z:1e036e1c-d2cc-4872-89f8-f60398f3eab7" }, "ResponseBody": [] }, @@ -5308,8 +5290,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "55c96d15a23c1d8bacc9fb8c1f4f3791", "x-ms-return-client-request-id": "true" }, @@ -5318,17 +5299,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:28 GMT", + "Date": "Wed, 19 May 2021 19:02:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "769f71f6-b36c-48f0-b7f0-ac50d12ae7fe", - "x-ms-ratelimit-remaining-subscription-reads": "11646", - "x-ms-request-id": "769f71f6-b36c-48f0-b7f0-ac50d12ae7fe", - "x-ms-routing-request-id": "WESTUS2:20210507T012229Z:769f71f6-b36c-48f0-b7f0-ac50d12ae7fe" + "x-ms-correlation-request-id": "08fdce77-f78f-4d10-a9e3-9514014d8b89", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "08fdce77-f78f-4d10-a9e3-9514014d8b89", + "x-ms-routing-request-id": "WESTUS2:20210519T190217Z:08fdce77-f78f-4d10-a9e3-9514014d8b89" }, "ResponseBody": [] }, @@ -5337,8 +5318,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c20bdd6d59f5290be8712da92c329a03", "x-ms-return-client-request-id": "true" }, @@ -5347,17 +5327,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:29 GMT", + "Date": "Wed, 19 May 2021 19:02:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3130121f-093f-48d1-b8f2-e5b3b2872ba1", - "x-ms-ratelimit-remaining-subscription-reads": "11644", - "x-ms-request-id": "3130121f-093f-48d1-b8f2-e5b3b2872ba1", - "x-ms-routing-request-id": "WESTUS2:20210507T012230Z:3130121f-093f-48d1-b8f2-e5b3b2872ba1" + "x-ms-correlation-request-id": "a09cf6d1-adaa-4b0c-a9e1-5d66ba5196c5", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "a09cf6d1-adaa-4b0c-a9e1-5d66ba5196c5", + "x-ms-routing-request-id": "WESTUS2:20210519T190218Z:a09cf6d1-adaa-4b0c-a9e1-5d66ba5196c5" }, "ResponseBody": [] }, @@ -5366,8 +5346,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "48795ced154f9b7af2efbb200c7fc173", "x-ms-return-client-request-id": "true" }, @@ -5376,17 +5355,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:30 GMT", + "Date": "Wed, 19 May 2021 19:02:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1fc3c9d-a448-4cae-b230-9cb476816de7", - "x-ms-ratelimit-remaining-subscription-reads": "11642", - "x-ms-request-id": "e1fc3c9d-a448-4cae-b230-9cb476816de7", - "x-ms-routing-request-id": "WESTUS2:20210507T012231Z:e1fc3c9d-a448-4cae-b230-9cb476816de7" + "x-ms-correlation-request-id": "701cd53b-15f1-457f-b546-e749b2220e72", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "701cd53b-15f1-457f-b546-e749b2220e72", + "x-ms-routing-request-id": "WESTUS2:20210519T190219Z:701cd53b-15f1-457f-b546-e749b2220e72" }, "ResponseBody": [] }, @@ -5395,8 +5374,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a89884fb90f8bc75629f6cca74e1f17a", "x-ms-return-client-request-id": "true" }, @@ -5405,17 +5383,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:31 GMT", + "Date": "Wed, 19 May 2021 19:02:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec76a192-f087-4eba-b062-4229040d1a53", - "x-ms-ratelimit-remaining-subscription-reads": "11640", - "x-ms-request-id": "ec76a192-f087-4eba-b062-4229040d1a53", - "x-ms-routing-request-id": "WESTUS2:20210507T012232Z:ec76a192-f087-4eba-b062-4229040d1a53" + "x-ms-correlation-request-id": "0018f023-907e-4ff9-b7b1-15efc4dff6e7", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "0018f023-907e-4ff9-b7b1-15efc4dff6e7", + "x-ms-routing-request-id": "WESTUS2:20210519T190220Z:0018f023-907e-4ff9-b7b1-15efc4dff6e7" }, "ResponseBody": [] }, @@ -5424,8 +5402,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c39ef72feed55841636fd0069deb1c68", "x-ms-return-client-request-id": "true" }, @@ -5434,17 +5411,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:33 GMT", + "Date": "Wed, 19 May 2021 19:02:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47abd1a1-ae29-4e3c-8eb3-61b23675a5bd", - "x-ms-ratelimit-remaining-subscription-reads": "11638", - "x-ms-request-id": "47abd1a1-ae29-4e3c-8eb3-61b23675a5bd", - "x-ms-routing-request-id": "WESTUS2:20210507T012233Z:47abd1a1-ae29-4e3c-8eb3-61b23675a5bd" + "x-ms-correlation-request-id": "99e5468c-5df0-4479-97be-c67d271c16af", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "99e5468c-5df0-4479-97be-c67d271c16af", + "x-ms-routing-request-id": "WESTUS2:20210519T190221Z:99e5468c-5df0-4479-97be-c67d271c16af" }, "ResponseBody": [] }, @@ -5453,8 +5430,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a7aebab0f1995d0ae7bde6b0a8af2710", "x-ms-return-client-request-id": "true" }, @@ -5463,17 +5439,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:34 GMT", + "Date": "Wed, 19 May 2021 19:02:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "67dd52f5-9c9b-4c2e-bd62-725bc3d6f584", - "x-ms-ratelimit-remaining-subscription-reads": "11636", - "x-ms-request-id": "67dd52f5-9c9b-4c2e-bd62-725bc3d6f584", - "x-ms-routing-request-id": "WESTUS2:20210507T012234Z:67dd52f5-9c9b-4c2e-bd62-725bc3d6f584" + "x-ms-correlation-request-id": "37674e73-bd29-4ecc-b705-57961e246572", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "37674e73-bd29-4ecc-b705-57961e246572", + "x-ms-routing-request-id": "WESTUS2:20210519T190222Z:37674e73-bd29-4ecc-b705-57961e246572" }, "ResponseBody": [] }, @@ -5482,8 +5458,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "15f141fefee00c9d43404588c06f1e77", "x-ms-return-client-request-id": "true" }, @@ -5492,17 +5467,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:35 GMT", + "Date": "Wed, 19 May 2021 19:02:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2ab5cae-b329-481d-8d44-2515e2af4b32", - "x-ms-ratelimit-remaining-subscription-reads": "11634", - "x-ms-request-id": "e2ab5cae-b329-481d-8d44-2515e2af4b32", - "x-ms-routing-request-id": "WESTUS2:20210507T012235Z:e2ab5cae-b329-481d-8d44-2515e2af4b32" + "x-ms-correlation-request-id": "e6dd28cf-f761-465a-af24-d578511c50bc", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "e6dd28cf-f761-465a-af24-d578511c50bc", + "x-ms-routing-request-id": "WESTUS2:20210519T190223Z:e6dd28cf-f761-465a-af24-d578511c50bc" }, "ResponseBody": [] }, @@ -5511,8 +5486,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ba1a038249333de0ec41db180890afb3", "x-ms-return-client-request-id": "true" }, @@ -5521,17 +5495,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:36 GMT", + "Date": "Wed, 19 May 2021 19:02:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd785c6d-c87a-4b95-8f7c-d3552bfc14a3", - "x-ms-ratelimit-remaining-subscription-reads": "11632", - "x-ms-request-id": "bd785c6d-c87a-4b95-8f7c-d3552bfc14a3", - "x-ms-routing-request-id": "WESTUS2:20210507T012236Z:bd785c6d-c87a-4b95-8f7c-d3552bfc14a3" + "x-ms-correlation-request-id": "d9ee24d6-04aa-4bc6-8422-d2a881315af0", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "d9ee24d6-04aa-4bc6-8422-d2a881315af0", + "x-ms-routing-request-id": "WESTUS2:20210519T190224Z:d9ee24d6-04aa-4bc6-8422-d2a881315af0" }, "ResponseBody": [] }, @@ -5540,8 +5514,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c07bf4807f9b1881ca26458ab829c78", "x-ms-return-client-request-id": "true" }, @@ -5550,17 +5523,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:37 GMT", + "Date": "Wed, 19 May 2021 19:02:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c17b0ac-dd35-4ac3-b318-7620b891e9a1", - "x-ms-ratelimit-remaining-subscription-reads": "11630", - "x-ms-request-id": "1c17b0ac-dd35-4ac3-b318-7620b891e9a1", - "x-ms-routing-request-id": "WESTUS2:20210507T012237Z:1c17b0ac-dd35-4ac3-b318-7620b891e9a1" + "x-ms-correlation-request-id": "57eff819-3767-4bbf-9ad9-7746c7f9db9f", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "57eff819-3767-4bbf-9ad9-7746c7f9db9f", + "x-ms-routing-request-id": "WESTUS2:20210519T190225Z:57eff819-3767-4bbf-9ad9-7746c7f9db9f" }, "ResponseBody": [] }, @@ -5569,8 +5542,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a42d6f9e6c95b4dd60b3289f228404b2", "x-ms-return-client-request-id": "true" }, @@ -5579,17 +5551,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:38 GMT", + "Date": "Wed, 19 May 2021 19:02:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7dc97671-82d6-474f-b44e-3f1c3a10bd7f", - "x-ms-ratelimit-remaining-subscription-reads": "11628", - "x-ms-request-id": "7dc97671-82d6-474f-b44e-3f1c3a10bd7f", - "x-ms-routing-request-id": "WESTUS2:20210507T012238Z:7dc97671-82d6-474f-b44e-3f1c3a10bd7f" + "x-ms-correlation-request-id": "cdaa79ba-b833-4b4b-940e-827920db8060", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "cdaa79ba-b833-4b4b-940e-827920db8060", + "x-ms-routing-request-id": "WESTUS2:20210519T190226Z:cdaa79ba-b833-4b4b-940e-827920db8060" }, "ResponseBody": [] }, @@ -5598,8 +5570,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "01409190c2677a7d7b689e90e588926a", "x-ms-return-client-request-id": "true" }, @@ -5608,17 +5579,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:39 GMT", + "Date": "Wed, 19 May 2021 19:02:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ab0d4b2-bcc1-4ad6-9bca-1a9202fbe304", - "x-ms-ratelimit-remaining-subscription-reads": "11626", - "x-ms-request-id": "9ab0d4b2-bcc1-4ad6-9bca-1a9202fbe304", - "x-ms-routing-request-id": "WESTUS2:20210507T012239Z:9ab0d4b2-bcc1-4ad6-9bca-1a9202fbe304" + "x-ms-correlation-request-id": "510c6f96-8c0a-4633-b6c3-b6fd4511969b", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "510c6f96-8c0a-4633-b6c3-b6fd4511969b", + "x-ms-routing-request-id": "WESTUS2:20210519T190227Z:510c6f96-8c0a-4633-b6c3-b6fd4511969b" }, "ResponseBody": [] }, @@ -5627,8 +5598,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "987a63a40a62dc1ee153fb46dfe88e97", "x-ms-return-client-request-id": "true" }, @@ -5637,17 +5607,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:40 GMT", + "Date": "Wed, 19 May 2021 19:02:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aaf63c58-6e85-45c1-af07-6dd6917fe66e", - "x-ms-ratelimit-remaining-subscription-reads": "11624", - "x-ms-request-id": "aaf63c58-6e85-45c1-af07-6dd6917fe66e", - "x-ms-routing-request-id": "WESTUS2:20210507T012240Z:aaf63c58-6e85-45c1-af07-6dd6917fe66e" + "x-ms-correlation-request-id": "be7179fa-21d7-417f-83eb-0e5abe2b4a81", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "be7179fa-21d7-417f-83eb-0e5abe2b4a81", + "x-ms-routing-request-id": "WESTUS2:20210519T190228Z:be7179fa-21d7-417f-83eb-0e5abe2b4a81" }, "ResponseBody": [] }, @@ -5656,8 +5626,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1ac7b19e9b42db10f2b2292ccd4ccfd8", "x-ms-return-client-request-id": "true" }, @@ -5666,17 +5635,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:41 GMT", + "Date": "Wed, 19 May 2021 19:02:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e1f4c0c-f5db-40b0-bb1a-251fb4ca6828", - "x-ms-ratelimit-remaining-subscription-reads": "11622", - "x-ms-request-id": "9e1f4c0c-f5db-40b0-bb1a-251fb4ca6828", - "x-ms-routing-request-id": "WESTUS2:20210507T012241Z:9e1f4c0c-f5db-40b0-bb1a-251fb4ca6828" + "x-ms-correlation-request-id": "823a5560-5cca-4773-81d6-56980437e0ce", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "823a5560-5cca-4773-81d6-56980437e0ce", + "x-ms-routing-request-id": "WESTUS2:20210519T190229Z:823a5560-5cca-4773-81d6-56980437e0ce" }, "ResponseBody": [] }, @@ -5685,8 +5654,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bffabd216b0a854f73631f13c7379b92", "x-ms-return-client-request-id": "true" }, @@ -5695,17 +5663,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:42 GMT", + "Date": "Wed, 19 May 2021 19:02:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81c4d12e-3cdb-4961-ae2b-69e881a190d2", - "x-ms-ratelimit-remaining-subscription-reads": "11620", - "x-ms-request-id": "81c4d12e-3cdb-4961-ae2b-69e881a190d2", - "x-ms-routing-request-id": "WESTUS2:20210507T012242Z:81c4d12e-3cdb-4961-ae2b-69e881a190d2" + "x-ms-correlation-request-id": "037c9d74-919a-4ccc-a4aa-1ba8ed675ec7", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "037c9d74-919a-4ccc-a4aa-1ba8ed675ec7", + "x-ms-routing-request-id": "WESTUS2:20210519T190230Z:037c9d74-919a-4ccc-a4aa-1ba8ed675ec7" }, "ResponseBody": [] }, @@ -5714,8 +5682,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "33f206d978c00828529ea6b0e1f10f94", "x-ms-return-client-request-id": "true" }, @@ -5724,17 +5691,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:43 GMT", + "Date": "Wed, 19 May 2021 19:02:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7a8deee-af1a-49a1-9000-1cc73ef89a87", - "x-ms-ratelimit-remaining-subscription-reads": "11618", - "x-ms-request-id": "c7a8deee-af1a-49a1-9000-1cc73ef89a87", - "x-ms-routing-request-id": "WESTUS2:20210507T012243Z:c7a8deee-af1a-49a1-9000-1cc73ef89a87" + "x-ms-correlation-request-id": "ed7bd376-4b24-4867-877c-03b5a7a3370a", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "ed7bd376-4b24-4867-877c-03b5a7a3370a", + "x-ms-routing-request-id": "WESTUS2:20210519T190231Z:ed7bd376-4b24-4867-877c-03b5a7a3370a" }, "ResponseBody": [] }, @@ -5743,8 +5710,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22242384cfee328c6142a6de7bfc14bb", "x-ms-return-client-request-id": "true" }, @@ -5753,17 +5719,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:44 GMT", + "Date": "Wed, 19 May 2021 19:02:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69c2d9e2-50dd-4302-8f16-e39d6cf56c79", - "x-ms-ratelimit-remaining-subscription-reads": "11616", - "x-ms-request-id": "69c2d9e2-50dd-4302-8f16-e39d6cf56c79", - "x-ms-routing-request-id": "WESTUS2:20210507T012244Z:69c2d9e2-50dd-4302-8f16-e39d6cf56c79" + "x-ms-correlation-request-id": "dbb2c334-3e9f-4d34-aa53-b32e2adebd02", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "dbb2c334-3e9f-4d34-aa53-b32e2adebd02", + "x-ms-routing-request-id": "WESTUS2:20210519T190232Z:dbb2c334-3e9f-4d34-aa53-b32e2adebd02" }, "ResponseBody": [] }, @@ -5772,8 +5738,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c65296179b5aa91894f16c6cc49fa381", "x-ms-return-client-request-id": "true" }, @@ -5782,17 +5747,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:45 GMT", + "Date": "Wed, 19 May 2021 19:02:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e3babb2-9734-456b-8355-9ecf663610a0", - "x-ms-ratelimit-remaining-subscription-reads": "11614", - "x-ms-request-id": "0e3babb2-9734-456b-8355-9ecf663610a0", - "x-ms-routing-request-id": "WESTUS2:20210507T012245Z:0e3babb2-9734-456b-8355-9ecf663610a0" + "x-ms-correlation-request-id": "6b3ad44f-af77-4645-97f1-1ef830300545", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "6b3ad44f-af77-4645-97f1-1ef830300545", + "x-ms-routing-request-id": "WESTUS2:20210519T190233Z:6b3ad44f-af77-4645-97f1-1ef830300545" }, "ResponseBody": [] }, @@ -5801,8 +5766,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a38f8b5479120aa47abfd27dd14a8d55", "x-ms-return-client-request-id": "true" }, @@ -5811,17 +5775,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:46 GMT", + "Date": "Wed, 19 May 2021 19:02:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d9e1120-12d5-4138-af3a-cd250f2c0410", - "x-ms-ratelimit-remaining-subscription-reads": "11612", - "x-ms-request-id": "9d9e1120-12d5-4138-af3a-cd250f2c0410", - "x-ms-routing-request-id": "WESTUS2:20210507T012246Z:9d9e1120-12d5-4138-af3a-cd250f2c0410" + "x-ms-correlation-request-id": "38b9284a-8899-437c-93aa-c219486aad91", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "38b9284a-8899-437c-93aa-c219486aad91", + "x-ms-routing-request-id": "WESTUS2:20210519T190234Z:38b9284a-8899-437c-93aa-c219486aad91" }, "ResponseBody": [] }, @@ -5830,8 +5794,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4b98eb89489ee83a0b7a8dfc62206ec1", "x-ms-return-client-request-id": "true" }, @@ -5840,17 +5803,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:47 GMT", + "Date": "Wed, 19 May 2021 19:02:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2c0bc0e-871f-4e6c-83dd-ce0a4d0c1b11", - "x-ms-ratelimit-remaining-subscription-reads": "11610", - "x-ms-request-id": "c2c0bc0e-871f-4e6c-83dd-ce0a4d0c1b11", - "x-ms-routing-request-id": "WESTUS2:20210507T012247Z:c2c0bc0e-871f-4e6c-83dd-ce0a4d0c1b11" + "x-ms-correlation-request-id": "916de02c-6ec1-4502-8846-7b2b8dd8f69e", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "916de02c-6ec1-4502-8846-7b2b8dd8f69e", + "x-ms-routing-request-id": "WESTUS2:20210519T190235Z:916de02c-6ec1-4502-8846-7b2b8dd8f69e" }, "ResponseBody": [] }, @@ -5859,8 +5822,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f08a249e706d9ea8f1484c9ac99ad84a", "x-ms-return-client-request-id": "true" }, @@ -5869,17 +5831,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:48 GMT", + "Date": "Wed, 19 May 2021 19:02:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d26c36df-4e2f-414c-9568-adb670ec4245", - "x-ms-ratelimit-remaining-subscription-reads": "11608", - "x-ms-request-id": "d26c36df-4e2f-414c-9568-adb670ec4245", - "x-ms-routing-request-id": "WESTUS2:20210507T012248Z:d26c36df-4e2f-414c-9568-adb670ec4245" + "x-ms-correlation-request-id": "90c5d709-6f15-4ce1-9df4-8e2d18acb997", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "90c5d709-6f15-4ce1-9df4-8e2d18acb997", + "x-ms-routing-request-id": "WESTUS2:20210519T190237Z:90c5d709-6f15-4ce1-9df4-8e2d18acb997" }, "ResponseBody": [] }, @@ -5888,8 +5850,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d9e2176458070be250a69897eba8a75a", "x-ms-return-client-request-id": "true" }, @@ -5898,17 +5859,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:49 GMT", + "Date": "Wed, 19 May 2021 19:02:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9a743b7-0f82-46a3-bb8d-5f729f4c24b4", - "x-ms-ratelimit-remaining-subscription-reads": "11606", - "x-ms-request-id": "b9a743b7-0f82-46a3-bb8d-5f729f4c24b4", - "x-ms-routing-request-id": "WESTUS2:20210507T012249Z:b9a743b7-0f82-46a3-bb8d-5f729f4c24b4" + "x-ms-correlation-request-id": "c34fe6f0-e49d-42e0-ac9b-26d02162db93", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "c34fe6f0-e49d-42e0-ac9b-26d02162db93", + "x-ms-routing-request-id": "WESTUS2:20210519T190238Z:c34fe6f0-e49d-42e0-ac9b-26d02162db93" }, "ResponseBody": [] }, @@ -5917,8 +5878,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "acdf10519cbf18e842fa5a56fba01f70", "x-ms-return-client-request-id": "true" }, @@ -5927,17 +5887,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:50 GMT", + "Date": "Wed, 19 May 2021 19:02:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2589e8b-305f-49a3-919e-6408e70a4208", - "x-ms-ratelimit-remaining-subscription-reads": "11604", - "x-ms-request-id": "d2589e8b-305f-49a3-919e-6408e70a4208", - "x-ms-routing-request-id": "WESTUS2:20210507T012250Z:d2589e8b-305f-49a3-919e-6408e70a4208" + "x-ms-correlation-request-id": "31df6612-00ef-4c1c-8c60-e7f485e9c540", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "31df6612-00ef-4c1c-8c60-e7f485e9c540", + "x-ms-routing-request-id": "WESTUS2:20210519T190239Z:31df6612-00ef-4c1c-8c60-e7f485e9c540" }, "ResponseBody": [] }, @@ -5946,8 +5906,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4b9743a2943d45ba417e9fc6d811b349", "x-ms-return-client-request-id": "true" }, @@ -5956,17 +5915,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:51 GMT", + "Date": "Wed, 19 May 2021 19:02:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b285786-fcbf-4420-a6b1-ec089a81a8a5", - "x-ms-ratelimit-remaining-subscription-reads": "11602", - "x-ms-request-id": "0b285786-fcbf-4420-a6b1-ec089a81a8a5", - "x-ms-routing-request-id": "WESTUS2:20210507T012251Z:0b285786-fcbf-4420-a6b1-ec089a81a8a5" + "x-ms-correlation-request-id": "50de1738-efb1-472b-978b-cbfb7f5bba2a", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "50de1738-efb1-472b-978b-cbfb7f5bba2a", + "x-ms-routing-request-id": "WESTUS2:20210519T190240Z:50de1738-efb1-472b-978b-cbfb7f5bba2a" }, "ResponseBody": [] }, @@ -5975,8 +5934,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b848f2a02bbac88a2eca960dfe8c10b0", "x-ms-return-client-request-id": "true" }, @@ -5985,17 +5943,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:52 GMT", + "Date": "Wed, 19 May 2021 19:02:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e938076-dc21-4df0-af1d-324f680b5743", - "x-ms-ratelimit-remaining-subscription-reads": "11600", - "x-ms-request-id": "4e938076-dc21-4df0-af1d-324f680b5743", - "x-ms-routing-request-id": "WESTUS2:20210507T012253Z:4e938076-dc21-4df0-af1d-324f680b5743" + "x-ms-correlation-request-id": "1e212332-b0e2-4843-8d3f-cb37dbb4410f", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "1e212332-b0e2-4843-8d3f-cb37dbb4410f", + "x-ms-routing-request-id": "WESTUS2:20210519T190241Z:1e212332-b0e2-4843-8d3f-cb37dbb4410f" }, "ResponseBody": [] }, @@ -6004,8 +5962,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a7f427865b10bd1c55996a41fc214031", "x-ms-return-client-request-id": "true" }, @@ -6014,17 +5971,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:53 GMT", + "Date": "Wed, 19 May 2021 19:02:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23c8d698-ff59-4d06-9806-3205cc946b87", - "x-ms-ratelimit-remaining-subscription-reads": "11598", - "x-ms-request-id": "23c8d698-ff59-4d06-9806-3205cc946b87", - "x-ms-routing-request-id": "WESTUS2:20210507T012254Z:23c8d698-ff59-4d06-9806-3205cc946b87" + "x-ms-correlation-request-id": "f7eb7962-fdc1-411b-8e44-f41bb32a092c", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "f7eb7962-fdc1-411b-8e44-f41bb32a092c", + "x-ms-routing-request-id": "WESTUS2:20210519T190242Z:f7eb7962-fdc1-411b-8e44-f41bb32a092c" }, "ResponseBody": [] }, @@ -6033,8 +5990,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09b51147665777b6b8cf1d72fdad47b5", "x-ms-return-client-request-id": "true" }, @@ -6043,17 +5999,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:54 GMT", + "Date": "Wed, 19 May 2021 19:02:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "669edd2e-73b5-42a3-8831-0d83369a1d16", - "x-ms-ratelimit-remaining-subscription-reads": "11596", - "x-ms-request-id": "669edd2e-73b5-42a3-8831-0d83369a1d16", - "x-ms-routing-request-id": "WESTUS2:20210507T012255Z:669edd2e-73b5-42a3-8831-0d83369a1d16" + "x-ms-correlation-request-id": "f32a6bbe-0d8c-4b26-8720-6f82234caba5", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "f32a6bbe-0d8c-4b26-8720-6f82234caba5", + "x-ms-routing-request-id": "WESTUS2:20210519T190243Z:f32a6bbe-0d8c-4b26-8720-6f82234caba5" }, "ResponseBody": [] }, @@ -6062,8 +6018,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b03fef6e0b1c4438d58b6320c049cb0d", "x-ms-return-client-request-id": "true" }, @@ -6072,17 +6027,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:55 GMT", + "Date": "Wed, 19 May 2021 19:02:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7084bdd5-60cc-43a3-9a64-873be5d7c65e", - "x-ms-ratelimit-remaining-subscription-reads": "11594", - "x-ms-request-id": "7084bdd5-60cc-43a3-9a64-873be5d7c65e", - "x-ms-routing-request-id": "WESTUS2:20210507T012256Z:7084bdd5-60cc-43a3-9a64-873be5d7c65e" + "x-ms-correlation-request-id": "b7e69797-0506-45a2-a253-05a6e3ef5daa", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "b7e69797-0506-45a2-a253-05a6e3ef5daa", + "x-ms-routing-request-id": "WESTUS2:20210519T190244Z:b7e69797-0506-45a2-a253-05a6e3ef5daa" }, "ResponseBody": [] }, @@ -6091,8 +6046,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "edc6658a06d61f59717dee413eaabfa8", "x-ms-return-client-request-id": "true" }, @@ -6101,17 +6055,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:56 GMT", + "Date": "Wed, 19 May 2021 19:02:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2edc2c24-ddd5-419c-9158-a70ecc9962f9", - "x-ms-ratelimit-remaining-subscription-reads": "11592", - "x-ms-request-id": "2edc2c24-ddd5-419c-9158-a70ecc9962f9", - "x-ms-routing-request-id": "WESTUS2:20210507T012257Z:2edc2c24-ddd5-419c-9158-a70ecc9962f9" + "x-ms-correlation-request-id": "48a59983-976c-4385-96a0-5976d1169829", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "48a59983-976c-4385-96a0-5976d1169829", + "x-ms-routing-request-id": "WESTUS2:20210519T190245Z:48a59983-976c-4385-96a0-5976d1169829" }, "ResponseBody": [] }, @@ -6120,8 +6074,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0dd2b55290e13b14d87134cc0395b66f", "x-ms-return-client-request-id": "true" }, @@ -6130,17 +6083,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:57 GMT", + "Date": "Wed, 19 May 2021 19:02:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8c5d308-cdf9-4839-ba87-083538a3ddee", - "x-ms-ratelimit-remaining-subscription-reads": "11590", - "x-ms-request-id": "b8c5d308-cdf9-4839-ba87-083538a3ddee", - "x-ms-routing-request-id": "WESTUS2:20210507T012258Z:b8c5d308-cdf9-4839-ba87-083538a3ddee" + "x-ms-correlation-request-id": "f59c0f28-2a75-48fa-96a4-7bd10cd863bf", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "f59c0f28-2a75-48fa-96a4-7bd10cd863bf", + "x-ms-routing-request-id": "WESTUS2:20210519T190246Z:f59c0f28-2a75-48fa-96a4-7bd10cd863bf" }, "ResponseBody": [] }, @@ -6149,8 +6102,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "98e80f035ae767de96203e9e1cf6052b", "x-ms-return-client-request-id": "true" }, @@ -6159,17 +6111,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:58 GMT", + "Date": "Wed, 19 May 2021 19:02:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4b2ade1-f3f8-4502-bef3-545ed91e6279", - "x-ms-ratelimit-remaining-subscription-reads": "11588", - "x-ms-request-id": "a4b2ade1-f3f8-4502-bef3-545ed91e6279", - "x-ms-routing-request-id": "WESTUS2:20210507T012259Z:a4b2ade1-f3f8-4502-bef3-545ed91e6279" + "x-ms-correlation-request-id": "317745d9-4982-47f8-9159-0f1fb1996353", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "317745d9-4982-47f8-9159-0f1fb1996353", + "x-ms-routing-request-id": "WESTUS2:20210519T190247Z:317745d9-4982-47f8-9159-0f1fb1996353" }, "ResponseBody": [] }, @@ -6178,8 +6130,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0bcebbcbbe76fa2b508a1465d28d1cdc", "x-ms-return-client-request-id": "true" }, @@ -6188,17 +6139,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:22:59 GMT", + "Date": "Wed, 19 May 2021 19:02:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cbb38dea-4633-4dd9-9ade-cee7f6921efe", - "x-ms-ratelimit-remaining-subscription-reads": "11586", - "x-ms-request-id": "cbb38dea-4633-4dd9-9ade-cee7f6921efe", - "x-ms-routing-request-id": "WESTUS2:20210507T012300Z:cbb38dea-4633-4dd9-9ade-cee7f6921efe" + "x-ms-correlation-request-id": "e6e1e2b7-3ae7-419b-afc4-0ea20d52f8c5", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "e6e1e2b7-3ae7-419b-afc4-0ea20d52f8c5", + "x-ms-routing-request-id": "WESTUS2:20210519T190248Z:e6e1e2b7-3ae7-419b-afc4-0ea20d52f8c5" }, "ResponseBody": [] }, @@ -6207,8 +6158,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f3e7fc727c1f7c0d66b76c151751fe2", "x-ms-return-client-request-id": "true" }, @@ -6217,17 +6167,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:00 GMT", + "Date": "Wed, 19 May 2021 19:02:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e2b61ce-c204-4514-a716-3d59d452c27f", - "x-ms-ratelimit-remaining-subscription-reads": "11584", - "x-ms-request-id": "6e2b61ce-c204-4514-a716-3d59d452c27f", - "x-ms-routing-request-id": "WESTUS2:20210507T012301Z:6e2b61ce-c204-4514-a716-3d59d452c27f" + "x-ms-correlation-request-id": "6463f8dc-2401-4917-912c-cf72faa7a299", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "6463f8dc-2401-4917-912c-cf72faa7a299", + "x-ms-routing-request-id": "WESTUS2:20210519T190249Z:6463f8dc-2401-4917-912c-cf72faa7a299" }, "ResponseBody": [] }, @@ -6236,8 +6186,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4800086baac644f9e3ee475d46799509", "x-ms-return-client-request-id": "true" }, @@ -6246,17 +6195,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:01 GMT", + "Date": "Wed, 19 May 2021 19:02:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2f98d22-5193-4da1-8180-5055e120687f", - "x-ms-ratelimit-remaining-subscription-reads": "11582", - "x-ms-request-id": "b2f98d22-5193-4da1-8180-5055e120687f", - "x-ms-routing-request-id": "WESTUS2:20210507T012302Z:b2f98d22-5193-4da1-8180-5055e120687f" + "x-ms-correlation-request-id": "f642c6b4-1e81-4f86-b7b9-4884225132a8", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "f642c6b4-1e81-4f86-b7b9-4884225132a8", + "x-ms-routing-request-id": "WESTUS2:20210519T190250Z:f642c6b4-1e81-4f86-b7b9-4884225132a8" }, "ResponseBody": [] }, @@ -6265,8 +6214,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9dd76203d6b8a469fad7350b476aa8da", "x-ms-return-client-request-id": "true" }, @@ -6275,17 +6223,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:02 GMT", + "Date": "Wed, 19 May 2021 19:02:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0f18aa2-d167-4aad-9c38-e4cda96d67bb", - "x-ms-ratelimit-remaining-subscription-reads": "11580", - "x-ms-request-id": "b0f18aa2-d167-4aad-9c38-e4cda96d67bb", - "x-ms-routing-request-id": "WESTUS2:20210507T012303Z:b0f18aa2-d167-4aad-9c38-e4cda96d67bb" + "x-ms-correlation-request-id": "d7bb77e8-f25a-4631-8787-5955cccc4a6e", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "d7bb77e8-f25a-4631-8787-5955cccc4a6e", + "x-ms-routing-request-id": "WESTUS2:20210519T190251Z:d7bb77e8-f25a-4631-8787-5955cccc4a6e" }, "ResponseBody": [] }, @@ -6294,8 +6242,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9fa326bd38c1c1585f94bd2e063b15d", "x-ms-return-client-request-id": "true" }, @@ -6304,17 +6251,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:03 GMT", + "Date": "Wed, 19 May 2021 19:02:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "092acec4-b347-4d62-887a-f8d9e2837ab8", - "x-ms-ratelimit-remaining-subscription-reads": "11578", - "x-ms-request-id": "092acec4-b347-4d62-887a-f8d9e2837ab8", - "x-ms-routing-request-id": "WESTUS2:20210507T012304Z:092acec4-b347-4d62-887a-f8d9e2837ab8" + "x-ms-correlation-request-id": "0c61db8f-37de-4b2e-91aa-1830abf057ba", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "0c61db8f-37de-4b2e-91aa-1830abf057ba", + "x-ms-routing-request-id": "WESTUS2:20210519T190252Z:0c61db8f-37de-4b2e-91aa-1830abf057ba" }, "ResponseBody": [] }, @@ -6323,8 +6270,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eebd6dd5819e94299f5b4def75eefc79", "x-ms-return-client-request-id": "true" }, @@ -6333,17 +6279,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:04 GMT", + "Date": "Wed, 19 May 2021 19:02:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5b2e13b-b69e-42d2-804a-089c0d40bed1", - "x-ms-ratelimit-remaining-subscription-reads": "11576", - "x-ms-request-id": "b5b2e13b-b69e-42d2-804a-089c0d40bed1", - "x-ms-routing-request-id": "WESTUS2:20210507T012305Z:b5b2e13b-b69e-42d2-804a-089c0d40bed1" + "x-ms-correlation-request-id": "8fc80a04-f497-472e-a364-020c75dd308b", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "8fc80a04-f497-472e-a364-020c75dd308b", + "x-ms-routing-request-id": "WESTUS2:20210519T190253Z:8fc80a04-f497-472e-a364-020c75dd308b" }, "ResponseBody": [] }, @@ -6352,8 +6298,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "13f16c45cb7e307c4dbb17be8b96c497", "x-ms-return-client-request-id": "true" }, @@ -6362,17 +6307,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:05 GMT", + "Date": "Wed, 19 May 2021 19:02:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d52dac48-d3f6-4b8d-9b1d-9a811243417f", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "d52dac48-d3f6-4b8d-9b1d-9a811243417f", - "x-ms-routing-request-id": "WESTUS:20210507T012306Z:d52dac48-d3f6-4b8d-9b1d-9a811243417f" + "x-ms-correlation-request-id": "44398e5c-e698-4379-b1ff-5b4eb13277c4", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "44398e5c-e698-4379-b1ff-5b4eb13277c4", + "x-ms-routing-request-id": "WESTUS2:20210519T190254Z:44398e5c-e698-4379-b1ff-5b4eb13277c4" }, "ResponseBody": [] }, @@ -6381,8 +6326,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da35d725b9ace93c08652a318525a697", "x-ms-return-client-request-id": "true" }, @@ -6391,17 +6335,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:06 GMT", + "Date": "Wed, 19 May 2021 19:02:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14588636-fcd0-403f-b7c4-9f2aea29e441", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "14588636-fcd0-403f-b7c4-9f2aea29e441", - "x-ms-routing-request-id": "WESTUS:20210507T012307Z:14588636-fcd0-403f-b7c4-9f2aea29e441" + "x-ms-correlation-request-id": "491f427a-c12f-44ee-b659-f8f807be8838", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "491f427a-c12f-44ee-b659-f8f807be8838", + "x-ms-routing-request-id": "WESTUS2:20210519T190255Z:491f427a-c12f-44ee-b659-f8f807be8838" }, "ResponseBody": [] }, @@ -6410,8 +6354,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "738dd1fd9d710adef18da1e2696b0808", "x-ms-return-client-request-id": "true" }, @@ -6420,17 +6363,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:07 GMT", + "Date": "Wed, 19 May 2021 19:02:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "352339ae-5c78-43e3-bf74-01bd0903dd8d", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "352339ae-5c78-43e3-bf74-01bd0903dd8d", - "x-ms-routing-request-id": "WESTUS:20210507T012308Z:352339ae-5c78-43e3-bf74-01bd0903dd8d" + "x-ms-correlation-request-id": "0fddb8a7-5c25-408c-b939-f01869dfd570", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "0fddb8a7-5c25-408c-b939-f01869dfd570", + "x-ms-routing-request-id": "WESTUS2:20210519T190256Z:0fddb8a7-5c25-408c-b939-f01869dfd570" }, "ResponseBody": [] }, @@ -6439,8 +6382,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9dc9b69722b88bcd2f080b19a14aaa27", "x-ms-return-client-request-id": "true" }, @@ -6449,17 +6391,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:08 GMT", + "Date": "Wed, 19 May 2021 19:02:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f754ce16-a967-4839-b879-9bcb9e56edcd", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "f754ce16-a967-4839-b879-9bcb9e56edcd", - "x-ms-routing-request-id": "WESTUS:20210507T012309Z:f754ce16-a967-4839-b879-9bcb9e56edcd" + "x-ms-correlation-request-id": "dd80ff8a-449f-4ba0-8ad0-4be61b8f2c0b", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "dd80ff8a-449f-4ba0-8ad0-4be61b8f2c0b", + "x-ms-routing-request-id": "WESTUS2:20210519T190257Z:dd80ff8a-449f-4ba0-8ad0-4be61b8f2c0b" }, "ResponseBody": [] }, @@ -6468,8 +6410,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bac0801450098826f92be81f185a7f9d", "x-ms-return-client-request-id": "true" }, @@ -6478,17 +6419,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:10 GMT", + "Date": "Wed, 19 May 2021 19:02:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "67e46d0b-84da-4816-9cb5-010139595d1b", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "67e46d0b-84da-4816-9cb5-010139595d1b", - "x-ms-routing-request-id": "WESTUS:20210507T012310Z:67e46d0b-84da-4816-9cb5-010139595d1b" + "x-ms-correlation-request-id": "1d40679d-12d9-4917-ba3f-47808b5df2a2", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "1d40679d-12d9-4917-ba3f-47808b5df2a2", + "x-ms-routing-request-id": "WESTUS2:20210519T190258Z:1d40679d-12d9-4917-ba3f-47808b5df2a2" }, "ResponseBody": [] }, @@ -6497,8 +6438,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cf9a225c085cdbdf0401446892c568a6", "x-ms-return-client-request-id": "true" }, @@ -6507,17 +6447,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:11 GMT", + "Date": "Wed, 19 May 2021 19:02:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e10266db-c4cb-460c-abf8-d9121b7267d0", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "e10266db-c4cb-460c-abf8-d9121b7267d0", - "x-ms-routing-request-id": "WESTUS:20210507T012312Z:e10266db-c4cb-460c-abf8-d9121b7267d0" + "x-ms-correlation-request-id": "2b991234-db01-49bf-9cea-81531eaa15af", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "2b991234-db01-49bf-9cea-81531eaa15af", + "x-ms-routing-request-id": "WESTUS2:20210519T190259Z:2b991234-db01-49bf-9cea-81531eaa15af" }, "ResponseBody": [] }, @@ -6526,8 +6466,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e9cd7ae34eaa46fe8f40a48c39ae73d5", "x-ms-return-client-request-id": "true" }, @@ -6536,17 +6475,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:12 GMT", + "Date": "Wed, 19 May 2021 19:03:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c43dab76-6b78-4121-a71d-d091b0f9c244", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "c43dab76-6b78-4121-a71d-d091b0f9c244", - "x-ms-routing-request-id": "WESTUS:20210507T012313Z:c43dab76-6b78-4121-a71d-d091b0f9c244" + "x-ms-correlation-request-id": "05163368-f594-4619-971e-15a4313ce782", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "05163368-f594-4619-971e-15a4313ce782", + "x-ms-routing-request-id": "WESTUS2:20210519T190300Z:05163368-f594-4619-971e-15a4313ce782" }, "ResponseBody": [] }, @@ -6555,8 +6494,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7ebc6d88dab00ccaa0e5b6080cbdf634", "x-ms-return-client-request-id": "true" }, @@ -6565,17 +6503,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:13 GMT", + "Date": "Wed, 19 May 2021 19:03:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d5f3667-f0c1-4d38-af34-1ef3d1e00b79", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "3d5f3667-f0c1-4d38-af34-1ef3d1e00b79", - "x-ms-routing-request-id": "WESTUS:20210507T012314Z:3d5f3667-f0c1-4d38-af34-1ef3d1e00b79" + "x-ms-correlation-request-id": "e4925d2d-9b33-4589-91af-ca45da527ce2", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "e4925d2d-9b33-4589-91af-ca45da527ce2", + "x-ms-routing-request-id": "WESTUS2:20210519T190301Z:e4925d2d-9b33-4589-91af-ca45da527ce2" }, "ResponseBody": [] }, @@ -6584,8 +6522,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d3c41c2958c0ef323533f1b6452a155", "x-ms-return-client-request-id": "true" }, @@ -6594,17 +6531,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:14 GMT", + "Date": "Wed, 19 May 2021 19:03:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1007131-0641-438f-a9d2-58806b337d9f", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "e1007131-0641-438f-a9d2-58806b337d9f", - "x-ms-routing-request-id": "WESTUS:20210507T012315Z:e1007131-0641-438f-a9d2-58806b337d9f" + "x-ms-correlation-request-id": "d008ae1c-4f17-4378-a7fd-7ba514b4760a", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "d008ae1c-4f17-4378-a7fd-7ba514b4760a", + "x-ms-routing-request-id": "WESTUS2:20210519T190302Z:d008ae1c-4f17-4378-a7fd-7ba514b4760a" }, "ResponseBody": [] }, @@ -6613,8 +6550,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "24e06e8dea0808f6b0c149c498f639d2", "x-ms-return-client-request-id": "true" }, @@ -6623,17 +6559,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:15 GMT", + "Date": "Wed, 19 May 2021 19:03:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90c9ae1a-267c-4bd2-a0c8-b90c69524215", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "90c9ae1a-267c-4bd2-a0c8-b90c69524215", - "x-ms-routing-request-id": "WESTUS:20210507T012316Z:90c9ae1a-267c-4bd2-a0c8-b90c69524215" + "x-ms-correlation-request-id": "46832ab8-de7d-4a13-b277-c8d7afa7d0ab", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "46832ab8-de7d-4a13-b277-c8d7afa7d0ab", + "x-ms-routing-request-id": "WESTUS2:20210519T190303Z:46832ab8-de7d-4a13-b277-c8d7afa7d0ab" }, "ResponseBody": [] }, @@ -6642,8 +6578,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7ca6f4ad672f2497aae5b5c9aafa84e", "x-ms-return-client-request-id": "true" }, @@ -6652,17 +6587,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:16 GMT", + "Date": "Wed, 19 May 2021 19:03:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89ca8495-dacb-4342-85de-b20726803841", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "89ca8495-dacb-4342-85de-b20726803841", - "x-ms-routing-request-id": "WESTUS:20210507T012317Z:89ca8495-dacb-4342-85de-b20726803841" + "x-ms-correlation-request-id": "812191b5-2f55-4dd0-a413-a350fc03e5dc", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "812191b5-2f55-4dd0-a413-a350fc03e5dc", + "x-ms-routing-request-id": "WESTUS2:20210519T190304Z:812191b5-2f55-4dd0-a413-a350fc03e5dc" }, "ResponseBody": [] }, @@ -6671,8 +6606,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9e7b6043d2dcd82b4b33edcb4c2e752d", "x-ms-return-client-request-id": "true" }, @@ -6681,17 +6615,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:17 GMT", + "Date": "Wed, 19 May 2021 19:03:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ce3fcd0-97d5-4eca-ab76-ea677fcc3270", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "2ce3fcd0-97d5-4eca-ab76-ea677fcc3270", - "x-ms-routing-request-id": "WESTUS:20210507T012318Z:2ce3fcd0-97d5-4eca-ab76-ea677fcc3270" + "x-ms-correlation-request-id": "fc13d8c2-ec99-46bf-8c39-56a14a5233d5", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "fc13d8c2-ec99-46bf-8c39-56a14a5233d5", + "x-ms-routing-request-id": "WESTUS2:20210519T190305Z:fc13d8c2-ec99-46bf-8c39-56a14a5233d5" }, "ResponseBody": [] }, @@ -6700,8 +6634,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f4d16d19aa88b6e325eda95a8e996d01", "x-ms-return-client-request-id": "true" }, @@ -6710,17 +6643,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 01:23:18 GMT", + "Date": "Wed, 19 May 2021 19:03:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb013c7f-3535-4953-ad68-0fe66f38b899", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "eb013c7f-3535-4953-ad68-0fe66f38b899", - "x-ms-routing-request-id": "WESTUS:20210507T012319Z:eb013c7f-3535-4953-ad68-0fe66f38b899" + "x-ms-correlation-request-id": "549e32f5-e114-4826-85d2-ab32d4746085", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "549e32f5-e114-4826-85d2-ab32d4746085", + "x-ms-routing-request-id": "WESTUS2:20210519T190306Z:549e32f5-e114-4826-85d2-ab32d4746085" }, "ResponseBody": [] }, @@ -6729,8 +6662,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ec98fcb66bc1c94391acd59a45611692-7a8312eeab232541-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210506.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3881fa199b7a77f544f1ab3ee97da54c", "x-ms-return-client-request-id": "true" }, @@ -6738,15 +6670,15 @@ "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 07 May 2021 01:23:19 GMT", + "Date": "Wed, 19 May 2021 19:03:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33adaa8a-17d6-4bf8-b1b9-6f6e87e6bcf1", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "33adaa8a-17d6-4bf8-b1b9-6f6e87e6bcf1", - "x-ms-routing-request-id": "WESTUS:20210507T012320Z:33adaa8a-17d6-4bf8-b1b9-6f6e87e6bcf1" + "x-ms-correlation-request-id": "9f98637d-1b8c-4d6e-929c-0a6a18953f73", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "9f98637d-1b8c-4d6e-929c-0a6a18953f73", + "x-ms-routing-request-id": "WESTUS2:20210519T190307Z:9f98637d-1b8c-4d6e-929c-0a6a18953f73" }, "ResponseBody": [] }