From 9142607d2b25d3f31a791d353f250f7e56d1f1e8 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Mon, 15 Mar 2021 12:57:35 -0700 Subject: [PATCH 01/35] WIP --- common/ManagementCoreShared/IClientContext.cs | 17 ++++++++++ eng/Directory.Build.Data.targets | 15 ++++++-- .../Azure.ResourceManager.Compute.sln | 14 ++++++++ .../src/Azure.ResourceManager.Compute.csproj | 6 +++- .../src/AzureResourceManagerClient.cs | 34 ++++++++++--------- .../src/ContainerBase.cs | 10 +++--- .../src/ExtensionResourceOperationsBase.cs | 10 +++--- .../src/GenericResourceOperations.cs | 6 ++-- .../src/OperationsBase.cs | 22 ++++++------ .../src/ResourceGroupContainer.cs | 6 ++-- .../src/ResourceGroupOperations.cs | 10 +++--- .../src/ResourceListOperations.cs | 2 +- .../src/ResourceOperationsBase.cs | 24 ++++++------- .../src/Resources/LocationContainer.cs | 4 +-- .../src/SubscriptionContainer.cs | 18 +++++----- .../src/SubscriptionOperations.cs | 18 +++++----- .../tests/ClientContextImplementation.cs | 24 +++++++++++++ .../tests/ResourceListOperationsTest.cs | 7 ++-- ...Azure.ResourceManager.Authorization.csproj | 1 + .../authorization/Proto.Authorization.csproj | 1 + .../authorization/RoleAssignmentContainer.cs | 2 +- .../authorization/RoleAssignmentOperations.cs | 4 +-- .../compute/AvailabilitySetContainer.cs | 6 ++-- .../compute/AvailabilitySetOperations.cs | 6 ++-- .../Extensions/SubscriptionExtensions.cs | 6 ++-- .../Proto.Client/compute/Proto.Compute.csproj | 4 +++ .../compute/VirtualMachineContainer.cs | 6 ++-- .../compute/VirtualMachineOperations.cs | 6 ++-- .../Extensions/SubscriptionExtensions.cs | 6 ++-- .../network/NetworkInterfaceContainer.cs | 6 ++-- .../network/NetworkInterfaceOperations.cs | 6 ++-- .../network/NetworkSecurityGroupContainer.cs | 6 ++-- .../network/NetworkSecurityGroupOperations.cs | 6 ++-- .../Proto.Client/network/Proto.Network.csproj | 2 ++ .../network/PublicIpAddressContainer.cs | 6 ++-- .../network/PublicIpAddressOperations.cs | 6 ++-- .../Proto.Client/network/SubnetContainer.cs | 6 ++-- .../Proto.Client/network/SubnetOperations.cs | 6 ++-- .../network/VirtualNetworkContainer.cs | 6 ++-- .../network/VirtualNetworkOperations.cs | 6 ++-- .../src/Scenarios/CreateSingleVmExample.cs | 6 ++-- 41 files changed, 215 insertions(+), 148 deletions(-) create mode 100644 common/ManagementCoreShared/IClientContext.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/ClientContextImplementation.cs diff --git a/common/ManagementCoreShared/IClientContext.cs b/common/ManagementCoreShared/IClientContext.cs new file mode 100644 index 0000000000000..22bd8a246cb17 --- /dev/null +++ b/common/ManagementCoreShared/IClientContext.cs @@ -0,0 +1,17 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + internal interface IClientContext + { + internal AzureResourceManagerClientOptions ClientOptions { get; set; } + + internal TokenCredential Credential { get; set; } + + internal Uri BaseUri { get; set; } + } +} diff --git a/eng/Directory.Build.Data.targets b/eng/Directory.Build.Data.targets index 62d24f93e94c4..a0f8fca86688c 100644 --- a/eng/Directory.Build.Data.targets +++ b/eng/Directory.Build.Data.targets @@ -138,11 +138,22 @@ - + + + + $(MSBuildThisFileDirectory)/../common/ManagementCoreShared + + + + + + + - + diff --git a/sdk/compute/Azure.ResourceManager.Compute/Azure.ResourceManager.Compute.sln b/sdk/compute/Azure.ResourceManager.Compute/Azure.ResourceManager.Compute.sln index 827c599e0d3a1..a3d19ac8e1687 100644 --- a/sdk/compute/Azure.ResourceManager.Compute/Azure.ResourceManager.Compute.sln +++ b/sdk/compute/Azure.ResourceManager.Compute/Azure.ResourceManager.Compute.sln @@ -10,6 +10,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core", "..\..\core\Az EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{DF15D10D-3646-447E-B00B-49506D142322}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Core", "..\..\resourcemanager\Azure.ResourceManager.Core\src\Azure.ResourceManager.Core.csproj", "{CAE36261-9B8F-42A2-9043-461350D2A42E}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -68,6 +70,18 @@ Global {DF15D10D-3646-447E-B00B-49506D142322}.Release|x64.Build.0 = Release|Any CPU {DF15D10D-3646-447E-B00B-49506D142322}.Release|x86.ActiveCfg = Release|Any CPU {DF15D10D-3646-447E-B00B-49506D142322}.Release|x86.Build.0 = Release|Any CPU + {CAE36261-9B8F-42A2-9043-461350D2A42E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CAE36261-9B8F-42A2-9043-461350D2A42E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CAE36261-9B8F-42A2-9043-461350D2A42E}.Debug|x64.ActiveCfg = Debug|Any CPU + {CAE36261-9B8F-42A2-9043-461350D2A42E}.Debug|x64.Build.0 = Debug|Any CPU + {CAE36261-9B8F-42A2-9043-461350D2A42E}.Debug|x86.ActiveCfg = Debug|Any CPU + {CAE36261-9B8F-42A2-9043-461350D2A42E}.Debug|x86.Build.0 = Debug|Any CPU + {CAE36261-9B8F-42A2-9043-461350D2A42E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CAE36261-9B8F-42A2-9043-461350D2A42E}.Release|Any CPU.Build.0 = Release|Any CPU + {CAE36261-9B8F-42A2-9043-461350D2A42E}.Release|x64.ActiveCfg = Release|Any CPU + {CAE36261-9B8F-42A2-9043-461350D2A42E}.Release|x64.Build.0 = Release|Any CPU + {CAE36261-9B8F-42A2-9043-461350D2A42E}.Release|x86.ActiveCfg = Release|Any CPU + {CAE36261-9B8F-42A2-9043-461350D2A42E}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/sdk/compute/Azure.ResourceManager.Compute/src/Azure.ResourceManager.Compute.csproj b/sdk/compute/Azure.ResourceManager.Compute/src/Azure.ResourceManager.Compute.csproj index 17bae173ecb1a..effffcc0d0b8d 100644 --- a/sdk/compute/Azure.ResourceManager.Compute/src/Azure.ResourceManager.Compute.csproj +++ b/sdk/compute/Azure.ResourceManager.Compute/src/Azure.ResourceManager.Compute.csproj @@ -1,4 +1,4 @@ - + 1.0.0-preview.3 Azure.ResourceManager.Compute @@ -7,10 +7,14 @@ This is a beta preview vesion. This version uses a next-generation code generator that introduces important breaking changes, but also new features (such as intuitive authentication, custom HTTP pipeline, distributed tracing and much more). azure;management;compute + true $(NoWarn);AZC0001;AZC0008 + + + diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs index e5db0c8bee2e7..5bd18ab337d6f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs @@ -13,17 +13,13 @@ namespace Azure.ResourceManager.Core /// /// The entry point for all ARM clients. /// - public class AzureResourceManagerClient + public class AzureResourceManagerClient : IClientContext { /// /// The base URI of the service. /// internal const string DefaultUri = "https://management.azure.com"; - private readonly TokenCredential _credentials; - - private readonly Uri _baseUri; - /// /// Initializes a new instance of the class for mocking. /// @@ -82,9 +78,9 @@ public AzureResourceManagerClient(Uri baseUri, TokenCredential credential, Azure /// The client parameters to use in these operations. private AzureResourceManagerClient(string defaultSubscriptionId, Uri baseUri, TokenCredential credential, AzureResourceManagerClientOptions options = default) { - _credentials = credential; - _baseUri = baseUri; - ClientOptions = options ?? new AzureResourceManagerClientOptions(); + ((IClientContext)this).Credential = credential; + ((IClientContext)this).BaseUri = baseUri; + ((IClientContext)this).ClientOptions = options ?? new AzureResourceManagerClientOptions(); if (string.IsNullOrWhiteSpace(defaultSubscriptionId)) { @@ -109,20 +105,26 @@ private AzureResourceManagerClient(string defaultSubscriptionId, Uri baseUri, To public Subscription DefaultSubscription { get; private set; } /// - /// Gets the Azure resource manager client options. + /// Gets the Azure Resource Manager client options. + /// + AzureResourceManagerClientOptions IClientContext.ClientOptions { get; set; } + + /// + /// Gets the Azure credential. + /// + TokenCredential IClientContext.Credential { get; set; } + + /// + /// Gets the base URI of the service. /// - internal AzureResourceManagerClientOptions ClientOptions { get; } + Uri IClientContext.BaseUri { get; set; } /// /// Gets the Azure subscription operations. /// /// The guid of the subscription. /// Subscription operations. - public SubscriptionOperations GetSubscriptionOperations(string subscriptionGuid) => new SubscriptionOperations( - ClientOptions, - subscriptionGuid, - _credentials, - _baseUri); + public SubscriptionOperations GetSubscriptionOperations(string subscriptionGuid) => new SubscriptionOperations(this, subscriptionGuid); /// /// Gets the Azure subscriptions. @@ -130,7 +132,7 @@ private AzureResourceManagerClient(string defaultSubscriptionId, Uri baseUri, To /// Subscription container. public SubscriptionContainer GetSubscriptionContainer() { - return new SubscriptionContainer(ClientOptions, _credentials, _baseUri); + return new SubscriptionContainer(this); } /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs index 16cc90042c8a6..56d1312de36be 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs @@ -17,12 +17,10 @@ public abstract class ContainerBase : OperationsBase /// /// Initializes a new instance of the class. /// - /// The client parameters to use in these operations. + /// /// The identifier of the resource that is the target of operations. - /// A credential used to authenticate to an Azure Service. - /// The base URI of the service. - protected ContainerBase(AzureResourceManagerClientOptions options, ResourceIdentifier id, TokenCredential credential, Uri baseUri) - : base(options, id, credential, baseUri) + internal ContainerBase(IClientContext clientContext, ResourceIdentifier id) + : base(clientContext, id) { } @@ -31,7 +29,7 @@ protected ContainerBase(AzureResourceManagerClientOptions options, ResourceIdent /// /// The resource representing the parent resource. protected ContainerBase(ResourceOperationsBase parent) - : base(parent.ClientOptions, parent.Id, parent.Credential, parent.BaseUri) + : this(parent, parent.Id) { Parent = parent; } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs index ca83225f60b32..5d1456457b325 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs @@ -15,18 +15,18 @@ public abstract class ExtensionResourceOperationsBase : OperationsBase /// Initializes a new instance of the class. /// /// The operations to copy the client options from. - protected ExtensionResourceOperationsBase(OperationsBase genericOperations) - : base(genericOperations.ClientOptions, genericOperations.Id, genericOperations.Credential, genericOperations.BaseUri) + internal ExtensionResourceOperationsBase(OperationsBase genericOperations) + : this(genericOperations, genericOperations.Id) { } /// /// Initializes a new instance of the class. /// - /// The operations to copy the client options from. + /// /// The identifier of the extension resource. - protected ExtensionResourceOperationsBase(OperationsBase genericOperations, ResourceIdentifier id) - : base(genericOperations.ClientOptions, id, genericOperations.Credential, genericOperations.BaseUri) + internal ExtensionResourceOperationsBase(IClientContext clientContext, ResourceIdentifier id) + : base(clientContext, id) { } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs index ba5051ee88dbd..c5819caee80bc 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs @@ -31,10 +31,10 @@ internal GenericResourceOperations(ResourceOperationsBase operations, ResourceId protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; private ResourcesOperations Operations => new ResourcesManagementClient( - BaseUri, + ((IClientContext)this).BaseUri, Id.Subscription, - Credential, - ClientOptions.Convert()).Resources; + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).Resources; /// /// Delete the resource. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs index 4786be3aa5641..c8ef1edfce804 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs @@ -10,21 +10,19 @@ namespace Azure.ResourceManager.Core /// /// A class representing the operations that can be performed over a specific resource. /// - public abstract class OperationsBase + public abstract class OperationsBase : IClientContext { /// /// Initializes a new instance of the class. /// - /// The client parameters to use in these operations. + /// /// The identifier of the resource that is the target of operations. - /// A credential used to authenticate to an Azure Service. - /// The base URI of the service. - protected OperationsBase(AzureResourceManagerClientOptions options, ResourceIdentifier id, TokenCredential credential, Uri baseUri) + internal OperationsBase(IClientContext clientContext, ResourceIdentifier id) { - ClientOptions = options; + ((IClientContext)this).ClientOptions = clientContext.ClientOptions; Id = id; - Credential = credential; - BaseUri = baseUri; + ((IClientContext)this).Credential = clientContext.Credential; + ((IClientContext)this).BaseUri = clientContext.BaseUri; Validate(id); } @@ -37,17 +35,17 @@ protected OperationsBase(AzureResourceManagerClientOptions options, ResourceIden /// /// Gets the Azure Resource Manager client options. /// - public virtual AzureResourceManagerClientOptions ClientOptions { get; } + AzureResourceManagerClientOptions IClientContext.ClientOptions { get; set; } /// /// Gets the Azure credential. /// - public TokenCredential Credential { get; } + TokenCredential IClientContext.Credential { get; set; } /// /// Gets the base URI of the service. /// - public Uri BaseUri { get; } + Uri IClientContext.BaseUri { get; set; } /// /// Gets the valid Azure resource type for the current operations. @@ -58,7 +56,7 @@ protected OperationsBase(AzureResourceManagerClientOptions options, ResourceIden /// /// Gets the resource client. /// - protected ResourcesManagementClient ResourcesClient => new ResourcesManagementClient(BaseUri, Id.Subscription, Credential); + protected ResourcesManagementClient ResourcesClient => new ResourcesManagementClient(((IClientContext)this).BaseUri, Id.Subscription, ((IClientContext)this).Credential); /// /// Validate the resource identifier against current operations. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs index 8374a6c812561..e300d38ae9d87 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs @@ -26,10 +26,10 @@ internal ResourceGroupContainer(SubscriptionOperations subscription) protected override ResourceType ValidResourceType => SubscriptionOperations.ResourceType; private ResourceGroupsOperations Operations => new ResourcesManagementClient( - BaseUri, + ((IClientContext)this).BaseUri, Id.Subscription, - Credential, - ClientOptions.Convert()).ResourceGroups; + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).ResourceGroups; /// /// Constructs an object used to create a resource group. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs index 295abe3e07362..bea34151472ce 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs @@ -54,10 +54,10 @@ protected ResourceGroupOperations(ResourceOperationsBase options, ResourceIdenti protected override ResourceType ValidResourceType => ResourceType; private ResourceGroupsOperations Operations => new ResourcesManagementClient( - BaseUri, + ((IClientContext)this).BaseUri, Id.Subscription, - Credential, - ClientOptions.Convert()).ResourceGroups; + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).ResourceGroups; /// /// 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. @@ -249,7 +249,7 @@ public ArmResponse CreateResource> CreateResourceAsync ListAtContextAsync( private static ResourcesManagementClient GetResourcesClient(ResourceOperationsBase resourceOperations) { - return new ResourcesManagementClient(resourceOperations.BaseUri, resourceOperations.Id.Subscription, resourceOperations.Credential); + return new ResourcesManagementClient(((IClientContext)resourceOperations).BaseUri, resourceOperations.Id.Subscription, ((IClientContext)resourceOperations).Credential); } private static AsyncPageable ListAtContextInternalAsync( diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs index 2f0e7c1792b6e..3ab65bb9753ac 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs @@ -20,7 +20,7 @@ public abstract class ResourceOperationsBase : OperationsBase /// /// The operations representing the resource. protected ResourceOperationsBase(ResourceOperationsBase operations) - : base(operations.ClientOptions, operations.Id, operations.Credential, operations.BaseUri) + : base(operations, operations.Id) { } @@ -30,19 +30,17 @@ protected ResourceOperationsBase(ResourceOperationsBase operations) /// The operations to copy options from. /// The resource that is the target of operations. protected ResourceOperationsBase(ResourceOperationsBase options, ResourceIdentifier resourceId) - : base(options.ClientOptions, resourceId, options.Credential, options.BaseUri) + : base(options, resourceId) { } /// /// Initializes a new instance of the class. /// - /// The client parameters to use in these operations. - /// The identifier of the resource that is the target of operations. - /// A credential used to authenticate to an Azure Service. - /// The base URI of the service. - protected ResourceOperationsBase(AzureResourceManagerClientOptions options, ResourceIdentifier resourceId, TokenCredential credential, Uri baseUri) - : base(options, resourceId, credential, baseUri) + /// + /// + internal ResourceOperationsBase(IClientContext clientContext, ResourceIdentifier id) + : base(clientContext, id) { } } @@ -77,12 +75,10 @@ protected ResourceOperationsBase(ResourceOperationsBase parentOperations, Resour /// /// Initializes a new instance of the class. /// - /// The client parameters to use in these operations. - /// The identifier of the resource that is the target of operations. - /// A credential used to authenticate to an Azure Service. - /// The base URI of the service. - protected ResourceOperationsBase(AzureResourceManagerClientOptions options, ResourceIdentifier resourceId, TokenCredential credential, Uri baseUri) - : base(options, resourceId, credential, baseUri) + /// + /// + internal ResourceOperationsBase(IClientContext clientContext, ResourceIdentifier id) + : base(clientContext, id) { } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationContainer.cs index a87b0120127c2..5242a33ff1066 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationContainer.cs @@ -18,7 +18,7 @@ public class LocationContainer : OperationsBase /// /// The subscription that this location container belongs to. internal LocationContainer(SubscriptionOperations subscriptionOperations) - : base(subscriptionOperations.ClientOptions, subscriptionOperations.Id, subscriptionOperations.Credential, subscriptionOperations.BaseUri) + : base(subscriptionOperations, subscriptionOperations.Id) { } @@ -36,7 +36,7 @@ internal LocationContainer(SubscriptionOperations subscriptionOperations) /// Subscription container. public SubscriptionContainer GetSubscriptionContainer() { - return new SubscriptionContainer(ClientOptions, Credential, BaseUri); + return new SubscriptionContainer(this); } /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs index c4bb2ca123434..ad85886016b84 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs @@ -17,11 +17,9 @@ public class SubscriptionContainer : ContainerBase /// /// Initializes a new instance of the class. /// - /// The client parameters to use in these operations. - /// A credential used to authenticate to an Azure Service. - /// The base URI of the service. - internal SubscriptionContainer(AzureResourceManagerClientOptions options, TokenCredential credential, Uri baseUri) - : base(options, null, credential, baseUri) + /// + internal SubscriptionContainer(IClientContext clientContext) + : base(clientContext, null) { } @@ -34,10 +32,10 @@ internal SubscriptionContainer(AzureResourceManagerClientOptions options, TokenC /// Gets the operations that can be performed on the container. /// private SubscriptionsOperations Operations => new ResourcesManagementClient( - BaseUri, + ((IClientContext)this).BaseUri, Guid.NewGuid().ToString(), - Credential, - ClientOptions.Convert()).Subscriptions; + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).Subscriptions; /// /// Lists all subscriptions in the current container. @@ -82,12 +80,12 @@ protected override void Validate(ResourceIdentifier identifier) /// An instance of . protected override ResourceOperationsBase GetOperation(string subscriptionGuid) { - return new SubscriptionOperations(ClientOptions, subscriptionGuid, Credential, BaseUri); + return new SubscriptionOperations((IClientContext)this, subscriptionGuid); } private Func Converter() { - return s => new Subscription(new SubscriptionOperations(ClientOptions, s.SubscriptionId, Credential, BaseUri), new SubscriptionData(s)); + return s => new Subscription(new SubscriptionOperations(((IClientContext)this), s.SubscriptionId), new SubscriptionData(s)); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs index 58d527f3c6f42..3a2d83512c982 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs @@ -23,12 +23,10 @@ public class SubscriptionOperations : ResourceOperationsBase /// /// Initializes a new instance of the class. /// - /// The client parameters to use in these operations. - /// The Id of the subscription. - /// A credential used to authenticate to an Azure Service. - /// The base URI of the service. - internal SubscriptionOperations(AzureResourceManagerClientOptions options, string subscriptionId, TokenCredential credential, Uri baseUri) - : base(options, $"/subscriptions/{subscriptionId}", credential, baseUri) + /// + /// The Guid of the subscription. + internal SubscriptionOperations(IClientContext clientContext, string subscriptionGuid) + : base(clientContext, $"/subscriptions/{subscriptionGuid}") { } @@ -38,7 +36,7 @@ internal SubscriptionOperations(AzureResourceManagerClientOptions options, strin /// The subscription operations to copy client options from. /// The identifier of the subscription. protected SubscriptionOperations(SubscriptionOperations subscription, ResourceIdentifier id) - : base(subscription.ClientOptions, id, subscription.Credential, subscription.BaseUri) + : base(subscription, id) { } @@ -48,10 +46,10 @@ protected SubscriptionOperations(SubscriptionOperations subscription, ResourceId protected override ResourceType ValidResourceType => ResourceType; private SubscriptionsOperations SubscriptionsClient => new ResourcesManagementClient( - BaseUri, + ((IClientContext)this).BaseUri, Guid.NewGuid().ToString(), - Credential, - ClientOptions.Convert()).Subscriptions; + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).Subscriptions; /// /// Gets the resource group operations for a given resource group. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ClientContextImplementation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ClientContextImplementation.cs new file mode 100644 index 0000000000000..03a2869c88ab4 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ClientContextImplementation.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Azure.Core; +using Azure.Identity; + +namespace Azure.ResourceManager.Core.Tests +{ + class ClientContextImplementation : IClientContext + { + AzureResourceManagerClientOptions IClientContext.ClientOptions { get; set; } + TokenCredential IClientContext.Credential { get; set; } + Uri IClientContext.BaseUri { get; set; } + + public ClientContextImplementation() + { + ((IClientContext)this).ClientOptions = new AzureResourceManagerClientOptions(); + ((IClientContext)this).Credential = new DefaultAzureCredential(); // TODO: should make fake credential + ((IClientContext)this).BaseUri = new Uri("http://foo.com"); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ResourceListOperationsTest.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ResourceListOperationsTest.cs index 2794fbf7573f1..57654a5061c3b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ResourceListOperationsTest.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ResourceListOperationsTest.cs @@ -92,12 +92,11 @@ private static object TestListActivator(GenericResourceExpanded genericResource) private static ResourceGroupOperations GetResourceGroupOperations() { + var clientContext = new ClientContextImplementation(); var rgOp = new ResourceGroupOperations( new SubscriptionOperations( - new AzureResourceManagerClientOptions(), - Guid.Empty.ToString(), - new DefaultAzureCredential(), //should make a fake credential creation - new Uri("http://foo.com")), + clientContext, + Guid.Empty.ToString()), "rgName"); return rgOp; } diff --git a/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj b/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj index 00a1e88b84232..3dc7f2239b7a4 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj +++ b/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj @@ -4,6 +4,7 @@ Azure.ResourceManager.Authorization Azure Resource Manager client SDK for Azure resource provider Microsoft.Authorization azure;management;arm;resource manager;authorization + true diff --git a/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj b/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj index 2027a495657b5..c6608727da7d8 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj +++ b/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj @@ -25,6 +25,7 @@ + diff --git a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentContainer.cs b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentContainer.cs index c0a17bef35862..c656b9de20dd4 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentContainer.cs +++ b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentContainer.cs @@ -35,7 +35,7 @@ internal RoleAssignmentContainer(OperationsBase operations, ResourceIdentifier s /// /// Gets the resource type of the resource being created. /// - private RoleAssignmentsOperations Operations => new AuthorizationManagementClient(Id.Subscription, BaseUri, Credential).RoleAssignments; + private RoleAssignmentsOperations Operations => new AuthorizationManagementClient(Id.Subscription, ((IClientContext)this).BaseUri, ((IClientContext)this).Credential).RoleAssignments; /// /// Create a role assignment. This method blocks until the RoleAssignment is created on the service. diff --git a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs index bf94bb0852a2e..a5fbc3e10b8cd 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs +++ b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs @@ -41,8 +41,8 @@ internal RoleAssignmentOperations(OperationsBase operation, ResourceIdentifier i private RoleAssignmentsOperations Operations => new AuthorizationManagementClient( Id.Subscription, - BaseUri, - Credential).RoleAssignments; + ((IClientContext)this).BaseUri, + ((IClientContext)this).Credential).RoleAssignments; /// /// Delete a role assignment. This operation may involve multiple blocking calls to the service. diff --git a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs index 11e9b95f5f0b1..adc4eae3a78f9 100644 --- a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs +++ b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs @@ -134,10 +134,10 @@ public AsyncPageable ListByNameExpandedAsync(string filter, int } private AvailabilitySetsOperations Operations => new ComputeManagementClient( - BaseUri, + ((IClientContext)this).BaseUri, Id.Subscription, - Credential, - ClientOptions.Convert()).AvailabilitySets; + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).AvailabilitySets; /// diff --git a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs index 2fa2d675a44e8..f7121e5818edd 100644 --- a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs +++ b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs @@ -52,10 +52,10 @@ protected AvailabilitySetOperations(ResourceOperationsBase options, ResourceIden protected override ResourceType ValidResourceType => ResourceType; private AvailabilitySetsOperations Operations => new ComputeManagementClient( - BaseUri, + ((IClientContext)this).BaseUri, Id.Subscription, - Credential, - ClientOptions.Convert()).AvailabilitySets; + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).AvailabilitySets; /// /// The operation to delete an availability set. diff --git a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs index 8a9c3d619395a..b7c0853163330 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs @@ -31,10 +31,10 @@ public static Pageable ListVirtualMachines(this SubscriptionOper private static ComputeManagementClient GetComputeClient(SubscriptionOperations subscription) { return new ComputeManagementClient( - subscription.BaseUri, + ((IClientContext)subscription).BaseUri, subscription.Id.Subscription, - subscription.Credential, - subscription.ClientOptions.Convert()); + ((IClientContext)subscription).Credential, + ((IClientContext)subscription).ClientOptions.Convert()); } /// diff --git a/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj b/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj index c0592e2e8b519..c2dd58cc64ed7 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj +++ b/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj @@ -16,4 +16,8 @@ + + + + diff --git a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs index aa8e158fd3496..ea5ccae80cea5 100644 --- a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs +++ b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs @@ -25,10 +25,10 @@ internal VirtualMachineContainer(ResourceGroupOperations resourceGroup) } private VirtualMachinesOperations Operations => new ComputeManagementClient( - BaseUri, + ((IClientContext)this).BaseUri, Id.Subscription, - Credential, - ClientOptions.Convert()).VirtualMachines; + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).VirtualMachines; /// /// Gets the valid resource type for this object diff --git a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs index 4e0b39c17e938..9f8591c11e858 100644 --- a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs +++ b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs @@ -54,10 +54,10 @@ protected VirtualMachineOperations(ResourceOperationsBase operation, ResourceIde protected override ResourceType ValidResourceType => ResourceType; private VirtualMachinesOperations Operations => new ComputeManagementClient( - BaseUri, + ((IClientContext)this).BaseUri, Id.Subscription, - Credential, - ClientOptions.Convert()).VirtualMachines; + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).VirtualMachines; /// /// Initializes a new instance of the class from a . diff --git a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs index 84e66631beeaf..dda40a4972c41 100644 --- a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs @@ -19,9 +19,9 @@ private static NetworkManagementClient GetNetworkClient(SubscriptionOperations s { return new NetworkManagementClient( subscription.Id.Subscription, - subscription.BaseUri, - subscription.Credential, - subscription.ClientOptions.Convert()); + ((IClientContext)subscription).BaseUri, + ((IClientContext)subscription).Credential, + ((IClientContext)subscription).ClientOptions.Convert()); } /// diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs index 40755a1598727..690429f1324b4 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs @@ -25,9 +25,9 @@ internal NetworkInterfaceContainer(ResourceGroupOperations resourceGroup) internal NetworkInterfacesOperations Operations => new NetworkManagementClient( Id.Subscription, - BaseUri, - Credential, - ClientOptions.Convert()).NetworkInterfaces; + ((IClientContext)this).BaseUri, + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).NetworkInterfaces; /// protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs index 04e4e780218b0..fbf9f07575919 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs @@ -44,9 +44,9 @@ protected NetworkInterfaceOperations(ResourceOperationsBase options, ResourceIde internal NetworkInterfacesOperations Operations => new NetworkManagementClient( Id.Subscription, - BaseUri, - Credential, - ClientOptions.Convert()).NetworkInterfaces; + ((IClientContext)this).BaseUri, + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).NetworkInterfaces; /// /// Deletes a . diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs index 325c75e596718..b9a4a46be3a93 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs @@ -42,9 +42,9 @@ internal NetworkSecurityGroupContainer(ResourceGroupOperations resourceGroup) private NetworkSecurityGroupsOperations Operations => new NetworkManagementClient( Id.Subscription, - BaseUri, - Credential, - ClientOptions.Convert()).NetworkSecurityGroups; + ((IClientContext)this).BaseUri, + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).NetworkSecurityGroups; /// public override ArmResponse CreateOrUpdate(string name, NetworkSecurityGroupData resourceDetails) diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs index 9ab60bf661a49..0156dcf7a5ab2 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs @@ -57,9 +57,9 @@ protected NetworkSecurityGroupOperations(ResourceOperationsBase operation, Resou private NetworkSecurityGroupsOperations Operations => new NetworkManagementClient( Id.Subscription, - BaseUri, - Credential, - ClientOptions.Convert()).NetworkSecurityGroups; + ((IClientContext)this).BaseUri, + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).NetworkSecurityGroups; /// /// Updates the network security group rules. diff --git a/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj b/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj index 5bee3360da488..c6b98aa52672c 100644 --- a/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj +++ b/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj @@ -3,6 +3,7 @@ netstandard2.0 Proto.Network + latest @@ -15,6 +16,7 @@ + diff --git a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs index 6a0ab4e5dadbb..6ed9bffd0fcce 100644 --- a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs @@ -33,9 +33,9 @@ internal PublicIpAddressContainer(ResourceGroupOperations resourceGroup) private PublicIPAddressesOperations Operations => new NetworkManagementClient( Id.Subscription, - BaseUri, - Credential, - ClientOptions.Convert()).PublicIPAddresses; + ((IClientContext)this).BaseUri, + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).PublicIPAddresses; /// public override ArmResponse CreateOrUpdate(string name, PublicIPAddressData resourceDetails) diff --git a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs index e4fb92f73b81b..5140bc2a0c145 100644 --- a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs @@ -56,9 +56,9 @@ protected PublicIpAddressOperations(ResourceOperationsBase options, ResourceIden private PublicIPAddressesOperations Operations => new NetworkManagementClient( Id.Subscription, - BaseUri, - Credential, - ClientOptions.Convert()).PublicIPAddresses; + ((IClientContext)this).BaseUri, + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).PublicIPAddresses; /// /// The operation to delete a public IP address. diff --git a/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs b/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs index 51da32cf51e44..232319c17df90 100644 --- a/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs @@ -26,9 +26,9 @@ internal SubnetContainer(VirtualNetworkOperations virtualNetwork) private SubnetsOperations Operations => new NetworkManagementClient( Id.Subscription, - BaseUri, - Credential, - ClientOptions.Convert()).Subnets; + ((IClientContext)this).BaseUri, + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).Subnets; /// public override ArmResponse CreateOrUpdate(string name, SubnetData resourceDetails) diff --git a/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs b/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs index ff99d20d914a6..ab8b93cc71cac 100644 --- a/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs @@ -43,9 +43,9 @@ protected SubnetOperations(ResourceOperationsBase options, ResourceIdentifier id private SubnetsOperations Operations => new NetworkManagementClient( Id.Subscription, - BaseUri, - Credential, - ClientOptions.Convert()).Subnets; + ((IClientContext)this).BaseUri, + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).Subnets; /// /// The operation to delete a subnet. diff --git a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs index 8d4bb9475e1ae..399e2b6d8cbc5 100644 --- a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs @@ -32,9 +32,9 @@ internal VirtualNetworkContainer(ResourceGroupOperations resourceGroup) private VirtualNetworksOperations Operations => new NetworkManagementClient( Id.Subscription, - BaseUri, - Credential, - ClientOptions.Convert()).VirtualNetworks; + ((IClientContext)this).BaseUri, + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).VirtualNetworks; /// public override ArmResponse CreateOrUpdate(string name, VirtualNetworkData resourceDetails) diff --git a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs index a1157d5864747..e55f9051ed593 100644 --- a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs @@ -55,9 +55,9 @@ protected VirtualNetworkOperations(ResourceOperationsBase options, ResourceIdent private VirtualNetworksOperations Operations => new NetworkManagementClient( Id.Subscription, - BaseUri, - Credential, - ClientOptions.Convert()).VirtualNetworks; + ((IClientContext)this).BaseUri, + ((IClientContext)this).Credential, + ((IClientContext)this).ClientOptions.Convert()).VirtualNetworks; /// /// The operation to delete a virtual nerwork. diff --git a/sdk/resourcemanager/Proto.Client/src/Scenarios/CreateSingleVmExample.cs b/sdk/resourcemanager/Proto.Client/src/Scenarios/CreateSingleVmExample.cs index 7ae8ff1d44db9..ae0e361882a56 100644 --- a/sdk/resourcemanager/Proto.Client/src/Scenarios/CreateSingleVmExample.cs +++ b/sdk/resourcemanager/Proto.Client/src/Scenarios/CreateSingleVmExample.cs @@ -23,7 +23,7 @@ public override void Execute() // Create AvailabilitySet Console.WriteLine("--------Start create AvailabilitySet--------"); - var aset = resourceGroup.GetAvailabilitySetContainer().Construct("Aligned").CreateOrUpdate(Context.VmName + "_aSet").Value; + //var aset = resourceGroup.GetAvailabilitySetContainer().Construct("Aligned").CreateOrUpdate(Context.VmName + "_aSet").Value; // Create VNet Console.WriteLine("--------Start create VNet--------"); @@ -44,9 +44,9 @@ public override void Execute() // Create VM Console.WriteLine("--------Start create VM--------"); - var vm = resourceGroup.GetVirtualMachineContainer().Construct(Context.Hostname, "admin-user", "!@#$%asdfA", nic.Id, aset.Id).CreateOrUpdate(Context.VmName).Value; + //var vm = resourceGroup.GetVirtualMachineContainer().Construct(Context.Hostname, "admin-user", "!@#$%asdfA", nic.Id, aset.Id).CreateOrUpdate(Context.VmName).Value; - Console.WriteLine("VM ID: " + vm.Id); + //Console.WriteLine("VM ID: " + vm.Id); Console.WriteLine("--------Done create VM--------"); } From 441c399d2efdf43106474fc481d6ab16a39c722a Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Wed, 17 Mar 2021 14:21:52 -0700 Subject: [PATCH 02/35] WIP --- common/ManagementCoreShared/ClientContext.cs | 42 +++++ common/ManagementCoreShared/IClientContext.cs | 17 -- .../src/Azure.ResourceManager.Core.csproj | 4 + .../src/AzureResourceManagerClient.cs | 18 +-- .../src/ContainerBase.cs | 4 +- .../src/ExtensionResourceContainer.cs | 2 +- .../src/ExtensionResourceOperationsBase.cs | 6 +- .../src/GenericResourceOperations.cs | 6 +- .../src/OperationsBase.cs | 18 +-- .../src/ResourceGroupContainer.cs | 6 +- .../src/ResourceGroupOperations.cs | 10 +- .../src/ResourceListOperations.cs | 2 +- .../src/ResourceOperationsBase.cs | 8 +- .../src/Resources/LocationContainer.cs | 4 +- .../src/SubscriptionContainer.cs | 13 +- .../src/SubscriptionOperations.cs | 30 +++- .../tests/ClientContextImplementation.cs | 24 --- .../tests/ResourceListOperationsTest.cs | 2 +- .../authorization/RoleAssignmentContainer.cs | 2 +- .../authorization/RoleAssignmentOperations.cs | 5 +- .../compute/AvailabilitySetContainer.cs | 6 +- .../compute/AvailabilitySetOperations.cs | 6 +- .../Extensions/SubscriptionExtensions.cs | 87 ++++++---- .../compute/VirtualMachineContainer.cs | 6 +- .../compute/VirtualMachineOperations.cs | 6 +- .../Extensions/SubscriptionExtensions.cs | 148 +++++++++++------- .../network/NetworkInterfaceContainer.cs | 6 +- .../network/NetworkInterfaceOperations.cs | 6 +- .../network/NetworkSecurityGroupContainer.cs | 6 +- .../network/NetworkSecurityGroupOperations.cs | 6 +- .../network/PublicIpAddressContainer.cs | 6 +- .../network/PublicIpAddressOperations.cs | 6 +- .../Proto.Client/network/SubnetContainer.cs | 6 +- .../Proto.Client/network/SubnetOperations.cs | 6 +- .../network/VirtualNetworkContainer.cs | 6 +- .../network/VirtualNetworkOperations.cs | 6 +- 36 files changed, 318 insertions(+), 224 deletions(-) create mode 100644 common/ManagementCoreShared/ClientContext.cs delete mode 100644 common/ManagementCoreShared/IClientContext.cs delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/ClientContextImplementation.cs diff --git a/common/ManagementCoreShared/ClientContext.cs b/common/ManagementCoreShared/ClientContext.cs new file mode 100644 index 0000000000000..01776a216c6d5 --- /dev/null +++ b/common/ManagementCoreShared/ClientContext.cs @@ -0,0 +1,42 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using Azure.Core; + +namespace Azure.ResourceManager.Core +{ + /// + /// helper class + /// + public class ClientContext + { + /// + /// client options + /// + public AzureResourceManagerClientOptions ClientOptions { get; set; } + + /// + /// credential + /// + public TokenCredential Credential { get; set; } + + /// + /// baseuri + /// + public Uri BaseUri { get; set; } + + /// + /// Initializes a new instance of the class. + /// + /// + /// + /// + protected internal ClientContext(AzureResourceManagerClientOptions clientOptions, TokenCredential credential, Uri uri) + { + ClientOptions = clientOptions; + Credential = credential; + BaseUri = uri; + } + } +} diff --git a/common/ManagementCoreShared/IClientContext.cs b/common/ManagementCoreShared/IClientContext.cs deleted file mode 100644 index 22bd8a246cb17..0000000000000 --- a/common/ManagementCoreShared/IClientContext.cs +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using Azure.Core; - -namespace Azure.ResourceManager.Core -{ - internal interface IClientContext - { - internal AzureResourceManagerClientOptions ClientOptions { get; set; } - - internal TokenCredential Credential { get; set; } - - internal Uri BaseUri { get; set; } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj index 364c9d64f576c..517c1e0c67e97 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj @@ -19,4 +19,8 @@ + + + + diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs index 5bd18ab337d6f..55b8c3604cbfa 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs @@ -13,7 +13,7 @@ namespace Azure.ResourceManager.Core /// /// The entry point for all ARM clients. /// - public class AzureResourceManagerClient : IClientContext + public class AzureResourceManagerClient { /// /// The base URI of the service. @@ -78,9 +78,9 @@ public AzureResourceManagerClient(Uri baseUri, TokenCredential credential, Azure /// The client parameters to use in these operations. private AzureResourceManagerClient(string defaultSubscriptionId, Uri baseUri, TokenCredential credential, AzureResourceManagerClientOptions options = default) { - ((IClientContext)this).Credential = credential; - ((IClientContext)this).BaseUri = baseUri; - ((IClientContext)this).ClientOptions = options ?? new AzureResourceManagerClientOptions(); + Credential = credential; + BaseUri = baseUri; + ClientOptions = options ?? new AzureResourceManagerClientOptions(); if (string.IsNullOrWhiteSpace(defaultSubscriptionId)) { @@ -107,24 +107,24 @@ private AzureResourceManagerClient(string defaultSubscriptionId, Uri baseUri, To /// /// Gets the Azure Resource Manager client options. /// - AzureResourceManagerClientOptions IClientContext.ClientOptions { get; set; } + private AzureResourceManagerClientOptions ClientOptions { get; set; } /// /// Gets the Azure credential. /// - TokenCredential IClientContext.Credential { get; set; } + private TokenCredential Credential { get; set; } /// /// Gets the base URI of the service. /// - Uri IClientContext.BaseUri { get; set; } + private Uri BaseUri { get; set; } /// /// Gets the Azure subscription operations. /// /// The guid of the subscription. /// Subscription operations. - public SubscriptionOperations GetSubscriptionOperations(string subscriptionGuid) => new SubscriptionOperations(this, subscriptionGuid); + public SubscriptionOperations GetSubscriptionOperations(string subscriptionGuid) => new SubscriptionOperations(new ClientContext(ClientOptions, Credential, BaseUri), subscriptionGuid); /// /// Gets the Azure subscriptions. @@ -132,7 +132,7 @@ private AzureResourceManagerClient(string defaultSubscriptionId, Uri baseUri, To /// Subscription container. public SubscriptionContainer GetSubscriptionContainer() { - return new SubscriptionContainer(this); + return new SubscriptionContainer(new ClientContext(ClientOptions, Credential, BaseUri)); } /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs index 56d1312de36be..234e65fa8ebb0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs @@ -19,7 +19,7 @@ public abstract class ContainerBase : OperationsBase /// /// /// The identifier of the resource that is the target of operations. - internal ContainerBase(IClientContext clientContext, ResourceIdentifier id) + internal ContainerBase(ClientContext clientContext, ResourceIdentifier id) : base(clientContext, id) { } @@ -29,7 +29,7 @@ internal ContainerBase(IClientContext clientContext, ResourceIdentifier id) /// /// The resource representing the parent resource. protected ContainerBase(ResourceOperationsBase parent) - : this(parent, parent.Id) + : this(new ClientContext(parent.ClientOptions, parent.Credential, parent.BaseUri), parent.Id) { Parent = parent; } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceContainer.cs index a04a28023eb26..b295c85c6ebc4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceContainer.cs @@ -31,7 +31,7 @@ protected ExtensionResourceContainer(OperationsBase operations) /// The operations to copy the client options from. /// The resource Id of the parent resource. protected ExtensionResourceContainer(OperationsBase operations, ResourceIdentifier parentId) - : base(operations, parentId) + : base(new ClientContext(operations.ClientOptions, operations.Credential, operations.BaseUri), parentId) { } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs index 5d1456457b325..fb76698a7f4e3 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ExtensionResourceOperationsBase.cs @@ -16,7 +16,7 @@ public abstract class ExtensionResourceOperationsBase : OperationsBase /// /// The operations to copy the client options from. internal ExtensionResourceOperationsBase(OperationsBase genericOperations) - : this(genericOperations, genericOperations.Id) + : this(new ClientContext(genericOperations.ClientOptions, genericOperations.Credential, genericOperations.BaseUri), genericOperations.Id) { } @@ -25,7 +25,7 @@ internal ExtensionResourceOperationsBase(OperationsBase genericOperations) /// /// /// The identifier of the extension resource. - internal ExtensionResourceOperationsBase(IClientContext clientContext, ResourceIdentifier id) + internal ExtensionResourceOperationsBase(ClientContext clientContext, ResourceIdentifier id) : base(clientContext, id) { } @@ -54,7 +54,7 @@ protected ExtensionResourceOperationsBase(OperationsBase genericOperations) /// The operations to copy the client options from. /// The identifier of the extension resource. protected ExtensionResourceOperationsBase(OperationsBase genericOperations, ResourceIdentifier id) - : base(genericOperations, id) + : base(new ClientContext(genericOperations.ClientOptions, genericOperations.Credential, genericOperations.BaseUri), id) { } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs index c5819caee80bc..ba5051ee88dbd 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs @@ -31,10 +31,10 @@ internal GenericResourceOperations(ResourceOperationsBase operations, ResourceId protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; private ResourcesOperations Operations => new ResourcesManagementClient( - ((IClientContext)this).BaseUri, + BaseUri, Id.Subscription, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).Resources; + Credential, + ClientOptions.Convert()).Resources; /// /// Delete the resource. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs index c8ef1edfce804..b253266e77426 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs @@ -10,19 +10,19 @@ namespace Azure.ResourceManager.Core /// /// A class representing the operations that can be performed over a specific resource. /// - public abstract class OperationsBase : IClientContext + public abstract class OperationsBase { /// /// Initializes a new instance of the class. /// /// /// The identifier of the resource that is the target of operations. - internal OperationsBase(IClientContext clientContext, ResourceIdentifier id) + internal OperationsBase(ClientContext clientContext, ResourceIdentifier id) { - ((IClientContext)this).ClientOptions = clientContext.ClientOptions; + ClientOptions = clientContext.ClientOptions; Id = id; - ((IClientContext)this).Credential = clientContext.Credential; - ((IClientContext)this).BaseUri = clientContext.BaseUri; + Credential = clientContext.Credential; + BaseUri = clientContext.BaseUri; Validate(id); } @@ -35,17 +35,17 @@ internal OperationsBase(IClientContext clientContext, ResourceIdentifier id) /// /// Gets the Azure Resource Manager client options. /// - AzureResourceManagerClientOptions IClientContext.ClientOptions { get; set; } + protected internal AzureResourceManagerClientOptions ClientOptions { get; set; } /// /// Gets the Azure credential. /// - TokenCredential IClientContext.Credential { get; set; } + protected internal TokenCredential Credential { get; set; } /// /// Gets the base URI of the service. /// - Uri IClientContext.BaseUri { get; set; } + protected internal Uri BaseUri { get; set; } /// /// Gets the valid Azure resource type for the current operations. @@ -56,7 +56,7 @@ internal OperationsBase(IClientContext clientContext, ResourceIdentifier id) /// /// Gets the resource client. /// - protected ResourcesManagementClient ResourcesClient => new ResourcesManagementClient(((IClientContext)this).BaseUri, Id.Subscription, ((IClientContext)this).Credential); + protected ResourcesManagementClient ResourcesClient => new ResourcesManagementClient(BaseUri, Id.Subscription, Credential); /// /// Validate the resource identifier against current operations. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs index e300d38ae9d87..8374a6c812561 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs @@ -26,10 +26,10 @@ internal ResourceGroupContainer(SubscriptionOperations subscription) protected override ResourceType ValidResourceType => SubscriptionOperations.ResourceType; private ResourceGroupsOperations Operations => new ResourcesManagementClient( - ((IClientContext)this).BaseUri, + BaseUri, Id.Subscription, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).ResourceGroups; + Credential, + ClientOptions.Convert()).ResourceGroups; /// /// Constructs an object used to create a resource group. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs index bea34151472ce..295abe3e07362 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs @@ -54,10 +54,10 @@ protected ResourceGroupOperations(ResourceOperationsBase options, ResourceIdenti protected override ResourceType ValidResourceType => ResourceType; private ResourceGroupsOperations Operations => new ResourcesManagementClient( - ((IClientContext)this).BaseUri, + BaseUri, Id.Subscription, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).ResourceGroups; + Credential, + ClientOptions.Convert()).ResourceGroups; /// /// 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. @@ -249,7 +249,7 @@ public ArmResponse CreateResource> CreateResourceAsync ListAtContextAsync( private static ResourcesManagementClient GetResourcesClient(ResourceOperationsBase resourceOperations) { - return new ResourcesManagementClient(((IClientContext)resourceOperations).BaseUri, resourceOperations.Id.Subscription, ((IClientContext)resourceOperations).Credential); + return new ResourcesManagementClient(resourceOperations.BaseUri, resourceOperations.Id.Subscription, resourceOperations.Credential); } private static AsyncPageable ListAtContextInternalAsync( diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs index 3ab65bb9753ac..b0dab4e34f8ce 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs @@ -20,7 +20,7 @@ public abstract class ResourceOperationsBase : OperationsBase /// /// The operations representing the resource. protected ResourceOperationsBase(ResourceOperationsBase operations) - : base(operations, operations.Id) + : base(new ClientContext(operations.ClientOptions, operations.Credential, operations.BaseUri), operations.Id) { } @@ -30,7 +30,7 @@ protected ResourceOperationsBase(ResourceOperationsBase operations) /// The operations to copy options from. /// The resource that is the target of operations. protected ResourceOperationsBase(ResourceOperationsBase options, ResourceIdentifier resourceId) - : base(options, resourceId) + : base(new ClientContext(options.ClientOptions, options.Credential, options.BaseUri), resourceId) { } @@ -39,7 +39,7 @@ protected ResourceOperationsBase(ResourceOperationsBase options, ResourceIdentif /// /// /// - internal ResourceOperationsBase(IClientContext clientContext, ResourceIdentifier id) + internal ResourceOperationsBase(ClientContext clientContext, ResourceIdentifier id) : base(clientContext, id) { } @@ -77,7 +77,7 @@ protected ResourceOperationsBase(ResourceOperationsBase parentOperations, Resour /// /// /// - internal ResourceOperationsBase(IClientContext clientContext, ResourceIdentifier id) + internal ResourceOperationsBase(ClientContext clientContext, ResourceIdentifier id) : base(clientContext, id) { } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationContainer.cs index 5242a33ff1066..97dbfc2361f17 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationContainer.cs @@ -18,7 +18,7 @@ public class LocationContainer : OperationsBase /// /// The subscription that this location container belongs to. internal LocationContainer(SubscriptionOperations subscriptionOperations) - : base(subscriptionOperations, subscriptionOperations.Id) + : base(new ClientContext(subscriptionOperations.ClientOptions, subscriptionOperations.Credential, subscriptionOperations.BaseUri), subscriptionOperations.Id) { } @@ -36,7 +36,7 @@ internal LocationContainer(SubscriptionOperations subscriptionOperations) /// Subscription container. public SubscriptionContainer GetSubscriptionContainer() { - return new SubscriptionContainer(this); + return new SubscriptionContainer(new ClientContext(ClientOptions, Credential, BaseUri)); } /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs index ad85886016b84..bb4b0182eecd0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs @@ -18,7 +18,7 @@ public class SubscriptionContainer : ContainerBase /// Initializes a new instance of the class. /// /// - internal SubscriptionContainer(IClientContext clientContext) + internal SubscriptionContainer(ClientContext clientContext) : base(clientContext, null) { } @@ -32,10 +32,10 @@ internal SubscriptionContainer(IClientContext clientContext) /// Gets the operations that can be performed on the container. /// private SubscriptionsOperations Operations => new ResourcesManagementClient( - ((IClientContext)this).BaseUri, + BaseUri, Guid.NewGuid().ToString(), - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).Subscriptions; + Credential, + ClientOptions.Convert()).Subscriptions; /// /// Lists all subscriptions in the current container. @@ -80,12 +80,13 @@ protected override void Validate(ResourceIdentifier identifier) /// An instance of . protected override ResourceOperationsBase GetOperation(string subscriptionGuid) { - return new SubscriptionOperations((IClientContext)this, subscriptionGuid); + return new SubscriptionOperations(new ClientContext(ClientOptions, Credential, BaseUri), subscriptionGuid); } + //TODO: can make static? private Func Converter() { - return s => new Subscription(new SubscriptionOperations(((IClientContext)this), s.SubscriptionId), new SubscriptionData(s)); + return s => new Subscription(new SubscriptionOperations(new ClientContext(ClientOptions, Credential, BaseUri), s.SubscriptionId), new SubscriptionData(s)); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs index 3a2d83512c982..5472a6c05c899 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs @@ -25,7 +25,7 @@ public class SubscriptionOperations : ResourceOperationsBase /// /// /// The Guid of the subscription. - internal SubscriptionOperations(IClientContext clientContext, string subscriptionGuid) + internal SubscriptionOperations(ClientContext clientContext, string subscriptionGuid) : base(clientContext, $"/subscriptions/{subscriptionGuid}") { } @@ -40,16 +40,38 @@ protected SubscriptionOperations(SubscriptionOperations subscription, ResourceId { } + /// + /// ListResources of type T + /// + /// + /// + /// + public T ListResources(Func func) + { + return func(BaseUri, Credential, ClientOptions); + } + + /// + /// ListResourcesAsync of type T + /// + /// + /// + /// + public T ListResourcesAsync(Func func) + { + return func(BaseUri, Credential, ClientOptions); + } + /// /// Gets the valid resource type for this operation class /// protected override ResourceType ValidResourceType => ResourceType; private SubscriptionsOperations SubscriptionsClient => new ResourcesManagementClient( - ((IClientContext)this).BaseUri, + BaseUri, Guid.NewGuid().ToString(), - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).Subscriptions; + Credential, + ClientOptions.Convert()).Subscriptions; /// /// Gets the resource group operations for a given resource group. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ClientContextImplementation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ClientContextImplementation.cs deleted file mode 100644 index 03a2869c88ab4..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ClientContextImplementation.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Azure.Core; -using Azure.Identity; - -namespace Azure.ResourceManager.Core.Tests -{ - class ClientContextImplementation : IClientContext - { - AzureResourceManagerClientOptions IClientContext.ClientOptions { get; set; } - TokenCredential IClientContext.Credential { get; set; } - Uri IClientContext.BaseUri { get; set; } - - public ClientContextImplementation() - { - ((IClientContext)this).ClientOptions = new AzureResourceManagerClientOptions(); - ((IClientContext)this).Credential = new DefaultAzureCredential(); // TODO: should make fake credential - ((IClientContext)this).BaseUri = new Uri("http://foo.com"); - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ResourceListOperationsTest.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ResourceListOperationsTest.cs index 57654a5061c3b..f0f6a2350238c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ResourceListOperationsTest.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/ResourceListOperationsTest.cs @@ -92,7 +92,7 @@ private static object TestListActivator(GenericResourceExpanded genericResource) private static ResourceGroupOperations GetResourceGroupOperations() { - var clientContext = new ClientContextImplementation(); + var clientContext = new ClientContext(new AzureResourceManagerClientOptions(), new DefaultAzureCredential(), new Uri("http://foo.com")); var rgOp = new ResourceGroupOperations( new SubscriptionOperations( clientContext, diff --git a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentContainer.cs b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentContainer.cs index c656b9de20dd4..c0a17bef35862 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentContainer.cs +++ b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentContainer.cs @@ -35,7 +35,7 @@ internal RoleAssignmentContainer(OperationsBase operations, ResourceIdentifier s /// /// Gets the resource type of the resource being created. /// - private RoleAssignmentsOperations Operations => new AuthorizationManagementClient(Id.Subscription, ((IClientContext)this).BaseUri, ((IClientContext)this).Credential).RoleAssignments; + private RoleAssignmentsOperations Operations => new AuthorizationManagementClient(Id.Subscription, BaseUri, Credential).RoleAssignments; /// /// Create a role assignment. This method blocks until the RoleAssignment is created on the service. diff --git a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs index a5fbc3e10b8cd..916e76b863a12 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs +++ b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs @@ -41,8 +41,9 @@ internal RoleAssignmentOperations(OperationsBase operation, ResourceIdentifier i private RoleAssignmentsOperations Operations => new AuthorizationManagementClient( Id.Subscription, - ((IClientContext)this).BaseUri, - ((IClientContext)this).Credential).RoleAssignments; + BaseUri, + Credential, + ClientOptions.Convert()).RoleAssignments; /// /// Delete a role assignment. This operation may involve multiple blocking calls to the service. diff --git a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs index adc4eae3a78f9..11e9b95f5f0b1 100644 --- a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs +++ b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs @@ -134,10 +134,10 @@ public AsyncPageable ListByNameExpandedAsync(string filter, int } private AvailabilitySetsOperations Operations => new ComputeManagementClient( - ((IClientContext)this).BaseUri, + BaseUri, Id.Subscription, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).AvailabilitySets; + Credential, + ClientOptions.Convert()).AvailabilitySets; /// diff --git a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs index f7121e5818edd..2fa2d675a44e8 100644 --- a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs +++ b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs @@ -52,10 +52,10 @@ protected AvailabilitySetOperations(ResourceOperationsBase options, ResourceIden protected override ResourceType ValidResourceType => ResourceType; private AvailabilitySetsOperations Operations => new ComputeManagementClient( - ((IClientContext)this).BaseUri, + BaseUri, Id.Subscription, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).AvailabilitySets; + Credential, + ClientOptions.Convert()).AvailabilitySets; /// /// The operation to delete an availability set. diff --git a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs index b7c0853163330..e620b86db030d 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs @@ -1,8 +1,10 @@ using Azure; +using Azure.Core; using Azure.ResourceManager.Compute; using Azure.ResourceManager.Core; using Azure.ResourceManager.Core.Adapters; using Azure.ResourceManager.Core.Resources; +using System; using System.Threading; namespace Proto.Compute @@ -12,6 +14,15 @@ namespace Proto.Compute /// public static class SubscriptionExtensions { + private static ComputeManagementClient GetComputeClient(Uri baseUri, string subscriptionGuid, TokenCredential credential, AzureResourceManagerClientOptions clientOptions) + { + return new ComputeManagementClient( + baseUri, + subscriptionGuid, + credential, + clientOptions.Convert()); + } + #region Virtual Machine List Operations /// /// Lists the VirtualMachines for this SubscriptionOperations. @@ -20,21 +31,17 @@ public static class SubscriptionExtensions /// A collection of resource operations that may take multiple service requests to iterate over. public static Pageable ListVirtualMachines(this SubscriptionOperations subscription) { - ComputeManagementClient computeClient = GetComputeClient(subscription); - var vmOperations = computeClient.VirtualMachines; - var result = vmOperations.ListAll(); - return new PhWrappingPageable( - result, - s => new VirtualMachine(subscription, new VirtualMachineData(s))); - } - - private static ComputeManagementClient GetComputeClient(SubscriptionOperations subscription) - { - return new ComputeManagementClient( - ((IClientContext)subscription).BaseUri, - subscription.Id.Subscription, - ((IClientContext)subscription).Credential, - ((IClientContext)subscription).ClientOptions.Convert()); + return subscription.ListResources( + (baseUri, credential, options) => + { + ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.Subscription, credential, options); + var vmOperations = computeClient.VirtualMachines; + var result = vmOperations.ListAll(); + return new PhWrappingPageable( + result, + s => new VirtualMachine(subscription, new VirtualMachineData(s))); + } + ); } /// @@ -44,11 +51,17 @@ private static ComputeManagementClient GetComputeClient(SubscriptionOperations s /// An async collection of resource operations that may take multiple service requests to iterate over. public static AsyncPageable ListVirtualMachinesAsync(this SubscriptionOperations subscription) { - var vmOperations = GetComputeClient(subscription).VirtualMachines; - var result = vmOperations.ListAllAsync(); - return new PhWrappingAsyncPageable( - result, - s => new VirtualMachine(subscription, new VirtualMachineData(s))); + return subscription.ListResourcesAsync( + (baseUri, credential, options) => + { + ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.Subscription, credential, options); + var vmOperations = computeClient.VirtualMachines; + var result = vmOperations.ListAllAsync(); + return new PhWrappingAsyncPageable( + result, + s => new VirtualMachine(subscription, new VirtualMachineData(s))); + } + ); } /// @@ -90,12 +103,17 @@ public static AsyncPageable ListVirtualMachinesByNameAsync(this /// A collection of resource operations that may take multiple service requests to iterate over. public static Pageable ListAvailabilitySets(this SubscriptionOperations subscription) { - ComputeManagementClient computeClient = GetComputeClient(subscription); - var availabilitySetOperations = computeClient.AvailabilitySets; - var result = availabilitySetOperations.ListBySubscription(); - return new PhWrappingPageable( - result, - s => new AvailabilitySet(subscription, new AvailabilitySetData(s))); + return subscription.ListResources( + (baseUri, credential, options) => + { + ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.Subscription, credential, options); + var availabilitySetOperations = computeClient.AvailabilitySets; + var result = availabilitySetOperations.ListBySubscription(); + return new PhWrappingPageable( + result, + s => new AvailabilitySet(subscription, new AvailabilitySetData(s))); + } + ); } /// @@ -105,12 +123,17 @@ public static Pageable ListAvailabilitySets(this SubscriptionOp /// An async collection of resource operations that may take multiple service requests to iterate over. public static AsyncPageable ListAvailabilitySetsAsync(this SubscriptionOperations subscription) { - ComputeManagementClient computeClient = GetComputeClient(subscription); - var availabilitySetOperations = computeClient.AvailabilitySets; - var result = availabilitySetOperations.ListBySubscriptionAsync(); - return new PhWrappingAsyncPageable( - result, - s => new AvailabilitySet(subscription, new AvailabilitySetData(s))); + return subscription.ListResources( + (baseUri, credential, options) => + { + ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.Subscription, credential, options); + var availabilitySetOperations = computeClient.AvailabilitySets; + var result = availabilitySetOperations.ListBySubscriptionAsync(); + return new PhWrappingAsyncPageable( + result, + s => new AvailabilitySet(subscription, new AvailabilitySetData(s))); + } + ); } #endregion } diff --git a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs index ea5ccae80cea5..aa8e158fd3496 100644 --- a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs +++ b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs @@ -25,10 +25,10 @@ internal VirtualMachineContainer(ResourceGroupOperations resourceGroup) } private VirtualMachinesOperations Operations => new ComputeManagementClient( - ((IClientContext)this).BaseUri, + BaseUri, Id.Subscription, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).VirtualMachines; + Credential, + ClientOptions.Convert()).VirtualMachines; /// /// Gets the valid resource type for this object diff --git a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs index 9f8591c11e858..4e0b39c17e938 100644 --- a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs +++ b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs @@ -54,10 +54,10 @@ protected VirtualMachineOperations(ResourceOperationsBase operation, ResourceIde protected override ResourceType ValidResourceType => ResourceType; private VirtualMachinesOperations Operations => new ComputeManagementClient( - ((IClientContext)this).BaseUri, + BaseUri, Id.Subscription, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).VirtualMachines; + Credential, + ClientOptions.Convert()).VirtualMachines; /// /// Initializes a new instance of the class from a . diff --git a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs index dda40a4972c41..e5ebab3515edc 100644 --- a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs @@ -2,9 +2,11 @@ // Licensed under the MIT License. using Azure; +using Azure.Core; using Azure.ResourceManager.Core; using Azure.ResourceManager.Core.Adapters; using Azure.ResourceManager.Network; +using System; namespace Proto.Network { @@ -15,13 +17,13 @@ public static class SubscriptionExtensions { #region Virtual Network Operations - private static NetworkManagementClient GetNetworkClient(SubscriptionOperations subscription) + private static NetworkManagementClient GetNetworkClient(Uri baseUri, string subscriptionGuid, TokenCredential credential, AzureResourceManagerClientOptions clientOptions) { return new NetworkManagementClient( - subscription.Id.Subscription, - ((IClientContext)subscription).BaseUri, - ((IClientContext)subscription).Credential, - ((IClientContext)subscription).ClientOptions.Convert()); + subscriptionGuid, + baseUri, + credential, + clientOptions.Convert()); } /// @@ -31,12 +33,17 @@ private static NetworkManagementClient GetNetworkClient(SubscriptionOperations s /// A collection of resource operations that may take multiple service requests to iterate over. public static Pageable ListVnets(this SubscriptionOperations subscription) { - NetworkManagementClient networkClient = GetNetworkClient(subscription); - var vmOperations = networkClient.VirtualNetworks; - var result = vmOperations.ListAll(); - return new PhWrappingPageable( - result, - s => new VirtualNetwork(subscription, new VirtualNetworkData(s))); + return subscription.ListResources( + (baseUri, credential, options) => + { + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + var vmOperations = networkClient.VirtualNetworks; + var result = vmOperations.ListAll(); + return new PhWrappingPageable( + result, + s => new VirtualNetwork(subscription, new VirtualNetworkData(s))); + } + ); } /// @@ -46,12 +53,17 @@ public static Pageable ListVnets(this SubscriptionOperations sub /// An async collection of resource operations that may take multiple service requests to iterate over. public static AsyncPageable ListVnetsAsync(this SubscriptionOperations subscription) { - NetworkManagementClient networkClient = GetNetworkClient(subscription); - var vmOperations = networkClient.VirtualNetworks; - var result = vmOperations.ListAllAsync(); - return new PhWrappingAsyncPageable( - result, - s => new VirtualNetwork(subscription, new VirtualNetworkData(s))); + return subscription.ListResources( + (baseUri, credential, options) => + { + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + var vmOperations = networkClient.VirtualNetworks; + var result = vmOperations.ListAllAsync(); + return new PhWrappingAsyncPageable( + result, + s => new VirtualNetwork(subscription, new VirtualNetworkData(s))); + } + ); } #endregion @@ -65,12 +77,17 @@ public static AsyncPageable ListVnetsAsync(this SubscriptionOper /// A collection of resource operations that may take multiple service requests to iterate over. public static Pageable ListPublicIps(this SubscriptionOperations subscription) { - NetworkManagementClient networkClient = GetNetworkClient(subscription); - var publicIPAddressesOperations = networkClient.PublicIPAddresses; - var result = publicIPAddressesOperations.ListAll(); - return new PhWrappingPageable( - result, - s => new PublicIpAddress(subscription, new PublicIPAddressData(s))); + return subscription.ListResources( + (baseUri, credential, options) => + { + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + var publicIPAddressesOperations = networkClient.PublicIPAddresses; + var result = publicIPAddressesOperations.ListAll(); + return new PhWrappingPageable( + result, + s => new PublicIpAddress(subscription, new PublicIPAddressData(s))); + } + ); } /// @@ -80,12 +97,17 @@ public static Pageable ListPublicIps(this SubscriptionOperation /// An async collection of resource operations that may take multiple service requests to iterate over. public static AsyncPageable ListPublicIpsAsync(this SubscriptionOperations subscription) { - NetworkManagementClient networkClient = GetNetworkClient(subscription); - var publicIPAddressesOperations = networkClient.PublicIPAddresses; - var result = publicIPAddressesOperations.ListAllAsync(); - return new PhWrappingAsyncPageable( - result, - s => new PublicIpAddress(subscription, new PublicIPAddressData(s))); + return subscription.ListResourcesAsync( + (baseUri, credential, options) => + { + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + var publicIPAddressesOperations = networkClient.PublicIPAddresses; + var result = publicIPAddressesOperations.ListAllAsync(); + return new PhWrappingAsyncPageable( + result, + s => new PublicIpAddress(subscription, new PublicIPAddressData(s))); + } + ); } #endregion @@ -99,12 +121,17 @@ public static AsyncPageable ListPublicIpsAsync(this Subscriptio /// A collection of that may take multiple service requests to iterate over. public static Pageable ListNics(this SubscriptionOperations subscription) { - NetworkManagementClient networkClient = GetNetworkClient(subscription); - var networkInterfacesOperations = networkClient.NetworkInterfaces; - var result = networkInterfacesOperations.ListAll(); - return new PhWrappingPageable( - result, - s => new NetworkInterface(subscription, new NetworkInterfaceData(s))); + return subscription.ListResources( + (baseUri, credential, options) => + { + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + var networkInterfacesOperations = networkClient.NetworkInterfaces; + var result = networkInterfacesOperations.ListAll(); + return new PhWrappingPageable( + result, + s => new NetworkInterface(subscription, new NetworkInterfaceData(s))); + } + ); } /// @@ -114,12 +141,17 @@ public static Pageable ListNics(this SubscriptionOperations su /// An async collection of resource operations that may take multiple service requests to iterate over. public static AsyncPageable ListNicsAsync(this SubscriptionOperations subscription) { - NetworkManagementClient networkClient = GetNetworkClient(subscription); - var networkInterfacesOperations = networkClient.NetworkInterfaces; - var result = networkInterfacesOperations.ListAllAsync(); - return new PhWrappingAsyncPageable( - result, - s => new NetworkInterface(subscription, new NetworkInterfaceData(s))); + return subscription.ListResourcesAsync( + (baseUri, credential, options) => + { + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + var networkInterfacesOperations = networkClient.NetworkInterfaces; + var result = networkInterfacesOperations.ListAllAsync(); + return new PhWrappingAsyncPageable( + result, + s => new NetworkInterface(subscription, new NetworkInterfaceData(s))); + } + ); } #endregion @@ -133,12 +165,17 @@ public static AsyncPageable ListNicsAsync(this SubscriptionOpe /// A collection of resource operations that may take multiple service requests to iterate over. public static Pageable ListNsgs(this SubscriptionOperations subscription) { - NetworkManagementClient networkClient = GetNetworkClient(subscription); - var networkSecurityGroupsOperations = networkClient.NetworkSecurityGroups; - var result = networkSecurityGroupsOperations.ListAll(); - return new PhWrappingPageable( - result, - s => new NetworkSecurityGroup(subscription, new NetworkSecurityGroupData(s))); + return subscription.ListResources( + (baseUri, credential, options) => + { + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + var networkSecurityGroupsOperations = networkClient.NetworkSecurityGroups; + var result = networkSecurityGroupsOperations.ListAll(); + return new PhWrappingPageable( + result, + s => new NetworkSecurityGroup(subscription, new NetworkSecurityGroupData(s))); + } + ); } /// @@ -148,12 +185,17 @@ public static Pageable ListNsgs(this SubscriptionOperation /// An async collection of resource operations that may take multiple service requests to iterate over. public static AsyncPageable ListNsgsAsync(this SubscriptionOperations subscription) { - NetworkManagementClient networkClient = GetNetworkClient(subscription); - var networkSecurityGroupsOperations = networkClient.NetworkSecurityGroups; - var result = networkSecurityGroupsOperations.ListAllAsync(); - return new PhWrappingAsyncPageable( - result, - s => new NetworkSecurityGroup(subscription, new NetworkSecurityGroupData(s))); + return subscription.ListResourcesAsync( + (baseUri, credential, options) => + { + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + var networkSecurityGroupsOperations = networkClient.NetworkSecurityGroups; + var result = networkSecurityGroupsOperations.ListAllAsync(); + return new PhWrappingAsyncPageable( + result, + s => new NetworkSecurityGroup(subscription, new NetworkSecurityGroupData(s))); + } + ); } #endregion diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs index 690429f1324b4..40755a1598727 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs @@ -25,9 +25,9 @@ internal NetworkInterfaceContainer(ResourceGroupOperations resourceGroup) internal NetworkInterfacesOperations Operations => new NetworkManagementClient( Id.Subscription, - ((IClientContext)this).BaseUri, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).NetworkInterfaces; + BaseUri, + Credential, + ClientOptions.Convert()).NetworkInterfaces; /// protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs index fbf9f07575919..04e4e780218b0 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs @@ -44,9 +44,9 @@ protected NetworkInterfaceOperations(ResourceOperationsBase options, ResourceIde internal NetworkInterfacesOperations Operations => new NetworkManagementClient( Id.Subscription, - ((IClientContext)this).BaseUri, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).NetworkInterfaces; + BaseUri, + Credential, + ClientOptions.Convert()).NetworkInterfaces; /// /// Deletes a . diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs index b9a4a46be3a93..325c75e596718 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs @@ -42,9 +42,9 @@ internal NetworkSecurityGroupContainer(ResourceGroupOperations resourceGroup) private NetworkSecurityGroupsOperations Operations => new NetworkManagementClient( Id.Subscription, - ((IClientContext)this).BaseUri, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).NetworkSecurityGroups; + BaseUri, + Credential, + ClientOptions.Convert()).NetworkSecurityGroups; /// public override ArmResponse CreateOrUpdate(string name, NetworkSecurityGroupData resourceDetails) diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs index 0156dcf7a5ab2..9ab60bf661a49 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs @@ -57,9 +57,9 @@ protected NetworkSecurityGroupOperations(ResourceOperationsBase operation, Resou private NetworkSecurityGroupsOperations Operations => new NetworkManagementClient( Id.Subscription, - ((IClientContext)this).BaseUri, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).NetworkSecurityGroups; + BaseUri, + Credential, + ClientOptions.Convert()).NetworkSecurityGroups; /// /// Updates the network security group rules. diff --git a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs index 6ed9bffd0fcce..6a0ab4e5dadbb 100644 --- a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs @@ -33,9 +33,9 @@ internal PublicIpAddressContainer(ResourceGroupOperations resourceGroup) private PublicIPAddressesOperations Operations => new NetworkManagementClient( Id.Subscription, - ((IClientContext)this).BaseUri, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).PublicIPAddresses; + BaseUri, + Credential, + ClientOptions.Convert()).PublicIPAddresses; /// public override ArmResponse CreateOrUpdate(string name, PublicIPAddressData resourceDetails) diff --git a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs index 5140bc2a0c145..1ab982cea4a15 100644 --- a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs @@ -56,9 +56,9 @@ protected PublicIpAddressOperations(ResourceOperationsBase options, ResourceIden private PublicIPAddressesOperations Operations => new NetworkManagementClient( Id.Subscription, - ((IClientContext)this).BaseUri, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).PublicIPAddresses; + BaseUri, + Credential, + ClientOptions.Convert()).PublicIPAddresses; /// /// The operation to delete a public IP address. diff --git a/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs b/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs index 232319c17df90..51da32cf51e44 100644 --- a/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs @@ -26,9 +26,9 @@ internal SubnetContainer(VirtualNetworkOperations virtualNetwork) private SubnetsOperations Operations => new NetworkManagementClient( Id.Subscription, - ((IClientContext)this).BaseUri, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).Subnets; + BaseUri, + Credential, + ClientOptions.Convert()).Subnets; /// public override ArmResponse CreateOrUpdate(string name, SubnetData resourceDetails) diff --git a/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs b/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs index ab8b93cc71cac..ff99d20d914a6 100644 --- a/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs @@ -43,9 +43,9 @@ protected SubnetOperations(ResourceOperationsBase options, ResourceIdentifier id private SubnetsOperations Operations => new NetworkManagementClient( Id.Subscription, - ((IClientContext)this).BaseUri, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).Subnets; + BaseUri, + Credential, + ClientOptions.Convert()).Subnets; /// /// The operation to delete a subnet. diff --git a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs index 399e2b6d8cbc5..8d4bb9475e1ae 100644 --- a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs @@ -32,9 +32,9 @@ internal VirtualNetworkContainer(ResourceGroupOperations resourceGroup) private VirtualNetworksOperations Operations => new NetworkManagementClient( Id.Subscription, - ((IClientContext)this).BaseUri, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).VirtualNetworks; + BaseUri, + Credential, + ClientOptions.Convert()).VirtualNetworks; /// public override ArmResponse CreateOrUpdate(string name, VirtualNetworkData resourceDetails) diff --git a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs index e55f9051ed593..a1157d5864747 100644 --- a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs @@ -55,9 +55,9 @@ protected VirtualNetworkOperations(ResourceOperationsBase options, ResourceIdent private VirtualNetworksOperations Operations => new NetworkManagementClient( Id.Subscription, - ((IClientContext)this).BaseUri, - ((IClientContext)this).Credential, - ((IClientContext)this).ClientOptions.Convert()).VirtualNetworks; + BaseUri, + Credential, + ClientOptions.Convert()).VirtualNetworks; /// /// The operation to delete a virtual nerwork. From 9147c1e4583da60ca5a84db361764e79c19b78c4 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Wed, 17 Mar 2021 14:39:50 -0700 Subject: [PATCH 03/35] Update ResourceOperationsBase.cs --- .../src/ResourceOperationsBase.cs | 30 +------------------ 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs index b0dab4e34f8ce..72b027834572a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs @@ -15,25 +15,6 @@ namespace Azure.ResourceManager.Core /// public abstract class ResourceOperationsBase : OperationsBase { - /// - /// Initializes a new instance of the class. - /// - /// The operations representing the resource. - protected ResourceOperationsBase(ResourceOperationsBase operations) - : base(new ClientContext(operations.ClientOptions, operations.Credential, operations.BaseUri), operations.Id) - { - } - - /// - /// Initializes a new instance of the class. - /// - /// The operations to copy options from. - /// The resource that is the target of operations. - protected ResourceOperationsBase(ResourceOperationsBase options, ResourceIdentifier resourceId) - : base(new ClientContext(options.ClientOptions, options.Credential, options.BaseUri), resourceId) - { - } - /// /// Initializes a new instance of the class. /// @@ -53,22 +34,13 @@ internal ResourceOperationsBase(ClientContext clientContext, ResourceIdentifier public abstract class ResourceOperationsBase : ResourceOperationsBase where TOperations : ResourceOperationsBase { - /// - /// Initializes a new instance of the class. - /// - /// Generic ARMResourceOperations for this resource type. - protected ResourceOperationsBase(GenericResourceOperations genericOperations) - : base(genericOperations) - { - } - /// /// Initializes a new instance of the class. /// /// The resource representing the parent resource. /// The identifier of the resource that is the target of operations. protected ResourceOperationsBase(ResourceOperationsBase parentOperations, ResourceIdentifier id) - : base(parentOperations, id) + : base(new ClientContext(parentOperations.ClientOptions, parentOperations.Credential, parentOperations.BaseUri), id) { } From 14ae581ba07c00df7e1dc6a550c602af9a39ca62 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Thu, 18 Mar 2021 16:09:07 -0700 Subject: [PATCH 04/35] update for tenant extensions --- .../src/Azure.ResourceManager.Core.csproj | 4 ++-- .../src/AzureResourceManagerClient.cs | 9 +++++---- .../src/OperationsBase.cs | 2 +- .../src/ResourceOperationsBase.cs | 6 +++--- .../src/SubscriptionOperations.cs | 6 +++--- .../src/TenantOperations.cs | 13 ++++++++++++- .../Azure.ResourceManager.Billing.csproj | 1 + .../billing/BillingAccountOperations.cs | 8 ++++---- .../billing/Extensions/TenantExtensions.cs | 6 ++---- .../Proto.Client/billing/Proto.Billing.csproj | 1 + .../compute/AvailabilitySetOperations.cs | 2 +- .../compute/Extensions/SubscriptionExtensions.cs | 5 +++-- .../compute/VirtualMachineOperations.cs | 2 +- .../network/Extensions/SubscriptionExtensions.cs | 13 +++++++------ .../network/NetworkInterfaceOperations.cs | 2 +- .../network/NetworkSecurityGroupOperations.cs | 2 +- .../network/PublicIpAddressOperations.cs | 2 +- .../network/VirtualNetworkOperations.cs | 2 +- 18 files changed, 50 insertions(+), 36 deletions(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj index 2d853cc749db3..0a5aa2d28000d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj @@ -22,8 +22,8 @@ - + diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs index 73f4e42fd46c0..f151dca34a0ed 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs @@ -23,9 +23,7 @@ public class AzureResourceManagerClient /// /// Get the tenant operations class. /// - public TenantOperations Tenant => _tenant ??= new TenantOperations(_clientOptions, _credentials, _baseUri); - - private readonly AzureResourceManagerClientOptions _clientOptions; + public TenantOperations Tenant => _tenant ??= new TenantOperations(ClientOptions, Credential, BaseUri); /// /// Initializes a new instance of the class for mocking. @@ -93,7 +91,7 @@ private AzureResourceManagerClient( if (credential is null) throw new ArgumentNullException(nameof(credential)); - _clientOptions = options ?? new AzureResourceManagerClientOptions(); + ClientOptions = options ?? new AzureResourceManagerClientOptions(); DefaultSubscription = string.IsNullOrWhiteSpace(defaultSubscriptionId) ? GetDefaultSubscription() @@ -107,6 +105,7 @@ private AzureResourceManagerClient( /// /// Gets the Azure Resource Manager client options. + /// private AzureResourceManagerClientOptions ClientOptions { get; set; } /// @@ -118,6 +117,8 @@ private AzureResourceManagerClient( /// Gets the base URI of the service. /// private Uri BaseUri { get; set; } + + /// /// Gets the Azure subscription operations. /// /// The guid of the subscription. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs index 2f096bbbe55e5..8768d306ccdf9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs @@ -31,7 +31,7 @@ internal OperationsBase(ClientContext clientContext, ResourceIdentifier id) Id = id; Credential = clientContext.Credential; BaseUri = clientContext.BaseUri; - Diagnostics = new ClientDiagnostics(options); + Diagnostics = new ClientDiagnostics(ClientOptions); Validate(id); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs index 824747cb4c626..dc4796cf20245 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs @@ -42,7 +42,7 @@ public abstract class ResourceOperationsBase : ResourceOperationsBa where TOperations : ResourceOperationsBase { /// - /// Initializes a new instance of the class for mocking. + /// Initializes a new instance of the class for /mocking. /// protected ResourceOperationsBase() { @@ -53,7 +53,7 @@ protected ResourceOperationsBase() /// /// The resource representing the parent resource. /// The identifier of the resource that is the target of operations. - protected ResourceOperationsBase(ResourceOperationsBase parentOperations, ResourceIdentifier id) + protected ResourceOperationsBase(OperationsBase parentOperations, ResourceIdentifier id) : base(new ClientContext(parentOperations.ClientOptions, parentOperations.Credential, parentOperations.BaseUri), id) { } @@ -63,7 +63,7 @@ protected ResourceOperationsBase(ResourceOperationsBase parentOperations, Resour /// /// /// - internal ResourceOperationsBase(ClientContext clientContext, ResourceIdentifier id) + protected ResourceOperationsBase(ClientContext clientContext, string id) : base(clientContext, id) { } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs index 745dc44eb689f..e990bd8123b20 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs @@ -52,7 +52,7 @@ protected SubscriptionOperations(SubscriptionOperations subscription, ResourceId /// /// /// - public T ListResources(Func func) + public virtual T ListResources(Func func) { return func(BaseUri, Credential, ClientOptions); } @@ -63,9 +63,9 @@ public T ListResources(Func /// /// - public T ListResourcesAsync(Func func) + public virtual async Task ListResourcesAsync(Func> func) { - return func(BaseUri, Credential, ClientOptions); + return await func(BaseUri, Credential, ClientOptions).ConfigureAwait(false); } /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs index 556ef04683bf9..64ea205231f21 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs @@ -27,7 +27,7 @@ public class TenantOperations : OperationsBase /// A credential used to authenticate to an Azure Service. /// The base URI of the service. internal TenantOperations(AzureResourceManagerClientOptions options, TokenCredential credential, Uri baseUri) - : base(options, "/tenants", credential, baseUri) + : base(new ClientContext(options, credential, baseUri), "/tenants") { } @@ -35,5 +35,16 @@ internal TenantOperations(AzureResourceManagerClientOptions options, TokenCreden /// Gets the valid resource type for this operation class /// protected override ResourceType ValidResourceType => ResourceType; + + /// + /// ListResources of type T + /// + /// + /// + /// + public virtual T ListResources(Func func) + { + return func(BaseUri, Credential, ClientOptions); + } } } diff --git a/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj b/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj index 653a2c918d266..fda2bb0702dfb 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj +++ b/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj @@ -5,6 +5,7 @@ Azure Resource Manager client SDK for Azure resource provider Microsoft.Billing azure;management;arm;resource manager;billing true + true diff --git a/sdk/resourcemanager/Proto.Client/billing/BillingAccountOperations.cs b/sdk/resourcemanager/Proto.Client/billing/BillingAccountOperations.cs index cb84ce0b36b79..6a570b0bb6708 100644 --- a/sdk/resourcemanager/Proto.Client/billing/BillingAccountOperations.cs +++ b/sdk/resourcemanager/Proto.Client/billing/BillingAccountOperations.cs @@ -20,13 +20,13 @@ public class BillingAccountOperations : ResourceOperationsBase /// /// An instance of that has an id for an availability set. internal BillingAccountOperations(GenericResourceOperations genericOperations) - : base(genericOperations) + : base(genericOperations, genericOperations.Id) { } - + //TODO : dicuss ways to not pass in Subscription subscription for tenant only resources - internal BillingAccountOperations(AzureResourceManagerClientOptions options, string billingAccountId, TokenCredential credential, Uri baseUri) - : base(options, $"/providers/{ResourceType}/{billingAccountId}", credential, baseUri) + internal BillingAccountOperations(TenantOperations tenant, string billingAccountId) + : base(tenant, $"/providers/{ResourceType}/{billingAccountId}") { } diff --git a/sdk/resourcemanager/Proto.Client/billing/Extensions/TenantExtensions.cs b/sdk/resourcemanager/Proto.Client/billing/Extensions/TenantExtensions.cs index f5cce3b02e4aa..9c3ac6df5a360 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Extensions/TenantExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/billing/Extensions/TenantExtensions.cs @@ -4,7 +4,6 @@ using Azure.ResourceManager.Core; using System; - namespace Proto.Billing { /// @@ -18,12 +17,11 @@ public static class TenantExtensions /// /// The instance the method will execute against. /// Returns an object representing the operations that can be performed over a specific . - public static BillingAccountOperations GetBillingAccountsOperations(this TenantOperations client, string billingAccountId) + public static BillingAccountOperations GetBillingAccountsOperations(this TenantOperations tenant, string billingAccountId) { if (string.IsNullOrEmpty(billingAccountId)) throw new ArgumentException(nameof(billingAccountId)); - - return new BillingAccountOperations(client.ClientOptions, billingAccountId, client.Credential, client.BaseUri); + return new BillingAccountOperations(tenant, billingAccountId); } } } diff --git a/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj b/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj index 8a69e26f50f2d..8b799f3ca4f25 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj +++ b/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj @@ -13,6 +13,7 @@ + diff --git a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs index 35db75c5c3442..1e12cb1c9213d 100644 --- a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs +++ b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs @@ -19,7 +19,7 @@ public class AvailabilitySetOperations : ResourceOperationsBase /// /// An instance of that has an id for an availability set. internal AvailabilitySetOperations(GenericResourceOperations genericOperations) - : base(genericOperations) + : base(genericOperations, genericOperations.Id) { } diff --git a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs index e620b86db030d..97fbe945a74cd 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs @@ -6,6 +6,7 @@ using Azure.ResourceManager.Core.Resources; using System; using System.Threading; +using System.Threading.Tasks; namespace Proto.Compute { @@ -49,9 +50,9 @@ public static Pageable ListVirtualMachines(this SubscriptionOper /// /// The instance the method will execute against. /// An async collection of resource operations that may take multiple service requests to iterate over. - public static AsyncPageable ListVirtualMachinesAsync(this SubscriptionOperations subscription) + public static async Task> ListVirtualMachinesAsync(this SubscriptionOperations subscription) { - return subscription.ListResourcesAsync( + return await subscription.ListResourcesAsync(async (baseUri, credential, options) => { ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.Subscription, credential, options); diff --git a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs index a0e07d582341d..45c61033c4e77 100644 --- a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs +++ b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs @@ -19,7 +19,7 @@ public class VirtualMachineOperations : ResourceOperationsBase, /// /// An instance of that has an id for a virtual machine. internal VirtualMachineOperations(GenericResourceOperations genericOperations) - : base(genericOperations) + : base(genericOperations, genericOperations.Id) { } diff --git a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs index e5ebab3515edc..8615ae7153351 100644 --- a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs @@ -7,6 +7,7 @@ using Azure.ResourceManager.Core.Adapters; using Azure.ResourceManager.Network; using System; +using System.Threading.Tasks; namespace Proto.Network { @@ -95,9 +96,9 @@ public static Pageable ListPublicIps(this SubscriptionOperation /// /// The instance the method will execute against. /// An async collection of resource operations that may take multiple service requests to iterate over. - public static AsyncPageable ListPublicIpsAsync(this SubscriptionOperations subscription) + public static async Task> ListPublicIpsAsync(this SubscriptionOperations subscription) { - return subscription.ListResourcesAsync( + return await subscription.ListResourcesAsync(async (baseUri, credential, options) => { NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); @@ -139,9 +140,9 @@ public static Pageable ListNics(this SubscriptionOperations su /// /// The to target for listing. /// An async collection of resource operations that may take multiple service requests to iterate over. - public static AsyncPageable ListNicsAsync(this SubscriptionOperations subscription) + public static async Task> ListNicsAsync(this SubscriptionOperations subscription) { - return subscription.ListResourcesAsync( + return await subscription.ListResourcesAsync(async (baseUri, credential, options) => { NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); @@ -183,9 +184,9 @@ public static Pageable ListNsgs(this SubscriptionOperation /// /// The instance the method will execute against. /// An async collection of resource operations that may take multiple service requests to iterate over. - public static AsyncPageable ListNsgsAsync(this SubscriptionOperations subscription) + public static async Task> ListNsgsAsync(this SubscriptionOperations subscription) { - return subscription.ListResourcesAsync( + return await subscription.ListResourcesAsync(async (baseUri, credential, options) => { NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs index ca740c0ae7a6a..cee3b0dd91675 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs @@ -15,7 +15,7 @@ namespace Proto.Network public class NetworkInterfaceOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource { internal NetworkInterfaceOperations(GenericResourceOperations genericOperations) - : base(genericOperations) + : base(genericOperations, genericOperations.Id) { } diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs index f646f6dc33beb..6ff4c77e7ef9f 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs @@ -23,7 +23,7 @@ public class NetworkSecurityGroupOperations : ResourceOperationsBase /// An instance of that has an id for a virtual machine. internal NetworkSecurityGroupOperations(GenericResourceOperations genericOperations) - : base(genericOperations) + : base(genericOperations, genericOperations.Id) { } diff --git a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs index 3e0ae9e048367..de49fddad7da6 100644 --- a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs @@ -22,7 +22,7 @@ public class PublicIpAddressOperations : ResourceOperationsBase /// /// An instance of that has an id for a virtual machine. internal PublicIpAddressOperations(GenericResourceOperations genericOperations) - : base(genericOperations) + : base(genericOperations, genericOperations.Id) { } diff --git a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs index b3fa2a0260ec8..607be60420ac1 100644 --- a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs @@ -19,7 +19,7 @@ public class VirtualNetworkOperations : ResourceOperationsBase, /// /// An instance of that has an id for a virtual nerwork. internal VirtualNetworkOperations(GenericResourceOperations genericOperations) - : base(genericOperations) + : base(genericOperations, genericOperations.Id) { } From ebf11766b2b5ce04f5303f91d63dab54e06f1340 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Thu, 18 Mar 2021 16:55:23 -0700 Subject: [PATCH 05/35] update csproj --- .../src/Azure.ResourceManager.Core.csproj | 4 ---- .../src/Azure.ResourceManager.Resources.csproj | 1 + .../src/Azure.ResourceManager.Storage.csproj | 1 + 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj index 0a5aa2d28000d..0850e68ca8b06 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj @@ -22,8 +22,4 @@ - - diff --git a/sdk/resources/Azure.ResourceManager.Resources/src/Azure.ResourceManager.Resources.csproj b/sdk/resources/Azure.ResourceManager.Resources/src/Azure.ResourceManager.Resources.csproj index fb1e06d3acc71..05924aeed0f62 100644 --- a/sdk/resources/Azure.ResourceManager.Resources/src/Azure.ResourceManager.Resources.csproj +++ b/sdk/resources/Azure.ResourceManager.Resources/src/Azure.ResourceManager.Resources.csproj @@ -8,5 +8,6 @@ azure;management;resource $(NoWarn);AZC0008;AZC0001 + true diff --git a/sdk/storage/Azure.ResourceManager.Storage/src/Azure.ResourceManager.Storage.csproj b/sdk/storage/Azure.ResourceManager.Storage/src/Azure.ResourceManager.Storage.csproj index a2ed1beae819a..fbbe770f56b6f 100644 --- a/sdk/storage/Azure.ResourceManager.Storage/src/Azure.ResourceManager.Storage.csproj +++ b/sdk/storage/Azure.ResourceManager.Storage/src/Azure.ResourceManager.Storage.csproj @@ -8,5 +8,6 @@ azure;management;storage $(NoWarn);AZC0001;AZC0008 + true From ae5a455f77cb5738e37d4fdf413c67d4eeb3f8f1 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Thu, 18 Mar 2021 17:09:54 -0700 Subject: [PATCH 06/35] Update Azure.ResourceManager.Network.csproj --- .../src/Azure.ResourceManager.Network.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/network/Azure.ResourceManager.Network/src/Azure.ResourceManager.Network.csproj b/sdk/network/Azure.ResourceManager.Network/src/Azure.ResourceManager.Network.csproj index d8118ff89028e..35154a8b1d7e6 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/Azure.ResourceManager.Network.csproj +++ b/sdk/network/Azure.ResourceManager.Network/src/Azure.ResourceManager.Network.csproj @@ -7,6 +7,7 @@ This is a beta preview vesion. This version uses a next-generation code generator that introduces important breaking changes, but also new features (such as intuitive authentication, custom HTTP pipeline, distributed tracing and much more). azure;management;network + true From 954c0b36446c9ca20d36f210dd49c57721dc1476 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Thu, 18 Mar 2021 17:52:01 -0700 Subject: [PATCH 07/35] update csproj --- .../src/Azure.ResourceManager.AppConfiguration.csproj | 1 + .../src/Azure.ResourceManager.Communication.csproj | 1 + .../src/Azure.ResourceManager.CosmosDB.csproj | 1 + .../src/Azure.ResourceManager.Dns.csproj | 3 ++- .../src/Azure.ResourceManager.Insights.csproj | 1 + .../src/Azure.ResourceManager.KeyVault.csproj | 1 + .../src/Azure.ResourceManager.Sql.csproj | 1 + 7 files changed, 8 insertions(+), 1 deletion(-) diff --git a/sdk/appconfiguration/Azure.ResourceManager.AppConfiguration/src/Azure.ResourceManager.AppConfiguration.csproj b/sdk/appconfiguration/Azure.ResourceManager.AppConfiguration/src/Azure.ResourceManager.AppConfiguration.csproj index 04fc111c31ea5..5c0fc19eb23ec 100644 --- a/sdk/appconfiguration/Azure.ResourceManager.AppConfiguration/src/Azure.ResourceManager.AppConfiguration.csproj +++ b/sdk/appconfiguration/Azure.ResourceManager.AppConfiguration/src/Azure.ResourceManager.AppConfiguration.csproj @@ -8,5 +8,6 @@ azure;management;appconfiguration $(NoWarn);AZC0001;AZC0008; + true diff --git a/sdk/communication/Azure.ResourceManager.Communication/src/Azure.ResourceManager.Communication.csproj b/sdk/communication/Azure.ResourceManager.Communication/src/Azure.ResourceManager.Communication.csproj index c5eec6de29f81..869c1b6db2385 100644 --- a/sdk/communication/Azure.ResourceManager.Communication/src/Azure.ResourceManager.Communication.csproj +++ b/sdk/communication/Azure.ResourceManager.Communication/src/Azure.ResourceManager.Communication.csproj @@ -11,5 +11,6 @@ AZC0001 - Azure.ResourceManager.Communication namespace needs to be registered in the analyzer --> $(NoWarn);AZC0001 + true diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/src/Azure.ResourceManager.CosmosDB.csproj b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/src/Azure.ResourceManager.CosmosDB.csproj index 9f67351ef9c08..b4aec12b17342 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/src/Azure.ResourceManager.CosmosDB.csproj +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/src/Azure.ResourceManager.CosmosDB.csproj @@ -9,5 +9,6 @@ $(NoWarn);AZC0001;CS1591 + true diff --git a/sdk/dns/Azure.ResourceManager.Dns/src/Azure.ResourceManager.Dns.csproj b/sdk/dns/Azure.ResourceManager.Dns/src/Azure.ResourceManager.Dns.csproj index 2edf0280429ef..66b0f7626cc7b 100644 --- a/sdk/dns/Azure.ResourceManager.Dns/src/Azure.ResourceManager.Dns.csproj +++ b/sdk/dns/Azure.ResourceManager.Dns/src/Azure.ResourceManager.Dns.csproj @@ -18,5 +18,6 @@ $(NoWarn);AZC0001;CS0618 + true - \ No newline at end of file + diff --git a/sdk/insights/Azure.ResourceManager.Insights/src/Azure.ResourceManager.Insights.csproj b/sdk/insights/Azure.ResourceManager.Insights/src/Azure.ResourceManager.Insights.csproj index 4c51e7a6483c7..24e92a2dfba61 100644 --- a/sdk/insights/Azure.ResourceManager.Insights/src/Azure.ResourceManager.Insights.csproj +++ b/sdk/insights/Azure.ResourceManager.Insights/src/Azure.ResourceManager.Insights.csproj @@ -9,5 +9,6 @@ $(NoWarn);AZC0001 + true diff --git a/sdk/keyvault/Azure.ResourceManager.KeyVault/src/Azure.ResourceManager.KeyVault.csproj b/sdk/keyvault/Azure.ResourceManager.KeyVault/src/Azure.ResourceManager.KeyVault.csproj index 3b13b5e7a4fee..792c6c3db6e76 100644 --- a/sdk/keyvault/Azure.ResourceManager.KeyVault/src/Azure.ResourceManager.KeyVault.csproj +++ b/sdk/keyvault/Azure.ResourceManager.KeyVault/src/Azure.ResourceManager.KeyVault.csproj @@ -9,6 +9,7 @@ azure;management;keyvault $(NoWarn);AZC0001;AZC0008; + true diff --git a/sdk/sqlmanagement/Azure.ResourceManager.Sql/src/Azure.ResourceManager.Sql.csproj b/sdk/sqlmanagement/Azure.ResourceManager.Sql/src/Azure.ResourceManager.Sql.csproj index f8f7580e058d9..7e896c7bc2328 100644 --- a/sdk/sqlmanagement/Azure.ResourceManager.Sql/src/Azure.ResourceManager.Sql.csproj +++ b/sdk/sqlmanagement/Azure.ResourceManager.Sql/src/Azure.ResourceManager.Sql.csproj @@ -10,5 +10,6 @@ $(NoWarn);AZC0001;CS1591 + true From a9af1d4c615e551f58e0d8467065a421bcfe542c Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Fri, 19 Mar 2021 11:05:13 -0700 Subject: [PATCH 08/35] update csproj --- .../src/Azure.ResourceManager.MachineLearningServices.csproj | 1 + sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj | 1 + 2 files changed, 2 insertions(+) diff --git a/sdk/machinelearningservices/Azure.ResourceManager.MachineLearningServices/src/Azure.ResourceManager.MachineLearningServices.csproj b/sdk/machinelearningservices/Azure.ResourceManager.MachineLearningServices/src/Azure.ResourceManager.MachineLearningServices.csproj index 0286e0fb8c3e2..d82406f50a02e 100644 --- a/sdk/machinelearningservices/Azure.ResourceManager.MachineLearningServices/src/Azure.ResourceManager.MachineLearningServices.csproj +++ b/sdk/machinelearningservices/Azure.ResourceManager.MachineLearningServices/src/Azure.ResourceManager.MachineLearningServices.csproj @@ -14,5 +14,6 @@ $(NoWarn);AZC0001;CS1591 + true diff --git a/sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj b/sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj index a3113ac3c734e..b03a5db74a3cd 100644 --- a/sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj +++ b/sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj @@ -8,5 +8,6 @@ as this project doesn't start with Azure.Management--> true $(NoWarn);AZC0001;AZC0008;AZC0012;CS1591 + true From 1bf3b5b22f984685be13b503c216cf9e6ed6a6ba Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Mon, 22 Mar 2021 16:26:55 -0700 Subject: [PATCH 09/35] WIP --- .../src/Azure.ResourceManager.Core.csproj | 1 + .../src/AzureResourceManagerClient.cs | 6 +++--- .../Azure.ResourceManager.Core/src/OperationsBase.cs | 6 +++--- .../src/ResourceOperationsBase.cs | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj index 0850e68ca8b06..6169072d16878 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj @@ -10,6 +10,7 @@ azure;management;resource $(NoWarn);AZC0008;AZC0001;AZC0107;CA2214;CA1036;CA1067;CA1065;SA1028 true + false diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs index f151dca34a0ed..6d7c40c10867b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs @@ -106,17 +106,17 @@ private AzureResourceManagerClient( /// /// Gets the Azure Resource Manager client options. /// - private AzureResourceManagerClientOptions ClientOptions { get; set; } + private AzureResourceManagerClientOptions ClientOptions; /// /// Gets the Azure credential. /// - private TokenCredential Credential { get; set; } + private TokenCredential Credential; /// /// Gets the base URI of the service. /// - private Uri BaseUri { get; set; } + private Uri BaseUri; /// /// Gets the Azure subscription operations. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs index 8768d306ccdf9..f3f4478e92e5c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs @@ -45,17 +45,17 @@ internal OperationsBase(ClientContext clientContext, ResourceIdentifier id) /// /// Gets the Azure Resource Manager client options. /// - protected internal AzureResourceManagerClientOptions ClientOptions { get; set; } + protected internal AzureResourceManagerClientOptions ClientOptions { get; private set; } /// /// Gets the Azure credential. /// - protected internal TokenCredential Credential { get; set; } + protected internal TokenCredential Credential { get; private set; } /// /// Gets the base URI of the service. /// - protected internal Uri BaseUri { get; set; } + protected internal Uri BaseUri { get; private set; } /// /// Gets the valid Azure resource type for the current operations. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs index dc4796cf20245..796efdb29e92e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs @@ -63,7 +63,7 @@ protected ResourceOperationsBase(OperationsBase parentOperations, ResourceIdenti /// /// /// - protected ResourceOperationsBase(ClientContext clientContext, string id) + internal ResourceOperationsBase(ClientContext clientContext, string id) : base(clientContext, id) { } From 0f952dc42c9a4ebafedf7fbb15fac316750e9880 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Mon, 22 Mar 2021 16:27:50 -0700 Subject: [PATCH 10/35] WIP --- common/ManagementCoreShared/ClientContext.cs | 4 ++-- eng/Directory.Build.Data.targets | 9 +++++++-- .../Azure.ResourceManager.Compute.sln | 2 -- .../src/Azure.ResourceManager.Compute.csproj | 4 ++-- .../authorization/Proto.Authorization.csproj | 4 ++-- .../Proto.Client/billing/Proto.Billing.csproj | 2 +- .../Proto.Client/compute/Proto.Compute.csproj | 5 +---- .../network/Extensions/SubscriptionExtensions.cs | 4 ++-- .../Proto.Client/network/Proto.Network.csproj | 2 +- .../Proto.Client/src/Scenarios/CreateSingleVmExample.cs | 7 ++++--- 10 files changed, 22 insertions(+), 21 deletions(-) diff --git a/common/ManagementCoreShared/ClientContext.cs b/common/ManagementCoreShared/ClientContext.cs index 01776a216c6d5..9d67ee2a11a43 100644 --- a/common/ManagementCoreShared/ClientContext.cs +++ b/common/ManagementCoreShared/ClientContext.cs @@ -9,7 +9,7 @@ namespace Azure.ResourceManager.Core /// /// helper class /// - public class ClientContext + internal class ClientContext { /// /// client options @@ -32,7 +32,7 @@ public class ClientContext /// /// /// - protected internal ClientContext(AzureResourceManagerClientOptions clientOptions, TokenCredential credential, Uri uri) + internal ClientContext(AzureResourceManagerClientOptions clientOptions, TokenCredential credential, Uri uri) { ClientOptions = clientOptions; Credential = credential; diff --git a/eng/Directory.Build.Data.targets b/eng/Directory.Build.Data.targets index a0f8fca86688c..d212273c02652 100644 --- a/eng/Directory.Build.Data.targets +++ b/eng/Directory.Build.Data.targets @@ -143,11 +143,16 @@ $(MSBuildThisFileDirectory)/../common/ManagementCoreShared - - + + + + + diff --git a/sdk/compute/Azure.ResourceManager.Compute/Azure.ResourceManager.Compute.sln b/sdk/compute/Azure.ResourceManager.Compute/Azure.ResourceManager.Compute.sln index a3d19ac8e1687..39362d2b8636f 100644 --- a/sdk/compute/Azure.ResourceManager.Compute/Azure.ResourceManager.Compute.sln +++ b/sdk/compute/Azure.ResourceManager.Compute/Azure.ResourceManager.Compute.sln @@ -10,8 +10,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core", "..\..\core\Az EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{DF15D10D-3646-447E-B00B-49506D142322}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.Core", "..\..\resourcemanager\Azure.ResourceManager.Core\src\Azure.ResourceManager.Core.csproj", "{CAE36261-9B8F-42A2-9043-461350D2A42E}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU diff --git a/sdk/compute/Azure.ResourceManager.Compute/src/Azure.ResourceManager.Compute.csproj b/sdk/compute/Azure.ResourceManager.Compute/src/Azure.ResourceManager.Compute.csproj index effffcc0d0b8d..6958f432cb326 100644 --- a/sdk/compute/Azure.ResourceManager.Compute/src/Azure.ResourceManager.Compute.csproj +++ b/sdk/compute/Azure.ResourceManager.Compute/src/Azure.ResourceManager.Compute.csproj @@ -14,7 +14,7 @@ $(NoWarn);AZC0001;AZC0008 - + diff --git a/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj b/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj index 35380e2181909..2129c4ec74b09 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj +++ b/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj @@ -1,4 +1,4 @@ - + netstandard2.0 @@ -23,10 +23,10 @@ - $(NoWarn);AZC0001;CA1303;SA0001;SA1629; SA1101;SA1200;SA1208;SA1309;SA1633; + false diff --git a/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj b/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj index 8b799f3ca4f25..0051e9d7f371b 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj +++ b/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj @@ -4,6 +4,7 @@ netstandard2.0 Proto.Billing latest + false @@ -13,7 +14,6 @@ - diff --git a/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj b/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj index c2dd58cc64ed7..90343259772fe 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj +++ b/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj @@ -4,6 +4,7 @@ netstandard2.0 Proto.Compute latest + false @@ -16,8 +17,4 @@ - - - - diff --git a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs index 8615ae7153351..327855e74bdd7 100644 --- a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs @@ -184,9 +184,9 @@ public static Pageable ListNsgs(this SubscriptionOperation /// /// The instance the method will execute against. /// An async collection of resource operations that may take multiple service requests to iterate over. - public static async Task> ListNsgsAsync(this SubscriptionOperations subscription) + public static AsyncPageable ListNsgsAsync(this SubscriptionOperations subscription) { - return await subscription.ListResourcesAsync(async + return subscription.ListResourcesAsync(async (baseUri, credential, options) => { NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); diff --git a/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj b/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj index c6b98aa52672c..504f11794a469 100644 --- a/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj +++ b/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj @@ -4,6 +4,7 @@ netstandard2.0 Proto.Network latest + false @@ -16,7 +17,6 @@ - diff --git a/sdk/resourcemanager/Proto.Client/src/Scenarios/CreateSingleVmExample.cs b/sdk/resourcemanager/Proto.Client/src/Scenarios/CreateSingleVmExample.cs index 7cb585e7f46fe..b7beac9762406 100644 --- a/sdk/resourcemanager/Proto.Client/src/Scenarios/CreateSingleVmExample.cs +++ b/sdk/resourcemanager/Proto.Client/src/Scenarios/CreateSingleVmExample.cs @@ -24,7 +24,8 @@ public override void Execute() // Create AvailabilitySet Console.WriteLine("--------Start create AvailabilitySet--------"); - //var aset = resourceGroup.GetAvailabilitySetContainer().Construct("Aligned").CreateOrUpdate(Context.VmName + "_aSet").Value; + + var aset = resourceGroup.GetAvailabilitySetContainer().Construct("Aligned").CreateOrUpdate(Context.VmName + "_aSet").Value; // Create VNet Console.WriteLine("--------Start create VNet--------"); @@ -45,9 +46,9 @@ public override void Execute() // Create VM Console.WriteLine("--------Start create VM--------"); - //var vm = resourceGroup.GetVirtualMachineContainer().Construct(Context.Hostname, "admin-user", "!@#$%asdfA", nic.Id, aset.Id).CreateOrUpdate(Context.VmName).Value; + var vm = resourceGroup.GetVirtualMachineContainer().Construct(Context.Hostname, "admin-user", "!@#$%asdfA", nic.Id, aset.Id).CreateOrUpdate(Context.VmName).Value; - //Console.WriteLine("VM ID: " + vm.Id); + Console.WriteLine("VM ID: " + vm.Id); Console.WriteLine("--------Done create VM--------"); } From 2e6bf228296685135dffa7ddf52efd9fe4b62922 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Tue, 23 Mar 2021 12:36:08 -0700 Subject: [PATCH 11/35] update csproj --- eng/Directory.Build.Data.targets | 5 +---- .../src/SubscriptionOperations.cs | 4 ++-- .../compute/Extensions/SubscriptionExtensions.cs | 6 +++--- .../network/Extensions/SubscriptionExtensions.cs | 12 ++++++------ 4 files changed, 12 insertions(+), 15 deletions(-) diff --git a/eng/Directory.Build.Data.targets b/eng/Directory.Build.Data.targets index d212273c02652..57e53dfbe92f8 100644 --- a/eng/Directory.Build.Data.targets +++ b/eng/Directory.Build.Data.targets @@ -142,6 +142,7 @@ $(MSBuildThisFileDirectory)/../common/ManagementCoreShared + false @@ -149,10 +150,6 @@ Link="Shared/Management/%(RecursiveDir)%(Filename)%(Extension)" /> - - diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs index e990bd8123b20..60b21bdd8b074 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs @@ -63,9 +63,9 @@ public virtual T ListResources(Func /// /// - public virtual async Task ListResourcesAsync(Func> func) + public virtual AsyncPageable ListResourcesAsync(Func> func) { - return await func(BaseUri, Credential, ClientOptions).ConfigureAwait(false); + return func(BaseUri, Credential, ClientOptions); } /// diff --git a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs index 97fbe945a74cd..c616d412dbbd1 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs @@ -50,9 +50,9 @@ public static Pageable ListVirtualMachines(this SubscriptionOper /// /// The instance the method will execute against. /// An async collection of resource operations that may take multiple service requests to iterate over. - public static async Task> ListVirtualMachinesAsync(this SubscriptionOperations subscription) + public static AsyncPageable ListVirtualMachinesAsync(this SubscriptionOperations subscription) { - return await subscription.ListResourcesAsync(async + return subscription.ListResourcesAsync( (baseUri, credential, options) => { ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.Subscription, credential, options); @@ -124,7 +124,7 @@ public static Pageable ListAvailabilitySets(this SubscriptionOp /// An async collection of resource operations that may take multiple service requests to iterate over. public static AsyncPageable ListAvailabilitySetsAsync(this SubscriptionOperations subscription) { - return subscription.ListResources( + return subscription.ListResourcesAsync( (baseUri, credential, options) => { ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.Subscription, credential, options); diff --git a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs index 327855e74bdd7..72323edbe4231 100644 --- a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs @@ -54,7 +54,7 @@ public static Pageable ListVnets(this SubscriptionOperations sub /// An async collection of resource operations that may take multiple service requests to iterate over. public static AsyncPageable ListVnetsAsync(this SubscriptionOperations subscription) { - return subscription.ListResources( + return subscription.ListResourcesAsync( (baseUri, credential, options) => { NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); @@ -96,9 +96,9 @@ public static Pageable ListPublicIps(this SubscriptionOperation /// /// The instance the method will execute against. /// An async collection of resource operations that may take multiple service requests to iterate over. - public static async Task> ListPublicIpsAsync(this SubscriptionOperations subscription) + public static AsyncPageable ListPublicIpsAsync(this SubscriptionOperations subscription) { - return await subscription.ListResourcesAsync(async + return subscription.ListResourcesAsync( (baseUri, credential, options) => { NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); @@ -140,9 +140,9 @@ public static Pageable ListNics(this SubscriptionOperations su /// /// The to target for listing. /// An async collection of resource operations that may take multiple service requests to iterate over. - public static async Task> ListNicsAsync(this SubscriptionOperations subscription) + public static AsyncPageable ListNicsAsync(this SubscriptionOperations subscription) { - return await subscription.ListResourcesAsync(async + return subscription.ListResourcesAsync( (baseUri, credential, options) => { NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); @@ -186,7 +186,7 @@ public static Pageable ListNsgs(this SubscriptionOperation /// An async collection of resource operations that may take multiple service requests to iterate over. public static AsyncPageable ListNsgsAsync(this SubscriptionOperations subscription) { - return subscription.ListResourcesAsync(async + return subscription.ListResourcesAsync( (baseUri, credential, options) => { NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); From bccdf274b2eb7a0ce460f74d6d314c3bca1c7aea Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Tue, 23 Mar 2021 17:06:41 -0700 Subject: [PATCH 12/35] update csproj --- eng/Directory.Build.Data.targets | 4 ++-- .../Azure.ResourceManager.AppConfiguration.csproj | 2 +- .../src/Azure.ResourceManager.Communication.csproj | 2 +- .../Azure.ResourceManager.Compute.sln | 12 ------------ .../src/Azure.ResourceManager.Compute.csproj | 5 +---- .../src/Azure.ResourceManager.CosmosDB.csproj | 2 +- .../src/Azure.ResourceManager.Dns.csproj | 2 +- .../src/Azure.ResourceManager.Insights.csproj | 2 +- .../src/Azure.ResourceManager.KeyVault.csproj | 2 +- ...re.ResourceManager.MachineLearningServices.csproj | 2 +- .../src/Azure.ResourceManager.Core.csproj | 1 - .../Azure.ResourceManager.Authorization.csproj | 2 +- .../authorization/Proto.Authorization.csproj | 2 +- .../Azure.ResourceManager.Billing.csproj | 2 +- .../Proto.Client/billing/Proto.Billing.csproj | 2 +- .../compute/Extensions/SubscriptionExtensions.cs | 1 - .../Proto.Client/compute/Proto.Compute.csproj | 1 - .../network/Extensions/SubscriptionExtensions.cs | 2 -- .../Proto.Client/network/Proto.Network.csproj | 2 +- 19 files changed, 15 insertions(+), 35 deletions(-) diff --git a/eng/Directory.Build.Data.targets b/eng/Directory.Build.Data.targets index 57e53dfbe92f8..6fd3e4915aba0 100644 --- a/eng/Directory.Build.Data.targets +++ b/eng/Directory.Build.Data.targets @@ -142,10 +142,10 @@ $(MSBuildThisFileDirectory)/../common/ManagementCoreShared - false + false - + diff --git a/sdk/appconfiguration/Azure.ResourceManager.AppConfiguration/src/Azure.ResourceManager.AppConfiguration.csproj b/sdk/appconfiguration/Azure.ResourceManager.AppConfiguration/src/Azure.ResourceManager.AppConfiguration.csproj index 5c0fc19eb23ec..b3f945ab03543 100644 --- a/sdk/appconfiguration/Azure.ResourceManager.AppConfiguration/src/Azure.ResourceManager.AppConfiguration.csproj +++ b/sdk/appconfiguration/Azure.ResourceManager.AppConfiguration/src/Azure.ResourceManager.AppConfiguration.csproj @@ -8,6 +8,6 @@ azure;management;appconfiguration $(NoWarn);AZC0001;AZC0008; - true + true diff --git a/sdk/communication/Azure.ResourceManager.Communication/src/Azure.ResourceManager.Communication.csproj b/sdk/communication/Azure.ResourceManager.Communication/src/Azure.ResourceManager.Communication.csproj index 869c1b6db2385..d8e47b6681598 100644 --- a/sdk/communication/Azure.ResourceManager.Communication/src/Azure.ResourceManager.Communication.csproj +++ b/sdk/communication/Azure.ResourceManager.Communication/src/Azure.ResourceManager.Communication.csproj @@ -11,6 +11,6 @@ AZC0001 - Azure.ResourceManager.Communication namespace needs to be registered in the analyzer --> $(NoWarn);AZC0001 - true + true diff --git a/sdk/compute/Azure.ResourceManager.Compute/Azure.ResourceManager.Compute.sln b/sdk/compute/Azure.ResourceManager.Compute/Azure.ResourceManager.Compute.sln index 39362d2b8636f..827c599e0d3a1 100644 --- a/sdk/compute/Azure.ResourceManager.Compute/Azure.ResourceManager.Compute.sln +++ b/sdk/compute/Azure.ResourceManager.Compute/Azure.ResourceManager.Compute.sln @@ -68,18 +68,6 @@ Global {DF15D10D-3646-447E-B00B-49506D142322}.Release|x64.Build.0 = Release|Any CPU {DF15D10D-3646-447E-B00B-49506D142322}.Release|x86.ActiveCfg = Release|Any CPU {DF15D10D-3646-447E-B00B-49506D142322}.Release|x86.Build.0 = Release|Any CPU - {CAE36261-9B8F-42A2-9043-461350D2A42E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CAE36261-9B8F-42A2-9043-461350D2A42E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CAE36261-9B8F-42A2-9043-461350D2A42E}.Debug|x64.ActiveCfg = Debug|Any CPU - {CAE36261-9B8F-42A2-9043-461350D2A42E}.Debug|x64.Build.0 = Debug|Any CPU - {CAE36261-9B8F-42A2-9043-461350D2A42E}.Debug|x86.ActiveCfg = Debug|Any CPU - {CAE36261-9B8F-42A2-9043-461350D2A42E}.Debug|x86.Build.0 = Debug|Any CPU - {CAE36261-9B8F-42A2-9043-461350D2A42E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CAE36261-9B8F-42A2-9043-461350D2A42E}.Release|Any CPU.Build.0 = Release|Any CPU - {CAE36261-9B8F-42A2-9043-461350D2A42E}.Release|x64.ActiveCfg = Release|Any CPU - {CAE36261-9B8F-42A2-9043-461350D2A42E}.Release|x64.Build.0 = Release|Any CPU - {CAE36261-9B8F-42A2-9043-461350D2A42E}.Release|x86.ActiveCfg = Release|Any CPU - {CAE36261-9B8F-42A2-9043-461350D2A42E}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/sdk/compute/Azure.ResourceManager.Compute/src/Azure.ResourceManager.Compute.csproj b/sdk/compute/Azure.ResourceManager.Compute/src/Azure.ResourceManager.Compute.csproj index 6958f432cb326..2b943f95fa9aa 100644 --- a/sdk/compute/Azure.ResourceManager.Compute/src/Azure.ResourceManager.Compute.csproj +++ b/sdk/compute/Azure.ResourceManager.Compute/src/Azure.ResourceManager.Compute.csproj @@ -7,14 +7,11 @@ This is a beta preview vesion. This version uses a next-generation code generator that introduces important breaking changes, but also new features (such as intuitive authentication, custom HTTP pipeline, distributed tracing and much more). azure;management;compute - true + true $(NoWarn);AZC0001;AZC0008 - diff --git a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/src/Azure.ResourceManager.CosmosDB.csproj b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/src/Azure.ResourceManager.CosmosDB.csproj index b4aec12b17342..eca249765f214 100644 --- a/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/src/Azure.ResourceManager.CosmosDB.csproj +++ b/sdk/cosmosdb/Azure.ResourceManager.CosmosDB/src/Azure.ResourceManager.CosmosDB.csproj @@ -9,6 +9,6 @@ $(NoWarn);AZC0001;CS1591 - true + true diff --git a/sdk/dns/Azure.ResourceManager.Dns/src/Azure.ResourceManager.Dns.csproj b/sdk/dns/Azure.ResourceManager.Dns/src/Azure.ResourceManager.Dns.csproj index 66b0f7626cc7b..9c423f8d0aa68 100644 --- a/sdk/dns/Azure.ResourceManager.Dns/src/Azure.ResourceManager.Dns.csproj +++ b/sdk/dns/Azure.ResourceManager.Dns/src/Azure.ResourceManager.Dns.csproj @@ -18,6 +18,6 @@ $(NoWarn);AZC0001;CS0618 - true + true diff --git a/sdk/insights/Azure.ResourceManager.Insights/src/Azure.ResourceManager.Insights.csproj b/sdk/insights/Azure.ResourceManager.Insights/src/Azure.ResourceManager.Insights.csproj index 24e92a2dfba61..ac8a1100b0311 100644 --- a/sdk/insights/Azure.ResourceManager.Insights/src/Azure.ResourceManager.Insights.csproj +++ b/sdk/insights/Azure.ResourceManager.Insights/src/Azure.ResourceManager.Insights.csproj @@ -9,6 +9,6 @@ $(NoWarn);AZC0001 - true + true diff --git a/sdk/keyvault/Azure.ResourceManager.KeyVault/src/Azure.ResourceManager.KeyVault.csproj b/sdk/keyvault/Azure.ResourceManager.KeyVault/src/Azure.ResourceManager.KeyVault.csproj index 792c6c3db6e76..c86547fdb7d14 100644 --- a/sdk/keyvault/Azure.ResourceManager.KeyVault/src/Azure.ResourceManager.KeyVault.csproj +++ b/sdk/keyvault/Azure.ResourceManager.KeyVault/src/Azure.ResourceManager.KeyVault.csproj @@ -9,7 +9,7 @@ azure;management;keyvault $(NoWarn);AZC0001;AZC0008; - true + true diff --git a/sdk/machinelearningservices/Azure.ResourceManager.MachineLearningServices/src/Azure.ResourceManager.MachineLearningServices.csproj b/sdk/machinelearningservices/Azure.ResourceManager.MachineLearningServices/src/Azure.ResourceManager.MachineLearningServices.csproj index d82406f50a02e..ab0c9787923b7 100644 --- a/sdk/machinelearningservices/Azure.ResourceManager.MachineLearningServices/src/Azure.ResourceManager.MachineLearningServices.csproj +++ b/sdk/machinelearningservices/Azure.ResourceManager.MachineLearningServices/src/Azure.ResourceManager.MachineLearningServices.csproj @@ -14,6 +14,6 @@ $(NoWarn);AZC0001;CS1591 - true + true diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj index 6169072d16878..0850e68ca8b06 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Azure.ResourceManager.Core.csproj @@ -10,7 +10,6 @@ azure;management;resource $(NoWarn);AZC0008;AZC0001;AZC0107;CA2214;CA1036;CA1067;CA1065;SA1028 true - false diff --git a/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj b/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj index 9314891528529..70b0114148558 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj +++ b/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj @@ -4,7 +4,7 @@ Azure.ResourceManager.Authorization Azure Resource Manager client SDK for Azure resource provider Microsoft.Authorization azure;management;arm;resource manager;authorization - true + true true diff --git a/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj b/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj index 2129c4ec74b09..a635694084083 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj +++ b/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj @@ -27,6 +27,6 @@ $(NoWarn);AZC0001;CA1303;SA0001;SA1629; SA1101;SA1200;SA1208;SA1309;SA1633; - false + false diff --git a/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj b/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj index fda2bb0702dfb..8dce5d1aca3c0 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj +++ b/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj @@ -5,7 +5,7 @@ Azure Resource Manager client SDK for Azure resource provider Microsoft.Billing azure;management;arm;resource manager;billing true - true + true diff --git a/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj b/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj index 0051e9d7f371b..202c35604f63d 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj +++ b/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj @@ -4,7 +4,7 @@ netstandard2.0 Proto.Billing latest - false + false diff --git a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs index c616d412dbbd1..950a92fd6fa3e 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs @@ -2,7 +2,6 @@ using Azure.Core; using Azure.ResourceManager.Compute; using Azure.ResourceManager.Core; -using Azure.ResourceManager.Core.Adapters; using Azure.ResourceManager.Core.Resources; using System; using System.Threading; diff --git a/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj b/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj index 90343259772fe..c0592e2e8b519 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj +++ b/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj @@ -4,7 +4,6 @@ netstandard2.0 Proto.Compute latest - false diff --git a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs index 72323edbe4231..093c978ccfe40 100644 --- a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs @@ -4,10 +4,8 @@ using Azure; using Azure.Core; using Azure.ResourceManager.Core; -using Azure.ResourceManager.Core.Adapters; using Azure.ResourceManager.Network; using System; -using System.Threading.Tasks; namespace Proto.Network { diff --git a/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj b/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj index 504f11794a469..5ce191977795c 100644 --- a/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj +++ b/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj @@ -4,7 +4,7 @@ netstandard2.0 Proto.Network latest - false + false From 4fe6c138c1f9687b4d9436a85f580c5825ec7fc5 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Tue, 23 Mar 2021 17:29:20 -0700 Subject: [PATCH 13/35] update csproj --- .../src/Azure.ResourceManager.Network.csproj | 2 +- .../src/Azure.ResourceManager.Resources.csproj | 2 +- .../src/Azure.ResourceManager.Sql.csproj | 2 +- .../src/Azure.ResourceManager.Storage.csproj | 2 +- sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sdk/network/Azure.ResourceManager.Network/src/Azure.ResourceManager.Network.csproj b/sdk/network/Azure.ResourceManager.Network/src/Azure.ResourceManager.Network.csproj index 35154a8b1d7e6..257e639edf520 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/Azure.ResourceManager.Network.csproj +++ b/sdk/network/Azure.ResourceManager.Network/src/Azure.ResourceManager.Network.csproj @@ -7,7 +7,7 @@ This is a beta preview vesion. This version uses a next-generation code generator that introduces important breaking changes, but also new features (such as intuitive authentication, custom HTTP pipeline, distributed tracing and much more). azure;management;network - true + true diff --git a/sdk/resources/Azure.ResourceManager.Resources/src/Azure.ResourceManager.Resources.csproj b/sdk/resources/Azure.ResourceManager.Resources/src/Azure.ResourceManager.Resources.csproj index 05924aeed0f62..63af91f6e2535 100644 --- a/sdk/resources/Azure.ResourceManager.Resources/src/Azure.ResourceManager.Resources.csproj +++ b/sdk/resources/Azure.ResourceManager.Resources/src/Azure.ResourceManager.Resources.csproj @@ -8,6 +8,6 @@ azure;management;resource $(NoWarn);AZC0008;AZC0001 - true + true diff --git a/sdk/sqlmanagement/Azure.ResourceManager.Sql/src/Azure.ResourceManager.Sql.csproj b/sdk/sqlmanagement/Azure.ResourceManager.Sql/src/Azure.ResourceManager.Sql.csproj index 7e896c7bc2328..de269151301f4 100644 --- a/sdk/sqlmanagement/Azure.ResourceManager.Sql/src/Azure.ResourceManager.Sql.csproj +++ b/sdk/sqlmanagement/Azure.ResourceManager.Sql/src/Azure.ResourceManager.Sql.csproj @@ -10,6 +10,6 @@ $(NoWarn);AZC0001;CS1591 - true + true diff --git a/sdk/storage/Azure.ResourceManager.Storage/src/Azure.ResourceManager.Storage.csproj b/sdk/storage/Azure.ResourceManager.Storage/src/Azure.ResourceManager.Storage.csproj index fbbe770f56b6f..cac8bb0bbfbe6 100644 --- a/sdk/storage/Azure.ResourceManager.Storage/src/Azure.ResourceManager.Storage.csproj +++ b/sdk/storage/Azure.ResourceManager.Storage/src/Azure.ResourceManager.Storage.csproj @@ -8,6 +8,6 @@ azure;management;storage $(NoWarn);AZC0001;AZC0008 - true + true diff --git a/sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj b/sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj index b03a5db74a3cd..9c8e6d0f612b5 100644 --- a/sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj +++ b/sdk/testcommon/Azure.Graph.Rbac/src/Azure.Graph.Rbac.csproj @@ -8,6 +8,6 @@ as this project doesn't start with Azure.Management--> true $(NoWarn);AZC0001;AZC0008;AZC0012;CS1591 - true + true From 05c4e730a469b1231defdb07a7358bfc43e50ab3 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Wed, 24 Mar 2021 17:23:22 -0700 Subject: [PATCH 14/35] add tests --- .../tests/Scenario/ClientContextTests.cs | 68 +++++++++++++ .../TestClientContextPolicy().json | 96 +++++++++++++++++++ .../TestClientContextPolicy()Async.json | 96 +++++++++++++++++++ 3 files changed, 260 insertions(+) create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs new file mode 100644 index 0000000000000..306208a970456 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs @@ -0,0 +1,68 @@ +using System; +using Azure.Core; +using Azure.Identity; +using NUnit.Framework; +using Azure.Core.Pipeline; +using System.Threading; + +namespace Azure.ResourceManager.Core.Tests +{ + public class ClientContextTests : ResourceManagerTestBase + { + private AzureResourceManagerClient _client; + + public ClientContextTests(bool isAsync) + : base(isAsync)//, RecordedTestMode.Record) + { + } + + [SetUp] + public void SetUp() + { + _client = GetArmClient(); + } + + [TestCase] + public void TestClientContextPolicy() + { + AzureResourceManagerClientOptions options1 = new AzureResourceManagerClientOptions(); + var dummyPolicy1 = new dummyPolicy(); + var dummyPolicy2 = new dummyPolicy2(); + options1.AddPolicy(dummyPolicy1, HttpPipelinePosition.PerCall); + var client1 = new AzureResourceManagerClient(new DefaultAzureCredential(), options1); + + Console.WriteLine("-----Client 1-----"); + foreach (var sub in client1.GetSubscriptionContainer().List()) + { + Console.WriteLine($"Found {sub.Data.DisplayName}"); + } + Assert.AreEqual(dummyPolicy1.numMsgGot, 2); + + //client1.DefaultSubscription.ClientOptions = //set accessor is inaccessible + client1.DefaultSubscription.ClientOptions.AddPolicy(dummyPolicy2, HttpPipelinePosition.PerCall); + + Assert.AreEqual(dummyPolicy1.numMsgGot, 2); + Console.WriteLine("\nPASSED\n"); + } + + private class dummyPolicy : HttpPipelineSynchronousPolicy + { + public int numMsgGot = 0; + + public override void OnReceivedResponse(HttpMessage message) + { + Interlocked.Increment(ref numMsgGot); + } + } + + private class dummyPolicy2 : HttpPipelineSynchronousPolicy + { + public int numMsgGot = 0; + + public override void OnReceivedResponse(HttpMessage message) + { + Interlocked.Add(ref numMsgGot, 2); + } + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json new file mode 100644 index 0000000000000..78cebbd1d9574 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json @@ -0,0 +1,96 @@ +{ + "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c6d72a21af7af90b649094d4c0250a58", + "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": "Thu, 25 Mar 2021 00:21:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f8b37a3f-915c-493a-9489-5343ab6e98ec", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "f8b37a3f-915c-493a-9489-5343ab6e98ec", + "x-ms-routing-request-id": "WESTUS:20210325T002105Z:f8b37a3f-915c-493a-9489-5343ab6e98ec" + }, + "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?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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c304bd1fd819d829c1e23986542e2a45", + "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": "Thu, 25 Mar 2021 00:21:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3518e064-9fd2-4705-912e-3c89caf00ba3", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "3518e064-9fd2-4705-912e-3c89caf00ba3", + "x-ms-routing-request-id": "WESTUS:20210325T002105Z:3518e064-9fd2-4705-912e-3c89caf00ba3" + }, + "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" + } + } + } + ], + "Variables": { + "RandomSeed": "61655423", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json new file mode 100644 index 0000000000000..25806a2ad9bea --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json @@ -0,0 +1,96 @@ +{ + "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e96d9ac8512614d931e92300f67b3120", + "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": "Thu, 25 Mar 2021 00:21:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5bed7f78-1426-48d7-952f-7d2294efa57a", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "5bed7f78-1426-48d7-952f-7d2294efa57a", + "x-ms-routing-request-id": "WESTUS:20210325T002105Z:5bed7f78-1426-48d7-952f-7d2294efa57a" + }, + "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?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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e09d8a5201e54fd1d4c2015378af5276", + "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": "Thu, 25 Mar 2021 00:21:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9d997ef4-c0f8-46ac-9718-902b4df23711", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "9d997ef4-c0f8-46ac-9718-902b4df23711", + "x-ms-routing-request-id": "WESTUS:20210325T002105Z:9d997ef4-c0f8-46ac-9718-902b4df23711" + }, + "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" + } + } + } + ], + "Variables": { + "RandomSeed": "832183351", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file From ee494c606502577f62c69a20ad96c8c55e900654 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Wed, 24 Mar 2021 18:38:31 -0700 Subject: [PATCH 15/35] update test --- .../tests/Scenario/ClientContextTests.cs | 8 --- .../TestClientContextPolicy().json | 54 ++----------------- .../TestClientContextPolicy()Async.json | 54 ++----------------- 3 files changed, 10 insertions(+), 106 deletions(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs index 306208a970456..2a670616d068a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs @@ -9,19 +9,11 @@ namespace Azure.ResourceManager.Core.Tests { public class ClientContextTests : ResourceManagerTestBase { - private AzureResourceManagerClient _client; - public ClientContextTests(bool isAsync) : base(isAsync)//, RecordedTestMode.Record) { } - [SetUp] - public void SetUp() - { - _client = GetArmClient(); - } - [TestCase] public void TestClientContextPolicy() { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json index 78cebbd1d9574..106713de81c97 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + "(.NET 5.0.4; Microsoft Windows 10.0.19042)" ], "x-ms-client-request-id": "c6d72a21af7af90b649094d4c0250a58", "x-ms-return-client-request-id": "true" @@ -19,59 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 00:21:05 GMT", + "Date": "Thu, 25 Mar 2021 01:37:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8b37a3f-915c-493a-9489-5343ab6e98ec", + "x-ms-correlation-request-id": "0f13d465-950c-4454-ae9c-f9f6a6710a4f", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "f8b37a3f-915c-493a-9489-5343ab6e98ec", - "x-ms-routing-request-id": "WESTUS:20210325T002105Z:f8b37a3f-915c-493a-9489-5343ab6e98ec" - }, - "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?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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c304bd1fd819d829c1e23986542e2a45", - "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": "Thu, 25 Mar 2021 00:21:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3518e064-9fd2-4705-912e-3c89caf00ba3", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "3518e064-9fd2-4705-912e-3c89caf00ba3", - "x-ms-routing-request-id": "WESTUS:20210325T002105Z:3518e064-9fd2-4705-912e-3c89caf00ba3" + "x-ms-request-id": "0f13d465-950c-4454-ae9c-f9f6a6710a4f", + "x-ms-routing-request-id": "WESTUS:20210325T013755Z:0f13d465-950c-4454-ae9c-f9f6a6710a4f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json index 25806a2ad9bea..e1c410be86467 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + "(.NET 5.0.4; Microsoft Windows 10.0.19042)" ], "x-ms-client-request-id": "e96d9ac8512614d931e92300f67b3120", "x-ms-return-client-request-id": "true" @@ -19,59 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 00:21:04 GMT", + "Date": "Thu, 25 Mar 2021 01:37:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5bed7f78-1426-48d7-952f-7d2294efa57a", + "x-ms-correlation-request-id": "82a352de-e947-4b24-9f8e-780d92001850", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "5bed7f78-1426-48d7-952f-7d2294efa57a", - "x-ms-routing-request-id": "WESTUS:20210325T002105Z:5bed7f78-1426-48d7-952f-7d2294efa57a" - }, - "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?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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e09d8a5201e54fd1d4c2015378af5276", - "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": "Thu, 25 Mar 2021 00:21:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d997ef4-c0f8-46ac-9718-902b4df23711", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "9d997ef4-c0f8-46ac-9718-902b4df23711", - "x-ms-routing-request-id": "WESTUS:20210325T002105Z:9d997ef4-c0f8-46ac-9718-902b4df23711" + "x-ms-request-id": "82a352de-e947-4b24-9f8e-780d92001850", + "x-ms-routing-request-id": "WESTUS:20210325T013755Z:82a352de-e947-4b24-9f8e-780d92001850" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", From c82f5b55e0f9035c09fec1e6863d12f53eea71b1 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Wed, 24 Mar 2021 20:21:39 -0700 Subject: [PATCH 16/35] update --- .../Redesign/ManagementRecordedTestBase.cs | 8 +- .../src/InstrumentClientInterceptor.cs | 2 +- .../tests/ManagementRecordedTestBaseTests.cs | 2 +- ...ValidateInstrumentDefaultSubscription.json | 6 ++ .../tests/TestClients/ManagementTestClient.cs | 2 +- .../src/SubscriptionContainer.cs | 39 ++++++- .../tests/Scenario/ClientContextTests.cs | 11 +- .../Scenario/ResourceGroupContainerTests.cs | 2 +- .../ResourceGroupContainerTests/List().json | 84 +++++++-------- .../List()Async.json | 102 +++++++++--------- 10 files changed, 150 insertions(+), 108 deletions(-) create mode 100644 sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateInstrumentDefaultSubscription.json diff --git a/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs b/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs index 9c07ef1c9f1fc..89d5fdf4052df 100644 --- a/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs +++ b/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs @@ -51,15 +51,15 @@ private AzureResourceManagerClient GetCleanupClient() return null; } - protected AzureResourceManagerClient GetArmClient() + protected AzureResourceManagerClient GetArmClient(AzureResourceManagerClientOptions options = default) { - var options = InstrumentClientOptions(new AzureResourceManagerClientOptions()); - options.AddPolicy(CleanupPolicy, HttpPipelinePosition.PerCall); + var instOptions = InstrumentClientOptions(options ?? new AzureResourceManagerClientOptions()); + instOptions.AddPolicy(CleanupPolicy, HttpPipelinePosition.PerCall); return CreateClient( TestEnvironment.SubscriptionId, TestEnvironment.Credential, - options); + instOptions); } [SetUp] diff --git a/sdk/core/Azure.Core.TestFramework/src/InstrumentClientInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/InstrumentClientInterceptor.cs index ee75cf85b524d..2f73c36581144 100644 --- a/sdk/core/Azure.Core.TestFramework/src/InstrumentClientInterceptor.cs +++ b/sdk/core/Azure.Core.TestFramework/src/InstrumentClientInterceptor.cs @@ -37,7 +37,7 @@ public void Intercept(IInvocation invocation) if ( // Generated ARM clients will have a property containing the sub-client that ends with Operations. - (invocation.Method.Name.StartsWith("get_") && type.Name.EndsWith("Operations")) || + (invocation.Method.Name.StartsWith("get_") && (type.Name.EndsWith("Operations") || type.BaseType.Name.EndsWith("Operations"))) || // Instrument the container construction methods inside Operations objects (invocation.Method.Name.StartsWith("Get") && type.Name.EndsWith("Container")) || // Instrument the operations construction methods inside Operations objects diff --git a/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs b/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs index beb6f47435568..2c7d775d0d3fe 100644 --- a/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs +++ b/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs @@ -35,7 +35,7 @@ public void ValidateInstrumentDefaultSubscription() var sub = client.DefaultSubscription; var result = sub.Method(); - Assert.AreEqual("TestResourceOperationsProxy", sub.GetType().Name); + Assert.AreEqual("TestResourceProxy", sub.GetType().Name); Assert.AreEqual("success", result); } diff --git a/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateInstrumentDefaultSubscription.json b/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateInstrumentDefaultSubscription.json new file mode 100644 index 0000000000000..8e2a1648bd016 --- /dev/null +++ b/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateInstrumentDefaultSubscription.json @@ -0,0 +1,6 @@ +{ + "Entries": [], + "Variables": { + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/core/Azure.Core/tests/TestClients/ManagementTestClient.cs b/sdk/core/Azure.Core/tests/TestClients/ManagementTestClient.cs index 2825169200170..e61752b2902a0 100644 --- a/sdk/core/Azure.Core/tests/TestClients/ManagementTestClient.cs +++ b/sdk/core/Azure.Core/tests/TestClients/ManagementTestClient.cs @@ -29,7 +29,7 @@ public virtual TestResourceContainer GetTestResourceContainer() return new TestResourceContainer(); } - public virtual TestResourceOperations DefaultSubscription => new TestResourceOperations(); + public virtual TestResource DefaultSubscription => new TestResource(); public virtual string Method() { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs index 7cf084e70501b..6ba9828796376 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs @@ -14,6 +14,13 @@ namespace Azure.ResourceManager.Core /// public class SubscriptionContainer : ContainerBase { + /// + /// Initializes a new instance of the class for mocking. + /// + protected SubscriptionContainer() + { + } + /// /// Initializes a new instance of the class. /// @@ -43,11 +50,23 @@ internal SubscriptionContainer(ClientContext clientContext) /// A token to allow the caller to cancel the call to the service. /// The default value is . /// A collection of resource operations that may take multiple service requests to iterate over. - public Pageable List(CancellationToken cancellationToken = default) + [ForwardsClientCalls] + public virtual Pageable List(CancellationToken cancellationToken = default) { - return new PhWrappingPageable( + using var scope = Diagnostics.CreateScope("SubscriptionContainer.List"); + scope.Start(); + + try + { + return new PhWrappingPageable( Operations.List(cancellationToken), Converter()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// @@ -56,11 +75,23 @@ public Pageable List(CancellationToken cancellationToken = default /// A token to allow the caller to cancel the call to the service. /// The default value is . /// An async collection of resource operations that may take multiple service requests to iterate over. - public AsyncPageable ListAsync(CancellationToken cancellationToken = default) + [ForwardsClientCalls] + public virtual AsyncPageable ListAsync(CancellationToken cancellationToken = default) { - return new PhWrappingAsyncPageable( + using var scope = Diagnostics.CreateScope("SubscriptionContainer.List"); + scope.Start(); + + try + { + return new PhWrappingAsyncPageable( Operations.ListAsync(cancellationToken), Converter()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs index 2a670616d068a..e1e05687a9d86 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs @@ -4,27 +4,30 @@ using NUnit.Framework; using Azure.Core.Pipeline; using System.Threading; +using Azure.Core.TestFramework; +using System.Threading.Tasks; namespace Azure.ResourceManager.Core.Tests { public class ClientContextTests : ResourceManagerTestBase { public ClientContextTests(bool isAsync) - : base(isAsync)//, RecordedTestMode.Record) + : base(isAsync, RecordedTestMode.Record) { } [TestCase] - public void TestClientContextPolicy() + [RecordedTest] + public async Task TestClientContextPolicy() { AzureResourceManagerClientOptions options1 = new AzureResourceManagerClientOptions(); var dummyPolicy1 = new dummyPolicy(); var dummyPolicy2 = new dummyPolicy2(); options1.AddPolicy(dummyPolicy1, HttpPipelinePosition.PerCall); - var client1 = new AzureResourceManagerClient(new DefaultAzureCredential(), options1); + var client1 = GetArmClient(options1); Console.WriteLine("-----Client 1-----"); - foreach (var sub in client1.GetSubscriptionContainer().List()) + await foreach (var sub in client1.GetSubscriptionContainer().ListAsync()) { Console.WriteLine($"Found {sub.Data.DisplayName}"); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs index d71f3b7ac21fb..73ef9518d43ef 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs @@ -11,7 +11,7 @@ namespace Azure.ResourceManager.Core.Tests public class ResourceGroupContainerTests : ResourceManagerTestBase { public ResourceGroupContainerTests(bool isAsync) - : base(isAsync)//, RecordedTestMode.Record) + : base(isAsync, RecordedTestMode.Record) { } 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 58d15d260f2c1..8e523b3a54789 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:04 GMT", + "Date": "Thu, 25 Mar 2021 02:59:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ecf0ca7-e60b-40ab-a957-e628559bfefd", + "x-ms-correlation-request-id": "1159d8f4-749c-431b-b202-61868be8ca0b", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "0ecf0ca7-e60b-40ab-a957-e628559bfefd", - "x-ms-routing-request-id": "WESTUS2:20210310T062504Z:0ecf0ca7-e60b-40ab-a957-e628559bfefd" + "x-ms-request-id": "1159d8f4-749c-431b-b202-61868be8ca0b", + "x-ms-routing-request-id": "WESTUS:20210325T025905Z:1159d8f4-749c-431b-b202-61868be8ca0b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,7 +49,6 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-b2b6e8e2eaace845813249360a910e74-07d30f4b16990549-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4d506cbd48c3a8c934b1e57276165c60", "x-ms-return-client-request-id": "true" @@ -63,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:05 GMT", + "Date": "Thu, 25 Mar 2021 02:59:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62074c1f-e848-4b4c-a717-1158f11dbdda", + "x-ms-correlation-request-id": "6c5e17c6-1428-4b87-a773-a2b903f45c12", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "62074c1f-e848-4b4c-a717-1158f11dbdda", - "x-ms-routing-request-id": "WESTUS2:20210310T062505Z:62074c1f-e848-4b4c-a717-1158f11dbdda" + "x-ms-request-id": "6c5e17c6-1428-4b87-a773-a2b903f45c12", + "x-ms-routing-request-id": "WESTUS:20210325T025907Z:6c5e17c6-1428-4b87-a773-a2b903f45c12" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", @@ -92,7 +91,6 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-49a3327804017b4c90519e478041799f-92a50af83b091047-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "997a583a7a13a661eb9ff26126efcbab", "x-ms-return-client-request-id": "true" @@ -106,15 +104,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:06 GMT", + "Date": "Thu, 25 Mar 2021 02:59:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "37653f5a-92ed-468d-807a-b7bca0bf0b29", + "x-ms-correlation-request-id": "b6c7a253-568b-467e-803c-57d92c6aeb99", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "37653f5a-92ed-468d-807a-b7bca0bf0b29", - "x-ms-routing-request-id": "WESTUS2:20210310T062506Z:37653f5a-92ed-468d-807a-b7bca0bf0b29" + "x-ms-request-id": "b6c7a253-568b-467e-803c-57d92c6aeb99", + "x-ms-routing-request-id": "WESTUS:20210325T025907Z:b6c7a253-568b-467e-803c-57d92c6aeb99" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", @@ -133,7 +131,6 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a28128415086dc429e2de05ff896de98-91079d230d1d6a4b-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "db5e9666609168fe8a8a0e7c1330e845", "x-ms-return-client-request-id": "true" @@ -142,42 +139,41 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3978", + "Content-Length": "4165", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:06 GMT", + "Date": "Thu, 25 Mar 2021 02:59:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c75bb25-9302-4b8a-9242-9c943b69b61c", + "x-ms-correlation-request-id": "3b4600a7-a5c4-4480-8b84-c2b61a4483a2", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "4c75bb25-9302-4b8a-9242-9c943b69b61c", - "x-ms-routing-request-id": "WESTUS2:20210310T062506Z:4c75bb25-9302-4b8a-9242-9c943b69b61c" + "x-ms-request-id": "3b4600a7-a5c4-4480-8b84-c2b61a4483a2", + "x-ms-routing-request-id": "WESTUS:20210325T025907Z:3b4600a7-a5c4-4480-8b84-c2b61a4483a2" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", - "name": "NetworkWatcherRG", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG", + "name": "AzSecPackAutoConfigRG", "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", + "location": "eastus", "properties": { "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9714", - "name": "testRg-9714", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", + "name": "NetworkWatcherRG", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", - "tags": {}, "properties": { "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-4091", - "name": "testRg-4091", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-116311-rg", + "name": "bqauntump-116311-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -186,8 +182,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-3536", - "name": "testRg-3536", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-13946771-rg", + "name": "bqauntump-13946771-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -196,8 +192,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7291", - "name": "testRg-7291", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-13981971-rg", + "name": "bqauntump-13981971-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -206,8 +202,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5007", - "name": "testRg-5007", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14073771-rg", + "name": "bqauntump-14073771-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -216,8 +212,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-557", - "name": "testRg-557", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14180111-rg", + "name": "bqauntump-14180111-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -226,8 +222,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7976", - "name": "testRg-7976", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14231821-rg", + "name": "bqauntump-14231821-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -236,8 +232,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8051", - "name": "testRg-8051", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14357451-rg", + "name": "bqauntump-14357451-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -246,8 +242,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9131", - "name": "testRg-9131", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14401091-rg", + "name": "bqauntump-14401091-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -256,8 +252,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5858", - "name": "testRg-5858", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14437221-rg", + "name": "bqauntump-14437221-rg", "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 0f3df558a8c39..bb9b000b79832 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 @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:29 GMT", + "Date": "Thu, 25 Mar 2021 02:59:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f80fd14-dd45-4451-84ed-812c18b27e15", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "3f80fd14-dd45-4451-84ed-812c18b27e15", - "x-ms-routing-request-id": "WESTUS2:20210310T062529Z:3f80fd14-dd45-4451-84ed-812c18b27e15" + "x-ms-correlation-request-id": "f8dfe1ff-597e-4b90-9817-1774fe2acbb1", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "f8dfe1ff-597e-4b90-9817-1774fe2acbb1", + "x-ms-routing-request-id": "WESTUS:20210325T025909Z:f8dfe1ff-597e-4b90-9817-1774fe2acbb1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,7 +49,6 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-805fdc079074e34a93a3733a6095241e-3b3894355803df41-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9c1867024544a4ce2fd808a6a8f416fa", "x-ms-return-client-request-id": "true" @@ -63,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:30 GMT", + "Date": "Thu, 25 Mar 2021 02:59:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1a483e9-8e20-47d3-804a-e1242604cd8d", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "e1a483e9-8e20-47d3-804a-e1242604cd8d", - "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:e1a483e9-8e20-47d3-804a-e1242604cd8d" + "x-ms-correlation-request-id": "79fa152a-7a5c-4e38-b020-170968b080aa", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "79fa152a-7a5c-4e38-b020-170968b080aa", + "x-ms-routing-request-id": "WESTUS:20210325T025910Z:79fa152a-7a5c-4e38-b020-170968b080aa" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", @@ -92,7 +91,6 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-70155e612b4cbb45a86b4e1bf9311095-b588d522b5823c47-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f77522cdaf69f33f8f0ffba77bde90a3", "x-ms-return-client-request-id": "true" @@ -106,15 +104,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:30 GMT", + "Date": "Thu, 25 Mar 2021 02:59:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6c3013d-c726-43b6-8654-c37ae885405c", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "b6c3013d-c726-43b6-8654-c37ae885405c", - "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:b6c3013d-c726-43b6-8654-c37ae885405c" + "x-ms-correlation-request-id": "4dc97e20-13c2-4f97-915a-d814bf6e4245", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "4dc97e20-13c2-4f97-915a-d814bf6e4245", + "x-ms-routing-request-id": "WESTUS:20210325T025911Z:4dc97e20-13c2-4f97-915a-d814bf6e4245" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", @@ -133,7 +131,6 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b02852abdb9797459ffe52b9697415a8-27aa7a1d092f0248-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1e6fd11270f580cf588b22fcb1b74814", "x-ms-return-client-request-id": "true" @@ -142,42 +139,41 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4438", + "Content-Length": "4876", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:30 GMT", + "Date": "Thu, 25 Mar 2021 02:59:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ca1d1e5-e0b0-4411-9066-fa927b2e6000", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "5ca1d1e5-e0b0-4411-9066-fa927b2e6000", - "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:5ca1d1e5-e0b0-4411-9066-fa927b2e6000" + "x-ms-correlation-request-id": "64866ac5-af9f-45d4-a178-888e511c1c8a", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "64866ac5-af9f-45d4-a178-888e511c1c8a", + "x-ms-routing-request-id": "WESTUS:20210325T025911Z:64866ac5-af9f-45d4-a178-888e511c1c8a" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", - "name": "NetworkWatcherRG", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG", + "name": "AzSecPackAutoConfigRG", "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", + "location": "eastus", "properties": { "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9714", - "name": "testRg-9714", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", + "name": "NetworkWatcherRG", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", - "tags": {}, "properties": { "provisioningState": "Succeeded" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-4091", - "name": "testRg-4091", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-116311-rg", + "name": "bqauntump-116311-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -186,8 +182,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-3536", - "name": "testRg-3536", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-13946771-rg", + "name": "bqauntump-13946771-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -196,8 +192,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7291", - "name": "testRg-7291", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-13981971-rg", + "name": "bqauntump-13981971-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -206,8 +202,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5007", - "name": "testRg-5007", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14073771-rg", + "name": "bqauntump-14073771-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -216,8 +212,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-557", - "name": "testRg-557", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14180111-rg", + "name": "bqauntump-14180111-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -226,8 +222,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7976", - "name": "testRg-7976", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14231821-rg", + "name": "bqauntump-14231821-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -236,8 +232,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8051", - "name": "testRg-8051", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14357451-rg", + "name": "bqauntump-14357451-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -246,8 +242,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9131", - "name": "testRg-9131", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14401091-rg", + "name": "bqauntump-14401091-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -256,8 +252,8 @@ } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5858", - "name": "testRg-5858", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14437221-rg", + "name": "bqauntump-14437221-rg", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -285,6 +281,16 @@ "provisioningState": "Deleting" } }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14618451-rg", + "name": "bqauntump-14618451-rg", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", "name": "testRg-9522", From e39abf3914ca35dec34f1a2e499a9628c8823766 Mon Sep 17 00:00:00 2001 From: m-nash Date: Thu, 25 Mar 2021 13:49:15 -0700 Subject: [PATCH 17/35] fix test cases to use the diagnostics case fix a missing mocking constructor --- .../DiagnosticScopeValidatingInterceptor.cs | 5 + .../src/Properties/AssemblyInfo.cs | 7 ++ .../tests/ManagementRecordedTestBaseTests.cs | 3 +- .../TestClients/TestResourceContainer.cs | 35 +++++- .../TestClients/TestResourceOperations.cs | 108 ++++++++++++++++-- .../Scenario/ResourceGroupContainerTests.cs | 2 +- 6 files changed, 147 insertions(+), 13 deletions(-) create mode 100644 sdk/core/Azure.Core.TestFramework/src/Properties/AssemblyInfo.cs diff --git a/sdk/core/Azure.Core.TestFramework/src/DiagnosticScopeValidatingInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/DiagnosticScopeValidatingInterceptor.cs index 76452fa481595..52fc9a2850798 100644 --- a/sdk/core/Azure.Core.TestFramework/src/DiagnosticScopeValidatingInterceptor.cs +++ b/sdk/core/Azure.Core.TestFramework/src/DiagnosticScopeValidatingInterceptor.cs @@ -173,6 +173,11 @@ internal class DiagnosticScopeValidatingAsyncEnumerable : AsyncPageable private readonly bool _strict; private readonly bool _overridesGetAsyncEnumerator; + //for mocking + protected DiagnosticScopeValidatingAsyncEnumerable() + { + } + public DiagnosticScopeValidatingAsyncEnumerable(AsyncPageable pageable, string expectedName, string methodName, bool strict) { if (pageable == null) throw new ArgumentNullException(nameof(pageable), "Operations returning [Async]Pageable should never return null."); diff --git a/sdk/core/Azure.Core.TestFramework/src/Properties/AssemblyInfo.cs b/sdk/core/Azure.Core.TestFramework/src/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000000..1358f2eda532d --- /dev/null +++ b/sdk/core/Azure.Core.TestFramework/src/Properties/AssemblyInfo.cs @@ -0,0 +1,7 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Runtime.CompilerServices; +using Castle.Core.Internal; + +[assembly: InternalsVisibleTo(InternalsVisible.ToDynamicProxyGenAssembly2)] diff --git a/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs b/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs index 2c7d775d0d3fe..a52487e12bc7c 100644 --- a/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs +++ b/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs @@ -8,12 +8,13 @@ namespace Azure.Core.Tests.Management { + [Parallelizable] internal class ManagementRecordedTestBaseTests : ManagementRecordedTestBase { public ManagementRecordedTestBaseTests(bool isAsync) : base(isAsync) { - TestDiagnostics = false; + TestDiagnostics = true; } [Test] diff --git a/sdk/core/Azure.Core/tests/TestClients/TestResourceContainer.cs b/sdk/core/Azure.Core/tests/TestClients/TestResourceContainer.cs index 36cbae68a4a8c..486b920bc9d57 100644 --- a/sdk/core/Azure.Core/tests/TestClients/TestResourceContainer.cs +++ b/sdk/core/Azure.Core/tests/TestClients/TestResourceContainer.cs @@ -1,8 +1,10 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; using System.Threading; using System.Threading.Tasks; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; using static Azure.Core.PageResponseEnumerator; @@ -10,6 +12,9 @@ namespace Azure.Core.Tests { public class TestResourceContainer { + private DiagnosticScopeFactory _diagnostic = new DiagnosticScopeFactory("Azure.Clients", "Microsoft.Azure.Core.Cool.Tests", true); + + [ForwardsClientCalls] public virtual Pageable List(int pages = 1, CancellationToken cancellation = default) { FuncPageable results = GetSyncResults(pages); @@ -20,11 +25,24 @@ private FuncPageable GetSyncResults(int pages) { Page pageFunc(int? pageSizeHint) { - return Page.FromValues(new object[] { new object(), new object() }, null, null); + //simulates forwarding with todays wrapper. This should go away after codegen is finished + using var scope = _diagnostic.CreateScope("TestResourceContainer.GetSyncResults"); + scope.Start(); + + try + { + return Page.FromValues(new object[] { new object(), new object() }, null, null); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } return new FuncPageable((cToken, pageSize) => pageFunc(pageSize)); } + [ForwardsClientCalls] public virtual AsyncPageable ListAsync(int pages = 1, CancellationToken cancellation = default) { FuncAsyncPageable results = GetAsyncResults(pages); @@ -35,8 +53,19 @@ private FuncAsyncPageable GetAsyncResults(int pages) { async Task> pageFunc(int? pageSizeHint) { - await Task.Delay(10); - return Page.FromValues(new object[] { new object(), new object() }, null, null); + using var scope = _diagnostic.CreateScope("TestResourceContainer.GetAsyncResults"); + scope.Start(); + + try + { + await Task.Delay(10); + return Page.FromValues(new object[] { new object(), new object() }, null, null); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } return new FuncAsyncPageable((cToken, pageSize) => pageFunc(pageSize)); } diff --git a/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs b/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs index 959e6052cc620..a95ddab66fd1a 100644 --- a/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs +++ b/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs @@ -1,13 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; using System.Threading; using System.Threading.Tasks; +using Azure.Core.Pipeline; namespace Azure.Core.Tests { public class TestResourceOperations { + private DiagnosticScopeFactory _diagnostic = new DiagnosticScopeFactory("Azure.Clients", "Microsoft.Azure.Core.Cool.Tests", true); + public virtual TestResourceOperations GetAnotherOperations() { return new TestResourceOperations(); @@ -15,42 +19,130 @@ public virtual TestResourceOperations GetAnotherOperations() public virtual ArmOperationTest GetArmOperation(CancellationToken cancellationToken = default) { - return new ArmOperationTest(new TestResourceOperations()); + using var scope = _diagnostic.CreateScope("TestResourceOperations.GetArmOperation"); + scope.Start(); + + try + { + return new ArmOperationTest(new TestResourceOperations()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } public virtual Task> GetArmOperationAsync(CancellationToken cancellationToken = default) { - return Task.FromResult(new ArmOperationTest(new TestResourceOperations())); + using var scope = _diagnostic.CreateScope("TestResourceOperations.GetArmOperation"); + scope.Start(); + + try + { + return Task.FromResult(new ArmOperationTest(new TestResourceOperations())); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } public virtual ArmResponseTest GetArmResponse(CancellationToken cancellationToken = default) { - return new ArmResponseTest(new TestResourceOperations()); + using var scope = _diagnostic.CreateScope("TestResourceOperations.GetArmResponse"); + scope.Start(); + + try + { + return new ArmResponseTest(new TestResourceOperations()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } public virtual Task> GetArmResponseAsync(CancellationToken cancellationToken = default) { - return Task.FromResult(new ArmResponseTest(new TestResourceOperations())); + using var scope = _diagnostic.CreateScope("TestResourceOperations.GetArmResponse"); + scope.Start(); + + try + { + return Task.FromResult(new ArmResponseTest(new TestResourceOperations())); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } public virtual ArmOperationTest GetPhArmOperation(CancellationToken cancellationToken = default) { - return new PhArmOperationTest(new TestResourceOperations()); + using var scope = _diagnostic.CreateScope("TestResourceOperations.GetPhArmOperation"); + scope.Start(); + + try + { + return new PhArmOperationTest(new TestResourceOperations()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } public virtual Task> GetPhArmOperationAsync(CancellationToken cancellationToken = default) { - return Task.FromResult>(new PhArmOperationTest(new TestResourceOperations())); + using var scope = _diagnostic.CreateScope("TestResourceOperations.GetPhArmOperation"); + scope.Start(); + + try + { + return Task.FromResult>(new PhArmOperationTest(new TestResourceOperations())); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } public virtual ArmResponseTest GetPhArmResponse(CancellationToken cancellationToken = default) { - return new PhArmResponseTest(new TestResourceOperations()); + using var scope = _diagnostic.CreateScope("TestResourceOperations.GetPhArmResponse"); + scope.Start(); + + try + { + return new PhArmResponseTest(new TestResourceOperations()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } public virtual Task> GetPhArmResponseAsync(CancellationToken cancellationToken = default) { - return Task.FromResult>(new PhArmResponseTest(new TestResourceOperations())); + using var scope = _diagnostic.CreateScope("TestResourceOperations.GetPhArmResponse"); + scope.Start(); + + try + { + return Task.FromResult>(new PhArmResponseTest(new TestResourceOperations())); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } public virtual string Method() diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs index 73ef9518d43ef..d71f3b7ac21fb 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs @@ -11,7 +11,7 @@ namespace Azure.ResourceManager.Core.Tests public class ResourceGroupContainerTests : ResourceManagerTestBase { public ResourceGroupContainerTests(bool isAsync) - : base(isAsync, RecordedTestMode.Record) + : base(isAsync)//, RecordedTestMode.Record) { } From 9710dd80eff08678c2184030afcdd6b84d15d2a0 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Fri, 26 Mar 2021 15:21:18 -0700 Subject: [PATCH 18/35] WIP --- .../src/ManagementInterceptor.cs | 1 + .../tests/ManagementRecordedTestBaseTests.cs | 21 +++++++-- .../tests/TestClients/ArmOperationTest.cs | 43 +++++++++++++++++-- .../TestClients/TestResourceOperations.cs | 34 +++++++-------- .../src/OperationsBase.cs | 6 +-- .../tests/Scenario/ClientContextTests.cs | 15 ++++--- 6 files changed, 87 insertions(+), 33 deletions(-) diff --git a/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs index ae64a83e4302e..17a8926cf9dcf 100644 --- a/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs +++ b/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs @@ -48,6 +48,7 @@ public void Intercept(IInvocation invocation) invocation.ReturnValue = _testBase.InstrumentClient(type, result, new IInterceptor[] { new ManagementInterceptor(_testBase) }); } else if (type.BaseType.Name.StartsWith("AsyncPageable")) + //else if (type.BaseType.Name.StartsWith("AsyncPageable") || type.BaseType.Name.StartsWith("Value")) { invocation.ReturnValue = s_proxyGenerator.CreateClassProxyWithTarget(type, result, new IInterceptor[] { new ManagementInterceptor(_testBase) }); } diff --git a/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs b/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs index a52487e12bc7c..85f88edb46dc7 100644 --- a/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs +++ b/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs @@ -3,6 +3,8 @@ using System.Threading.Tasks; using Azure.Core.TestFramework; +using Azure.ResourceManager.Core; +using Azure.ResourceManager.Resources.Models; using Azure.ResourceManager.TestFramework; using NUnit.Framework; @@ -48,7 +50,7 @@ public async Task ValidateInstrumentArmOperation() var operation = (await sub.GetArmOperationAsync()).Value; var result = operation.Method(); - Assert.AreEqual("TestResourceOperationsProxy", operation.GetType().Name); + Assert.AreEqual("TestResourceProxy", operation.GetType().Name); Assert.AreEqual("success", result); } @@ -60,7 +62,7 @@ public async Task ValidateInstrumentArmResponse() var response = (await sub.GetArmOperationAsync()).Value; var result = response.Method(); - Assert.AreEqual("TestResourceOperationsProxy", response.GetType().Name); + Assert.AreEqual("TestResourceProxy", response.GetType().Name); Assert.AreEqual("success", result); } @@ -72,7 +74,7 @@ public async Task ValidateInstrumentPhArmOperation() var operation = (await sub.GetPhArmOperationAsync()).Value; var result = operation.Method(); - Assert.AreEqual("TestResourceOperationsProxy", operation.GetType().Name); + Assert.AreEqual("TestResourceProxy", operation.GetType().Name); Assert.AreEqual("success", result); } @@ -84,7 +86,7 @@ public async Task ValidateInstrumentPhArmResponse() var response = (await sub.GetPhArmOperationAsync()).Value; var result = response.Method(); - Assert.AreEqual("TestResourceOperationsProxy", response.GetType().Name); + Assert.AreEqual("TestResourceProxy", response.GetType().Name); Assert.AreEqual("success", result); } @@ -121,5 +123,16 @@ public async Task ValidateInstrumentPhPageable() Assert.AreEqual("success", item.Method()); } } + + [Test] + public async Task ValidateWaitForCompletion() + { + ManagementTestClient client = InstrumentClient(new ManagementTestClient()); + TestResourceOperations rgOp = client.GetTestResourceOperations(); + var testResourceOp = await rgOp.GetArmOperationAsync().ConfigureAwait(false); + var testResource = (await testResourceOp.WaitForCompletionAsync().ConfigureAwait(false)).Value; + Assert.AreEqual("TestResourceProxy", testResource.GetType().Name); + Assert.AreEqual("success", testResource.Method()); + } } } diff --git a/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs b/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs index 438462984c8d5..0c532462b91f1 100644 --- a/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs +++ b/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs @@ -1,19 +1,56 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure.ResourceManager.Core; + namespace Azure.Core.Tests { - public class ArmOperationTest + public class ArmOperationTest : ArmOperation { + private T _value; protected ArmOperationTest() { } public ArmOperationTest(T value) { - Value = value; + _value = value; + } + + public override string Id => "testId"; + + public override T Value => _value; + + public override bool HasCompleted => true; + + public override bool HasValue => true; + + public override Response GetRawResponse() + { + throw new NotImplementedException(); } - public virtual T Value { get; private set; } + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) + { + return new ValueTask>(Response.FromValue(_value, null)); + } + + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken) + { + return new ValueTask>(Response.FromValue(_value, null)); + } + + public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) + { + throw new NotImplementedException(); + } + + public override Response UpdateStatus(CancellationToken cancellationToken = default) + { + throw new NotImplementedException(); + } } } diff --git a/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs b/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs index a95ddab66fd1a..e10f29d353f68 100644 --- a/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs +++ b/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs @@ -14,17 +14,17 @@ public class TestResourceOperations public virtual TestResourceOperations GetAnotherOperations() { - return new TestResourceOperations(); + return new TestResource(); } - public virtual ArmOperationTest GetArmOperation(CancellationToken cancellationToken = default) + public virtual ArmOperationTest GetArmOperation(CancellationToken cancellationToken = default) { using var scope = _diagnostic.CreateScope("TestResourceOperations.GetArmOperation"); scope.Start(); try { - return new ArmOperationTest(new TestResourceOperations()); + return new ArmOperationTest(new TestResource()); } catch (Exception e) { @@ -33,14 +33,14 @@ public virtual ArmOperationTest GetArmOperation(Cancella } } - public virtual Task> GetArmOperationAsync(CancellationToken cancellationToken = default) + public virtual Task> GetArmOperationAsync(CancellationToken cancellationToken = default) { using var scope = _diagnostic.CreateScope("TestResourceOperations.GetArmOperation"); scope.Start(); try { - return Task.FromResult(new ArmOperationTest(new TestResourceOperations())); + return Task.FromResult(new ArmOperationTest(new TestResource())); } catch (Exception e) { @@ -49,14 +49,14 @@ public virtual Task> GetArmOperationAsy } } - public virtual ArmResponseTest GetArmResponse(CancellationToken cancellationToken = default) + public virtual ArmResponseTest GetArmResponse(CancellationToken cancellationToken = default) { using var scope = _diagnostic.CreateScope("TestResourceOperations.GetArmResponse"); scope.Start(); try { - return new ArmResponseTest(new TestResourceOperations()); + return new ArmResponseTest(new TestResource()); } catch (Exception e) { @@ -65,14 +65,14 @@ public virtual ArmResponseTest GetArmResponse(Cancellati } } - public virtual Task> GetArmResponseAsync(CancellationToken cancellationToken = default) + public virtual Task> GetArmResponseAsync(CancellationToken cancellationToken = default) { using var scope = _diagnostic.CreateScope("TestResourceOperations.GetArmResponse"); scope.Start(); try { - return Task.FromResult(new ArmResponseTest(new TestResourceOperations())); + return Task.FromResult(new ArmResponseTest(new TestResource())); } catch (Exception e) { @@ -81,14 +81,14 @@ public virtual Task> GetArmResponseAsync } } - public virtual ArmOperationTest GetPhArmOperation(CancellationToken cancellationToken = default) + public virtual ArmOperationTest GetPhArmOperation(CancellationToken cancellationToken = default) { using var scope = _diagnostic.CreateScope("TestResourceOperations.GetPhArmOperation"); scope.Start(); try { - return new PhArmOperationTest(new TestResourceOperations()); + return new PhArmOperationTest(new TestResource()); } catch (Exception e) { @@ -97,14 +97,14 @@ public virtual ArmOperationTest GetPhArmOperation(Cancel } } - public virtual Task> GetPhArmOperationAsync(CancellationToken cancellationToken = default) + public virtual Task> GetPhArmOperationAsync(CancellationToken cancellationToken = default) { using var scope = _diagnostic.CreateScope("TestResourceOperations.GetPhArmOperation"); scope.Start(); try { - return Task.FromResult>(new PhArmOperationTest(new TestResourceOperations())); + return Task.FromResult>(new PhArmOperationTest(new TestResource())); } catch (Exception e) { @@ -113,14 +113,14 @@ public virtual Task> GetPhArmOperationA } } - public virtual ArmResponseTest GetPhArmResponse(CancellationToken cancellationToken = default) + public virtual ArmResponseTest GetPhArmResponse(CancellationToken cancellationToken = default) { using var scope = _diagnostic.CreateScope("TestResourceOperations.GetPhArmResponse"); scope.Start(); try { - return new PhArmResponseTest(new TestResourceOperations()); + return new PhArmResponseTest(new TestResource()); } catch (Exception e) { @@ -129,14 +129,14 @@ public virtual ArmResponseTest GetPhArmResponse(Cancella } } - public virtual Task> GetPhArmResponseAsync(CancellationToken cancellationToken = default) + public virtual Task> GetPhArmResponseAsync(CancellationToken cancellationToken = default) { using var scope = _diagnostic.CreateScope("TestResourceOperations.GetPhArmResponse"); scope.Start(); try { - return Task.FromResult>(new PhArmResponseTest(new TestResourceOperations())); + return Task.FromResult>(new PhArmResponseTest(new TestResource())); } catch (Exception e) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs index f3f4478e92e5c..7239cb1d34284 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs @@ -45,17 +45,17 @@ internal OperationsBase(ClientContext clientContext, ResourceIdentifier id) /// /// Gets the Azure Resource Manager client options. /// - protected internal AzureResourceManagerClientOptions ClientOptions { get; private set; } + protected internal virtual AzureResourceManagerClientOptions ClientOptions { get; private set; } /// /// Gets the Azure credential. /// - protected internal TokenCredential Credential { get; private set; } + protected internal virtual TokenCredential Credential { get; private set; } /// /// Gets the base URI of the service. /// - protected internal Uri BaseUri { get; private set; } + protected internal virtual Uri BaseUri { get; private set; } /// /// Gets the valid Azure resource type for the current operations. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs index e1e05687a9d86..2099c258cfd94 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs @@ -29,15 +29,18 @@ public async Task TestClientContextPolicy() Console.WriteLine("-----Client 1-----"); await foreach (var sub in client1.GetSubscriptionContainer().ListAsync()) { - Console.WriteLine($"Found {sub.Data.DisplayName}"); + Console.WriteLine($"Check 1: Found {sub.Data.DisplayName}"); } - Assert.AreEqual(dummyPolicy1.numMsgGot, 2); + Assert.AreEqual(2, dummyPolicy1.numMsgGot); - //client1.DefaultSubscription.ClientOptions = //set accessor is inaccessible - client1.DefaultSubscription.ClientOptions.AddPolicy(dummyPolicy2, HttpPipelinePosition.PerCall); + options1.AddPolicy(dummyPolicy2, HttpPipelinePosition.PerCall); + await foreach (var sub in client1.GetSubscriptionContainer().ListAsync()) + { + Console.WriteLine($"Check 2: Found {sub.Data.DisplayName}"); + } - Assert.AreEqual(dummyPolicy1.numMsgGot, 2); - Console.WriteLine("\nPASSED\n"); + Assert.AreEqual(3, dummyPolicy1.numMsgGot); + //Assert.AreEqual(0, dummyPolicy2.numMsgGot); uncomment for ADO #5572 } private class dummyPolicy : HttpPipelineSynchronousPolicy From 49f1ee71b91f9abdaad61e368718c92e3c82a0db Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Mon, 29 Mar 2021 16:10:39 -0700 Subject: [PATCH 19/35] update framework for tests --- common/Perf/Azure.Test.Perf/Azure.Test.Perf.csproj | 4 ++++ .../src/ManagementInterceptor.cs | 13 ++++++++++++- .../tests/ManagementRecordedTestBaseTests.cs | 4 ++-- .../ValidateInstrumentArmOperation.json | 6 ++++++ .../ValidateInstrumentArmOperationAsync.json | 6 ++++++ .../ValidateWaitForCompletion.json | 6 ++++++ .../ValidateWaitForCompletionAsync.json | 6 ++++++ .../tests/TestClients/ArmOperationTest.cs | 7 ++++--- .../tests/TestClients/PhArmOperationTest.cs | 1 + .../Azure.ResourceManager.Core/src/ArmOperation.cs | 8 +++++--- .../src/AzureResourceManagerClient.cs | 2 +- 11 files changed, 53 insertions(+), 10 deletions(-) create mode 100644 sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateInstrumentArmOperation.json create mode 100644 sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateInstrumentArmOperationAsync.json create mode 100644 sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateWaitForCompletion.json create mode 100644 sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateWaitForCompletionAsync.json diff --git a/common/Perf/Azure.Test.Perf/Azure.Test.Perf.csproj b/common/Perf/Azure.Test.Perf/Azure.Test.Perf.csproj index 0e5aafee20b2a..c1da4c0922f39 100644 --- a/common/Perf/Azure.Test.Perf/Azure.Test.Perf.csproj +++ b/common/Perf/Azure.Test.Perf/Azure.Test.Perf.csproj @@ -17,4 +17,8 @@ + + + + diff --git a/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs index 17a8926cf9dcf..10dfc27e1137d 100644 --- a/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs +++ b/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs @@ -29,7 +29,6 @@ public void Intercept(IInvocation invocation) } var type = result.GetType(); - if (type.Name.StartsWith("Task")) { var taskResultType = type.GetGenericArguments()[0]; @@ -43,6 +42,18 @@ public void Intercept(IInvocation invocation) invocation.ReturnValue = genericMethod.Invoke(null, new object[] { instrumentedResult }); } } + else if (type.Name.StartsWith("ValueTask")) + { + var taskResultType = type.GetGenericArguments()[0]; + if (taskResultType.Name.StartsWith("Response") || taskResultType.Name.StartsWith("ArmResponse")) + { + var taskResult = result.GetType().GetProperty("Result").GetValue(result); + var instrumentedResult = _testBase.InstrumentClient(taskResultType, taskResult, new IInterceptor[] { new ManagementInterceptor(_testBase) }); + var genericValueTask = typeof(ValueTask<>).MakeGenericType(taskResultType); + var vtCtor = genericValueTask.GetConstructor(new Type[] { taskResultType }); + invocation.ReturnValue = vtCtor.Invoke(new object[] { instrumentedResult }); + } + } else if (invocation.Method.Name.EndsWith("Value") && type.BaseType.Name.EndsWith("Operations")) { invocation.ReturnValue = _testBase.InstrumentClient(type, result, new IInterceptor[] { new ManagementInterceptor(_testBase) }); diff --git a/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs b/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs index 85f88edb46dc7..13ee468876ae9 100644 --- a/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs +++ b/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs @@ -129,8 +129,8 @@ public async Task ValidateWaitForCompletion() { ManagementTestClient client = InstrumentClient(new ManagementTestClient()); TestResourceOperations rgOp = client.GetTestResourceOperations(); - var testResourceOp = await rgOp.GetArmOperationAsync().ConfigureAwait(false); - var testResource = (await testResourceOp.WaitForCompletionAsync().ConfigureAwait(false)).Value; + var testResourceOp = await rgOp.GetArmOperationAsync(); + TestResource testResource = await testResourceOp.WaitForCompletionAsync(); Assert.AreEqual("TestResourceProxy", testResource.GetType().Name); Assert.AreEqual("success", testResource.Method()); } diff --git a/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateInstrumentArmOperation.json b/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateInstrumentArmOperation.json new file mode 100644 index 0000000000000..8e2a1648bd016 --- /dev/null +++ b/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateInstrumentArmOperation.json @@ -0,0 +1,6 @@ +{ + "Entries": [], + "Variables": { + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateInstrumentArmOperationAsync.json b/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateInstrumentArmOperationAsync.json new file mode 100644 index 0000000000000..8e2a1648bd016 --- /dev/null +++ b/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateInstrumentArmOperationAsync.json @@ -0,0 +1,6 @@ +{ + "Entries": [], + "Variables": { + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateWaitForCompletion.json b/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateWaitForCompletion.json new file mode 100644 index 0000000000000..8e2a1648bd016 --- /dev/null +++ b/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateWaitForCompletion.json @@ -0,0 +1,6 @@ +{ + "Entries": [], + "Variables": { + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateWaitForCompletionAsync.json b/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateWaitForCompletionAsync.json new file mode 100644 index 0000000000000..8e2a1648bd016 --- /dev/null +++ b/sdk/core/Azure.Core/tests/SessionRecords/ManagementRecordedTestBaseTests/ValidateWaitForCompletionAsync.json @@ -0,0 +1,6 @@ +{ + "Entries": [], + "Variables": { + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs b/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs index 0c532462b91f1..95ef4c777407d 100644 --- a/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs +++ b/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs @@ -9,6 +9,7 @@ namespace Azure.Core.Tests { public class ArmOperationTest : ArmOperation + where T : class { private T _value; protected ArmOperationTest() @@ -30,7 +31,7 @@ public ArmOperationTest(T value) public override Response GetRawResponse() { - throw new NotImplementedException(); + return Response.FromValue(_value, null) as Response; } public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) @@ -45,12 +46,12 @@ public override ValueTask> WaitForCompletionAsync(TimeSpan pollingIn public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) { - throw new NotImplementedException(); + return new ValueTask(Response.FromValue(_value, null) as Response); } public override Response UpdateStatus(CancellationToken cancellationToken = default) { - throw new NotImplementedException(); + return Response.FromValue(_value, null) as Response; } } } diff --git a/sdk/core/Azure.Core/tests/TestClients/PhArmOperationTest.cs b/sdk/core/Azure.Core/tests/TestClients/PhArmOperationTest.cs index 59e6c1d72a5d5..a87d98ce67a85 100644 --- a/sdk/core/Azure.Core/tests/TestClients/PhArmOperationTest.cs +++ b/sdk/core/Azure.Core/tests/TestClients/PhArmOperationTest.cs @@ -4,6 +4,7 @@ namespace Azure.Core.Tests { public class PhArmOperationTest : ArmOperationTest + where T : class { protected PhArmOperationTest() { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmOperation.cs index dcd49e489a6cd..be1a82edf4f6a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmOperation.cs @@ -13,6 +13,7 @@ namespace Azure.ResourceManager.Core /// /// 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. @@ -49,7 +50,7 @@ protected ArmOperation(TOperations syncValue) /// /// Details on long running operation object. /// - public ArmResponse WaitForCompletion(CancellationToken cancellationToken = default) + public Response WaitForCompletion(CancellationToken cancellationToken = default) { return WaitForCompletion(ArmOperationHelpers.DefaultPollingInterval.Seconds, cancellationToken); } @@ -63,7 +64,7 @@ public ArmResponse WaitForCompletion(CancellationToken cancellation /// /// Details on long running operation object. /// - public ArmResponse WaitForCompletion(int pollingInterval, CancellationToken cancellationToken = default) + public Response WaitForCompletion(int pollingInterval, CancellationToken cancellationToken = default) { var polling = TimeSpan.FromSeconds(pollingInterval); while (true) @@ -71,7 +72,8 @@ public ArmResponse WaitForCompletion(int pollingInterval, Cancellat UpdateStatus(cancellationToken); if (HasCompleted) { - return Response.FromValue(Value, GetRawResponse()) as ArmResponse; + 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/AzureResourceManagerClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs index e144bc552ad15..86993e4aed481 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs @@ -95,7 +95,7 @@ private AzureResourceManagerClient( DefaultSubscription = string.IsNullOrWhiteSpace(defaultSubscriptionId) ? GetDefaultSubscription() : GetSubscriptionOperations(defaultSubscriptionId).Get().Value; - _clientOptions.ApiVersions.SetProviderClient(credential, baseUri, DefaultSubscription.Id.Subscription); + ClientOptions.ApiVersions.SetProviderClient(credential, baseUri, DefaultSubscription.Id.Subscription); } /// From 30ae183cc420e8a1366e8de134312155295df0d6 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Mon, 29 Mar 2021 16:19:28 -0700 Subject: [PATCH 20/35] Update Azure.Test.Perf.csproj --- common/Perf/Azure.Test.Perf/Azure.Test.Perf.csproj | 4 ---- 1 file changed, 4 deletions(-) diff --git a/common/Perf/Azure.Test.Perf/Azure.Test.Perf.csproj b/common/Perf/Azure.Test.Perf/Azure.Test.Perf.csproj index c1da4c0922f39..0e5aafee20b2a 100644 --- a/common/Perf/Azure.Test.Perf/Azure.Test.Perf.csproj +++ b/common/Perf/Azure.Test.Perf/Azure.Test.Perf.csproj @@ -17,8 +17,4 @@ - - - - From 8bbe309d8c68c8cd07066d3807f1712b4d657aff Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Mon, 29 Mar 2021 16:52:04 -0700 Subject: [PATCH 21/35] merge --- .../src/AzureResourceManagerClient.cs | 2 +- .../Azure.ResourceManager.Core/src/ContainerBase.cs | 9 ++++----- .../src/ResourceOperationsBase.cs | 8 ++------ 3 files changed, 7 insertions(+), 12 deletions(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs index 294898dd9f15c..7793fd22399a1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs @@ -95,7 +95,7 @@ private AzureResourceManagerClient( DefaultSubscription = string.IsNullOrWhiteSpace(defaultSubscriptionId) ? GetDefaultSubscription() : GetSubscriptionOperations(defaultSubscriptionId).Get().Value; - ClientOptions.ApiVersions.SetProviderClient(credential, baseUri, DefaultSubscription.Id.Subscription); + ClientOptions.ApiVersions.SetProviderClient(credential, baseUri, DefaultSubscription.Id.SubscriptionId); } /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs index 6721a92147e05..f9314a70d25af 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs @@ -23,24 +23,23 @@ public abstract class ContainerBase : OperationsBase protected ContainerBase() { } - + /// /// Initializes a new instance of the class. /// /// /// The identifier of the resource that is the target of operations. - internal ContainerBase(ClientContext clientContext, ResourceIdentifier id) + internal ContainerBase(ClientContext clientContext, TIdentifier id) : base(clientContext, id) - protected ContainerBase(AzureResourceManagerClientOptions options, TIdentifier id, TokenCredential credential, Uri baseUri) { } - + /// /// Initializes a new instance of the class. /// /// The resource representing the parent resource. protected ContainerBase(ResourceOperationsBase parent) - : this(new ClientContext(parent.ClientOptions, parent.Credential, parent.BaseUri), parent.Id) + : this(new ClientContext(parent.ClientOptions, parent.Credential, parent.BaseUri), (TIdentifier) parent.Id) { Parent = parent; } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs index b71632ec6aa74..a2f9510de09d3 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs @@ -7,6 +7,7 @@ using System.Threading; using System.Threading.Tasks; using Azure.Core; +using Azure.ResourceManager.Core; using Azure.ResourceManager.Core.Extensions; namespace Azure.ResourceManager.Core @@ -30,12 +31,7 @@ protected ResourceOperationsBase() /// internal ResourceOperationsBase(ClientContext clientContext, ResourceIdentifier id) : base(clientContext, id) - } - - /// - /// Initializes a new instance of the class. - /// - { + { } } From 44feea8d7f38c54c0670e9b8a00958cc641785de Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Mon, 29 Mar 2021 17:07:21 -0700 Subject: [PATCH 22/35] revert list json files --- .../ResourceGroupContainerTests/List().json | 648 ++++++++-------- .../List()Async.json | 698 +++++++++--------- 2 files changed, 672 insertions(+), 674 deletions(-) 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 8e523b3a54789..365425040a917 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json @@ -1,328 +1,332 @@ { - "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.19042 )", - "x-ms-client-request-id": "32314624bfbe8662a7fea2c55ef4175d", - "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": "Thu, 25 Mar 2021 02:59:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1159d8f4-749c-431b-b202-61868be8ca0b", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "1159d8f4-749c-431b-b202-61868be8ca0b", - "x-ms-routing-request-id": "WESTUS:20210325T025905Z:1159d8f4-749c-431b-b202-61868be8ca0b" - }, - "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/testRg-6350?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "4d506cbd48c3a8c934b1e57276165c60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "230", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 02:59:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c5e17c6-1428-4b87-a773-a2b903f45c12", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "6c5e17c6-1428-4b87-a773-a2b903f45c12", - "x-ms-routing-request-id": "WESTUS:20210325T025907Z:6c5e17c6-1428-4b87-a773-a2b903f45c12" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", - "name": "testRg-6350", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6091?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "997a583a7a13a661eb9ff26126efcbab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "230", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 02:59:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6c7a253-568b-467e-803c-57d92c6aeb99", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "b6c7a253-568b-467e-803c-57d92c6aeb99", - "x-ms-routing-request-id": "WESTUS:20210325T025907Z:b6c7a253-568b-467e-803c-57d92c6aeb99" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", - "name": "testRg-6091", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-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.19042 )", - "x-ms-client-request-id": "db5e9666609168fe8a8a0e7c1330e845", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4165", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 02:59:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b4600a7-a5c4-4480-8b84-c2b61a4483a2", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "3b4600a7-a5c4-4480-8b84-c2b61a4483a2", - "x-ms-routing-request-id": "WESTUS:20210325T025907Z:3b4600a7-a5c4-4480-8b84-c2b61a4483a2" - }, - "ResponseBody": { - "value": [ - { - "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": "westus2", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-116311-rg", - "name": "bqauntump-116311-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-13946771-rg", - "name": "bqauntump-13946771-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-13981971-rg", - "name": "bqauntump-13981971-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14073771-rg", - "name": "bqauntump-14073771-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14180111-rg", - "name": "bqauntump-14180111-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + "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.19042 )", + "x-ms-client-request-id": "32314624bfbe8662a7fea2c55ef4175d", + "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, 10 Mar 2021 06:25:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0ecf0ca7-e60b-40ab-a957-e628559bfefd", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "0ecf0ca7-e60b-40ab-a957-e628559bfefd", + "x-ms-routing-request-id": "WESTUS2:20210310T062504Z:0ecf0ca7-e60b-40ab-a957-e628559bfefd" + }, + "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" + } } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14231821-rg", - "name": "bqauntump-14231821-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6350?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-b2b6e8e2eaace845813249360a910e74-07d30f4b16990549-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4d506cbd48c3a8c934b1e57276165c60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "62074c1f-e848-4b4c-a717-1158f11dbdda", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "62074c1f-e848-4b4c-a717-1158f11dbdda", + "x-ms-routing-request-id": "WESTUS2:20210310T062505Z:62074c1f-e848-4b4c-a717-1158f11dbdda" + }, + "ResponseBody": { + "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/bqauntump-14357451-rg", - "name": "bqauntump-14357451-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6091?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-49a3327804017b4c90519e478041799f-92a50af83b091047-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "997a583a7a13a661eb9ff26126efcbab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "37653f5a-92ed-468d-807a-b7bca0bf0b29", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "37653f5a-92ed-468d-807a-b7bca0bf0b29", + "x-ms-routing-request-id": "WESTUS2:20210310T062506Z:37653f5a-92ed-468d-807a-b7bca0bf0b29" + }, + "ResponseBody": { + "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/bqauntump-14401091-rg", - "name": "bqauntump-14401091-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-a28128415086dc429e2de05ff896de98-91079d230d1d6a4b-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "db5e9666609168fe8a8a0e7c1330e845", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "3978", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4c75bb25-9302-4b8a-9242-9c943b69b61c", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "4c75bb25-9302-4b8a-9242-9c943b69b61c", + "x-ms-routing-request-id": "WESTUS2:20210310T062506Z:4c75bb25-9302-4b8a-9242-9c943b69b61c" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", + "name": "NetworkWatcherRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9714", + "name": "testRg-9714", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-4091", + "name": "testRg-4091", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-3536", + "name": "testRg-3536", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7291", + "name": "testRg-7291", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5007", + "name": "testRg-5007", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-557", + "name": "testRg-557", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7976", + "name": "testRg-7976", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8051", + "name": "testRg-8051", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9131", + "name": "testRg-9131", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5858", + "name": "testRg-5858", + "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/AutoRestResources2", + "name": "AutoRestResources2", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", + "name": "Default-Storage-EastAsia", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastasia", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", + "name": "Default-Storage-EastUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", + "name": "Default-Storage-WestUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + } + ] } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14437221-rg", - "name": "bqauntump-14437221-rg", - "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/AutoRestResources2", - "name": "AutoRestResources2", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", - "name": "Default-Storage-EastAsia", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastasia", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", - "name": "Default-Storage-EastUS", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", - "name": "Default-Storage-WestUS", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus", - "properties": { - "provisioningState": "Succeeded" - } - } - ] - } + } + ], + "Variables": { + "RandomSeed": "1884863518", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } - ], - "Variables": { - "RandomSeed": "1884863518", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file +} 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 bb9b000b79832..41f430105eb63 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 @@ -1,358 +1,352 @@ { - "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.19042 )", - "x-ms-client-request-id": "fc4e15b5fbbb5705603d2b33fb5b2337", - "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": "Thu, 25 Mar 2021 02:59:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8dfe1ff-597e-4b90-9817-1774fe2acbb1", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "f8dfe1ff-597e-4b90-9817-1774fe2acbb1", - "x-ms-routing-request-id": "WESTUS:20210325T025909Z:f8dfe1ff-597e-4b90-9817-1774fe2acbb1" - }, - "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/testRg-9522?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "9c1867024544a4ce2fd808a6a8f416fa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "230", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 02:59:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79fa152a-7a5c-4e38-b020-170968b080aa", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "79fa152a-7a5c-4e38-b020-170968b080aa", - "x-ms-routing-request-id": "WESTUS:20210325T025910Z:79fa152a-7a5c-4e38-b020-170968b080aa" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", - "name": "testRg-9522", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-2283?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "f77522cdaf69f33f8f0ffba77bde90a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "230", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 02:59:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4dc97e20-13c2-4f97-915a-d814bf6e4245", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "4dc97e20-13c2-4f97-915a-d814bf6e4245", - "x-ms-routing-request-id": "WESTUS:20210325T025911Z:4dc97e20-13c2-4f97-915a-d814bf6e4245" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", - "name": "testRg-2283", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-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.19042 )", - "x-ms-client-request-id": "1e6fd11270f580cf588b22fcb1b74814", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4876", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 02:59:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64866ac5-af9f-45d4-a178-888e511c1c8a", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "64866ac5-af9f-45d4-a178-888e511c1c8a", - "x-ms-routing-request-id": "WESTUS:20210325T025911Z:64866ac5-af9f-45d4-a178-888e511c1c8a" - }, - "ResponseBody": { - "value": [ - { - "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": "westus2", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-116311-rg", - "name": "bqauntump-116311-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-13946771-rg", - "name": "bqauntump-13946771-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-13981971-rg", - "name": "bqauntump-13981971-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14073771-rg", - "name": "bqauntump-14073771-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14180111-rg", - "name": "bqauntump-14180111-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14231821-rg", - "name": "bqauntump-14231821-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + "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.19042 )", + "x-ms-client-request-id": "fc4e15b5fbbb5705603d2b33fb5b2337", + "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, 10 Mar 2021 06:25:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3f80fd14-dd45-4451-84ed-812c18b27e15", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "3f80fd14-dd45-4451-84ed-812c18b27e15", + "x-ms-routing-request-id": "WESTUS2:20210310T062529Z:3f80fd14-dd45-4451-84ed-812c18b27e15" + }, + "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" + } } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14357451-rg", - "name": "bqauntump-14357451-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-9522?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-805fdc079074e34a93a3733a6095241e-3b3894355803df41-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9c1867024544a4ce2fd808a6a8f416fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e1a483e9-8e20-47d3-804a-e1242604cd8d", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "e1a483e9-8e20-47d3-804a-e1242604cd8d", + "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:e1a483e9-8e20-47d3-804a-e1242604cd8d" + }, + "ResponseBody": { + "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/bqauntump-14401091-rg", - "name": "bqauntump-14401091-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-2283?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-70155e612b4cbb45a86b4e1bf9311095-b588d522b5823c47-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f77522cdaf69f33f8f0ffba77bde90a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b6c3013d-c726-43b6-8654-c37ae885405c", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "b6c3013d-c726-43b6-8654-c37ae885405c", + "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:b6c3013d-c726-43b6-8654-c37ae885405c" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", + "name": "testRg-2283", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14437221-rg", - "name": "bqauntump-14437221-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b02852abdb9797459ffe52b9697415a8-27aa7a1d092f0248-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1e6fd11270f580cf588b22fcb1b74814", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "4438", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5ca1d1e5-e0b0-4411-9066-fa927b2e6000", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "5ca1d1e5-e0b0-4411-9066-fa927b2e6000", + "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:5ca1d1e5-e0b0-4411-9066-fa927b2e6000" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", + "name": "NetworkWatcherRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9714", + "name": "testRg-9714", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-4091", + "name": "testRg-4091", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-3536", + "name": "testRg-3536", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7291", + "name": "testRg-7291", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5007", + "name": "testRg-5007", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-557", + "name": "testRg-557", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7976", + "name": "testRg-7976", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8051", + "name": "testRg-8051", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9131", + "name": "testRg-9131", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5858", + "name": "testRg-5858", + "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": "Deleting" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", + "name": "testRg-6091", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Deleting" + } + }, + { + "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/testRg-2283", + "name": "testRg-2283", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2", + "name": "AutoRestResources2", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", + "name": "Default-Storage-EastAsia", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastasia", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", + "name": "Default-Storage-EastUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", + "name": "Default-Storage-WestUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "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": "Deleting" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", - "name": "testRg-6091", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Deleting" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14618451-rg", - "name": "bqauntump-14618451-rg", - "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/testRg-2283", - "name": "testRg-2283", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2", - "name": "AutoRestResources2", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", - "name": "Default-Storage-EastAsia", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastasia", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", - "name": "Default-Storage-EastUS", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", - "name": "Default-Storage-WestUS", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus", - "properties": { - "provisioningState": "Succeeded" - } - } - ] - } + } + ], + "Variables": { + "RandomSeed": "1410275346", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } - ], - "Variables": { - "RandomSeed": "1410275346", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file +} From bd58a814fa411bd0703c87107c7dbdd3f90199a8 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Mon, 29 Mar 2021 18:40:47 -0700 Subject: [PATCH 23/35] revert --- .../Redesign/ManagementRecordedTestBase.cs | 2 +- .../HasValidVersion.json | 2 +- .../HasValidVersionAsync.json | 2 +- .../src/Adapters/ProxyResource.cs | 20 +- .../src/Adapters/TrackedResource.cs | 14 +- .../src/ArmBuilder.cs | 14 +- .../src/AzureResourceManagerClient.cs | 6 +- .../src/ContainerBase.cs | 25 +- .../src/GenericResourceData.cs | 8 +- .../src/GenericResourceOperations.cs | 30 +- .../src/ITaggableResource.cs | 6 +- .../src/OperationsBase.cs | 22 +- .../src/Placeholder/ResourceGroupData.cs | 2 +- .../src/Placeholder/SubscriptionData.cs | 6 +- .../src/ResourceContainerBase.cs | 22 +- .../src/ResourceGroupContainer.cs | 25 +- .../src/ResourceGroupOperations.cs | 38 +- .../src/ResourceListOperations.cs | 3 +- .../src/ResourceOperationsBase.cs | 23 +- .../src/Resources/LocationContainer.cs | 10 +- .../Resources/LocationResourceIdentifier.cs | 101 +++ .../src/Resources/Resource.cs | 16 +- .../ResourceGroupResourceIdentifier.cs | 96 +++ .../src/Resources/ResourceIdentifier.cs | 537 +++++++++----- .../Resources/ResourceIdentifierExtensions.cs | 160 ++++ .../src/Resources/ResourceIdentity.cs | 16 +- .../src/Resources/ResourceType.cs | 165 ++--- .../src/Resources/RootResourceIdentifier.cs | 28 + .../SubscriptionResourceIdentifier.cs | 125 ++++ .../src/Resources/TenantResourceIdentifier.cs | 86 +++ .../src/Resources/TrackedResource.cs | 4 +- .../src/SubscriptionContainer.cs | 6 +- .../src/SubscriptionOperations.cs | 4 +- .../src/TenantOperations.cs | 4 +- .../src/Utils/ListExtensions.cs | 29 + .../tests/Scenario/GenericResourceTests.cs | 6 +- .../Scenario/ResourceGroupOperationsTests.cs | 2 +- .../Scenario/SubscriptionOperationsTests.cs | 2 +- .../TestClientContextPolicy().json | 160 +++- .../TestClientContextPolicy()Async.json | 160 +++- .../ResourceGroupContainerTests/List().json | 648 ++++++++-------- .../List()Async.json | 698 +++++++++--------- .../GetSubscriptionOperation().json | 8 +- ...ResourceGroupOpsArgException(%te#st%).json | 13 +- ...ResourceGroupOpsArgException(%te$st%).json | 13 +- ...ResourceGroupOpsArgException(%te%st%).json | 14 +- ...ResourceGroupOpsArgException(%test %).json | 14 +- ...tResourceGroupOpsArgNullException(%%).json | 13 +- ...esourceGroupOpsArgNullException(null).json | 13 +- .../TestGetResourceGroupOpsLong(89).json | 13 +- .../TestGetResourceGroupOpsLong(90).json | 13 +- ...rceGroupOpsOutOfRangeArgException(91).json | 13 +- .../TestGetResourceGroupOpsValid(%t%).json | 13 +- .../TestGetResourceGroupOpsValid(%te%).json | 13 +- ...TestGetResourceGroupOpsValid(%te.st%).json | 13 +- .../tests/Unit/IdentityTests.cs | 46 +- .../tests/Unit/Resource/TestResource.cs | 6 +- .../tests/Unit/ResourceIdentifierTests.cs | 466 ++++++++++-- .../tests/Unit/ResourceListOperationsTest.cs | 10 +- .../tests/Unit/ResourceTests.cs | 14 +- .../Unit/TestAssets/Identity/InvalidType.json | 8 +- ...temAndUserAssignedValidMultIdentities.json | 16 +- .../Extensions/RoleAssignmentExtensions.cs | 2 +- .../Placeholder/RoleAssignmentData.cs | 6 +- .../authorization/RoleAssignmentContainer.cs | 19 +- .../authorization/RoleAssignmentOperations.cs | 23 +- .../billing/BillingAccountOperations.cs | 2 +- .../billing/Placeholder/BillingAccountData.cs | 2 +- .../compute/AvailabilitySetContainer.cs | 28 +- .../compute/AvailabilitySetOperations.cs | 28 +- .../Convenience/VirtualMachineModelBuilder.cs | 2 +- .../VirtualMachineModelBuilderBase.cs | 2 +- .../compute/Extensions/ArmClientExtensions.cs | 16 +- .../Extensions/SubscriptionExtensions.cs | 8 +- .../Placeholder/AvailabilitySetData.cs | 2 +- .../compute/Placeholder/VirtualMachineData.cs | 6 +- .../compute/VirtualMachineContainer.cs | 23 +- .../compute/VirtualMachineOperations.cs | 64 +- .../network/Extensions/ArmClientExtensions.cs | 50 +- .../Extensions/SubscriptionExtensions.cs | 16 +- .../network/NetworkInterfaceContainer.cs | 27 +- .../network/NetworkInterfaceOperations.cs | 44 +- .../network/NetworkSecurityGroupContainer.cs | 33 +- .../network/NetworkSecurityGroupOperations.cs | 44 +- .../Placeholder/NetworkInterfaceData.cs | 2 +- .../Placeholder/NetworkSecurityGroupData.cs | 2 +- .../Placeholder/PublicIPAddressData.cs | 2 +- .../network/Placeholder/SubnetData.cs | 2 +- .../network/Placeholder/VirtualNetworkData.cs | 2 +- .../network/PublicIpAddressContainer.cs | 27 +- .../network/PublicIpAddressOperations.cs | 42 +- .../Proto.Client/network/SubnetBuilder.cs | 2 +- .../Proto.Client/network/SubnetContainer.cs | 25 +- .../Proto.Client/network/SubnetOperations.cs | 18 +- .../network/VirtualNetworkContainer.cs | 27 +- .../network/VirtualNetworkOperations.cs | 42 +- .../Proto.Client/src/Program.cs | 6 +- .../Proto.Client/src/Scenarios/All.cs | 4 +- .../Scenarios/CheckResourceGroupOpsAsync.cs | 8 +- .../src/Scenarios/DefaultSubscription.cs | 11 +- .../GenericResourcesOperationsExample.cs | 7 +- .../src/Scenarios/ShutdownVmsByName.cs | 4 +- .../ShutdownVmsByNameAcrossResourceGroups.cs | 4 +- .../ShutdownVmsByNameAcrossSubscriptions.cs | 4 +- .../src/Scenarios/TenantResource.cs | 4 +- 105 files changed, 3156 insertions(+), 1601 deletions(-) create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationResourceIdentifier.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceGroupResourceIdentifier.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentifierExtensions.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/RootResourceIdentifier.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/SubscriptionResourceIdentifier.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TenantResourceIdentifier.cs create mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/src/Utils/ListExtensions.cs diff --git a/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs b/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs index b038062bd8b96..89d5fdf4052df 100644 --- a/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs +++ b/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs @@ -107,7 +107,7 @@ protected void StopSessionRecording() { throw new InvalidOperationException("The test didn't instrument any clients but had recordings. Please call InstrumentClient for the client being recorded."); } - + SessionRecording?.Dispose(true); GlobalClient = null; } diff --git a/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersion.json b/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersion.json index 66cfb8112d74e..6c1eb24537e7d 100644 --- a/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersion.json +++ b/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersion.json @@ -4,7 +4,7 @@ "RequestUri": "http://localhost/?api=V2", "RequestMethod": "GET", "RequestHeaders": { - "User-Agent": "azsdk-net-Core.Tests/1.0.0-alpha.20210310.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "User-Agent": "azsdk-net-Core.Tests/1.0.0-alpha.20210329.1 (.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "dc85f443de8d5700b37ac3b4cc6f8430", "x-ms-return-client-request-id": "true" }, diff --git a/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersionAsync.json b/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersionAsync.json index 1c0efc9e7b44c..da6c87d8ce606 100644 --- a/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersionAsync.json +++ b/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersionAsync.json @@ -4,7 +4,7 @@ "RequestUri": "http://localhost/?api=V2", "RequestMethod": "GET", "RequestHeaders": { - "User-Agent": "azsdk-net-Core.Tests/1.0.0-alpha.20210310.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "User-Agent": "azsdk-net-Core.Tests/1.0.0-alpha.20210329.1 (.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "310df70d817bc1bf9908dbde885585f0", "x-ms-return-client-request-id": "true" }, diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/ProxyResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/ProxyResource.cs index ac7ce5335c1b4..5b0925c4b9839 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/ProxyResource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/ProxyResource.cs @@ -7,22 +7,24 @@ namespace Azure.ResourceManager.Core /// A class representing a generic proxy resource in Azure /// /// The type of the underlying model this class wraps - public abstract class ProxyResource : Resource - where TModel : class + /// The type of the underlying modelresource Id + public abstract class ProxyResource : Resource + where TModel : class + where TIdentifier : TenantResourceIdentifier { /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// The identifier of the resource that is the target of operations. /// The model to copy from. - protected ProxyResource(ResourceIdentifier id, TModel data) + protected ProxyResource(TIdentifier id, TModel data) { Id = id; Model = data; } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// The identifier of the resource that is the target of operations. /// The model to copy from. @@ -34,7 +36,7 @@ protected ProxyResource(string id, TModel data) } else { - Id = id; + Id = ResourceIdentifier.Create(id) as TIdentifier; } Model = data; @@ -43,7 +45,7 @@ protected ProxyResource(string id, TModel data) /// /// Gets or sets the identifier for the resource. /// - public override ResourceIdentifier Id { get; protected set; } + public override TIdentifier Id { get; protected set; } /// /// Gets or sets the Model this resource is based off. @@ -51,10 +53,10 @@ protected ProxyResource(string id, TModel data) public virtual TModel Model { get; set; } /// - /// Converts from a into the TModel. + /// Converts from a into the TModel. /// /// The tracked resource convert from. - public static implicit operator TModel(ProxyResource other) + public static implicit operator TModel(ProxyResource other) { return other.Model; } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/TrackedResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/TrackedResource.cs index f6aed917167f9..4a3ae7ccf0b24 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/TrackedResource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Adapters/TrackedResource.cs @@ -8,17 +8,19 @@ namespace Azure.ResourceManager.Core /// /// A class representing a generic tracked resource in Azure. /// + /// The type of the underlying resource id /// The type of the underlying model this class wraps - public abstract class TrackedResource : TrackedResource + public abstract class TrackedResource : TrackedResource + where TIdentifier : TenantResourceIdentifier where TModel : class { /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// The identifier of the resource that is the target of operations. /// The location of the resource. /// The model to copy from. - protected TrackedResource(ResourceIdentifier id, LocationData location, TModel data) + protected TrackedResource(TIdentifier id, LocationData location, TModel data) { Id = id; Location = location; @@ -26,7 +28,7 @@ protected TrackedResource(ResourceIdentifier id, LocationData location, TModel d } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// The identifier of the resource that is the target of operations. /// The location of the resource. @@ -39,7 +41,7 @@ protected TrackedResource(string id, LocationData location, TModel data) } else { - Id = id; + Id = ResourceIdentifier.Create(id) as TIdentifier; } Location = location; @@ -55,7 +57,7 @@ protected TrackedResource(string id, LocationData location, TModel data) /// Converts from a into the TModel. /// /// The tracked resource convert from. - public static implicit operator TModel(TrackedResource other) + public static implicit operator TModel(TrackedResource other) { return other.Model; } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmBuilder.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmBuilder.cs index 6660dbe676845..f58fd70e715fc 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmBuilder.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmBuilder.cs @@ -10,18 +10,20 @@ namespace Azure.ResourceManager.Core /// /// A class representing a builder object used to create Azure resources. /// + /// The type of the Identifier class for a specific resource. /// The type of the operations class for a specific resource. /// The type of the class containing properties for the underlying resource. - public class ArmBuilder - where TResource : Resource - where TOperations : ResourceOperationsBase + public class ArmBuilder + where TIdentifier: TenantResourceIdentifier + where TResource : Resource + where TOperations : ResourceOperationsBase { /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// The container object to create the resource in. /// The resource to create. - public ArmBuilder(ResourceContainerBase container, TResource resource) + public ArmBuilder(ResourceContainerBase container, TResource resource) { Resource = resource; UnTypedContainer = container; @@ -40,7 +42,7 @@ public ArmBuilder(ResourceContainerBase container, TReso /// /// Gets the container object to create the resource in. /// - protected ResourceContainerBase UnTypedContainer { get; private set; } + protected ResourceContainerBase UnTypedContainer { get; private set; } /// /// Creates the resource object to send to the Azure API. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs index 86993e4aed481..7793fd22399a1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/AzureResourceManagerClient.cs @@ -95,7 +95,7 @@ private AzureResourceManagerClient( DefaultSubscription = string.IsNullOrWhiteSpace(defaultSubscriptionId) ? GetDefaultSubscription() : GetSubscriptionOperations(defaultSubscriptionId).Get().Value; - ClientOptions.ApiVersions.SetProviderClient(credential, baseUri, DefaultSubscription.Id.Subscription); + ClientOptions.ApiVersions.SetProviderClient(credential, baseUri, DefaultSubscription.Id.SubscriptionId); } /// @@ -150,9 +150,9 @@ public virtual ResourceGroupOperations GetResourceGroupOperations(string subscri /// /// The resource identifier of the resource group. /// Resource group operations. - public virtual ResourceGroupOperations GetResourceGroupOperations(ResourceIdentifier resourceGroupId) + public virtual ResourceGroupOperations GetResourceGroupOperations(ResourceGroupResourceIdentifier resourceGroupId) { - return GetSubscriptionOperations(resourceGroupId.Subscription).GetResourceGroupOperations(resourceGroupId.ResourceGroup); + return GetSubscriptionOperations(resourceGroupId.SubscriptionId).GetResourceGroupOperations(resourceGroupId.ResourceGroupName); } /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs index 113a39b03dce6..6a50c76dcd9ae 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs @@ -13,32 +13,33 @@ namespace Azure.ResourceManager.Core /// Base class representing collection of resources. /// /// The type of the class containing operations for the underlying resource. - public abstract class ContainerBase : OperationsBase - where TOperations : ResourceOperationsBase + /// The type of the resource identifier. + public abstract class ContainerBase : OperationsBase + where TOperations : ResourceOperationsBase where TIdentifier : ResourceIdentifier { /// - /// Initializes a new instance of the class for mocking. + /// Initializes a new instance of the class for mocking. /// protected ContainerBase() { } - + /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// /// The identifier of the resource that is the target of operations. - internal ContainerBase(ClientContext clientContext, ResourceIdentifier id) + internal ContainerBase(ClientContext clientContext, TIdentifier id) : base(clientContext, id) { } - + /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// The resource representing the parent resource. protected ContainerBase(ResourceOperationsBase parent) - : this(new ClientContext(parent.ClientOptions, parent.Credential, parent.BaseUri), parent.Id) + : this(new ClientContext(parent.ClientOptions, parent.Credential, parent.BaseUri), parent.Id as TIdentifier) { Parent = parent; } @@ -102,15 +103,15 @@ public virtual bool DoesExist(string resourceName) /// Get an instance of the operations this container holds. /// /// The name of the resource to scope the operations to. - /// An instance of . - protected virtual ResourceOperationsBase GetOperation(string resourceName) + /// An instance of . + protected virtual ResourceOperationsBase GetOperation(string resourceName) { return Activator.CreateInstance( typeof(TOperations).BaseType, System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance, null, new object[] { Parent, resourceName }, - CultureInfo.InvariantCulture) as ResourceOperationsBase; + CultureInfo.InvariantCulture) as ResourceOperationsBase; } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceData.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceData.cs index 84f62ecfee69e..aa1a3d892df3e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceData.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceData.cs @@ -9,7 +9,7 @@ namespace Azure.ResourceManager.Core /// /// A class representing the generic azure resource data model. /// - public class GenericResourceData : TrackedResource + public class GenericResourceData : TrackedResource { /// /// Initializes a new instance of the class. @@ -41,7 +41,7 @@ public GenericResourceData(ResourceManager.Resources.Models.GenericResource gene /// Initializes a new instance of the class. /// /// The identifier of the resource that is the target of operations. - public GenericResourceData(ResourceIdentifier id) + public GenericResourceData(TenantResourceIdentifier id) : base(id, LocationData.Default, null) { } @@ -51,13 +51,13 @@ public GenericResourceData(ResourceIdentifier id) /// /// The identifier of the resource that is the target of operations. /// The location of the resource. - public GenericResourceData(ResourceIdentifier id, LocationData location) + public GenericResourceData(TenantResourceIdentifier id, LocationData location) : base(id, location, null) { } /// - public override ResourceIdentifier Id { get; protected set; } + public override TenantResourceIdentifier Id { get; protected set; } /// /// Gets or sets who this resource is managed by. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs index f99ef82f538e2..185201af7588e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/GenericResourceOperations.cs @@ -13,14 +13,14 @@ namespace Azure.ResourceManager.Core /// /// A class representing the operations that can be performed over a specific ArmResource. /// - public class GenericResourceOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource + public class GenericResourceOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource { /// /// Initializes a new instance of the class. /// /// The resource operations to copy the options from. /// The identifier of the resource that is the target of operations. - internal GenericResourceOperations(ResourceOperationsBase operations, ResourceIdentifier id) + internal GenericResourceOperations(ResourceOperationsBase operations, TenantResourceIdentifier id) : base(operations, id) { } @@ -28,11 +28,23 @@ internal GenericResourceOperations(ResourceOperationsBase operations, ResourceId /// protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; - private ResourcesOperations Operations => new ResourcesManagementClient( - BaseUri, - Id.Subscription, - Credential, - ClientOptions.Convert()).Resources; + private ResourcesOperations Operations + { + get + { + string subscription; + if (!Id.TryGetSubscriptionId(out subscription)) + { + subscription = Guid.Empty.ToString(); + } + + return new ResourcesManagementClient( + BaseUri, + subscription, + Credential, + ClientOptions.Convert()).Resources; + } + } /// /// Delete the resource. @@ -242,7 +254,7 @@ await op.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), private string GetApiVersion(CancellationToken cancellationToken) { - string version = ClientOptions.ApiVersions.TryGetApiVersion(Id.Type, cancellationToken); + string version = ClientOptions.ApiVersions.TryGetApiVersion(Id.ResourceType, cancellationToken); if (version is null) { throw new InvalidOperationException($"An invalid resouce id was given {Id}"); @@ -251,7 +263,7 @@ private string GetApiVersion(CancellationToken cancellationToken) } private async Task GetApiVersionAsync(CancellationToken cancellationToken) { - string version = await ClientOptions.ApiVersions.TryGetApiVersionAsync(Id.Type, cancellationToken).ConfigureAwait(false); + string version = await ClientOptions.ApiVersions.TryGetApiVersionAsync(Id.ResourceType, cancellationToken).ConfigureAwait(false); if (version is null) { throw new InvalidOperationException($"An invalid resouce id was given {Id}"); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ITaggableResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ITaggableResource.cs index 812d8f072704f..c33b18ada7afb 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ITaggableResource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ITaggableResource.cs @@ -10,9 +10,11 @@ namespace Azure.ResourceManager.Core /// /// Interface for operations that allow manipulating resource tags. /// + /// The identifier type for this resource. /// The typed operations for a specific resource. - public interface ITaggableResource - where TOperations : ResourceOperationsBase + public interface ITaggableResource + where TOperations : ResourceOperationsBase + where TIdentifier : TenantResourceIdentifier { /// /// Add a tag to the resource. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs index 7239cb1d34284..6c072f65e887c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs @@ -66,11 +66,19 @@ internal OperationsBase(ClientContext clientContext, ResourceIdentifier id) /// /// Gets the resource client. /// - protected ResourcesManagementClient ResourcesClient => new ResourcesManagementClient( - BaseUri, - Id.Subscription, - Credential, - ClientOptions.Convert()); + protected ResourcesManagementClient ResourcesClient + { + get + { + string subscription; + if (!Id.TryGetSubscriptionId(out subscription)) + { + subscription = Guid.Empty.ToString(); + } + + return new ResourcesManagementClient(BaseUri, subscription, Credential, ClientOptions.Convert()); + } + } /// /// Validate the resource identifier against current operations. @@ -78,8 +86,8 @@ internal OperationsBase(ClientContext clientContext, ResourceIdentifier id) /// The resource identifier. protected virtual void Validate(ResourceIdentifier identifier) { - if (identifier?.Type != ValidResourceType) - throw new ArgumentException($"Invalid resource type {identifier?.Type} expected {ValidResourceType}"); + if (identifier?.ResourceType != ValidResourceType) + throw new ArgumentException($"Invalid resource type {identifier?.ResourceType} expected {ValidResourceType}"); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/ResourceGroupData.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/ResourceGroupData.cs index 175310efcb454..a653c6282620b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/ResourceGroupData.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/ResourceGroupData.cs @@ -10,7 +10,7 @@ namespace Azure.ResourceManager.Core /// /// A class representing the ResourceGroup data model. /// - public class ResourceGroupData : TrackedResource + public class ResourceGroupData : TrackedResource { /// /// Initializes a new instance of the class. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/SubscriptionData.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/SubscriptionData.cs index be3b12feeb188..922bff84bc54e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/SubscriptionData.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Placeholder/SubscriptionData.cs @@ -9,7 +9,7 @@ namespace Azure.ResourceManager.Core /// /// A class representing the subscription data model. /// - public class SubscriptionData : Resource + public class SubscriptionData : Resource { /// /// Initializes a new instance of the class. @@ -23,7 +23,7 @@ public SubscriptionData(ResourceManager.Resources.Models.Subscription subscripti State = subscription.State; SubscriptionPolicies = subscription.SubscriptionPolicies; AuthorizationSource = subscription.AuthorizationSource; - Id = subscription.Id; + Id = new SubscriptionResourceIdentifier(subscription.Id); ManagedByTenants = subscription.ManagedByTenants; Tags = subscription.Tags; } @@ -59,7 +59,7 @@ public SubscriptionData(ResourceManager.Resources.Models.Subscription subscripti public string AuthorizationSource { get; } /// - public override ResourceIdentifier Id { get; protected set; } + public override SubscriptionResourceIdentifier Id { get; protected set; } /// /// Gets an array containing the tenants managing the subscription. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs index ec896f0f26b48..62d0eefc945fa 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs @@ -10,24 +10,26 @@ namespace Azure.ResourceManager.Core /// /// A class representing collection of resources and their operations over their parent. /// + /// The type of the resource identifier. /// The type of the class containing operations for the underlying resource. /// The type of the class containing properties for the underlying resource. - public abstract class ResourceContainerBase : ContainerBase - where TOperations : ResourceOperationsBase - where TResource : Resource + public abstract class ResourceContainerBase : ContainerBase + where TOperations : ResourceOperationsBase + where TResource : Resource + where TIdentifier : TenantResourceIdentifier { private static readonly object _parentLock = new object(); private object _parentResource; /// - /// Initializes a new instance of the class for mocking. + /// Initializes a new instance of the class for mocking. /// protected ResourceContainerBase() { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// The resource representing the parent resource. protected ResourceContainerBase(ResourceOperationsBase parent) @@ -42,8 +44,8 @@ protected ResourceContainerBase(ResourceOperationsBase parent) /// Resource identifier is not a valid type for this container. protected override void Validate(ResourceIdentifier identifier) { - if (identifier.Type != ValidResourceType) - throw new InvalidOperationException($"{identifier.Type} is not a valid container for {Id.Type}"); + if (identifier.ResourceType != ValidResourceType) + throw new InvalidOperationException($"{identifier.ResourceType} is not a valid container for {Id.ResourceType}"); } /// @@ -112,11 +114,13 @@ public abstract Task> StartCreateOrUpdateAsync( /// Gets the location of the parent object. /// /// The type of the parents full resource object. + /// The type of the parents resource id. /// The type of the parents operations object. /// The associated with the parent object. - protected TParent GetParentResource() + protected TParent GetParentResource() where TParent : TParentOperations - where TParentOperations : ResourceOperationsBase + where TParentOperations : ResourceOperationsBase + where TParentId : ResourceIdentifier { if (_parentResource is null) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs index 4f4441eb1bdb5..5a88837c374bb 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupContainer.cs @@ -13,7 +13,7 @@ namespace Azure.ResourceManager.Core /// /// A class representing collection of ResourceGroupContainer and their operations over a ResourceGroup. /// - public class ResourceGroupContainer : ResourceContainerBase + public class ResourceGroupContainer : ResourceContainerBase { /// /// Initializes a new instance of the class for mocking. @@ -34,11 +34,20 @@ internal ResourceGroupContainer(SubscriptionOperations subscription) /// protected override ResourceType ValidResourceType => SubscriptionOperations.ResourceType; - private ResourceGroupsOperations Operations => new ResourcesManagementClient( - BaseUri, - Id.Subscription, - Credential, - ClientOptions.Convert()).ResourceGroups; + private ResourceGroupsOperations Operations + { + get + { + string subscriptionId; + if (Id is null || !Id.TryGetSubscriptionId(out subscriptionId)) + subscriptionId = Guid.NewGuid().ToString(); + return new ResourcesManagementClient( + BaseUri, + subscriptionId, + Credential, + ClientOptions.Convert()).ResourceGroups; + } + } /// /// Constructs an object used to create a resource group. @@ -48,7 +57,7 @@ internal ResourceGroupContainer(SubscriptionOperations subscription) /// Who the resource group is managed by. /// A builder with and . /// Location cannot be null. - public ArmBuilder Construct(LocationData location, IDictionary tags = default, string managedBy = default) + public ArmBuilder Construct(LocationData location, IDictionary tags = default, string managedBy = default) { if (location is null) throw new ArgumentNullException(nameof(location)); @@ -57,7 +66,7 @@ public ArmBuilder Construct(LocationData locat if (!(tags is null)) model.Tags.ReplaceWith(tags); model.ManagedBy = managedBy; - return new ArmBuilder(this, new ResourceGroupData(model)); + return new ArmBuilder(this, new ResourceGroupData(model)); } /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs index d5057ad8fa90b..bfad3556ff1e2 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceGroupOperations.cs @@ -15,13 +15,13 @@ namespace Azure.ResourceManager.Core /// /// A class representing the operations that can be performed over a specific ResourceGroup. /// - public class ResourceGroupOperations : ResourceOperationsBase, - ITaggableResource, IDeletableResource + public class ResourceGroupOperations : ResourceOperationsBase, + ITaggableResource, IDeletableResource { /// /// Gets the resource type definition for a ResourceType. /// - public static readonly ResourceType ResourceType = "Microsoft.Resources/resourceGroups"; + public static readonly ResourceType ResourceType = "Microsoft.Resources/subscriptions/resourceGroups"; /// /// Initializes a new instance of the class for mocking. @@ -36,7 +36,7 @@ protected ResourceGroupOperations() /// The client parameters to use in these operations. /// The name of the resource group to use. internal ResourceGroupOperations(SubscriptionOperations options, string rgName) - : base(options, $"{options.Id}/resourceGroups/{rgName}") + : base(options, new ResourceGroupResourceIdentifier(options.Id, rgName)) { if (rgName.Length > 90) throw new ArgumentOutOfRangeException(nameof(rgName), "ResourceGroupName cannot be longer than 90 characters."); @@ -52,7 +52,7 @@ internal ResourceGroupOperations(SubscriptionOperations options, string rgName) /// /// The client parameters to use in these operations. /// The identifier of the resource that is the target of operations. - protected ResourceGroupOperations(ResourceOperationsBase options, ResourceIdentifier id) + protected ResourceGroupOperations(ResourceOperationsBase options, ResourceGroupResourceIdentifier id) : base(options, id) { } @@ -62,7 +62,7 @@ protected ResourceGroupOperations(ResourceOperationsBase options, ResourceIdenti private ResourceGroupsOperations Operations => new ResourcesManagementClient( BaseUri, - Id.Subscription, + Id.SubscriptionId, Credential, ClientOptions.Convert()).ResourceGroups; @@ -316,21 +316,23 @@ await Operations.UpdateAsync(Id.Name, patch, cancellationToken).ConfigureAwait(f /// The model representing the object to create. />. /// The type of the class containing the container for the specific resource. /// The type of the operations class for a specific resource. + /// The type of the resource identifier. /// The type of the class containing properties for the underlying resource. /// Returns a response with the operation for this resource. /// Name cannot be null or a whitespace. /// Model cannot be null. - public virtual ArmResponse CreateResource(string name, TResource model) - where TResource : TrackedResource - where TOperations : ResourceOperationsBase - where TContainer : ResourceContainerBase + public virtual ArmResponse CreateResource(string name, TResource model) + where TResource : TrackedResource + where TOperations : ResourceOperationsBase + where TContainer : ResourceContainerBase + where TIdentifier : SubscriptionResourceIdentifier { if (string.IsNullOrWhiteSpace(name)) throw new ArgumentException($"{nameof(name)} provided cannot be null or a whitespace.", nameof(name)); if (model is null) throw new ArgumentNullException(nameof(model)); - var myResource = model as TrackedResource; + var myResource = model as TrackedResource; TContainer container = Activator.CreateInstance(typeof(TContainer), ClientOptions, myResource) as TContainer; return container.CreateOrUpdate(name, model); @@ -343,22 +345,24 @@ public virtual ArmResponse CreateResource The model representing the object to create. />. /// A token to allow the caller to cancel the call to the service. The default value is . /// The type of the class containing the container for the specific resource. - /// The type of the operations class for a specific resource. + /// The type of the operations class for a specific resource. + /// The type of the resource identifier. /// The type of the class containing properties for the underlying resource. /// A that on completion returns a response with the operation for this resource. /// Name cannot be null or a whitespace. /// Model cannot be null. - public virtual Task> CreateResourceAsync(string name, TResource model, CancellationToken cancellationToken = default) - where TResource : TrackedResource - where TOperations : ResourceOperationsBase - where TContainer : ResourceContainerBase + public virtual Task> CreateResourceAsync(string name, TResource model, CancellationToken cancellationToken = default) + where TResource : TrackedResource + where TOperations : ResourceOperationsBase + where TContainer : ResourceContainerBase + where TIdentifier : SubscriptionResourceIdentifier { if (string.IsNullOrWhiteSpace(name)) throw new ArgumentException($"{nameof(name)} provided cannot be null or a whitespace.", nameof(name)); if (model is null) throw new ArgumentNullException(nameof(model)); - var myResource = model as TrackedResource; + var myResource = model as TrackedResource; TContainer container = Activator.CreateInstance(typeof(TContainer), ClientOptions, myResource) as TContainer; diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceListOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceListOperations.cs index 469af5edd69b6..8217e11ec8c1b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceListOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceListOperations.cs @@ -107,7 +107,8 @@ public static AsyncPageable ListAtContextAsync( private static ResourcesManagementClient GetResourcesClient(ResourceOperationsBase resourceOperations) { - return new ResourcesManagementClient(resourceOperations.BaseUri, resourceOperations.Id.Subscription, resourceOperations.Credential); + var subscription = resourceOperations.Id as SubscriptionResourceIdentifier; + return new ResourcesManagementClient(resourceOperations.BaseUri, subscription?.SubscriptionId, resourceOperations.Credential); } private static AsyncPageable ListAtContextInternalAsync( diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs index c5d868e135df7..a2f9510de09d3 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceOperationsBase.cs @@ -7,6 +7,7 @@ using System.Threading; using System.Threading.Tasks; using Azure.Core; +using Azure.ResourceManager.Core; using Azure.ResourceManager.Core.Extensions; namespace Azure.ResourceManager.Core @@ -30,7 +31,7 @@ protected ResourceOperationsBase() /// internal ResourceOperationsBase(ClientContext clientContext, ResourceIdentifier id) : base(clientContext, id) - { + { } } @@ -38,20 +39,22 @@ internal ResourceOperationsBase(ClientContext clientContext, ResourceIdentifier /// Base class for all operations over a resource /// /// The type implementing operations over the resource. + /// The The identifier type for the resource. [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1402:File may only contain a single type", Justification = "Types differ by type argument only")] - public abstract class ResourceOperationsBase : ResourceOperationsBase - where TOperations : ResourceOperationsBase + public abstract class ResourceOperationsBase : ResourceOperationsBase + where TOperations : ResourceOperationsBase where TIdentifier : ResourceIdentifier { /// - /// Initializes a new instance of the class for /mocking. + /// Initializes a new instance of the class for mocking. /// protected ResourceOperationsBase() { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// + /// Initializes a new instance of the class. /// The resource representing the parent resource. /// The identifier of the resource that is the target of operations. protected ResourceOperationsBase(OperationsBase parentOperations, ResourceIdentifier id) @@ -60,7 +63,7 @@ protected ResourceOperationsBase(OperationsBase parentOperations, ResourceIdenti } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// /// @@ -69,6 +72,14 @@ internal ResourceOperationsBase(ClientContext clientContext, string id) { } + /// + /// The typed resource identifier for the underlying resource + /// + public virtual new TIdentifier Id + { + get { return base.Id as TIdentifier; } + } + /// /// Gets details for this resource from the service. /// diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationContainer.cs index 97dbfc2361f17..f31befa8e8812 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationContainer.cs @@ -20,6 +20,7 @@ public class LocationContainer : OperationsBase internal LocationContainer(SubscriptionOperations subscriptionOperations) : base(new ClientContext(subscriptionOperations.ClientOptions, subscriptionOperations.Credential, subscriptionOperations.BaseUri), subscriptionOperations.Id) { + Id = subscriptionOperations.Id; } /// @@ -30,6 +31,11 @@ internal LocationContainer(SubscriptionOperations subscriptionOperations) /// private SubscriptionsOperations SubscriptionsClient => ResourcesClient.Subscriptions; + /// + /// The resource id + /// + public new SubscriptionResourceIdentifier Id { get; } + /// /// Gets the Azure subscriptions. /// @@ -45,7 +51,7 @@ public SubscriptionContainer GetSubscriptionContainer() /// A collection of location data that may take multiple service requests to iterate over. public Pageable List() { - return new PhWrappingPageable(SubscriptionsClient.ListLocations(Id.Subscription), s => s.DisplayName); + return new PhWrappingPageable(SubscriptionsClient.ListLocations(Id.SubscriptionId), s => s.DisplayName); } /// @@ -55,7 +61,7 @@ public Pageable List() /// An async collection of location data that may take multiple service requests to iterate over. public AsyncPageable ListAsync(CancellationToken token = default(CancellationToken)) { - return new PhWrappingAsyncPageable(SubscriptionsClient.ListLocationsAsync(Id.Subscription, token), s => s.DisplayName); + return new PhWrappingAsyncPageable(SubscriptionsClient.ListLocationsAsync(Id.SubscriptionId, token), s => s.DisplayName); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationResourceIdentifier.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationResourceIdentifier.cs new file mode 100644 index 0000000000000..900b34fe01639 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/LocationResourceIdentifier.cs @@ -0,0 +1,101 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; + +namespace Azure.ResourceManager.Core +{ + /// + /// The identifier for a resource that is contained in a location. + /// + public sealed class LocationResourceIdentifier : SubscriptionResourceIdentifier + { + /// + /// Initializes a new instance of the class. + /// + /// The identifier of the subscription that is the parent of this resource. + /// The name of the location. + internal LocationResourceIdentifier(SubscriptionResourceIdentifier parent, LocationData location) + : base(parent, ResourceIdentifier.LocationsKey, location.Name) + { + Location = location; + } + + /// + /// Initializes a new instance of the class. + /// + /// A string representation of a location resource identifier. + public LocationResourceIdentifier(string resourceId) + { + var id = ResourceIdentifier.Create(resourceId) as LocationResourceIdentifier; + if (id is null) + throw new ArgumentException("Not a valid location level resource", nameof(resourceId)); + Name = id.Name; + ResourceType = id.ResourceType; + Parent = id.Parent; + IsChild = id.IsChild; + Location = id.Location; + SubscriptionId = id.SubscriptionId; + } + + /// + /// Initializes a new instance of the class. + /// Used to initialize resources in the same namespace as the parent resource. + /// + /// + /// + /// + internal LocationResourceIdentifier(LocationResourceIdentifier parent, string resourceType, string resourceName) + : base(parent, resourceType, resourceName) + { + Location = parent.Location; + } + + /// + /// Initializes a new instance of the class. + /// Used to initialize resource in a different namespace than the parent resource. + /// + /// The identifier of the parent resource. + /// The namespace of the resource, for example 'Microsoft.Compute'. + /// The simple type name of the resource, for example 'virtualMachines'. + /// The name of this resource. + internal LocationResourceIdentifier(LocationResourceIdentifier target, string providerNamespace, string resourceType, string resourceName) + : base(target, providerNamespace, resourceType, resourceName) + { + Location = target.Location; + } + + /// + /// The location of the resource. + /// + public LocationData Location { get; } + + /// + public override bool TryGetLocation(out LocationData location) + { + location = Location; + return true; + } + + /// + public override bool TryGetSubscriptionId(out string subscriptionId) + { + subscriptionId = SubscriptionId; + return true; + } + + /// + /// Convert resourceId string to LocationResourceIdentifier. + /// + /// A string representation of a resource id. + public static implicit operator LocationResourceIdentifier(string other) + { + if (other is null) + return null; + LocationResourceIdentifier id = ResourceIdentifier.Create(other) as LocationResourceIdentifier; + if (id is null) + throw new ArgumentException("Not a valid location level resource", nameof(other)); + return id; + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/Resource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/Resource.cs index 961546c1cbef8..81faffdf95330 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/Resource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/Resource.cs @@ -1,4 +1,4 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. +// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; @@ -9,13 +9,13 @@ namespace Azure.ResourceManager.Core /// A class representing the base resource used by all azure resources. /// [ReferenceType] - public abstract class Resource : IEquatable, IEquatable, IComparable, - IComparable + public abstract class Resource : IEquatable>, IEquatable, + IComparable>, IComparable where TIdentifier : TenantResourceIdentifier { /// /// Gets or sets the resource identifier. /// - public virtual ResourceIdentifier Id { get; protected set; } + public virtual TIdentifier Id { get; protected set; } /// /// Gets the name. @@ -25,10 +25,10 @@ public abstract class Resource : IEquatable, IEquatable, IComp /// /// Gets the resource type. /// - public virtual ResourceType Type => Id?.Type; + public virtual ResourceType Type => Id?.ResourceType; /// - public virtual int CompareTo(Resource other) + public virtual int CompareTo(Resource other) { if (other == null) return 1; @@ -48,11 +48,11 @@ public virtual int CompareTo(Resource other) /// public virtual int CompareTo(string other) { - return string.Compare(Id?.Id, other, StringComparison.InvariantCultureIgnoreCase); + return string.Compare(Id, other, StringComparison.InvariantCultureIgnoreCase); } /// - public virtual bool Equals(Resource other) + public virtual bool Equals(Resource other) { if (Id == null) return false; diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceGroupResourceIdentifier.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceGroupResourceIdentifier.cs new file mode 100644 index 0000000000000..6f223de9029af --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceGroupResourceIdentifier.cs @@ -0,0 +1,96 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; + +namespace Azure.ResourceManager.Core +{ + /// + /// The identifier for a resource contained in a resource group. + /// + public sealed class ResourceGroupResourceIdentifier : SubscriptionResourceIdentifier + { + /// + /// Initializes a new instance of the class for a resource group. + /// + /// The of the parent of this child resource. + /// The name of the resourceGroup. + internal ResourceGroupResourceIdentifier(SubscriptionResourceIdentifier parent, string resourceGroupName) + : base(parent, ResourceIdentifier.ResourceGroupsKey, resourceGroupName) + { + if (string.IsNullOrWhiteSpace(resourceGroupName)) + throw new ArgumentOutOfRangeException(nameof(resourceGroupName), "Invalid resource group name."); + ResourceGroupName = resourceGroupName; + } + + /// + /// Initializes a new instance of the class + /// for a resource in a different namespace than its parent. + /// + /// he of the target of this extension resource. + /// The provider namespace of the extension. + /// The full ARM resource type of the extension. + /// The name of the extension resource. + internal ResourceGroupResourceIdentifier(ResourceGroupResourceIdentifier target, string providerNamespace, string resourceType, string resourceName) + : base(target, providerNamespace, resourceType, resourceName) + { + ResourceGroupName = target.ResourceGroupName; + } + + /// + /// Initializes a new instance of the class + /// for a resource in the same namespace as its parent. + /// + /// he of the target of this extension resource. + /// The full ARM resource type of the extension. + /// The name of the extension resource. + internal ResourceGroupResourceIdentifier(ResourceGroupResourceIdentifier target, string childResourceType, string childResourceName) + : base(target, childResourceType, childResourceName) + { + ResourceGroupName = target.ResourceGroupName; + } + + /// + /// Initializes a new instance of the class + /// + /// The string representation of a resource id. + public ResourceGroupResourceIdentifier(string resourceId) + { + var id = ResourceIdentifier.Create(resourceId) as ResourceGroupResourceIdentifier; + if (id is null) + throw new ArgumentException("Not a valid tenant level resource", nameof(resourceId)); + Name = id.Name; + ResourceType = id.ResourceType; + Parent = id.Parent; + IsChild = id.IsChild; + ResourceGroupName = id.ResourceGroupName; + SubscriptionId = id.SubscriptionId; + } + + /// + /// The name of the resource group for this resource. + /// + public string ResourceGroupName { get; } + + /// + public override bool TryGetResourceGroupName(out string resourceGroupName) + { + resourceGroupName = ResourceGroupName; + return true; + } + + /// + /// Convert a string into a resource group resource identifier. + /// + /// The string representation of a resource Id. + public static implicit operator ResourceGroupResourceIdentifier(string other) + { + if (other is null) + return null; + ResourceGroupResourceIdentifier id = ResourceIdentifier.Create(other) as ResourceGroupResourceIdentifier; + if (id is null) + throw new ArgumentException("Not a valid resource group level resource", nameof(other)); + return id; + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentifier.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentifier.cs index 71caa38ee72f9..4c19a5cf59b0a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentifier.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentifier.cs @@ -3,295 +3,448 @@ using System; using System.Collections.Generic; -using System.Diagnostics; using System.Linq; +using System.Text; namespace Azure.ResourceManager.Core { /// - /// Canonical Representation of a Resource Identity. + /// An Azure Resource Manager resource identifier. /// - public sealed class ResourceIdentifier : - IEquatable, - IEquatable, - IComparable, - IComparable + public abstract class ResourceIdentifier : IEquatable, IComparable { - private readonly IDictionary _partsDictionary = - new Dictionary(StringComparer.OrdinalIgnoreCase); + internal const string ProvidersKey = "providers", SubscriptionsKey = "subscriptions", + ResourceGroupsKey = "resourceGroups", LocationsKey = "locations"; + + internal const string ResourceGroupsLowerKey = "resourcegroups"; + + internal const string BuiltInResourceNamespace = "Microsoft.Resources"; + + internal static ResourceType SubscriptionType => new ResourceType(BuiltInResourceNamespace, SubscriptionsKey); + internal static ResourceType LocationsType => + new ResourceType(BuiltInResourceNamespace, $"{SubscriptionsKey}/{LocationsKey}"); + internal static ResourceType ResourceGroupsType => + new ResourceType(BuiltInResourceNamespace, $"{SubscriptionsKey}/{ResourceGroupsKey}"); /// - /// Initializes a new instance of the class. + /// The root of the resource hierarchy + /// + public static ResourceIdentifier RootResourceIdentifier => new RootResourceIdentifier(); + + /// + /// For internal use only. /// - /// The identifier of the resource that is the target of operations. - public ResourceIdentifier(string id) + internal ResourceIdentifier() { - Id = id; - Parse(id); + _stringValue = null; } /// - /// Gets the Resource ID. + /// For internal use only. /// - public string Id { get; private set; } + /// The type of the resource. + /// The name of the resource. + internal ResourceIdentifier(ResourceType resourceType, string name) + { + ResourceType = resourceType; + Name = name; + _stringValue = null; + } /// - /// Gets the Resource Name. + /// Initializes a new instance of the class. /// - public string Name { get; private set; } + /// The string representation of a resource Id. + /// The resource identifier. + public static ResourceIdentifier Create(string resourceId) + { + if (resourceId is null) + throw new ArgumentNullException(nameof(resourceId)); + if (!resourceId.StartsWith("/", StringComparison.InvariantCultureIgnoreCase)) + throw new ArgumentOutOfRangeException(nameof(resourceId), "Invalid resource id."); + var parts = resourceId.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).ToList(); + if (parts.Count < 2) + throw new ArgumentOutOfRangeException(nameof(resourceId), "Invalid resource id."); + switch (parts[0].ToLowerInvariant()) + { + case SubscriptionsKey: + { + ResourceIdentifier id = CreateBaseSubscriptionIdentifier(parts[1], parts.Trim(2)); + id.StringValue = resourceId; + return id; + } + case ProvidersKey: + { + if (parts.Count > 3) + { + ResourceIdentifier id = CreateTenantIdentifier(new TenantResourceIdentifier(new ResourceType(parts[1], parts[2]), parts[3]), parts.Trim(4)); + id.StringValue = resourceId; + return id; + } + throw new ArgumentOutOfRangeException(nameof(resourceId), "Invalid resource id."); + } + default: + throw new ArgumentOutOfRangeException(nameof(resourceId), "Invalid resource id."); + } + } /// - /// Gets the Resource Type. + /// Create a new instance of the class for resource identifiers + /// that are contained in a subscription. /// - public ResourceType Type { get; private set; } + /// The GUID string representing the resource. + /// The path segments in the resource id following the subscription Guid. + /// The resource identifier for the given resource path. + internal static ResourceIdentifier CreateBaseSubscriptionIdentifier(string subscriptionId, List parts) + { + Guid subscriptionGuid; + if (!Guid.TryParse(subscriptionId, out subscriptionGuid)) + throw new ArgumentOutOfRangeException(nameof(subscriptionId), "Invalid subscription id."); + var subscription = new SubscriptionResourceIdentifier( subscriptionGuid); + if (parts.Count == 0) + return subscription; + if (parts.Count > 1) + { + switch (parts[0].ToLowerInvariant()) + { + case LocationsKey: + return CreateBaseLocationIdentifier(subscription, parts[1], parts.Trim(2)); + case ResourceGroupsLowerKey: + return CreateBaseResourceGroupIdentifier(subscription, parts[1], parts.Trim(2)); + case ProvidersKey: + { + if (parts.Count > 3) + return CreateSubscriptionIdentifier(new SubscriptionResourceIdentifier(subscription, + parts[1], parts[2], parts[3]), parts.Skip(4).ToList()); + throw new ArgumentOutOfRangeException(nameof(parts), "Invalid resource string"); + } + default: + { + throw new ArgumentOutOfRangeException(nameof(parts), "Invalid resource id."); + } + } + } + + throw new ArgumentOutOfRangeException(nameof(parts), "Invalid resource id."); + } /// - /// Gets the Subscription. + /// Create a new instance of the class for resource identifiers + /// that are contained in a location. /// - public string Subscription => _partsDictionary.ContainsKey(KnownKeys.Subscription) - ? _partsDictionary[KnownKeys.Subscription] - : null; + /// The resource id of the subscription for this resource. + /// The location of the resource. + /// The path segments in the resource id following the location. + /// The resource identifier for the given resource path. + internal static ResourceIdentifier CreateBaseLocationIdentifier(SubscriptionResourceIdentifier subscription, LocationData location, List parts) + { + var parent = new LocationResourceIdentifier(subscription, location); + if (parts.Count == 0) + return parent; + if (parts.Count == 1) + throw new ArgumentOutOfRangeException(nameof(parts), "Invalid resource id."); + switch (parts[0].ToLowerInvariant()) + { + case ProvidersKey: + { + if (parts.Count > 3) + return CreateLocationIdentifier(new LocationResourceIdentifier(parent, parts[1], parts[2], parts[3]), parts.Trim(4)); + throw new ArgumentOutOfRangeException(nameof(parts), "Invalid resource id."); + } + default: + return CreateLocationIdentifier(new LocationResourceIdentifier(parent, parts[0], parts[1]), parts.Trim(2)); + } + } /// - /// Gets the Resource Group. + /// Create a new instance of the class for resource identifiers + /// that are contained in a resource group. /// - public string ResourceGroup => _partsDictionary.ContainsKey(KnownKeys.ResourceGroup) - ? _partsDictionary[KnownKeys.ResourceGroup] - : null; + /// The resource id of the subscription for this resource. + /// The resource group containing the resource. + /// The path segments in the resource id following the resource group name. + /// The resource identifier for the given resource path. + internal static ResourceIdentifier CreateBaseResourceGroupIdentifier(SubscriptionResourceIdentifier subscription, string resourceGroupName, List parts) + { + var parent = new ResourceGroupResourceIdentifier(subscription, resourceGroupName); + if (parts.Count == 0) + return parent; + if (parts.Count == 1) + throw new ArgumentOutOfRangeException(nameof(parts), "Invalid resource id."); + switch (parts[0].ToLowerInvariant()) + { + case ProvidersKey: + { + if (parts.Count > 3) + return CreateResourceGroupIdentifier(new ResourceGroupResourceIdentifier(parent, parts[1], parts[2], parts[3]), parts.Trim(4)); + throw new ArgumentOutOfRangeException(nameof(parts), "Invalid resource id."); + } + default: + throw new ArgumentOutOfRangeException(nameof(parts), "Invalid resource id."); + } + } /// - /// Gets the Parent. - /// Currently this will contain the identifier for either the parent resource, the resource group, the location, the subscription, or the tenant that is the logical parent of this resource. + /// Create a new instance of the class for resource identifiers + /// that are based in the tenant. /// - public ResourceIdentifier Parent { get; private set; } + /// The resource id of the parent resource. + /// The path segments in the resource path after the parent. + /// A resource identifier for a resource contained in the tenant. + internal static ResourceIdentifier CreateTenantIdentifier(TenantResourceIdentifier parent, List parts) + { + if (parts.Count == 0) + return parent; + if (parts.Count == 1) + return new TenantResourceIdentifier(parent, parts[0], string.Empty); + if (parts.Count > 3 && string.Equals(parts[0], ProvidersKey, StringComparison.InvariantCultureIgnoreCase)) + return CreateTenantIdentifier(new TenantResourceIdentifier(parent, parts[1], parts[2], parts[3]), parts.Trim(4)); + if (parts.Count > 1 && !string.Equals(parts[0], ProvidersKey, StringComparison.InvariantCultureIgnoreCase)) + return CreateTenantIdentifier(new TenantResourceIdentifier(parent, parts[0], parts[1]), parts.Trim(2)); + throw new ArgumentOutOfRangeException(nameof(parts), "Invalid resource id."); + } /// - /// Initializes a new instance of the class from a string. + /// Create a new instance of the class for resource identifiers + /// that are based in a subscription. /// - /// String to be implicit converted into a object. - public static implicit operator ResourceIdentifier(string other) + /// The resource id of the parent resource. + /// The path segments in the resource path after the parent. + /// A resource identifier for a resource contained in the subscription. + internal static ResourceIdentifier CreateSubscriptionIdentifier(SubscriptionResourceIdentifier parent, List parts) { - if (other is null) - return null; - - return new ResourceIdentifier(other); + if (parts.Count == 0) + return parent; + if (parts.Count == 1) + return new SubscriptionResourceIdentifier(parent, parts[0], string.Empty); + if (parts.Count > 3 && string.Equals(parts[0], ProvidersKey, StringComparison.InvariantCultureIgnoreCase)) + return CreateSubscriptionIdentifier(new SubscriptionResourceIdentifier(parent, parts[1], parts[2], parts[3]), parts.Trim(4)); + if (parts.Count > 1 && !string.Equals(parts[0], ProvidersKey, StringComparison.InvariantCultureIgnoreCase)) + return CreateSubscriptionIdentifier(new SubscriptionResourceIdentifier(parent, parts[0], parts[1]), parts.Trim(2)); + throw new ArgumentOutOfRangeException(nameof(parts), "Invalid resource id."); } /// - /// Creates a new string from a object. + /// Create a new instance of the class for resource identifiers + /// that are contained in a location. /// - /// object to be implicit converted into an string. - public static implicit operator string(ResourceIdentifier other) + /// The resource id of the parent resource. + /// The path segments in the resource path after the parent. + /// A resource identifier for a resource contained in a location. + internal static ResourceIdentifier CreateLocationIdentifier(LocationResourceIdentifier parent, List parts) { - if (other is null) - return null; - - return other.Id; + if (parts.Count == 0) + return parent; + if (parts.Count == 1) + return new LocationResourceIdentifier(parent, parts[0], string.Empty); + if (parts.Count > 3 && string.Equals(parts[0], ProvidersKey, StringComparison.InvariantCultureIgnoreCase)) + return CreateLocationIdentifier(new LocationResourceIdentifier(parent, parts[1], parts[2], parts[3]), parts.Trim(4)); + if (parts.Count > 1 && !string.Equals(parts[0], ProvidersKey, StringComparison.InvariantCultureIgnoreCase)) + return CreateLocationIdentifier(new LocationResourceIdentifier(parent, parts[0], parts[1]), parts.Trim(2)); + throw new ArgumentOutOfRangeException(nameof(parts), "Invalid resource id."); } /// - /// Allow static, safe comparisons of resource identifier strings or objects. + /// Create a new instance of the class for resource identifiers + /// that are contained in a resource group. /// - /// A resource id. - /// Another resource id. - /// True if the resource ids are equivalent, otherwise False. - public static bool Equals(ResourceIdentifier x, ResourceIdentifier y) + /// The resource id of the parent resource. + /// The path segments in the resource path after the parent. + /// A resource identifier for a resource contained in a resource group. + internal static ResourceIdentifier CreateResourceGroupIdentifier(ResourceGroupResourceIdentifier parent, List parts) { - if (null == x && null == y) - return true; - - if (null == x || null == y) - return false; - - return x.Equals(y); + if (parts.Count == 0) + return parent; + if (parts.Count == 1) + return new ResourceGroupResourceIdentifier(parent, parts[0], string.Empty); + if (parts.Count > 3 && string.Equals(parts[0], ProvidersKey, StringComparison.InvariantCultureIgnoreCase)) + return CreateResourceGroupIdentifier(new ResourceGroupResourceIdentifier(parent, parts[1], parts[2], parts[3]), parts.Trim(4)); + if (parts.Count > 1 && !string.Equals(parts[0], ProvidersKey, StringComparison.InvariantCultureIgnoreCase)) + return CreateResourceGroupIdentifier(new ResourceGroupResourceIdentifier(parent, parts[0], parts[1]), parts.Trim(2)); + throw new ArgumentOutOfRangeException(nameof(parts), "Invalid resource id."); } + private object lockObject = new object(); + private string _stringValue; + /// - /// Allow static null-safe comparisons between resource identifier strings or objects. + /// Cache the string representation of this resource, so traversal only needs to occur once. /// - /// A resource id. - /// Another resource id. - /// -1 if x < y, 0 if x == y, 1 if x > y. - public static int CompareTo(ResourceIdentifier x, ResourceIdentifier y) + internal string StringValue { - if (null == x && null == y) - return 0; + get + { + lock (lockObject) + { + if (_stringValue is null) + { + _stringValue = ToResourceString(); + } + + return _stringValue; + } + } - if (null == x) - return -1; + set + { + lock (lockObject) + { + _stringValue = value; + } + } + } - if (null == y) - return 1; + /// + /// The resource type of the resource. + /// + public virtual ResourceType ResourceType { get; internal set; } - return x.CompareTo(y); - } + /// + /// The name of the resource. + /// + public virtual string Name { get; internal set; } - /// - public override int GetHashCode() - { - return Id.GetHashCode(); - } + /// + /// The immediate parent containing this resource. + /// + public virtual ResourceIdentifier Parent { get; internal set; } - /// - public override string ToString() - { - return Id; - } + /// + /// Determines whether this resource is in the same namespace as its parent. + /// + internal virtual bool IsChild { get; set; } /// - /// Compares this instance ID with another instance's ID. + /// Tries to get the resource identifier of the parent of this resource. /// - /// object to compare. - /// -1 for less than, 0 for equals, 1 for greater than. - public int CompareTo(ResourceIdentifier other) + /// The resource id of the parent resource. + /// True if the resource has a parent, otherwise false. + public virtual bool TryGetParent(out ResourceIdentifier containerId) { - return string.Compare( - Id?.ToLowerInvariant(), - other?.Id?.ToLowerInvariant(), - StringComparison.InvariantCultureIgnoreCase); + containerId = default(ResourceIdentifier); + if (this.Parent is RootResourceIdentifier) + return false; + containerId = this.Parent; + return true; } /// - /// Compares this instance ID with another plain text ID. + /// Tries to get the subscription associated with this resource. /// - /// The ID to compare. - /// -1 for less than, 0 for equals, 1 for greater than. - public int CompareTo(string other) + /// The resource Id of the subscription for this resource. + /// True if the resource is contained in a subscription, otherwise false. + public virtual bool TryGetSubscriptionId(out string subscriptionId) { - return string.Compare( - Id?.ToLowerInvariant(), - other?.ToLowerInvariant(), - StringComparison.InvariantCultureIgnoreCase); + subscriptionId = default(string); + return false; } /// - /// Compares this instance ID with another instance's ID and determines if they are equals. + /// Tries to get the resource group associated with this resource. /// - /// object to compare. - /// True if they are equals, otherwise false. - public bool Equals(ResourceIdentifier other) + /// The resource group for this resource. + /// True if the resource is contained in a resource group, otherwise false. + public virtual bool TryGetResourceGroupName(out string resourceGroupName) { - return string.Equals( - Id?.ToLowerInvariant(), - other?.Id?.ToLowerInvariant(), - StringComparison.InvariantCultureIgnoreCase); + resourceGroupName = default(string); + return false; } /// - /// Compares this instance ID with another plain text ID. and determines if they are equals. + /// Tries to get the location associated with this resource. /// - /// The ID to compare. - /// True if they are equals, otherwise false. - public bool Equals(string other) + /// The location for thsi resource. + /// True if the resource is contained in a location, otherwise false. + public virtual bool TryGetLocation(out LocationData location) { - return string.Equals( - Id?.ToLowerInvariant(), - other?.ToLowerInvariant(), - StringComparison.InvariantCultureIgnoreCase); + location = default(LocationData); + return false; } /// - /// Populate Resource Identity fields from input string. + /// Create the resource id string based on the resource id string of the parent resource. /// - /// A properly formed resource identity. - private void Parse(string id) + /// The string representation of this resource id. + internal virtual string ToResourceString() { - // Throw for null, empty, and string without the correct form - if (string.IsNullOrWhiteSpace(id) || !id.Contains('/')) - throw new ArgumentOutOfRangeException($"'{id}' is not a valid resource"); - - // Resource ID paths consist mainly of name/value pairs. Split the uri so we have an array of name/value pairs - var parts = id.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).ToList(); - // There must be at least one name/value pair for the resource id to be valid - if (parts.Count < 2 && !KnownKeys.Tenant.Equals(parts[0], StringComparison.InvariantCultureIgnoreCase)) - throw new ArgumentOutOfRangeException($"'{id}' is not a valid resource"); - - // This is asserting that resources must start with '/subscriptions', /tenants, or /locations. - // TODO: we will need to update this code to accomodate tenant based resources (which start with /providers) - if (!KnownKeys.Subscription.Equals(parts[0], StringComparison.InvariantCultureIgnoreCase) && - !KnownKeys.Tenant.Equals(parts[0], StringComparison.InvariantCultureIgnoreCase) && - !KnownKeys.ProviderNamespace.Equals(parts[0], StringComparison.InvariantCultureIgnoreCase) && - !KnownKeys.Location.Equals(parts[0], StringComparison.InvariantCultureIgnoreCase)) + StringBuilder builder = new StringBuilder(Parent.ToResourceString()); + if (IsChild) { - throw new ArgumentOutOfRangeException($"'{id}' is not a valid resource"); + builder.Append($"/{ResourceType.Types.Last()}"); + if (!string.IsNullOrWhiteSpace(Name)) + builder.Append($"/{Name}"); } - - Type = new ResourceType(id); - - // In the case that this resource is a singleton proxy resource, the number of parts will be odd, - // where the last part is the type name of the singleton - if (parts.Count % 2 != 0 && !KnownKeys.Tenant.Equals(parts[0], StringComparison.InvariantCultureIgnoreCase)) + else { - _partsDictionary.Add(KnownKeys.UntrackedSubResource, parts.Last()); - parts.RemoveAt(parts.Count - 1); + builder.Append($"/providers/{ResourceType.Namespace}/{ResourceType.Type}/{Name}"); } - // This spplits into resource that come from a provider (which have the providers keyword) and - // resources that are built in to ARM (e.g. /subscriptions/{sub}, /subscriptions/{sub}/resourceGroups/{rg}) - // TODO: This code will need to be updates for extension resources, which have two providers - if (id.ToLowerInvariant().Contains("providers")) - { - ParseProviderResource(parts); - } - else if (!KnownKeys.Tenant.Equals(parts[0], StringComparison.InvariantCultureIgnoreCase)) - { - ParseGenericResource(parts); - } + return builder.ToString(); } /// - /// Helper method to parse a built in resource. + /// Return the string representation of the resource identifier. /// - /// Resource ID paths consisting of name/value pairs. - private void ParseGenericResource(IList parts) + /// The string representation of this resource identifier. + public override string ToString() { - Debug.Assert(parts != null, "Parts parameter is null."); - Debug.Assert(parts.Count > 1, "Parts should be a list containing more than 1 elements."); - - // The resource consists of well-known name-value pairs. Make a resource dictionary - // using the names as keys, and the values as values - for (var i = 0; i < parts.Count - 1; i += 2) - { - _partsDictionary.Add(parts[i], parts[i + 1]); - } - - // resource name is always the last part - Name = parts.Last(); - parts.RemoveAt(parts.Count - 1); - parts.RemoveAt(parts.Count - 1); + return StringValue; + } - // remove the last key/value pair to arrive at the parent (Count will be zero for /subscriptions/{foo}) - Parent = parts.Count > 1 ? new ResourceIdentifier($"/{string.Join("/", parts)}") : null; + /// + /// Determine if this resource identifier is equivalent to the given resource identifier. + /// + /// The resource identifier to compare to. + /// True if the resource identifiers are equivalent, otherwise false. + public bool Equals(ResourceIdentifier other) + { + if (other is null) + return false; + return string.Equals(this.ToString(), other.ToString(), StringComparison.InvariantCultureIgnoreCase); } /// - /// Helper method to parse a resource that comes from a provider. + /// Compre this resource identifier to the given resource identifier. /// - /// Resource ID paths consisting of name/value pairs. - private void ParseProviderResource(IList parts) + /// The resource identifier to compare to. + /// 0 if the resource identifiers are equivalent, -1 if this resource identifier + /// should be ordered before the given resource identifier, 1 if this resource identifier + /// should be ordered after the given resource identifier. + public int CompareTo(ResourceIdentifier other) { - // The resource consists of name/value pairs, make a dictionary out of it - for (var i = 0; i < parts.Count - 1; i += 2) - { - _partsDictionary[parts[i]] = parts[i + 1]; - } + if (other is null) + return 1; + return string.Compare(this.ToString(), other.ToString(), StringComparison.InvariantCultureIgnoreCase); + } - Name = parts.Last(); - parts.RemoveAt(parts.Count - 1); + /// + public override bool Equals(object obj) + { + ResourceIdentifier resourceObj = obj as ResourceIdentifier; + if (!(resourceObj is null)) + return resourceObj.Equals(this); + string stringObj = obj as string; + if (!(stringObj is null)) + return this.Equals(ResourceIdentifier.Create(stringObj)); + return false; + } - // remove the type name (there will be no typename if this is a singleton sub resource) - if (parts.Count % 2 == 1) - parts.RemoveAt(parts.Count - 1); + /// + public override int GetHashCode() + { + return ToString().GetHashCode(); + } - // If this is a top-level resource, remove the providers/Namespace pair, otherwise continue - if (parts.Count > 2 && string.Equals(parts[parts.Count - 2], KnownKeys.ProviderNamespace)) - { - parts.RemoveAt(parts.Count - 1); - parts.RemoveAt(parts.Count - 1); - } + /// + /// Convert a string into a resource identifier. + /// + /// The string representation of a resource identifier. + public static implicit operator ResourceIdentifier(string other) => (other is null ? null : ResourceIdentifier.Create(other)); - // If this is not a top-level resource, it will have a parent - Parent = parts.Count > 1 ? new ResourceIdentifier($"/{string.Join("/", parts)}") : null; - } + /// + /// Convert a resource identifier to a string + /// + /// The resource identifier. + public static implicit operator string(ResourceIdentifier id) => id?.ToString(); } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentifierExtensions.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentifierExtensions.cs new file mode 100644 index 0000000000000..ef5af2d1a6a7f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentifierExtensions.cs @@ -0,0 +1,160 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.ComponentModel; + +namespace Azure.ResourceManager.Core +{ + /// + /// Extensions over ResourceIdentifier types. + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public static class ResourceIdentifierExtensions + { + /// + /// Add a provider resource to an existing resource id. + /// + /// The id to append to. + /// The provider namespace of the added resource. + /// The simple type of the added resource, without slashes (/), + /// for example, 'virtualMachines'. + /// The name of the resource. + /// The combined resource id. + [EditorBrowsable(EditorBrowsableState.Never)] + public static TenantResourceIdentifier AppendProviderResource(this TenantResourceIdentifier identifier, string providerNamespace, string resourceType, string resourceName) + { + ValidateProviderResourceParameters(providerNamespace, resourceType, resourceName); + return new TenantResourceIdentifier(identifier, providerNamespace, resourceType, resourceName); + } + + /// + /// Add a provider resource to an existing resource id. + /// + /// The id to append to. + /// The provider namespace of the added resource. + /// The simple type of the added resource, without slashes (/), + /// for example, 'virtualMachines'. + /// The name of the resource. + /// The combined resource id. + [EditorBrowsable(EditorBrowsableState.Never)] + public static SubscriptionResourceIdentifier AppendProviderResource(this SubscriptionResourceIdentifier identifier, string providerNamespace, string resourceType, string resourceName) + { + ValidateProviderResourceParameters(providerNamespace, resourceType, resourceName); + return new SubscriptionResourceIdentifier(identifier, providerNamespace, resourceType, resourceName); + } + + /// + /// Add a provider resource to an existing resource id. + /// + /// The id to append to. + /// The provider namespace of the added resource. + /// The simple type of the added resource, without slashes (/), + /// for example, 'virtualMachines'. + /// The name of the resource. + /// The combined resource id. + [EditorBrowsable(EditorBrowsableState.Never)] + public static ResourceGroupResourceIdentifier AppendProviderResource(this ResourceGroupResourceIdentifier identifier, string providerNamespace, string resourceType, string resourceName) + { + ValidateProviderResourceParameters(providerNamespace, resourceType, resourceName); + return new ResourceGroupResourceIdentifier(identifier, providerNamespace, resourceType, resourceName); + } + + /// + /// Add a provider resource to an existing resource id. + /// + /// The id to append to. + /// The provider namespace of the added resource. + /// The simple type of the added resource, without slashes (/), + /// for example, 'virtualMachines'. + /// The name of the resource. + /// The combined resource id. + [EditorBrowsable(EditorBrowsableState.Never)] + public static LocationResourceIdentifier AppendProviderResource(this LocationResourceIdentifier identifier, string providerNamespace, string resourceType, string resourceName) + { + ValidateProviderResourceParameters(providerNamespace, resourceType, resourceName); + return new LocationResourceIdentifier(identifier, providerNamespace, resourceType, resourceName); + } + + /// + /// Add a provider resource to an existing resource id. + /// + /// The id to append to. + /// The simple type of the child resource, without slashes (/), + /// for example, 'subnets'. + /// The name of the resource. + /// The combined resource id. + [EditorBrowsable(EditorBrowsableState.Never)] + public static TenantResourceIdentifier AppendChildResource(this TenantResourceIdentifier identifier, string childResourceType, string childResourceName) + { + ValidateChildResourceParameters( childResourceType, childResourceName); + return new TenantResourceIdentifier(identifier, childResourceType, childResourceName); + } + + /// + /// Add a provider resource to an existing resource id. + /// + /// The id to append to. + /// The simple type of the child resource, without slashes (/), + /// for example, 'subnets'. + /// The name of the resource. + /// The combined resource id. + [EditorBrowsable(EditorBrowsableState.Never)] + public static SubscriptionResourceIdentifier AppendChildResource(this SubscriptionResourceIdentifier identifier, string childResourceType, string childResourceName) + { + ValidateChildResourceParameters(childResourceType, childResourceName); + return new SubscriptionResourceIdentifier(identifier, childResourceType, childResourceName); + } + + /// + /// Add a provider resource to an existing resource id. + /// + /// The id to append to. + /// The simple type of the child resource, without slashes (/), + /// for example, 'subnets'. + /// The name of the resource. + /// The combined resource id. + [EditorBrowsable(EditorBrowsableState.Never)] + public static ResourceGroupResourceIdentifier AppendChildResource(this ResourceGroupResourceIdentifier identifier, string childResourceType, string childResourceName) + { + ValidateChildResourceParameters(childResourceType, childResourceName); + return new ResourceGroupResourceIdentifier(identifier, childResourceType, childResourceName); + } + + /// + /// Add a provider resource to an existing resource id. + /// + /// The id to append to. + /// The simple type of the child resource, without slashes (/), + /// for example, 'subnets'. + /// The name of the resource. + /// The combined resource id. + [EditorBrowsable(EditorBrowsableState.Never)] + public static LocationResourceIdentifier AppendChildResource(this LocationResourceIdentifier identifier, string childResourceType, string childResourceName) + { + ValidateChildResourceParameters(childResourceType, childResourceName); + return new LocationResourceIdentifier(identifier, childResourceType, childResourceName); + } + + internal static void ValidateProviderResourceParameters(string providerNamespace, string resourceType, string resourceName) + { + ValidatePathSegment(providerNamespace, nameof(providerNamespace)); + ValidatePathSegment(resourceType, nameof(resourceType)); + ValidatePathSegment(resourceName, nameof(resourceName)); + } + + internal static void ValidateChildResourceParameters(string childResourceType, string childResourceName) + { + ValidatePathSegment(childResourceType, nameof(childResourceType)); + ValidatePathSegment(childResourceName, nameof(childResourceName)); + } + + internal static void ValidatePathSegment(string segment, string parameterName) + { + if (string.IsNullOrWhiteSpace(segment)) + throw new ArgumentNullException(parameterName); + if (segment.Contains("/")) + throw new ArgumentOutOfRangeException(parameterName, $"{parameterName} must be a single path segment"); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentity.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentity.cs index ecba2a9905c86..9102f5db7b4db 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentity.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceIdentity.cs @@ -30,14 +30,14 @@ public ResourceIdentity() /// /// Dictionary with a key and a object value. /// Flag for using or not. - public ResourceIdentity(Dictionary user, bool useSystemAssigned) + public ResourceIdentity(Dictionary user, bool useSystemAssigned) { // check for combination of user and system on the impact to type value SystemAssignedIdentity = useSystemAssigned ? new SystemAssignedIdentity() : null; - UserAssignedIdentities = new Dictionary(); + UserAssignedIdentities = new Dictionary(); if (user != null) { - foreach (KeyValuePair id in user) + foreach (KeyValuePair id in user) { UserAssignedIdentities.Add(id.Key, id.Value); } @@ -49,13 +49,13 @@ public ResourceIdentity(Dictionary use /// /// The to use. /// Dictionary with a key and a object value. - public ResourceIdentity(SystemAssignedIdentity systemAssigned, IDictionary user) + public ResourceIdentity(SystemAssignedIdentity systemAssigned, IDictionary user) { // TODO: remove this constructor later SystemAssignedIdentity = systemAssigned; if (user == null) { - UserAssignedIdentities = new Dictionary(); + UserAssignedIdentities = new Dictionary(); } else { @@ -71,7 +71,7 @@ public ResourceIdentity(SystemAssignedIdentity systemAssigned, IDictionary /// Gets a dictionary of the User Assigned Identities. /// - public IDictionary UserAssignedIdentities { get; private set; } + public IDictionary UserAssignedIdentities { get; private set; } /// /// Converts a into an object. @@ -86,7 +86,7 @@ internal static ResourceIdentity Deserialize(JsonElement element) } Optional systemAssignedIdentity = default; - IDictionary userAssignedIdentities = new Dictionary(); + IDictionary userAssignedIdentities = new Dictionary(); string type = string.Empty; foreach (var property in element.EnumerateObject()) { @@ -103,7 +103,7 @@ internal static ResourceIdentity Deserialize(JsonElement element) { resourceId = keyValuePair.Name; var userAssignedIdentity = UserAssignedIdentity.Deserialize(keyValuePair.Value); - userAssignedIdentities.Add(resourceId, userAssignedIdentity); + userAssignedIdentities.Add(new ResourceGroupResourceIdentifier(resourceId), userAssignedIdentity); } continue; diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceType.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceType.cs index 62b71bc4907bc..c48d43adf8962 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceType.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/ResourceType.cs @@ -8,15 +8,14 @@ namespace Azure.ResourceManager.Core { /// - /// Structure representing a resource type + /// Structure representing a resource type. /// - public sealed class ResourceType : IEquatable, IEquatable, IComparable, - IComparable + public sealed class ResourceType : IEquatable, IComparable { /// - /// The "none" resource type + /// The resource type for the root of the resource hierarchy. /// - public static readonly ResourceType None = new ResourceType { Namespace = string.Empty, Type = string.Empty }; + public static ResourceType RootResourceType => new ResourceType(string.Empty, string.Empty); /// /// Initializes a new instance of the class. @@ -28,6 +27,29 @@ public ResourceType(string resourceIdOrType) throw new ArgumentException($"{nameof(resourceIdOrType)} cannot be null or whitespace", nameof(resourceIdOrType)); Parse(resourceIdOrType); + Types = Type.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + } + + /// + /// Create a resource type given the namespace and typename components. + /// + /// + /// + internal ResourceType(string providerNamespace, string name) + { + Namespace = providerNamespace; + Type = name; + Types = Type.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + } + + /// + /// Create child resource type using parent resource type + /// + /// + /// + internal ResourceType(ResourceType parent, string childType) + : this(parent.Namespace, $"{parent.Type}/{childType}") + { } private ResourceType() @@ -44,23 +66,28 @@ private ResourceType() /// public string Type { get; private set; } + internal IList Types { get; } = new List(); + /// - /// Gets the resource type Parent. + /// Determines if this resource type is the parent of the given resource. /// - public ResourceType Parent + /// + /// + public bool IsParentOf(ResourceType child) { - get + if (!string.Equals(Namespace, child.Namespace, StringComparison.InvariantCultureIgnoreCase)) + return false; + var types = Type.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + var childTypes = child.Type.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); + if (types.Length >= childTypes.Length) + return false; + for (int i = 0; i < types.Length; ++i) { - var parts = Type.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries); - - if (parts.Length < 2) - return None; - - var list = new List(parts); - list.RemoveAt(list.Count - 1); - - return new ResourceType($"{Namespace}/{string.Join("/", list.ToArray())}"); + if (!string.Equals(types[i], childTypes[i], StringComparison.InvariantCultureIgnoreCase)) + return false; } + + return true; } /// @@ -75,46 +102,6 @@ public static implicit operator ResourceType(string other) return new ResourceType(other); } - /// - /// Implicit operator for initializing a string instance from a ResourceType. - /// - /// to be converted into a string object. - public static implicit operator string(ResourceType other) - { - if (other is null) - return null; - - return other.ToString(); - } - - /// - /// Compares a object with a . - /// - /// object. - /// String. - /// True if they are equal, otherwise False. - public static bool operator ==(ResourceType source, string target) - { - if (source is null) - return target is null; - - return source.Equals(target); - } - - /// - /// Compares a with a object. - /// - /// String representation of a ResourceType. - /// object. - /// True if they are equal, otherwise False. - public static bool operator ==(string source, ResourceType target) - { - if (target is null) - return source is null; - - return target.Equals(source); - } - /// /// Compares two objects. /// @@ -129,34 +116,6 @@ public static implicit operator string(ResourceType other) return source.Equals(target); } - /// - /// Compares a object with a . - /// - /// object. - /// String representation of a ResourceType. - /// False if they are equal, otherwise True. - public static bool operator !=(ResourceType source, string target) - { - if (source is null) - return !(target is null); - - return !source.Equals(target); - } - - /// - /// Compares a with a object. - /// - /// String. - /// object. - /// False if they are equal, otherwise True. - public static bool operator !=(string source, ResourceType target) - { - if (target is null) - return !(source is null); - - return !target.Equals(source); - } - /// /// Compares two objects. /// @@ -184,30 +143,15 @@ public int CompareTo(ResourceType other) if (ReferenceEquals(this, other)) return 0; - int compareResult = 0; - if ((compareResult = string.Compare(Namespace, other.Namespace, StringComparison.InvariantCultureIgnoreCase)) == 0 && - (compareResult = string.Compare(Type, other.Type, StringComparison.InvariantCultureIgnoreCase)) == 0 && - (!(other.Parent is null))) + int compareResult = string.Compare(Namespace, other.Namespace, StringComparison.InvariantCultureIgnoreCase); + if (compareResult == 0) { - return Parent.CompareTo(other.Parent); + compareResult = string.Compare(Type, other.Type, StringComparison.InvariantCultureIgnoreCase); } - + return compareResult; } - /// - /// Compares this with a resource type representation as a string. - /// - /// String to compare. - /// -1 for less than, 0 for equals, 1 for greater than. - public int CompareTo(string other) - { - if (other is null) - return 1; - - return CompareTo(new ResourceType(other)); - } - /// /// Compares this instance with another object and determines if they are equals. /// @@ -221,19 +165,6 @@ public bool Equals(ResourceType other) return string.Equals(ToString(), other.ToString(), StringComparison.InvariantCultureIgnoreCase); } - /// - /// Compares this instance with a string and determines if they are equals. - /// - /// String to compare. - /// True if they are equals, otherwise false. - public bool Equals(string other) - { - if (other is null) - return false; - - return string.Equals(ToString(), other, StringComparison.InvariantCultureIgnoreCase); - } - /// public override string ToString() { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/RootResourceIdentifier.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/RootResourceIdentifier.cs new file mode 100644 index 0000000000000..1d5d412c6a88a --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/RootResourceIdentifier.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +namespace Azure.ResourceManager.Core +{ + /// + /// A resource Id representing the root of the resource hierarchy. + /// + public sealed class RootResourceIdentifier : ResourceIdentifier + { + internal RootResourceIdentifier() + : base(ResourceType.RootResourceType, string.Empty) + { + } + + internal override string ToResourceString() + { + return string.Empty; + } + + /// + public override bool TryGetParent(out ResourceIdentifier containerId) + { + containerId = default(ResourceIdentifier); + return false; + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/SubscriptionResourceIdentifier.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/SubscriptionResourceIdentifier.cs new file mode 100644 index 0000000000000..9ea234562109f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/SubscriptionResourceIdentifier.cs @@ -0,0 +1,125 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; + +namespace Azure.ResourceManager.Core +{ + /// + /// The identifier of a resource that is contained in a subscription. + /// + public class SubscriptionResourceIdentifier : TenantResourceIdentifier + { + /// + /// Internal use only. + /// + internal SubscriptionResourceIdentifier() + { + } + + /// + /// Internal use only. + /// + /// The subscription GUID. + internal SubscriptionResourceIdentifier(Guid id) + { + Name = id.ToString(); + ResourceType = ResourceIdentifier.SubscriptionType; + Parent = ResourceIdentifier.RootResourceIdentifier; + IsChild = false; + SubscriptionId = Name; + } + + /// + /// Initializes a new instance of the class + /// for resources in the sanem namespace as their parent resource. + /// + /// The resource id of the parent resource. + /// The simple type of this resource, for example 'subnets'. + /// The name of this resource. + /// The resource identifier for the given child resource. + internal SubscriptionResourceIdentifier(SubscriptionResourceIdentifier parent, string childResourceType, string childResourceName) + : base(parent, childResourceType, childResourceName) + { + SubscriptionId = parent.SubscriptionId; + } + + /// + /// Initializes a new instance of the class + /// for resources in a different namespace than their parent resource. + /// + /// The resource id of the parent resource. + /// The namespace of this resource, for example 'Microsoft.Compute'. + /// The simple tyoe of this resource, with no slashes. For example, 'virtualMachines'. + /// Thge name of this resource. + /// The resource identifier for the given resource. + internal SubscriptionResourceIdentifier(SubscriptionResourceIdentifier parent, string providerNamespace, string resourceType, string resourceName) + : base(parent, providerNamespace, resourceType, resourceName) + { + SubscriptionId = parent.SubscriptionId; + } + + /// + /// Initializes a new instance of the class. + /// + /// The string representation of the subscription id. This can be in the form of a GUID, + /// or a full resource id like '/subscriptions/xxxxx-yyyy-zzzz-wwwwww'. + public SubscriptionResourceIdentifier(string resourceIdOrSubscriptionId) + { + Guid subscriptionGuid; + if (Guid.TryParse(resourceIdOrSubscriptionId, out subscriptionGuid)) + { + Name = resourceIdOrSubscriptionId; + ResourceType = ResourceIdentifier.SubscriptionType; + Parent = ResourceIdentifier.RootResourceIdentifier; + IsChild = false; + SubscriptionId = resourceIdOrSubscriptionId; + } + else + { + ResourceIdentifier rawId = ResourceIdentifier.Create(resourceIdOrSubscriptionId); + SubscriptionResourceIdentifier id = rawId as SubscriptionResourceIdentifier; + if (id is null || rawId.TryGetLocation(out _) || rawId.TryGetResourceGroupName(out _)) + throw new ArgumentException("Not a valid subscription level resource", nameof(resourceIdOrSubscriptionId)); + Name = id.Name; + ResourceType = id.ResourceType; + Parent = id.Parent; + IsChild = id.IsChild; + SubscriptionId = id.SubscriptionId; + } + } + + /// + /// The subscription id (Guid) for this resource. + /// + public string SubscriptionId { get; internal set; } + + /// + public override bool TryGetSubscriptionId(out string subscriptionId) + { + subscriptionId = SubscriptionId; + return true; + } + + /// + /// Convert a string resource id into a subscription resource identifier. + /// + /// The string representation of a resource identifier. + public static implicit operator SubscriptionResourceIdentifier(string other) + { + if (other is null) + return null; + SubscriptionResourceIdentifier id = ResourceIdentifier.Create(other) as SubscriptionResourceIdentifier; + if (id is null) + throw new ArgumentException("Not a valid subscription level resource", nameof(other)); + return id; + } + + internal override string ToResourceString() + { + if (Parent is RootResourceIdentifier) + return $"/subscriptions/{SubscriptionId}"; + return base.ToResourceString(); + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TenantResourceIdentifier.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TenantResourceIdentifier.cs new file mode 100644 index 0000000000000..0743da2cf2d57 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TenantResourceIdentifier.cs @@ -0,0 +1,86 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Linq; + +namespace Azure.ResourceManager.Core +{ + /// + /// The identifier of any resource + /// + public class TenantResourceIdentifier : ResourceIdentifier + { + internal TenantResourceIdentifier() + { + } + + /// + /// Initializes a new instance of the class + /// + /// The resource type (including namespace and type). + /// The name of the resource. + internal TenantResourceIdentifier(ResourceType resourceType, string name) : base(resourceType, name) + { + Parent = ResourceIdentifier.RootResourceIdentifier; + } + + /// + /// Initializes a new instance of the class + /// for resources in the same namespace as their parent. + /// + /// The parent resource id. + /// The simple type name of the resource without slashes (/), for example 'virtualMachines'. + /// The name of the resource. + internal TenantResourceIdentifier(TenantResourceIdentifier parent, string typeName, string resourceName) + : base(new ResourceType(parent.ResourceType, typeName), resourceName) + { + Parent = parent; + IsChild = true; + } + + /// + /// Initializes a new instance of the class + /// for resources in a different namespace than their parent. + /// + /// The parent resource id. + /// The namespace of the resource type, for example, 'Microsoft.Compute'. + /// The simple type name of the resource, without slashes (/). For example, 'virtualMachines'. + /// The name of the resource. + internal TenantResourceIdentifier(TenantResourceIdentifier parent, string providerNamespace, string typeName, string resourceName) + : base(new ResourceType(providerNamespace, typeName), resourceName) + { + Parent = parent; + } + + /// + /// Initializes a new instance of the class. + /// + /// The string representation of a resource identifier. + public TenantResourceIdentifier(string resourceId) + { + var rawId = ResourceIdentifier.Create(resourceId); + TenantResourceIdentifier id = rawId as TenantResourceIdentifier; + if (id is null || rawId.TryGetSubscriptionId(out _)) + throw new ArgumentException("Not a valid tenant level resource", nameof(resourceId)); + Name = id.Name; + ResourceType = id.ResourceType; + Parent = id.Parent; + IsChild = id.IsChild; + } + + /// + /// Convert a string resource identifier into a TenantResourceIdentifier. + /// + /// The string representation of a subscription resource identifier. + public static implicit operator TenantResourceIdentifier(string other) + { + if (other is null) + return null; + TenantResourceIdentifier id = ResourceIdentifier.Create(other) as TenantResourceIdentifier; + if (id is null) + throw new ArgumentException("Not a valid tenant level resource", nameof(other)); + return id; + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TrackedResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TrackedResource.cs index a8639060c3bf8..af6de769670b0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TrackedResource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Resources/TrackedResource.cs @@ -10,7 +10,7 @@ namespace Azure.ResourceManager.Core /// Generic representation of a tracked resource. All tracked resources should extend this class /// [ReferenceType] - public abstract class TrackedResource : Resource + public abstract class TrackedResource : Resource where TIdentifier : TenantResourceIdentifier { /// /// Gets the tags. @@ -26,6 +26,6 @@ public abstract class TrackedResource : Resource /// /// Gets or sets the identifier for the resource. /// - public override ResourceIdentifier Id { get; protected set; } + public override TIdentifier Id { get; protected set; } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs index 6ba9828796376..cf3205725ef82 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionContainer.cs @@ -12,7 +12,7 @@ namespace Azure.ResourceManager.Core /// /// A class representing collection of Subscription and their operations /// - public class SubscriptionContainer : ContainerBase + public class SubscriptionContainer : ContainerBase { /// /// Initializes a new instance of the class for mocking. @@ -108,8 +108,8 @@ protected override void Validate(ResourceIdentifier identifier) /// Get an instance of the operations this container holds. /// /// The guid of the subscription to be found. - /// An instance of . - protected override ResourceOperationsBase GetOperation(string subscriptionGuid) + /// An instance of . + protected override ResourceOperationsBase GetOperation(string subscriptionGuid) { return new SubscriptionOperations(new ClientContext(ClientOptions, Credential, BaseUri), subscriptionGuid); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs index 60b21bdd8b074..6d16bc00d7487 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs @@ -12,7 +12,7 @@ namespace Azure.ResourceManager.Core /// /// A class representing the operations that can be performed over a specific subscription. /// - public class SubscriptionOperations : ResourceOperationsBase + public class SubscriptionOperations : ResourceOperationsBase { /// /// The resource type for subscription @@ -41,7 +41,7 @@ internal SubscriptionOperations(ClientContext clientContext, string subscription /// /// The subscription operations to copy client options from. /// The identifier of the subscription. - protected SubscriptionOperations(SubscriptionOperations subscription, ResourceIdentifier id) + protected SubscriptionOperations(SubscriptionOperations subscription, SubscriptionResourceIdentifier id) : base(subscription, id) { } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs index 64ea205231f21..d3f53f3f2efd3 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs @@ -18,7 +18,7 @@ public class TenantOperations : OperationsBase /// /// The resource type for subscription /// - public static readonly ResourceType ResourceType = "/tenants"; // placeholder pending on the outcome of ADO #5199 + public static readonly ResourceType ResourceType = ResourceType.RootResourceType; /// /// Initializes a new instance of the class. @@ -27,7 +27,7 @@ public class TenantOperations : OperationsBase /// A credential used to authenticate to an Azure Service. /// The base URI of the service. internal TenantOperations(AzureResourceManagerClientOptions options, TokenCredential credential, Uri baseUri) - : base(new ClientContext(options, credential, baseUri), "/tenants") + : base(new ClientContext(options, credential, baseUri), ResourceIdentifier.RootResourceIdentifier) { } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Utils/ListExtensions.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Utils/ListExtensions.cs new file mode 100644 index 0000000000000..83a474b67d388 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Utils/ListExtensions.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Text; + +namespace Azure.ResourceManager.Core +{ + internal static class ListExtensions + { + /// + /// Trims the first n elements from a list, and returns the altered list. + /// + /// The type of element in the list. + /// The list to trim. + /// The number of elements to remove from the front of the list. + /// The altered input list. + internal static List Trim(this List list, int numberToTrim) + { + if (list is null) + throw new ArgumentNullException(nameof(list)); + if (numberToTrim < 0 || numberToTrim > list.Count) + throw new ArgumentOutOfRangeException(nameof(numberToTrim)); + list.RemoveRange(0, numberToTrim); + return list; + } + } +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceTests.cs index 7da80a8261b12..73bfcbdfb4e5f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceTests.cs @@ -75,9 +75,9 @@ public async Task GetGenericsBadNameSpace() [RecordedTest] public async Task GetGenericsBadApiVersion() { - ResourceIdentifier rgid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{_rgName}"; + ResourceGroupResourceIdentifier rgid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{_rgName}"; AzureResourceManagerClientOptions options = new AzureResourceManagerClientOptions(); - options.ApiVersions.SetApiVersion(rgid.Type, "1500-10-10"); + options.ApiVersions.SetApiVersion(rgid.ResourceType, "1500-10-10"); var client = GetArmClient(options); var subOp = client.GetSubscriptionOperations(TestEnvironment.SubscriptionId); var genericResourceOperations = new GenericResourceOperations(subOp, rgid); @@ -96,7 +96,7 @@ public async Task GetGenericsBadApiVersion() [RecordedTest] public async Task GetGenericsGoodApiVersion() { - ResourceIdentifier rgid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{_rgName}"; + ResourceGroupResourceIdentifier rgid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{_rgName}"; AzureResourceManagerClientOptions options = new AzureResourceManagerClientOptions(); var client = GetArmClient(options); var subOp = client.GetSubscriptionOperations(TestEnvironment.SubscriptionId); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs index ab93a2e955259..db593a5394542 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs @@ -10,7 +10,7 @@ namespace Azure.ResourceManager.Core.Tests public class ResourceGroupOperationsTests : ResourceManagerTestBase { public ResourceGroupOperationsTests(bool isAsync) - : base(isAsync)//, RecordedTestMode.Record) + : base(isAsync) //, RecordedTestMode.Record) { } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs index 0a22285167d9f..aed0fd78d91c8 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionOperationsTests.cs @@ -21,7 +21,7 @@ public SubscriptionOperationsTests(bool isAsync) public void GetSubscriptionOperation() { var sub = Client.GetSubscriptionOperations(TestEnvironment.SubscriptionId); - Assert.AreEqual(sub.Id.Subscription, TestEnvironment.SubscriptionId); + Assert.AreEqual(sub.Id.SubscriptionId, TestEnvironment.SubscriptionId); } [TestCase(null)] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json index 106713de81c97..081e881e4e214 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Microsoft Windows 10.0.19042)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c6d72a21af7af90b649094d4c0250a58", "x-ms-return-client-request-id": "true" @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 01:37:55 GMT", + "Date": "Tue, 30 Mar 2021 00:19:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f13d465-950c-4454-ae9c-f9f6a6710a4f", + "x-ms-correlation-request-id": "3b6a9021-6c31-4fdf-8f70-a91568ecca29", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "0f13d465-950c-4454-ae9c-f9f6a6710a4f", - "x-ms-routing-request-id": "WESTUS:20210325T013755Z:0f13d465-950c-4454-ae9c-f9f6a6710a4f" + "x-ms-request-id": "3b6a9021-6c31-4fdf-8f70-a91568ecca29", + "x-ms-routing-request-id": "WESTUS:20210330T001949Z:3b6a9021-6c31-4fdf-8f70-a91568ecca29" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -43,6 +43,156 @@ "spendingLimit": "Off" } } + }, + { + "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c304bd1fd819d829c1e23986542e2a45", + "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": "Tue, 30 Mar 2021 00:19:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ed9c0813-e4b0-4b4d-94d4-d5f2e0c0fef2", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "ed9c0813-e4b0-4b4d-94d4-d5f2e0c0fef2", + "x-ms-routing-request-id": "WESTUS:20210330T001949Z:ed9c0813-e4b0-4b4d-94d4-d5f2e0c0fef2" + }, + "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?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-ec53382ae15d2347bf87c28ba7225450-5230a5e56738dd40-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": "6b45aa1bb79428db25fc8df27c72edbd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "444", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 30 Mar 2021 00:19:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7ad3e77b-edaa-447f-a4ed-3f4bd69f95b5", + "x-ms-ratelimit-remaining-tenant-reads": "11999", + "x-ms-request-id": "7ad3e77b-edaa-447f-a4ed-3f4bd69f95b5", + "x-ms-routing-request-id": "WESTUS:20210330T001949Z:7ad3e77b-edaa-447f-a4ed-3f4bd69f95b5" + }, + "ResponseBody": { + "value": [ + { + "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" + } + } + ], + "count": { + "type": "Total", + "value": 1 + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-1fea07de1eb02f4392fe432ba0435e27-173dbe595d029948-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": "18a4ebad66a1485f01fe05987684a436", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "444", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 30 Mar 2021 00:19:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bc92a9e9-24a4-4785-b2b3-1fe8f6161de9", + "x-ms-ratelimit-remaining-tenant-reads": "11998", + "x-ms-request-id": "bc92a9e9-24a4-4785-b2b3-1fe8f6161de9", + "x-ms-routing-request-id": "WESTUS:20210330T001949Z:bc92a9e9-24a4-4785-b2b3-1fe8f6161de9" + }, + "ResponseBody": { + "value": [ + { + "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" + } + } + ], + "count": { + "type": "Total", + "value": 1 + } + } } ], "Variables": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json index e1c410be86467..35653bc5cb699 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Microsoft Windows 10.0.19042)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e96d9ac8512614d931e92300f67b3120", "x-ms-return-client-request-id": "true" @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 01:37:55 GMT", + "Date": "Tue, 30 Mar 2021 00:19:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82a352de-e947-4b24-9f8e-780d92001850", + "x-ms-correlation-request-id": "9e25a0f1-611f-4578-adb1-3014c505508a", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "82a352de-e947-4b24-9f8e-780d92001850", - "x-ms-routing-request-id": "WESTUS:20210325T013755Z:82a352de-e947-4b24-9f8e-780d92001850" + "x-ms-request-id": "9e25a0f1-611f-4578-adb1-3014c505508a", + "x-ms-routing-request-id": "WESTUS:20210330T001949Z:9e25a0f1-611f-4578-adb1-3014c505508a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -43,6 +43,156 @@ "spendingLimit": "Off" } } + }, + { + "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e09d8a5201e54fd1d4c2015378af5276", + "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": "Tue, 30 Mar 2021 00:19:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "aead5cf5-fd3d-47be-8202-ab24f71e9954", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "aead5cf5-fd3d-47be-8202-ab24f71e9954", + "x-ms-routing-request-id": "WESTUS:20210330T001949Z:aead5cf5-fd3d-47be-8202-ab24f71e9954" + }, + "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?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-3d98729b51e88043b28d2ce5a82ad4bd-36ce12cee716f84b-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": "db6e8ace8f093a15c6ceb8a339234783", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "444", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 30 Mar 2021 00:19:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7f42a7a3-2eee-410b-a5dd-c141d5a555a3", + "x-ms-ratelimit-remaining-tenant-reads": "11999", + "x-ms-request-id": "7f42a7a3-2eee-410b-a5dd-c141d5a555a3", + "x-ms-routing-request-id": "WESTUS:20210330T001949Z:7f42a7a3-2eee-410b-a5dd-c141d5a555a3" + }, + "ResponseBody": { + "value": [ + { + "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" + } + } + ], + "count": { + "type": "Total", + "value": 1 + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-c8ffac74b48cd04f92ea7d67e358982f-7ac3f05484e4744b-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": "c73313e84b9ec69dc81e156350869c82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "444", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 30 Mar 2021 00:19:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a47f5f67-a9ab-4d06-88f4-0522f72c3e07", + "x-ms-ratelimit-remaining-tenant-reads": "11998", + "x-ms-request-id": "a47f5f67-a9ab-4d06-88f4-0522f72c3e07", + "x-ms-routing-request-id": "WESTUS:20210330T001949Z:a47f5f67-a9ab-4d06-88f4-0522f72c3e07" + }, + "ResponseBody": { + "value": [ + { + "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" + } + } + ], + "count": { + "type": "Total", + "value": 1 + } + } } ], "Variables": { 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 8e523b3a54789..365425040a917 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json @@ -1,328 +1,332 @@ { - "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.19042 )", - "x-ms-client-request-id": "32314624bfbe8662a7fea2c55ef4175d", - "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": "Thu, 25 Mar 2021 02:59:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1159d8f4-749c-431b-b202-61868be8ca0b", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "1159d8f4-749c-431b-b202-61868be8ca0b", - "x-ms-routing-request-id": "WESTUS:20210325T025905Z:1159d8f4-749c-431b-b202-61868be8ca0b" - }, - "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/testRg-6350?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "4d506cbd48c3a8c934b1e57276165c60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "230", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 02:59:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c5e17c6-1428-4b87-a773-a2b903f45c12", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "6c5e17c6-1428-4b87-a773-a2b903f45c12", - "x-ms-routing-request-id": "WESTUS:20210325T025907Z:6c5e17c6-1428-4b87-a773-a2b903f45c12" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", - "name": "testRg-6350", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6091?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "997a583a7a13a661eb9ff26126efcbab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "230", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 02:59:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6c7a253-568b-467e-803c-57d92c6aeb99", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "b6c7a253-568b-467e-803c-57d92c6aeb99", - "x-ms-routing-request-id": "WESTUS:20210325T025907Z:b6c7a253-568b-467e-803c-57d92c6aeb99" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", - "name": "testRg-6091", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-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.19042 )", - "x-ms-client-request-id": "db5e9666609168fe8a8a0e7c1330e845", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4165", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 02:59:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b4600a7-a5c4-4480-8b84-c2b61a4483a2", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "3b4600a7-a5c4-4480-8b84-c2b61a4483a2", - "x-ms-routing-request-id": "WESTUS:20210325T025907Z:3b4600a7-a5c4-4480-8b84-c2b61a4483a2" - }, - "ResponseBody": { - "value": [ - { - "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": "westus2", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-116311-rg", - "name": "bqauntump-116311-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-13946771-rg", - "name": "bqauntump-13946771-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-13981971-rg", - "name": "bqauntump-13981971-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14073771-rg", - "name": "bqauntump-14073771-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14180111-rg", - "name": "bqauntump-14180111-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + "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.19042 )", + "x-ms-client-request-id": "32314624bfbe8662a7fea2c55ef4175d", + "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, 10 Mar 2021 06:25:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0ecf0ca7-e60b-40ab-a957-e628559bfefd", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "0ecf0ca7-e60b-40ab-a957-e628559bfefd", + "x-ms-routing-request-id": "WESTUS2:20210310T062504Z:0ecf0ca7-e60b-40ab-a957-e628559bfefd" + }, + "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" + } } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14231821-rg", - "name": "bqauntump-14231821-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6350?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-b2b6e8e2eaace845813249360a910e74-07d30f4b16990549-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4d506cbd48c3a8c934b1e57276165c60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "62074c1f-e848-4b4c-a717-1158f11dbdda", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "62074c1f-e848-4b4c-a717-1158f11dbdda", + "x-ms-routing-request-id": "WESTUS2:20210310T062505Z:62074c1f-e848-4b4c-a717-1158f11dbdda" + }, + "ResponseBody": { + "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/bqauntump-14357451-rg", - "name": "bqauntump-14357451-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6091?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-49a3327804017b4c90519e478041799f-92a50af83b091047-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "997a583a7a13a661eb9ff26126efcbab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "37653f5a-92ed-468d-807a-b7bca0bf0b29", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "37653f5a-92ed-468d-807a-b7bca0bf0b29", + "x-ms-routing-request-id": "WESTUS2:20210310T062506Z:37653f5a-92ed-468d-807a-b7bca0bf0b29" + }, + "ResponseBody": { + "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/bqauntump-14401091-rg", - "name": "bqauntump-14401091-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-a28128415086dc429e2de05ff896de98-91079d230d1d6a4b-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "db5e9666609168fe8a8a0e7c1330e845", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "3978", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4c75bb25-9302-4b8a-9242-9c943b69b61c", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "4c75bb25-9302-4b8a-9242-9c943b69b61c", + "x-ms-routing-request-id": "WESTUS2:20210310T062506Z:4c75bb25-9302-4b8a-9242-9c943b69b61c" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", + "name": "NetworkWatcherRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9714", + "name": "testRg-9714", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-4091", + "name": "testRg-4091", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-3536", + "name": "testRg-3536", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7291", + "name": "testRg-7291", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5007", + "name": "testRg-5007", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-557", + "name": "testRg-557", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7976", + "name": "testRg-7976", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8051", + "name": "testRg-8051", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9131", + "name": "testRg-9131", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5858", + "name": "testRg-5858", + "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/AutoRestResources2", + "name": "AutoRestResources2", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", + "name": "Default-Storage-EastAsia", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastasia", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", + "name": "Default-Storage-EastUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", + "name": "Default-Storage-WestUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + } + ] } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14437221-rg", - "name": "bqauntump-14437221-rg", - "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/AutoRestResources2", - "name": "AutoRestResources2", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", - "name": "Default-Storage-EastAsia", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastasia", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", - "name": "Default-Storage-EastUS", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", - "name": "Default-Storage-WestUS", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus", - "properties": { - "provisioningState": "Succeeded" - } - } - ] - } + } + ], + "Variables": { + "RandomSeed": "1884863518", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } - ], - "Variables": { - "RandomSeed": "1884863518", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file +} 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 bb9b000b79832..41f430105eb63 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 @@ -1,358 +1,352 @@ { - "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.19042 )", - "x-ms-client-request-id": "fc4e15b5fbbb5705603d2b33fb5b2337", - "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": "Thu, 25 Mar 2021 02:59:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8dfe1ff-597e-4b90-9817-1774fe2acbb1", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "f8dfe1ff-597e-4b90-9817-1774fe2acbb1", - "x-ms-routing-request-id": "WESTUS:20210325T025909Z:f8dfe1ff-597e-4b90-9817-1774fe2acbb1" - }, - "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/testRg-9522?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "9c1867024544a4ce2fd808a6a8f416fa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "230", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 02:59:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79fa152a-7a5c-4e38-b020-170968b080aa", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "79fa152a-7a5c-4e38-b020-170968b080aa", - "x-ms-routing-request-id": "WESTUS:20210325T025910Z:79fa152a-7a5c-4e38-b020-170968b080aa" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", - "name": "testRg-9522", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-2283?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "f77522cdaf69f33f8f0ffba77bde90a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "230", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 02:59:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4dc97e20-13c2-4f97-915a-d814bf6e4245", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "4dc97e20-13c2-4f97-915a-d814bf6e4245", - "x-ms-routing-request-id": "WESTUS:20210325T025911Z:4dc97e20-13c2-4f97-915a-d814bf6e4245" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", - "name": "testRg-2283", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-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.19042 )", - "x-ms-client-request-id": "1e6fd11270f580cf588b22fcb1b74814", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4876", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 25 Mar 2021 02:59:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64866ac5-af9f-45d4-a178-888e511c1c8a", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "64866ac5-af9f-45d4-a178-888e511c1c8a", - "x-ms-routing-request-id": "WESTUS:20210325T025911Z:64866ac5-af9f-45d4-a178-888e511c1c8a" - }, - "ResponseBody": { - "value": [ - { - "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": "westus2", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-116311-rg", - "name": "bqauntump-116311-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-13946771-rg", - "name": "bqauntump-13946771-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-13981971-rg", - "name": "bqauntump-13981971-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14073771-rg", - "name": "bqauntump-14073771-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14180111-rg", - "name": "bqauntump-14180111-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14231821-rg", - "name": "bqauntump-14231821-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + "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.19042 )", + "x-ms-client-request-id": "fc4e15b5fbbb5705603d2b33fb5b2337", + "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, 10 Mar 2021 06:25:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3f80fd14-dd45-4451-84ed-812c18b27e15", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "3f80fd14-dd45-4451-84ed-812c18b27e15", + "x-ms-routing-request-id": "WESTUS2:20210310T062529Z:3f80fd14-dd45-4451-84ed-812c18b27e15" + }, + "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" + } } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14357451-rg", - "name": "bqauntump-14357451-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-9522?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-805fdc079074e34a93a3733a6095241e-3b3894355803df41-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9c1867024544a4ce2fd808a6a8f416fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e1a483e9-8e20-47d3-804a-e1242604cd8d", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "e1a483e9-8e20-47d3-804a-e1242604cd8d", + "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:e1a483e9-8e20-47d3-804a-e1242604cd8d" + }, + "ResponseBody": { + "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/bqauntump-14401091-rg", - "name": "bqauntump-14401091-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-2283?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-70155e612b4cbb45a86b4e1bf9311095-b588d522b5823c47-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f77522cdaf69f33f8f0ffba77bde90a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b6c3013d-c726-43b6-8654-c37ae885405c", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "b6c3013d-c726-43b6-8654-c37ae885405c", + "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:b6c3013d-c726-43b6-8654-c37ae885405c" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", + "name": "testRg-2283", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14437221-rg", - "name": "bqauntump-14437221-rg", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-b02852abdb9797459ffe52b9697415a8-27aa7a1d092f0248-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1e6fd11270f580cf588b22fcb1b74814", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "4438", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 10 Mar 2021 06:25:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5ca1d1e5-e0b0-4411-9066-fa927b2e6000", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "5ca1d1e5-e0b0-4411-9066-fa927b2e6000", + "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:5ca1d1e5-e0b0-4411-9066-fa927b2e6000" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", + "name": "NetworkWatcherRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9714", + "name": "testRg-9714", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-4091", + "name": "testRg-4091", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-3536", + "name": "testRg-3536", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7291", + "name": "testRg-7291", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5007", + "name": "testRg-5007", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-557", + "name": "testRg-557", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7976", + "name": "testRg-7976", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8051", + "name": "testRg-8051", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9131", + "name": "testRg-9131", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5858", + "name": "testRg-5858", + "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": "Deleting" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", + "name": "testRg-6091", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Deleting" + } + }, + { + "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/testRg-2283", + "name": "testRg-2283", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2", + "name": "AutoRestResources2", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", + "name": "Default-Storage-EastAsia", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastasia", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", + "name": "Default-Storage-EastUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", + "name": "Default-Storage-WestUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "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": "Deleting" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", - "name": "testRg-6091", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Deleting" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/bqauntump-14618451-rg", - "name": "bqauntump-14618451-rg", - "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/testRg-2283", - "name": "testRg-2283", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2", - "name": "AutoRestResources2", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", - "name": "Default-Storage-EastAsia", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastasia", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", - "name": "Default-Storage-EastUS", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", - "name": "Default-Storage-WestUS", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus", - "properties": { - "provisioningState": "Succeeded" - } - } - ] - } + } + ], + "Variables": { + "RandomSeed": "1410275346", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } - ], - "Variables": { - "RandomSeed": "1410275346", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file +} diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/GetSubscriptionOperation().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/GetSubscriptionOperation().json index a1cb2c8b20c4c..811e04db2f942 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/GetSubscriptionOperation().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/GetSubscriptionOperation().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 09 Mar 2021 02:31:15 GMT", + "Date": "Tue, 30 Mar 2021 01:04:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc02f49a-ba4a-4b0e-9651-f3d61a730f10", + "x-ms-correlation-request-id": "002bbdb4-58cc-4b30-973f-248cb3f9f24e", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "cc02f49a-ba4a-4b0e-9651-f3d61a730f10", - "x-ms-routing-request-id": "WESTUS2:20210309T023116Z:cc02f49a-ba4a-4b0e-9651-f3d61a730f10" + "x-ms-request-id": "002bbdb4-58cc-4b30-973f-248cb3f9f24e", + "x-ms-routing-request-id": "WESTUS:20210330T010421Z:002bbdb4-58cc-4b30-973f-248cb3f9f24e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te#st%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te#st%).json index 08ac820b3a039..23c0fb258d645 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te#st%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te#st%).json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ea56958505acc238fe794a2d27a85686", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:17:24 GMT", + "Date": "Tue, 30 Mar 2021 00:19:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75ef0dd8-95dd-4f40-bc68-e8bee22cc340", + "x-ms-correlation-request-id": "ba5faa24-9f58-4af2-88e0-0ede0615aa31", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "75ef0dd8-95dd-4f40-bc68-e8bee22cc340", - "x-ms-routing-request-id": "WESTUS2:20210304T221724Z:75ef0dd8-95dd-4f40-bc68-e8bee22cc340" + "x-ms-request-id": "ba5faa24-9f58-4af2-88e0-0ede0615aa31", + "x-ms-routing-request-id": "WESTUS:20210330T001950Z:ba5faa24-9f58-4af2-88e0-0ede0615aa31" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te$st%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te$st%).json index ccecf04ef1a86..2ba16928296ed 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te$st%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te$st%).json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "199b33c579d6aefa87c93c3861af4d61", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:17:22 GMT", + "Date": "Tue, 30 Mar 2021 00:19:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0eb698a6-4e88-4514-9e20-632acafec09b", + "x-ms-correlation-request-id": "bde297b8-e72e-43b0-b446-6c62ca17cf96", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "0eb698a6-4e88-4514-9e20-632acafec09b", - "x-ms-routing-request-id": "WESTUS2:20210304T221722Z:0eb698a6-4e88-4514-9e20-632acafec09b" + "x-ms-request-id": "bde297b8-e72e-43b0-b446-6c62ca17cf96", + "x-ms-routing-request-id": "WESTUS:20210330T001950Z:bde297b8-e72e-43b0-b446-6c62ca17cf96" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te%st%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te%st%).json index 66ef2e58955ef..acbff1b581aac 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te%st%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te%st%).json @@ -6,7 +6,11 @@ "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-0c66babf902b0b4793218be1b345b517-09a0b6346896c74e-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": "57c74b10d17b50f15940ea0884f306c4", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:17:20 GMT", + "Date": "Tue, 30 Mar 2021 00:19:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "674daaeb-3747-43c0-8ba6-97b40fe56d6e", + "x-ms-correlation-request-id": "60c7bc82-2739-4a79-a312-9768f7e61ddb", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "674daaeb-3747-43c0-8ba6-97b40fe56d6e", - "x-ms-routing-request-id": "WESTUS2:20210304T221720Z:674daaeb-3747-43c0-8ba6-97b40fe56d6e" + "x-ms-request-id": "60c7bc82-2739-4a79-a312-9768f7e61ddb", + "x-ms-routing-request-id": "WESTUS:20210330T001949Z:60c7bc82-2739-4a79-a312-9768f7e61ddb" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%test %).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%test %).json index 7b4d9cccfd2b1..6c1cc7b0d2acc 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%test %).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%test %).json @@ -6,7 +6,11 @@ "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-828ff47e59ab71439b6a1c9ad7b14585-108d8f983a043249-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": "d1c1d8a6a8e495fbc65f419f015bff71", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:17:21 GMT", + "Date": "Tue, 30 Mar 2021 00:19:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b5982ba-4146-4128-a54d-d784eb07fb01", + "x-ms-correlation-request-id": "f684b0b3-1555-4da1-aabb-7e3a80cf7d82", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "6b5982ba-4146-4128-a54d-d784eb07fb01", - "x-ms-routing-request-id": "WESTUS2:20210304T221721Z:6b5982ba-4146-4128-a54d-d784eb07fb01" + "x-ms-request-id": "f684b0b3-1555-4da1-aabb-7e3a80cf7d82", + "x-ms-routing-request-id": "WESTUS:20210330T001949Z:f684b0b3-1555-4da1-aabb-7e3a80cf7d82" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(%%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(%%).json index ba395ccf7ce82..9bf7e742418c9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(%%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(%%).json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "28d7b8ad1a54ce0652549b6a5f99d225", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:17:25 GMT", + "Date": "Tue, 30 Mar 2021 00:19:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8261cfbe-42a0-495e-9e92-2979874f456c", + "x-ms-correlation-request-id": "5e320bf5-a855-4e50-afc3-44b4037631d3", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "8261cfbe-42a0-495e-9e92-2979874f456c", - "x-ms-routing-request-id": "WESTUS2:20210304T221725Z:8261cfbe-42a0-495e-9e92-2979874f456c" + "x-ms-request-id": "5e320bf5-a855-4e50-afc3-44b4037631d3", + "x-ms-routing-request-id": "WESTUS:20210330T001950Z:5e320bf5-a855-4e50-afc3-44b4037631d3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(null).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(null).json index f5487a5c019ef..5105320bf8de5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(null).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(null).json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "01e6d8525cf66fa8cd559809dd13cae0", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:17:25 GMT", + "Date": "Tue, 30 Mar 2021 00:19:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50a53369-9edb-463d-adf2-d483984dcd1b", + "x-ms-correlation-request-id": "f12bf906-de22-4dcf-a581-d5d4f0df0060", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "50a53369-9edb-463d-adf2-d483984dcd1b", - "x-ms-routing-request-id": "WESTUS2:20210304T221725Z:50a53369-9edb-463d-adf2-d483984dcd1b" + "x-ms-request-id": "f12bf906-de22-4dcf-a581-d5d4f0df0060", + "x-ms-routing-request-id": "WESTUS:20210330T001950Z:f12bf906-de22-4dcf-a581-d5d4f0df0060" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(89).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(89).json index 4ceb305219c6d..9f964b922d61d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(89).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(89).json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c58d547f528241f50c1a1ccd63a62005", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:17:26 GMT", + "Date": "Tue, 30 Mar 2021 00:19:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c27edb50-0f9c-46aa-b5b5-61b96ef497c8", + "x-ms-correlation-request-id": "4dee6cb8-f56f-416a-aa37-c25e38ff26f5", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "c27edb50-0f9c-46aa-b5b5-61b96ef497c8", - "x-ms-routing-request-id": "WESTUS2:20210304T221726Z:c27edb50-0f9c-46aa-b5b5-61b96ef497c8" + "x-ms-request-id": "4dee6cb8-f56f-416a-aa37-c25e38ff26f5", + "x-ms-routing-request-id": "WESTUS:20210330T001951Z:4dee6cb8-f56f-416a-aa37-c25e38ff26f5" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(90).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(90).json index 70074e4a670a1..c11065a3d5cec 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(90).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(90).json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5028d6f19b001f95ea1d0c6bc5f2da9a", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:17:27 GMT", + "Date": "Tue, 30 Mar 2021 00:19:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c93adb6b-c720-4e7f-8ee0-d992a5d7981c", + "x-ms-correlation-request-id": "355cb43c-1e5e-4fdb-a36d-43483ec12da5", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "c93adb6b-c720-4e7f-8ee0-d992a5d7981c", - "x-ms-routing-request-id": "WESTUS2:20210304T221727Z:c93adb6b-c720-4e7f-8ee0-d992a5d7981c" + "x-ms-request-id": "355cb43c-1e5e-4fdb-a36d-43483ec12da5", + "x-ms-routing-request-id": "WESTUS:20210330T001951Z:355cb43c-1e5e-4fdb-a36d-43483ec12da5" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsOutOfRangeArgException(91).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsOutOfRangeArgException(91).json index 0c8c75c6394d5..df736d00e9eda 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsOutOfRangeArgException(91).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsOutOfRangeArgException(91).json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ef9767a56046f5b135c223c111880a97", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:17:28 GMT", + "Date": "Tue, 30 Mar 2021 00:19:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94f13e29-0a3c-4b98-8cba-76bd47b43080", + "x-ms-correlation-request-id": "696301a0-ff64-4fdb-b4b5-4c1a26487a37", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "94f13e29-0a3c-4b98-8cba-76bd47b43080", - "x-ms-routing-request-id": "WESTUS2:20210304T221728Z:94f13e29-0a3c-4b98-8cba-76bd47b43080" + "x-ms-request-id": "696301a0-ff64-4fdb-b4b5-4c1a26487a37", + "x-ms-routing-request-id": "WESTUS:20210330T001951Z:696301a0-ff64-4fdb-b4b5-4c1a26487a37" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%t%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%t%).json index 4a4d1b1984bc2..fe7e308350e1e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%t%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%t%).json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c667b5ea94692fdf8bcc822d1258f39a", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:17:30 GMT", + "Date": "Tue, 30 Mar 2021 00:19:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f9f1d29-ee87-4fb0-a641-feab80166ffe", + "x-ms-correlation-request-id": "1cb81c74-b999-4557-8403-6453b46a4a66", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "2f9f1d29-ee87-4fb0-a641-feab80166ffe", - "x-ms-routing-request-id": "WESTUS2:20210304T221730Z:2f9f1d29-ee87-4fb0-a641-feab80166ffe" + "x-ms-request-id": "1cb81c74-b999-4557-8403-6453b46a4a66", + "x-ms-routing-request-id": "WESTUS:20210330T001952Z:1cb81c74-b999-4557-8403-6453b46a4a66" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te%).json index 87305eeb6b85d..b9570824613d0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te%).json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f4b2532a06941ba2141073373e5eea74", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:17:29 GMT", + "Date": "Tue, 30 Mar 2021 00:19:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b3a3b86-66dc-4ea8-884d-7671f02ecf29", + "x-ms-correlation-request-id": "f56ad179-5449-4b58-9adb-a0b93644e035", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "8b3a3b86-66dc-4ea8-884d-7671f02ecf29", - "x-ms-routing-request-id": "WESTUS2:20210304T221730Z:8b3a3b86-66dc-4ea8-884d-7671f02ecf29" + "x-ms-request-id": "f56ad179-5449-4b58-9adb-a0b93644e035", + "x-ms-routing-request-id": "WESTUS:20210330T001952Z:f56ad179-5449-4b58-9adb-a0b93644e035" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te.st%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te.st%).json index 69fadb612ceb0..ad27a80c213fe 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te.st%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te.st%).json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "57a27a700719b782466a84333b7e9d64", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 04 Mar 2021 22:17:29 GMT", + "Date": "Tue, 30 Mar 2021 00:19:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11cbb239-6d93-466f-b34e-b58a02e5b0ba", + "x-ms-correlation-request-id": "8ab9f02d-4082-42fe-b598-a6996786d1a1", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "11cbb239-6d93-466f-b34e-b58a02e5b0ba", - "x-ms-routing-request-id": "WESTUS2:20210304T221729Z:11cbb239-6d93-466f-b34e-b58a02e5b0ba" + "x-ms-request-id": "8ab9f02d-4082-42fe-b598-a6996786d1a1", + "x-ms-routing-request-id": "WESTUS:20210330T001951Z:8ab9f02d-4082-42fe-b598-a6996786d1a1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/IdentityTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/IdentityTests.cs index 7974378fe6183..a725b9130f753 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/IdentityTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/IdentityTests.cs @@ -27,7 +27,7 @@ public void CheckNoParamConstructor() [TestCase (null, true)] public void CheckUserTrueConstructor(string resourceID, bool invalidParameter) { - var dict1 = new Dictionary(); + var dict1 = new Dictionary(); if (invalidParameter) { @@ -55,7 +55,7 @@ public void CheckUserTrueConstructor(string resourceID, bool invalidParameter) [TestCase(null, true)] public void CheckUserFalseConstructor(string resourceID, bool invalidParameter) { - var dict1 = new Dictionary(); + var dict1 = new Dictionary(); if(invalidParameter) { @@ -97,8 +97,8 @@ public void EqualsNullOtherTest() [TestCase] public void EqualsReferenceTestTrue() { - var dict1 = new Dictionary(); - dict1["/subscriptions/6b085460-5vbg-477e-ba44-1035046e9101/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(Guid.Empty, Guid.Empty); + var dict1 = new Dictionary(); + dict1["/subscriptions/1ab27dfb-d2ee-4283-b1e3-550deaebb8e4/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(Guid.Empty, Guid.Empty); var system = new SystemAssignedIdentity(Guid.Empty, Guid.Empty); ResourceIdentity identity = new ResourceIdentity(system, dict1); ResourceIdentity identity1 = identity; @@ -108,12 +108,12 @@ public void EqualsReferenceTestTrue() [TestCase] public void EqualsTestTrue() { - var dict1 = new Dictionary(); - dict1["/subscriptions/6b085460-5f21-477e-ba44-1035046e9000/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(Guid.Empty, Guid.Empty); + var dict1 = new Dictionary(); + dict1["/subscriptions/1ab27dfb-d2ee-4283-b1e3-550deaebb8e4/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(Guid.Empty, Guid.Empty); var system = new SystemAssignedIdentity(Guid.Empty, Guid.Empty); ResourceIdentity identity = new ResourceIdentity(system, dict1); - var dict2 = new Dictionary(); - dict2["/subscriptions/6b085460-5f21-477e-ba44-1035046e9000/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(Guid.Empty, Guid.Empty); + var dict2 = new Dictionary(); + dict2["/subscriptions/1ab27dfb-d2ee-4283-b1e3-550deaebb8e4/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(Guid.Empty, Guid.Empty); var system2 = new SystemAssignedIdentity(Guid.Empty, Guid.Empty); ResourceIdentity identity1 = new ResourceIdentity(system2, dict2); Assert.IsTrue(identity.Equals(identity1)); @@ -122,12 +122,12 @@ public void EqualsTestTrue() [TestCase] public void EqualsTestFalse() { - var dict1 = new Dictionary(); - dict1["/subscriptions/6b085460-5f21-477e-ba44-1035nbhs9101/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(Guid.Empty, Guid.Empty); + var dict1 = new Dictionary(); + dict1["/subscriptions/1ab27dfb-d2ee-4283-b1e3-550deaebb8e4/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(Guid.Empty, Guid.Empty); var system = new SystemAssignedIdentity(Guid.Empty, Guid.Empty); ResourceIdentity identity = new ResourceIdentity(system, dict1); - var dict2 = new Dictionary(); - dict2["/subscriptions/6b08dfsg-5f21-475e-ba44-1035046e9101/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(Guid.Empty, Guid.Empty); + var dict2 = new Dictionary(); + dict2["/subscriptions/d96407f5-db8f-4325-b582-84ad21310bd8/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(Guid.Empty, Guid.Empty); var system2 = new SystemAssignedIdentity(Guid.Empty, Guid.Empty); ResourceIdentity identity1 = new ResourceIdentity(system2, dict2); Assert.IsFalse(identity.Equals(identity1)); @@ -136,12 +136,12 @@ public void EqualsTestFalse() [TestCase] public void EqualsTestFalseSameKey() { - var dict1 = new Dictionary(); - dict1["/subscriptions/6b085460-5f21-477e-ba44-10ancd6e9101/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(Guid.Empty, Guid.Empty); + var dict1 = new Dictionary(); + dict1["/subscriptions/1ab27dfb-d2ee-4283-b1e3-550deaebb8e4/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(Guid.Empty, Guid.Empty); var system = new SystemAssignedIdentity(Guid.Empty, Guid.Empty); ResourceIdentity identity = new ResourceIdentity(system, dict1); - var dict2 = new Dictionary(); - dict2["/subscriptions/6b085460-5f21-477e-ba44-10ancd6e9101/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(new Guid("72f988bf-86f1-41af-91ab-2d7cd011db47"), Guid.Empty); + var dict2 = new Dictionary(); + dict2["/subscriptions/1ab27dfb-d2ee-4283-b1e3-550deaebb8e4/resourceGroups/tester/providers/Microsoft.Web/sites/autotest"] = new UserAssignedIdentity(new Guid("72f988bf-86f1-41af-91ab-2d7cd011db47"), Guid.Empty); var system2 = new SystemAssignedIdentity(Guid.Empty, Guid.Empty); ResourceIdentity identity1 = new ResourceIdentity(system2, dict2); Assert.IsFalse(identity.Equals(identity1)); @@ -188,7 +188,7 @@ public void TestDeserializerInvalidType() var identityJsonProperty = DeserializerHelper("InvalidType.json"); ResourceIdentity back = ResourceIdentity.Deserialize(identityJsonProperty.Value); var user = back.UserAssignedIdentities; - Assert.AreEqual("/subscriptions/db1ab6f0-4769-tgds-930e-01e2ef9c123c/resourceGroups/tester/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity", user.Keys.First().ToString()); + Assert.AreEqual("/subscriptions/d96407f5-db8f-4325-b582-84ad21310bd8/resourceGroups/tester/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity", user.Keys.First().ToString()); Assert.AreEqual("9a2eaa6a-b49c-4a63-afb5-3b72e3e65422", user.Values.First().ClientId.ToString()); Assert.AreEqual("77563a98-c9d9-4f7b-a7af-592d21fa2153", user.Values.First().PrincipalId.ToString()); } @@ -243,10 +243,10 @@ public void TestDeserializerValidSystemAndMultUser() Assert.IsTrue("22fddec1-8b9f-49dc-bd72-ddaf8f215570".Equals(back.SystemAssignedIdentity.PrincipalId.ToString())); Assert.IsTrue("72f988bf-86f1-41af-91ab-2d7cd011db40".Equals(back.SystemAssignedIdentity.TenantId.ToString())); var user = back.UserAssignedIdentities; - Assert.AreEqual("/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123z/resourceGroups/tester/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity0", user.Keys.First().ToString()); + Assert.AreEqual("/subscriptions/1ab27dfb-d2ee-4283-b1e3-550deaebb8e4/resourceGroups/tester/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity0", user.Keys.First().ToString()); Assert.AreEqual("9a2eaa6a-b49c-4c63-afb5-3b72e3e65422", user.Values.First().ClientId.ToString()); Assert.AreEqual("77563a98-c9d9-477b-a7af-592d21fa2153", user.Values.First().PrincipalId.ToString()); - Assert.AreEqual("/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9cfrgh/resourceGroups/tester/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity1", user.Keys.ElementAt(1).ToString()); + Assert.AreEqual("/subscriptions/d96407f5-db8f-4325-b582-84ad21310bd8/resourceGroups/tester/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity1", user.Keys.ElementAt(1).ToString()); Assert.AreEqual("9a2eaa6a-b49c-4c63-afb5-3b72e3c65420", user.Values.ElementAt(1).ClientId.ToString()); Assert.AreEqual("77563a98-c9d9-477b-a7af-592d2bfa2150", user.Values.ElementAt(1).PrincipalId.ToString()); } @@ -278,7 +278,7 @@ public void TestSerializerValidSystemAndUser() { SystemAssignedIdentity systemAssignedIdentity = new SystemAssignedIdentity(new Guid("72f988bf-86f1-41af-91ab-2d7cd011db47"), new Guid("de29bab1-49e1-4705-819b-4dfddceaaa98")); UserAssignedIdentity userAssignedIdentity = new UserAssignedIdentity(new Guid("72f988bf-86f1-41af-91ab-2d7cd011db47"), new Guid("de29bab1-49e1-4705-819b-4dfddceaaa98")); - var dict1 = new Dictionary(); + var dict1 = new Dictionary(); dict1["/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/nbhatia_test/providers/Microsoft.Web/sites/autoreport"] = userAssignedIdentity; ResourceIdentity identity = new ResourceIdentity(systemAssignedIdentity, dict1); string system = "\"principalId\":\"de29bab1-49e1-4705-819b-4dfddceaaa98\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\""; @@ -309,7 +309,7 @@ public void TestSerializerValidSystemAndMultUser() SystemAssignedIdentity systemAssignedIdentity = new SystemAssignedIdentity(new Guid("72f988bf-86f1-41af-91ab-2d7cd011db47"), new Guid("de29bab1-49e1-4705-819b-4dfddceaaa98")); UserAssignedIdentity userAssignedIdentity1 = new UserAssignedIdentity(new Guid("72f988bf-86f1-41af-91ab-2d7cd011db47"), new Guid("de29bab1-49e1-4705-819b-4dfddceaaa98")); UserAssignedIdentity userAssignedIdentity2 = new UserAssignedIdentity(new Guid("72f988bf-86f1-41af-91ab-2d7cd011cb47"), new Guid("de29bab1-49e1-4705-819b-4dfddcebaa98")); - var dict1 = new Dictionary(); + var dict1 = new Dictionary(); dict1["/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/nbhatia_test/providers/Microsoft.Web/sites/autoreport1"] = userAssignedIdentity1; dict1["/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/nbhatia_test/providers/Microsoft.Web/sites/autoreport2"] = userAssignedIdentity2; ResourceIdentity identity = new ResourceIdentity(systemAssignedIdentity, dict1); @@ -365,7 +365,7 @@ public void TestSerializerValidSystemOnly() public void TestSerializerValidUserEmptySystem() { UserAssignedIdentity userAssignedIdentity = new UserAssignedIdentity(new Guid("72f988bf-86f1-41af-91ab-2d7cd011db47"), new Guid("de29bab1-49e1-4705-819b-4dfddceaaa98")); - var dict1 = new Dictionary(); + var dict1 = new Dictionary(); dict1["/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/nbhatia_test/providers/Microsoft.Web/sites/autoreport"] = userAssignedIdentity; ResourceIdentity identity = new ResourceIdentity(dict1, true); string system = "\"principalId\":\"null\",\"tenantId\":\"null\""; @@ -394,7 +394,7 @@ public void TestSerializerValidUserEmptySystem() public void TestSerializerValidUserNullSystem() { UserAssignedIdentity userAssignedIdentity = new UserAssignedIdentity(new Guid("72f988bf-86f1-41af-91ab-2d7cd011db47"), new Guid("de29bab1-49e1-4705-819b-4dfddceaaa98")); - var dict1 = new Dictionary(); + var dict1 = new Dictionary(); dict1["/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/nbhatia_test/providers/Microsoft.Web/sites/autoreport"] = userAssignedIdentity; ResourceIdentity identity = new ResourceIdentity(dict1, false); string user = "{\"clientId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"de29bab1-49e1-4705-819b-4dfddceaaa98\"}"; diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/Resource/TestResource.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/Resource/TestResource.cs index 8bb221bae37e7..84393ffb3bbb8 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/Resource/TestResource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/Resource/TestResource.cs @@ -4,13 +4,13 @@ namespace Azure.ResourceManager.Core.Tests { - public class TestResource : Resource + public class TestResource : Resource where TIdentifier : TenantResourceIdentifier { public TestResource(string id) { - Id = id; + Id = ResourceIdentifier.Create(id) as TIdentifier; } - public override ResourceIdentifier Id { get; protected set; } + public override TIdentifier Id { get; protected set; } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceIdentifierTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceIdentifierTests.cs index abb6af7b7757e..ab392e77bb3a4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceIdentifierTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceIdentifierTests.cs @@ -24,8 +24,8 @@ public void Setup() public void CanParseTenant(string id) { ResourceIdentifier asIdentifier = id; - Assert.AreEqual(asIdentifier.Type.Namespace, "Microsoft.Billing"); - Assert.AreEqual(asIdentifier.Type.Type, "billingAccounts"); + Assert.AreEqual(asIdentifier.ResourceType.Namespace, "Microsoft.Billing"); + Assert.AreEqual(asIdentifier.ResourceType.Type, "billingAccounts"); Assert.AreEqual(asIdentifier.Name, "3984c6f4-2d2a-4b04-93ce-43cf4824b698%3Ae2f1492a-a492-468d-909f-bf7fe6662c01_2019-05-31"); } @@ -49,7 +49,7 @@ public void InvalidTenantID(string id) public void InvalidRPIds(string invalidID) { Assert.Throws(() => { ResourceIdentifier subject = invalidID; }); - Assert.Throws(() => { ResourceIdentifier subject = new ResourceIdentifier(invalidID); }); + Assert.Throws(() => { ResourceIdentifier subject = ResourceIdentifier.Create(invalidID); }); } [TestCase (null)] @@ -88,11 +88,11 @@ public void PublicConstructor(string resourceProviderID) { if (resourceProviderID is null) { - Assert.Throws(() => { ResourceIdentifier myResource = new ResourceIdentifier(resourceProviderID); }); + Assert.Throws(() => { ResourceIdentifier myResource = ResourceIdentifier.Create(resourceProviderID); }); } else { - ResourceIdentifier myResource = new ResourceIdentifier(resourceProviderID); + ResourceIdentifier myResource = ResourceIdentifier.Create(resourceProviderID); Assert.AreEqual(myResource.ToString(), resourceProviderID); } } @@ -103,12 +103,12 @@ public void PublicConstructor(string resourceProviderID) public void CanParseRPIds(string subscription, string resourceGroup, string provider, string type, string name) { var resourceId = $"/subscriptions/{subscription}/resourceGroups/{Uri.EscapeDataString(resourceGroup)}/providers/{provider}/{type}/{Uri.EscapeDataString(name)}"; - ResourceIdentifier subject = resourceId; + ResourceGroupResourceIdentifier subject = resourceId; Assert.AreEqual(subject.ToString(), resourceId); - Assert.AreEqual(subject.Subscription, subscription); - Assert.AreEqual(Uri.UnescapeDataString(subject.ResourceGroup), resourceGroup); - Assert.AreEqual(subject.Type.Namespace, provider); - Assert.AreEqual(subject.Type.Type, type); + Assert.AreEqual(subject.SubscriptionId, subscription); + Assert.AreEqual(Uri.UnescapeDataString(subject.ResourceGroupName), resourceGroup); + Assert.AreEqual(subject.ResourceType.Namespace, provider); + Assert.AreEqual(subject.ResourceType.Type, type); Assert.AreEqual(Uri.UnescapeDataString(subject.Name), name); } @@ -122,8 +122,8 @@ public void CanParseExtensionResourceIds(string baseId, string extensionNamespac ResourceIdentifier targetResourceId = baseId; ResourceIdentifier subject = $"{baseId}/providers/{extensionNamespace}/{extensionType}/{extensionName}"; ResourceType expectedType = $"{extensionNamespace}/{extensionType}"; - Assert.AreNotEqual(targetResourceId.Type, subject.Type); - Assert.AreEqual(expectedType, subject.Type); + Assert.AreNotEqual(targetResourceId.ResourceType, subject.ResourceType); + Assert.AreEqual(expectedType, subject.ResourceType); Assert.NotNull(subject.Parent); Assert.AreEqual(targetResourceId, subject.Parent); } @@ -132,32 +132,32 @@ public void CanParseExtensionResourceIds(string baseId, string extensionNamespac public void CanParseProxyResource(string subscription, string rg, string resourceNamespace, string resource, string type) { string id = $"/subscriptions/{subscription}/resourceGroups/{rg}/providers/{resourceNamespace}/{resource}"; - ResourceIdentifier subject = id; + ResourceGroupResourceIdentifier subject = id; Assert.AreEqual(subject.ToString(), id); - Assert.AreEqual(subject.Subscription, subscription); - Assert.AreEqual(subject.Type.Namespace, resourceNamespace); - Assert.AreEqual(subject.Type.Type, type); + Assert.AreEqual(subject.SubscriptionId, subscription); + Assert.AreEqual(subject.ResourceType.Namespace, resourceNamespace); + Assert.AreEqual(subject.ResourceType.Type, type); } [Test] public void CanParseSubscriptions() { - ResourceIdentifier subject = "/subscriptions/0c2f6471-1bf0-4dda-aec3-cb9272f09575"; + SubscriptionResourceIdentifier subject = "/subscriptions/0c2f6471-1bf0-4dda-aec3-cb9272f09575"; Assert.AreEqual(subject.ToString(), "/subscriptions/0c2f6471-1bf0-4dda-aec3-cb9272f09575"); - Assert.AreEqual(subject.Subscription, "0c2f6471-1bf0-4dda-aec3-cb9272f09575"); - Assert.AreEqual(subject.Type.Namespace, "Microsoft.Resources"); - Assert.AreEqual(subject.Type.Type, "subscriptions"); + Assert.AreEqual(subject.SubscriptionId, "0c2f6471-1bf0-4dda-aec3-cb9272f09575"); + Assert.AreEqual(subject.ResourceType.Namespace, "Microsoft.Resources"); + Assert.AreEqual(subject.ResourceType.Type, "subscriptions"); } [Test] public void CanParseResourceGroups() { - ResourceIdentifier subject = "/subscriptions/0c2f6471-1bf0-4dda-aec3-cb9272f09575/resourceGroups/myRg"; + ResourceGroupResourceIdentifier subject = "/subscriptions/0c2f6471-1bf0-4dda-aec3-cb9272f09575/resourceGroups/myRg"; Assert.AreEqual(subject.ToString(), "/subscriptions/0c2f6471-1bf0-4dda-aec3-cb9272f09575/resourceGroups/myRg"); - Assert.AreEqual(subject.Subscription, "0c2f6471-1bf0-4dda-aec3-cb9272f09575"); - Assert.AreEqual(subject.ResourceGroup, "myRg"); - Assert.AreEqual(subject.Type.Namespace, "Microsoft.Resources"); - Assert.AreEqual(subject.Type.Type, "resourceGroups"); + Assert.AreEqual(subject.SubscriptionId, "0c2f6471-1bf0-4dda-aec3-cb9272f09575"); + Assert.AreEqual(subject.ResourceGroupName, "myRg"); + Assert.AreEqual(subject.ResourceType.Namespace, "Microsoft.Resources"); + Assert.AreEqual(subject.ResourceType.Type, "subscriptions/resourceGroups"); } [TestCase("MyVnet", "MySubnet")] @@ -166,34 +166,75 @@ public void CanParseResourceGroups() public void CanParseChildResources(string parentName, string name) { var resourceId = $"/subscriptions/0c2f6471-1bf0-4dda-aec3-cb9272f09575/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/{Uri.EscapeDataString(parentName)}/subnets/{Uri.EscapeDataString(name)}"; - ResourceIdentifier subject = resourceId; + ResourceGroupResourceIdentifier subject = resourceId; Assert.AreEqual(subject.ToString(), resourceId); - Assert.AreEqual(subject.Subscription, "0c2f6471-1bf0-4dda-aec3-cb9272f09575"); - Assert.AreEqual(Uri.UnescapeDataString(subject.ResourceGroup), "myRg"); - Assert.AreEqual(subject.Type.Namespace, "Microsoft.Network"); - Assert.AreEqual(subject.Type.Parent.Type, "virtualNetworks"); - Assert.AreEqual(subject.Type.Type, "virtualNetworks/subnets"); + Assert.AreEqual(subject.SubscriptionId, "0c2f6471-1bf0-4dda-aec3-cb9272f09575"); + Assert.AreEqual(Uri.UnescapeDataString(subject.ResourceGroupName), "myRg"); + Assert.AreEqual(subject.ResourceType.Namespace, "Microsoft.Network"); + Assert.AreEqual(subject.Parent.ResourceType.Type, "virtualNetworks"); + Assert.AreEqual(subject.ResourceType.Type, "virtualNetworks/subnets"); Assert.AreEqual(Uri.UnescapeDataString(subject.Name), name); // check parent type parsing - var parentResource = $"/subscriptions/0c2f6471-1bf0-4dda-aec3-cb9272f09575/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/{Uri.EscapeDataString(parentName)}"; + ResourceGroupResourceIdentifier parentResource = $"/subscriptions/0c2f6471-1bf0-4dda-aec3-cb9272f09575/resourceGroups/myRg/providers/Microsoft.Network/virtualNetworks/{Uri.EscapeDataString(parentName)}"; Assert.AreEqual(subject.Parent, parentResource); - Assert.AreEqual(subject.Parent.ToString(), parentResource); - Assert.AreEqual(subject.Parent.Subscription, "0c2f6471-1bf0-4dda-aec3-cb9272f09575"); - Assert.AreEqual(Uri.UnescapeDataString(subject.Parent.ResourceGroup), "myRg"); - Assert.AreEqual(subject.Parent.Type.Namespace, "Microsoft.Network"); - Assert.AreEqual(subject.Parent.Type.Type, "virtualNetworks"); + Assert.AreEqual(subject.Parent.ToString(), parentResource.ToString()); + Assert.AreEqual(((ResourceGroupResourceIdentifier)subject.Parent).SubscriptionId, "0c2f6471-1bf0-4dda-aec3-cb9272f09575"); + Assert.AreEqual(Uri.UnescapeDataString(((ResourceGroupResourceIdentifier)subject.Parent).ResourceGroupName), "myRg"); + Assert.AreEqual(subject.Parent.ResourceType.Namespace, "Microsoft.Network"); + Assert.AreEqual(subject.Parent.ResourceType.Type, "virtualNetworks"); Assert.AreEqual(Uri.UnescapeDataString(subject.Parent.Name), parentName); } [TestCase("UnformattedString", Description ="Too Few Elements")] [TestCase("/subs/sub1/rgs/rg1/", Description = "No known parts")] - [TestCase("/subscriptions/sub1/resourceGroups", Description = "Too few parts")] + [TestCase("/subscriptions/sub1/rgs/rg1/", Description = "Subscription not a Guid")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/resourceGroups", Description = "Too few parts")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/providers/Contoso.Widgets/widgets", Description = "Subscription resource with too few parts")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/widgets/myWidget", Description = "Subscription resource with invalid child")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/resourceGroups/myRg/widgets", Description = "ResourceGroup ID with Too few parts")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/resourceGroups/myRg/widgets/myWidget", Description = "ResourceGroup ID with invalid child")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/resourceGroups/myRg/providers/Microsoft.Widgets/widgets", Description = "ResourceGroup provider ID with Too few parts")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/locations/westus2/incomplete", Description = "Too few parts for location resource")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/locations/westus2/providers/incomplete", Description = "Too few parts for location resource")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/locations/westus2/providers/myProvider/myResource/myResourceName/providers/incomplete", Description = "Too few parts for location resource")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/resourceGroups/myRg/providers/Company.MyProvider/myResources/myResourceName/providers/incomplete", Description = "Too few parts for resource group resource")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/providers/Company.MyProvider/myResources/myResourceName/providers/incomplete", Description = "Too few parts for subscription resource")] + [TestCase("/providers/Company.MyProvider/myResources/myResourceName/providers/incomplete", Description = "Too few parts for tenant resource")] public void ThrowsOnInvalidUri(string resourceId) { Assert.Throws(new TestDelegate(() => ConvertToResourceId(resourceId))); } + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/locations/westus2/myResourceType/myResourceName", Description = "location child resource")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/locations/westus2/myResourceType/myResourceName/mySingletonResource", Description = "location child singleton resource")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/locations/westus2/providers/myProvider/myResourceType/myResourceName", Description = "location provider resource")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/locations/westus2/providers/myProvider/myResourceType/myResourceName/myChildResource/myChildResourceName", Description = "location provider child resource")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/locations/westus2/providers/myProvider/myResourceType/myResourceName/providers/mySecondNamespace/myChildResource/myChildResourceName", Description = "location extension resource")] + public void CanParseValidLocationResource(string resourceId) + { + var id = ConvertToResourceId(resourceId); + Assert.AreEqual(id.ToString(), resourceId); + } + + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/providers/Contoso.Widgets/widgets/myWidget/configuration", Description ="singleton homed in a subscription resource")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/providers/Contoso.Widgets/widgets/myWidget/providers/Contoso.Extensions/extensions/myExtension", Description = "Extension over a subscription resource")] + [TestCase("/subscriptions/17fecd63-33d8-4e43-ac6f-0aafa111b38d/providers/Contoso.Widgets/widgets/myWidget/flanges/myFlange", Description = "Child of a subscription resource")] + public void CanParseValidSubscriptionResource( string resourceId) + { + SubscriptionResourceIdentifier subscription = resourceId; + Assert.AreEqual(resourceId.ToString(), resourceId); + } + + [TestCase("/providers/Contoso.Widgets/widgets/myWidget/configuration", Description = "singleton homed in a tenant resource")] + [TestCase("/providers/Contoso.Widgets/widgets/myWidget/providers/Contoso.Extensions/extensions/myExtension", Description = "Extension over a subscription resource")] + [TestCase("/providers/Contoso.Widgets/widgets/myWidget/flanges/myFlange", Description = "Child of a subscription resource")] + public void CanParseValidTenantResource(string resourceId) + { + TenantResourceIdentifier tenant = resourceId; + Assert.AreEqual(resourceId.ToString(), resourceId); + } + public ResourceIdentifier ConvertToResourceId(string resourceId) { ResourceIdentifier subject = resourceId; @@ -205,8 +246,8 @@ public ResourceIdentifier ConvertToResourceId(string resourceId) [TestCase(false, "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/nbhatia_test/providers/Microsoft.Web/sites/autoreport", "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/nbhatia_test")] public void CheckHashCode(bool expected, string resourceId1, string resourceId2) { - ResourceIdentifier resourceIdentifier1 = new ResourceIdentifier(resourceId1); - ResourceIdentifier resourceIdentifier2 = new ResourceIdentifier(resourceId2); + ResourceIdentifier resourceIdentifier1 = new ResourceGroupResourceIdentifier(resourceId1); + ResourceIdentifier resourceIdentifier2 = new ResourceGroupResourceIdentifier(resourceId2); Assert.AreEqual(expected, resourceIdentifier1.GetHashCode() == resourceIdentifier2.GetHashCode()); } @@ -215,6 +256,7 @@ public void CheckHashCode(bool expected, string resourceId1, string resourceId2) [TestCase(null, null, true)] [TestCase(TrackedResourceId, ChildResourceId, false)] [TestCase(ChildResourceId, TrackedResourceId, false)] + [TestCase(TrackedResourceId, null, false)] [TestCase(null, TrackedResourceId, false)] public void Equals(string resourceProviderID1, string resourceProviderID2, bool expected) { @@ -226,6 +268,144 @@ public void Equals(string resourceProviderID1, string resourceProviderID2, bool Assert.AreEqual(expected, ResourceIdentifier.Equals(a,b)); } + [Test] + public void EqualsObj() + { + object input = TrackedResourceId; + ResourceIdentifier resource = new ResourceGroupResourceIdentifier(TrackedResourceId); + Assert.AreEqual(true, resource.Equals(input)); + Assert.IsFalse(resource.Equals(new object())); + } + + [Test] + public void TryGetPropertiesForTenantResource() + { + TenantResourceIdentifier id1 = "/providers/Contoso.Widgets/widgets/myWidget"; + Assert.AreEqual(false, id1.TryGetSubscriptionId(out _)); + Assert.AreEqual(false, id1.TryGetLocation(out _)); + Assert.AreEqual(false, id1.TryGetResourceGroupName(out _)); + Assert.AreEqual(false, id1.TryGetParent(out _)); + TenantResourceIdentifier id2 = "/providers/Contoso.Widgets/widgets/myWidget/flages/myFlange"; + ResourceIdentifier parent; + Assert.AreEqual(true, id2.TryGetParent(out parent)); + Assert.AreEqual(true, id1.Equals(parent)); + } + + [Test] + public void TryGetPropertiesForSubscriptionResource() + { + SubscriptionResourceIdentifier id1 = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/providers/Contoso.Widgets/widgets/myWidget"; + string subscription; + Assert.AreEqual(true, id1.TryGetSubscriptionId(out subscription)); + Assert.AreEqual("6b085460-5f21-477e-ba44-1035046e9101", subscription); + Assert.AreEqual(false, id1.TryGetLocation(out _)); + Assert.AreEqual(false, id1.TryGetResourceGroupName(out _)); + ResourceIdentifier expectedId = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101"; + ResourceIdentifier parentId; + Assert.AreEqual(true, id1.TryGetParent(out parentId)); + Assert.IsTrue(expectedId.Equals(parentId)); + } + + [Test] + public void TryGetPropertiesForLocationResource() + { + LocationResourceIdentifier id1 = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/locations/westus2/providers/Contoso.Widgets/widgets/myWidget"; + string subscription; + Assert.AreEqual(true, id1.TryGetSubscriptionId(out subscription)); + Assert.AreEqual("6b085460-5f21-477e-ba44-1035046e9101", subscription); + LocationData location; + Assert.AreEqual(true, id1.TryGetLocation(out location)); + Assert.AreEqual(LocationData.WestUS2, location); + Assert.AreEqual(false, id1.TryGetResourceGroupName(out _)); + ResourceIdentifier expectedId = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/locations/westus2"; + ResourceIdentifier parentId; + Assert.AreEqual(true, id1.TryGetParent(out parentId)); + Assert.IsTrue(expectedId.Equals(parentId)); + } + + [Test] + public void TryGetPropertiesForResourceGroupResource() + { + ResourceGroupResourceIdentifier id1 = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/myRg/providers/Contoso.Widgets/widgets/myWidget"; + string subscription; + Assert.AreEqual(true, id1.TryGetSubscriptionId(out subscription)); + Assert.AreEqual("6b085460-5f21-477e-ba44-1035046e9101", subscription); + Assert.AreEqual(false, id1.TryGetLocation(out _)); + string resourceGroupName; + Assert.AreEqual(true, id1.TryGetResourceGroupName(out resourceGroupName)); + Assert.AreEqual("myRg", resourceGroupName); + ResourceIdentifier expectedId = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/myRg"; + ResourceIdentifier parentId; + Assert.AreEqual(true, id1.TryGetParent(out parentId)); + Assert.IsTrue(expectedId.Equals(parentId)); + } + + [TestCase("/providers/Contoso.Widgets/widgets/myWidget", null, null, null, null, Description = "TenantResourceIdentifier")] + [TestCase("/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/providers/Contoso.Widgets/widgets/myWidget", + "6b085460-5f21-477e-ba44-1035046e9101", null, null, "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101", + Description = "SubscriptionResourceIdentifier")] + [TestCase("/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/locations/westus2/providers/Contoso.Widgets/widgets/myWidget", + "6b085460-5f21-477e-ba44-1035046e9101", "westus2", null, "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/locations/westus2", + Description = "LocationResourceIdentifier")] + [TestCase("/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/myRg/providers/Contoso.Widgets/widgets/myWidget", + "6b085460-5f21-477e-ba44-1035046e9101", null, "myRg", "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/myRg", + Description = "ResourceGroupResourceIdentifier")] + public void TryGetPropertiesForGenericResource(string resourceId, string subscription, string location, string resourceGroup, string parent) + { + ResourceIdentifier id1 = resourceId; + string outputSubscription; + Assert.AreEqual(!(subscription is null), id1.TryGetSubscriptionId(out outputSubscription)); + if (!(subscription is null)) + Assert.AreEqual(subscription, outputSubscription); + LocationData outputLocation; + Assert.AreEqual(!(location is null), id1.TryGetLocation(out outputLocation)); + if (!(location is null)) + Assert.AreEqual(location, outputLocation.Name); + string outputResourceGroup; + Assert.AreEqual(!(resourceGroup is null), id1.TryGetResourceGroupName(out outputResourceGroup)); + if (!(resourceGroup is null)) + Assert.AreEqual(resourceGroup, outputResourceGroup); + ResourceIdentifier outputParent; + Assert.AreEqual(!(parent is null), id1.TryGetParent(out outputParent)); + if (!(parent is null)) + Assert.AreEqual(parent, outputParent.ToString()); + } + + [TestCase("/providers/Contoso.Widgets//widgets/myWidget", Description = "TenantResourceIdentifier")] + [TestCase("/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/providers//Contoso.Widgets/widgets/myWidget", + Description = "SubscriptionResourceIdentifier")] + [TestCase("/subscriptions/6b085460-5f21-477e-ba44-1035046e9101//locations/westus2/providers/Contoso.Widgets/widgets/myWidget", + Description = "LocationResourceIdentifier")] + [TestCase("/subscriptions//6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/myRg/providers/Contoso.Widgets/widgets/myWidget", + Description = "ResourceGroupResourceIdentifier")] + public void ResourceIdRetainsOriginalInput(string resourceId) + { + ResourceIdentifier id = resourceId; + Assert.AreEqual(id.ToString(), resourceId); + } + + [Test] + public void ThrowOnMistypedResource() + { + TenantResourceIdentifier tenant; + Assert.Throws(() => tenant = new TenantResourceIdentifier("/subscriptions/6b085460-5f21-477e-ba44-1035046e9101")); + Assert.Throws(() => tenant = new TenantResourceIdentifier("/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/locations/westus2")); + Assert.Throws(() => tenant = new TenantResourceIdentifier("/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/myRg")); + Assert.DoesNotThrow(() => tenant = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101"); + Assert.DoesNotThrow(() => tenant = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/locations/westus2"); + Assert.DoesNotThrow(() => tenant = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/myRg"); + SubscriptionResourceIdentifier subscription; + Assert.Throws(() => subscription = "/providers/Contoso.Widgets/widgets/myWidget"); + Assert.Throws(() => subscription = new SubscriptionResourceIdentifier("/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/locations/westus2")); + Assert.Throws(() => subscription = new SubscriptionResourceIdentifier("/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/myRg")); + Assert.DoesNotThrow(() => subscription = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/locations/westus2"); + Assert.DoesNotThrow(() => subscription = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101/resourceGroups/myRg"); + ResourceGroupResourceIdentifier group; + Assert.Throws(() => group = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101"); + LocationResourceIdentifier location; + Assert.Throws(() => location = "/subscriptions/6b085460-5f21-477e-ba44-1035046e9101"); + } + [TestCase(TrackedResourceId, TrackedResourceId, 0)] [TestCase(TrackedResourceId, ChildResourceId, -1)] [TestCase(ChildResourceId, TrackedResourceId, 1)] @@ -235,11 +415,10 @@ public void Equals(string resourceProviderID1, string resourceProviderID2, bool public void CompareToResourceProvider(string resourceProviderID1, string resourceProviderID2, int expected) { ResourceIdentifier a = resourceProviderID1; - ResourceIdentifier b = resourceProviderID2; + ResourceIdentifier b = (ResourceIdentifier)resourceProviderID2; if (a != null) Assert.AreEqual(expected, a.CompareTo(b)); - Assert.AreEqual(expected, ResourceIdentifier.CompareTo(a, b)); } [TestCase(TrackedResourceId, TrackedResourceId, 0)] @@ -254,8 +433,209 @@ public void CompareToString(string resourceProviderID1, string resourceProviderI string b = resourceProviderID2; if (a != null) Assert.AreEqual(expected, a.CompareTo(b)); + } + + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget", "Microsoft.Authorization", "roleAssignments", "MyRoleAssignemnt")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "Microsoft.Authorization", "roleAssignments", "MyRoleAssignemnt")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", null, "roleAssignments", "MyRoleAssignemnt")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "Microsoft.Authorization", null, "MyRoleAssignemnt")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "Microsoft.Authorization", "roleAssignments", null)] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "", "roleAssignments", "MyRoleAssignemnt")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "Microsoft.Authorization", " ", "MyRoleAssignemnt")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "Microsoft.Authorization", "roleAssignments", "")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "Microsoft/Authorization", "roleAssignments", "MyRoleAssignemnt")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "Microsoft.Authorization", "roleA/ssignments", "MyRoleAssignemnt")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "Microsoft.Authorization", "roleAssignments", "MyRole/Assignemnt")] - Assert.AreEqual(expected, ResourceIdentifier.CompareTo(a, b)); + public void TestAppendTenantProviderResource(string resourceId, string providerNamespace, string resourceTypeName, string resourceName) + { + TenantResourceIdentifier resource = resourceId; + if (providerNamespace is null || resourceTypeName is null || resourceName is null) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName)); + else if (string.IsNullOrWhiteSpace(providerNamespace) || string.IsNullOrWhiteSpace(resourceTypeName) || string.IsNullOrWhiteSpace(resourceName)) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName)); + else if (providerNamespace.Contains("/") || resourceTypeName.Contains("/") || resourceName.Contains("/")) + Assert.Throws(typeof(ArgumentOutOfRangeException), () => resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName)); + else + { + var expected = $"{resourceId}/providers/{providerNamespace}/{resourceTypeName}/{resourceName}"; + Assert.AreEqual(expected, resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName).ToString()); + } + } + + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget", "wheels", "Wheel1")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "wheels", "Wheel2")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", null, "wheel2")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "wheels", null)] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "", "wheel2")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "wheels", " ")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "wheels/spokes", "wheel2")] + [TestCase("/providers/Microsoft.Widgets/widgets/MyWidget/things/MyThing", "wheels", "wheel1/wheel2")] + public void TestAppendTenantChildResource(string resourceId, string childTypeName, string childResourceName) + { + TenantResourceIdentifier resource = resourceId; + if (childTypeName is null || childResourceName is null) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendChildResource(childTypeName, childResourceName)); + else if (string.IsNullOrWhiteSpace(childTypeName) || string.IsNullOrWhiteSpace(childResourceName)) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendChildResource(childTypeName, childResourceName)); + else if (childTypeName.Contains("/") || childResourceName.Contains("/") ) + Assert.Throws(typeof(ArgumentOutOfRangeException), () => resource.AppendChildResource(childTypeName, childResourceName)); + else + { + var expected = $"{resourceId}/{childTypeName}/{childResourceName}"; + Assert.AreEqual(expected, resource.AppendChildResource(childTypeName, childResourceName).ToString()); + } + } + + [TestCase(SubscriptionResourceId, "Microsoft.Authorization", "roleAssignments", "MyRoleAssignemnt")] + [TestCase(SubscriptionResourceId, null, "roleAssignments", "MyRoleAssignemnt")] + [TestCase(SubscriptionResourceId, "Microsoft.Authorization", null, "MyRoleAssignemnt")] + [TestCase(SubscriptionResourceId, "Microsoft.Authorization", "roleAssignments", null)] + [TestCase(SubscriptionResourceId, "", "roleAssignments", "MyRoleAssignemnt")] + [TestCase(SubscriptionResourceId, "Microsoft.Authorization", " ", "MyRoleAssignemnt")] + [TestCase(SubscriptionResourceId, "Microsoft.Authorization", "roleAssignments", "")] + [TestCase(SubscriptionResourceId, "Microsoft/Authorization", "roleAssignments", "MyRoleAssignemnt")] + [TestCase(SubscriptionResourceId, "Microsoft.Authorization", "roleA/ssignments", "MyRoleAssignemnt")] + [TestCase(SubscriptionResourceId, "Microsoft.Authorization", "roleAssignments", "MyRole/Assignemnt")] + + public void TestAppendSubscriptionProviderResource(string resourceId, string providerNamespace, string resourceTypeName, string resourceName) + { + SubscriptionResourceIdentifier resource = resourceId; + if (providerNamespace is null || resourceTypeName is null || resourceName is null) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName)); + else if (string.IsNullOrWhiteSpace(providerNamespace) || string.IsNullOrWhiteSpace(resourceTypeName) || string.IsNullOrWhiteSpace(resourceName)) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName)); + else if (providerNamespace.Contains("/") || resourceTypeName.Contains("/") || resourceName.Contains("/")) + Assert.Throws(typeof(ArgumentOutOfRangeException), () => resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName)); + else + { + var expected = $"{resourceId}/providers/{providerNamespace}/{resourceTypeName}/{resourceName}"; + Assert.AreEqual(expected, resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName).ToString()); + } + } + + [TestCase(SubscriptionResourceId, "wheels", "Wheel2")] + [TestCase(SubscriptionResourceId, null, "wheel2")] + [TestCase(SubscriptionResourceId, "wheels", null)] + [TestCase(SubscriptionResourceId, "", "wheel2")] + [TestCase(SubscriptionResourceId, "wheels", " ")] + [TestCase(SubscriptionResourceId, "wheels/spokes", "wheel2")] + [TestCase(SubscriptionResourceId, "wheels", "wheel1/wheel2")] + public void TestAppendSubscriptionChildResource(string resourceId, string childTypeName, string childResourceName) + { + SubscriptionResourceIdentifier resource = resourceId; + if (childTypeName is null || childResourceName is null) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendChildResource(childTypeName, childResourceName)); + else if (string.IsNullOrWhiteSpace(childTypeName) || string.IsNullOrWhiteSpace(childResourceName)) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendChildResource(childTypeName, childResourceName)); + else if (childTypeName.Contains("/") || childResourceName.Contains("/")) + Assert.Throws(typeof(ArgumentOutOfRangeException), () => resource.AppendChildResource(childTypeName, childResourceName)); + else + { + var expected = $"{resourceId}/{childTypeName}/{childResourceName}"; + Assert.AreEqual(expected, resource.AppendChildResource(childTypeName, childResourceName).ToString()); + } + } + + [TestCase(ResourceGroupResourceId, "Microsoft.Authorization", "roleAssignments", "MyRoleAssignemnt")] + [TestCase(ResourceGroupResourceId, null, "roleAssignments", "MyRoleAssignemnt")] + [TestCase(ResourceGroupResourceId, "Microsoft.Authorization", null, "MyRoleAssignemnt")] + [TestCase(ResourceGroupResourceId, "Microsoft.Authorization", "roleAssignments", null)] + [TestCase(ResourceGroupResourceId, "", "roleAssignments", "MyRoleAssignemnt")] + [TestCase(ResourceGroupResourceId, "Microsoft.Authorization", " ", "MyRoleAssignemnt")] + [TestCase(ResourceGroupResourceId, "Microsoft.Authorization", "roleAssignments", "")] + [TestCase(ResourceGroupResourceId, "Microsoft/Authorization", "roleAssignments", "MyRoleAssignemnt")] + [TestCase(ResourceGroupResourceId, "Microsoft.Authorization", "roleA/ssignments", "MyRoleAssignemnt")] + [TestCase(ResourceGroupResourceId, "Microsoft.Authorization", "roleAssignments", "MyRole/Assignemnt")] + + public void TestAppendResourceGroupProviderResource(string resourceId, string providerNamespace, string resourceTypeName, string resourceName) + { + ResourceGroupResourceIdentifier resource = resourceId; + if (providerNamespace is null || resourceTypeName is null || resourceName is null) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName)); + else if (string.IsNullOrWhiteSpace(providerNamespace) || string.IsNullOrWhiteSpace(resourceTypeName) || string.IsNullOrWhiteSpace(resourceName)) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName)); + else if (providerNamespace.Contains("/") || resourceTypeName.Contains("/") || resourceName.Contains("/")) + Assert.Throws(typeof(ArgumentOutOfRangeException), () => resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName)); + else + { + var expected = $"{resourceId}/providers/{providerNamespace}/{resourceTypeName}/{resourceName}"; + Assert.AreEqual(expected, resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName).ToString()); + } + } + + [TestCase(ResourceGroupResourceId, "wheels", "Wheel1")] + [TestCase(ResourceGroupResourceId, "wheels", "Wheel2")] + [TestCase(ResourceGroupResourceId, null, "wheel2")] + [TestCase(ResourceGroupResourceId, "wheels", null)] + [TestCase(ResourceGroupResourceId, "", "wheel2")] + [TestCase(ResourceGroupResourceId, "wheels", " ")] + [TestCase(ResourceGroupResourceId, "wheels/spokes", "wheel2")] + [TestCase(ResourceGroupResourceId, "wheels", "wheel1/wheel2")] + public void TestAppendResourceGroupChildResource(string resourceId, string childTypeName, string childResourceName) + { + ResourceGroupResourceIdentifier resource = resourceId; + if (childTypeName is null || childResourceName is null) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendChildResource(childTypeName, childResourceName)); + else if (string.IsNullOrWhiteSpace(childTypeName) || string.IsNullOrWhiteSpace(childResourceName)) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendChildResource(childTypeName, childResourceName)); + else if (childTypeName.Contains("/") || childResourceName.Contains("/")) + Assert.Throws(typeof(ArgumentOutOfRangeException), () => resource.AppendChildResource(childTypeName, childResourceName)); + else + { + var expected = $"{resourceId}/{childTypeName}/{childResourceName}"; + Assert.AreEqual(expected, resource.AppendChildResource(childTypeName, childResourceName).ToString()); + } + } + + [TestCase(LocationResourceId, "Microsoft.Authorization", "roleAssignments", "MyRoleAssignemnt")] + [TestCase(LocationResourceId, null, "roleAssignments", "MyRoleAssignemnt")] + [TestCase(LocationResourceId, "Microsoft.Authorization", null, "MyRoleAssignemnt")] + [TestCase(LocationResourceId, "Microsoft.Authorization", "roleAssignments", null)] + [TestCase(LocationResourceId, "", "roleAssignments", "MyRoleAssignemnt")] + [TestCase(LocationResourceId, "Microsoft.Authorization", " ", "MyRoleAssignemnt")] + [TestCase(LocationResourceId, "Microsoft.Authorization", "roleAssignments", "")] + [TestCase(LocationResourceId, "Microsoft/Authorization", "roleAssignments", "MyRoleAssignemnt")] + [TestCase(LocationResourceId, "Microsoft.Authorization", "roleA/ssignments", "MyRoleAssignemnt")] + [TestCase(LocationResourceId, "Microsoft.Authorization", "roleAssignments", "MyRole/Assignemnt")] + + public void TestAppendLocationProviderResource(string resourceId, string providerNamespace, string resourceTypeName, string resourceName) + { + LocationResourceIdentifier resource = resourceId; + if (providerNamespace is null || resourceTypeName is null || resourceName is null) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName)); + else if (string.IsNullOrWhiteSpace(providerNamespace) || string.IsNullOrWhiteSpace(resourceTypeName) || string.IsNullOrWhiteSpace(resourceName)) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName)); + else if (providerNamespace.Contains("/") || resourceTypeName.Contains("/") || resourceName.Contains("/")) + Assert.Throws(typeof(ArgumentOutOfRangeException), () => resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName)); + else + { + var expected = $"{resourceId}/providers/{providerNamespace}/{resourceTypeName}/{resourceName}"; + Assert.AreEqual(expected, resource.AppendProviderResource(providerNamespace, resourceTypeName, resourceName).ToString()); + } + } + + [TestCase(LocationResourceId, "wheels", "Wheel1")] + [TestCase(LocationResourceId, null, "wheel2")] + [TestCase(LocationResourceId, "wheels", null)] + [TestCase(LocationResourceId, "", "wheel2")] + [TestCase(LocationResourceId, "wheels", " ")] + [TestCase(LocationResourceId, "wheels/spokes", "wheel2")] + [TestCase(LocationResourceId, "wheels", "wheel1/wheel2")] + public void TestAppendLocationChildResource(string resourceId, string childTypeName, string childResourceName) + { + LocationResourceIdentifier resource = resourceId; + if (childTypeName is null || childResourceName is null) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendChildResource(childTypeName, childResourceName)); + else if (string.IsNullOrWhiteSpace(childTypeName) || string.IsNullOrWhiteSpace(childResourceName)) + Assert.Throws(typeof(ArgumentNullException), () => resource.AppendChildResource(childTypeName, childResourceName)); + else if (childTypeName.Contains("/") || childResourceName.Contains("/")) + Assert.Throws(typeof(ArgumentOutOfRangeException), () => resource.AppendChildResource(childTypeName, childResourceName)); + else + { + var expected = $"{resourceId}/{childTypeName}/{childResourceName}"; + Assert.AreEqual(expected, resource.AppendChildResource(childTypeName, childResourceName).ToString()); + } } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceListOperationsTest.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceListOperationsTest.cs index 7b5c1e5ea8d7e..5d672bc1397b6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceListOperationsTest.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceListOperationsTest.cs @@ -106,7 +106,7 @@ private static ResourceGroupOperations GetResourceGroupOperations() private static GenericResourceExpanded GetGenericResource() { - return GetGenereicResource( + return GetGenericResource( new Dictionary { { "tag1", "value1" } }, GetSku(), GetPlan(), @@ -115,7 +115,7 @@ private static GenericResourceExpanded GetGenericResource() "Japan East"); } - private static GenericResourceExpanded GetGenereicResource( + private static GenericResourceExpanded GetGenericResource( Dictionary tags, ResourceManager.Resources.Models.Sku sku, ResourceManager.Resources.Models.Plan plan, @@ -125,14 +125,16 @@ private static GenericResourceExpanded GetGenereicResource( { var resource = new GenericResourceExpanded(); + // See TODO in GenericResourceOperations.Valide(). + //resource.Id = "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup"; + var field = typeof(Resource).GetField("k__BackingField", BindingFlags.Instance | BindingFlags.NonPublic); + field.SetValue(resource, $"/subscriptions/{Guid.NewGuid().ToString()}/resourceGroups/myResourceGroup/providers/Microsoft.Widgets/widgets/myWidget"); resource.Location = location; resource.Tags.ReplaceWith(tags ?? new Dictionary()); resource.Sku = sku; resource.Plan = plan; resource.Kind = kind; resource.ManagedBy = managedBy; - var field = typeof(GenericResourceExpanded).BaseType.BaseType.GetField("k__BackingField", BindingFlags.Instance | BindingFlags.NonPublic); - field.SetValue(resource, "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup"); return resource; } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTests.cs index f66207971f3e0..4bb596b7c7ede 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/ResourceTests.cs @@ -22,8 +22,8 @@ public class ResourceTests "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.ClassicStorage/storageAccounts/account2")] public void CompareToObject(int expected, string id1, string id2) { - TestResource resource1 = new TestResource(id1); - TestResource resource2 = new TestResource(id2); + TestResource resource1 = new TestResource(id1); + TestResource resource2 = new TestResource(id2); Assert.AreEqual(expected, resource1.CompareTo(resource2)); } @@ -41,15 +41,15 @@ public void CompareToObject(int expected, string id1, string id2) "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.ClassicStorage/storageAccounts/account2")] public void CompareToString(int expected, string id1, string id2) { - TestResource resource1 = new TestResource(id1); + TestResource resource1 = new TestResource(id1); Assert.AreEqual(expected, resource1.CompareTo(id2)); } [Test] public void CompareToNull() { - TestResource resource1 = new TestResource("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.ClassicStorage/storageAccounts/account1"); - TestResource resource2 = null; + var resource1 = new TestResource("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.ClassicStorage/storageAccounts/account1"); + TestResource resource2 = null; Assert.AreEqual(1, resource1.CompareTo(resource2)); Assert.AreEqual(1, resource1.CompareTo((string)null)); } @@ -57,8 +57,8 @@ public void CompareToNull() [Test] public void CompareToSame() { - TestResource resource1 = new TestResource("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.ClassicStorage/storageAccounts/account1"); - TestResource resource2 = resource1; + var resource1 = new TestResource("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.ClassicStorage/storageAccounts/account1"); + var resource2 = resource1; Assert.AreEqual(0, resource1.CompareTo(resource2)); } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/TestAssets/Identity/InvalidType.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/TestAssets/Identity/InvalidType.json index 88dc49b9af0e7..a2328a4b92fad 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/TestAssets/Identity/InvalidType.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/TestAssets/Identity/InvalidType.json @@ -4,10 +4,10 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "type": "Test", "userAssignedIdentities": { - "/subscriptions/db1ab6f0-4769-tgds-930e-01e2ef9c123c/resourceGroups/tester/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity": { - "clientId": "9a2eaa6a-b49c-4a63-afb5-3b72e3e65422", - "principalId": "77563a98-c9d9-4f7b-a7af-592d21fa2153" - } + "/subscriptions/d96407f5-db8f-4325-b582-84ad21310bd8/resourceGroups/tester/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity": { + "clientId": "9a2eaa6a-b49c-4a63-afb5-3b72e3e65422", + "principalId": "77563a98-c9d9-4f7b-a7af-592d21fa2153" + } } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/TestAssets/Identity/SystemAndUserAssignedValidMultIdentities.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/TestAssets/Identity/SystemAndUserAssignedValidMultIdentities.json index 660ab014dee52..f8084ae97d517 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/TestAssets/Identity/SystemAndUserAssignedValidMultIdentities.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Unit/TestAssets/Identity/SystemAndUserAssignedValidMultIdentities.json @@ -4,14 +4,14 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db40", "type": "SystemAssigned, UserAssigned", "userAssignedIdentities": { - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123z/resourceGroups/tester/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity0": { - "clientId": "9a2eaa6a-b49c-4c63-afb5-3b72e3e65422", - "principalId": "77563a98-c9d9-477b-a7af-592d21fa2153" - }, - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9cfrgh/resourceGroups/tester/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity1": { - "clientId": "9a2eaa6a-b49c-4c63-afb5-3b72e3c65420", - "principalId": "77563a98-c9d9-477b-a7af-592d2bfa2150" - } + "/subscriptions/1ab27dfb-d2ee-4283-b1e3-550deaebb8e4/resourceGroups/tester/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity0": { + "clientId": "9a2eaa6a-b49c-4c63-afb5-3b72e3e65422", + "principalId": "77563a98-c9d9-477b-a7af-592d21fa2153" + }, + "/subscriptions/d96407f5-db8f-4325-b582-84ad21310bd8/resourceGroups/tester/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity1": { + "clientId": "9a2eaa6a-b49c-4c63-afb5-3b72e3c65420", + "principalId": "77563a98-c9d9-477b-a7af-592d2bfa2150" + } } } } diff --git a/sdk/resourcemanager/Proto.Client/authorization/Extensions/RoleAssignmentExtensions.cs b/sdk/resourcemanager/Proto.Client/authorization/Extensions/RoleAssignmentExtensions.cs index ca7cf83f03df2..bf330f41a2809 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/Extensions/RoleAssignmentExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/authorization/Extensions/RoleAssignmentExtensions.cs @@ -51,7 +51,7 @@ public static RoleAssignmentContainer GetRoleAssigmentContainerAtScope(this Subs /// The subscription containign the role assignment /// The target of the role assignment /// A that allows creating and listing RoleAssignments - public static RoleAssignmentContainer GetRoleAssigmentContainerAtScope(this SubscriptionOperations subscription, Resource scope) + public static RoleAssignmentContainer GetRoleAssigmentContainerAtScope(this SubscriptionOperations subscription, Resource scope) { return new RoleAssignmentContainer(subscription, scope.Id); } diff --git a/sdk/resourcemanager/Proto.Client/authorization/Placeholder/RoleAssignmentData.cs b/sdk/resourcemanager/Proto.Client/authorization/Placeholder/RoleAssignmentData.cs index f5a5b143bad78..ddb0d859acc54 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/Placeholder/RoleAssignmentData.cs +++ b/sdk/resourcemanager/Proto.Client/authorization/Placeholder/RoleAssignmentData.cs @@ -9,7 +9,7 @@ namespace Proto.Authorization /// /// Placholder class containing Role assignment POCO properties. /// - public class RoleAssignmentData : Resource + public class RoleAssignmentData : Resource { private Azure.ResourceManager.Authorization.Models.RoleAssignment _model; @@ -20,7 +20,7 @@ public class RoleAssignmentData : Resource public RoleAssignmentData(Azure.ResourceManager.Authorization.Models.RoleAssignment assign) { _model = assign; - Id = assign.Id; + Id = new TenantResourceIdentifier(assign.Id); Scope = assign.Scope; RoleDefinitionId = assign.RoleDefinitionId; PrincipalId = assign.PrincipalId; @@ -61,7 +61,7 @@ public RoleAssignmentData(Azure.ResourceManager.Authorization.Models.RoleAssignm /// /// Gets or sets the identifier of the RoleAssignment. /// - public override ResourceIdentifier Id { get; protected set; } + public override TenantResourceIdentifier Id { get; protected set; } /// /// Gets the Track2 Management model associated with the data object. diff --git a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentContainer.cs b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentContainer.cs index 91fc04b98669b..04a6be91b5ac5 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentContainer.cs +++ b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentContainer.cs @@ -3,6 +3,7 @@ using Azure.ResourceManager.Authorization; using Azure.ResourceManager.Core; +using System; using System.Threading; using System.Threading.Tasks; @@ -20,6 +21,14 @@ public class RoleAssignmentContainer : ExtensionResourceContainer @@ -30,6 +39,14 @@ internal RoleAssignmentContainer(OperationsBase operations) internal RoleAssignmentContainer(OperationsBase operations, ResourceIdentifier scope) : base(operations, scope) { + // TODO: Remove this once we nio longer need to create management clients + string subscriptionId; + if (!operations.Id.TryGetSubscriptionId(out subscriptionId)) + { + subscriptionId = Guid.Empty.ToString(); + } + + Operations = new AuthorizationManagementClient(subscriptionId, BaseUri, Credential).RoleAssignments; } /// @@ -38,7 +55,7 @@ internal RoleAssignmentContainer(OperationsBase operations, ResourceIdentifier s /// /// Gets the resource type of the resource being created. /// - private RoleAssignmentsOperations Operations => new AuthorizationManagementClient(Id.Subscription, BaseUri, Credential).RoleAssignments; + private RoleAssignmentsOperations Operations { get; } /// /// Create a role assignment. This method blocks until the RoleAssignment is created on the service. diff --git a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs index 555de7279a9aa..adc08ef924d59 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs +++ b/sdk/resourcemanager/Proto.Client/authorization/RoleAssignmentOperations.cs @@ -4,6 +4,7 @@ using Azure; using Azure.ResourceManager.Authorization; using Azure.ResourceManager.Core; +using System; using System.Threading; using System.Threading.Tasks; @@ -27,6 +28,14 @@ public class RoleAssignmentOperations : ExtensionResourceOperationsBase @@ -37,16 +46,20 @@ internal RoleAssignmentOperations(GenericResourceOperations genericOperations) internal RoleAssignmentOperations(OperationsBase operation, ResourceIdentifier id) : base(operation, id) { + string subscriptionId; + if (!Id.TryGetSubscriptionId(out subscriptionId)) + { + // TODO: Remove this once we have swapped in the REST client + subscriptionId = Guid.Empty.ToString(); + } + + Operations = new AuthorizationManagementClient(subscriptionId, BaseUri, Credential).RoleAssignments; } /// protected override ResourceType ValidResourceType => ResourceType; - private RoleAssignmentsOperations Operations => new AuthorizationManagementClient( - Id.Subscription, - BaseUri, - Credential, - ClientOptions.Convert()).RoleAssignments; + private RoleAssignmentsOperations Operations { get; } /// public ArmResponse Delete(CancellationToken cancellationToken = default) diff --git a/sdk/resourcemanager/Proto.Client/billing/BillingAccountOperations.cs b/sdk/resourcemanager/Proto.Client/billing/BillingAccountOperations.cs index 6a570b0bb6708..97dddf63ef74d 100644 --- a/sdk/resourcemanager/Proto.Client/billing/BillingAccountOperations.cs +++ b/sdk/resourcemanager/Proto.Client/billing/BillingAccountOperations.cs @@ -13,7 +13,7 @@ namespace Proto.Billing /// /// A class representing the operations that can be performed over a specific availability set. /// - public class BillingAccountOperations : ResourceOperationsBase + public class BillingAccountOperations : ResourceOperationsBase { /// /// Initializes a new instance of the class. diff --git a/sdk/resourcemanager/Proto.Client/billing/Placeholder/BillingAccountData.cs b/sdk/resourcemanager/Proto.Client/billing/Placeholder/BillingAccountData.cs index 8524744289da3..5ce6b2ff31bc6 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Placeholder/BillingAccountData.cs +++ b/sdk/resourcemanager/Proto.Client/billing/Placeholder/BillingAccountData.cs @@ -8,7 +8,7 @@ namespace Proto.Billing /// /// A class representing the availability set data model. /// - public class BillingAccountData : TrackedResource + public class BillingAccountData : TrackedResource { /// diff --git a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs index f8c42bf617ee0..7c76851053982 100644 --- a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs +++ b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetContainer.cs @@ -10,7 +10,7 @@ namespace Proto.Compute /// /// A class representing collection of availability set and their operations over a resource group. /// - public class AvailabilitySetContainer : ResourceContainerBase + public class AvailabilitySetContainer : ResourceContainerBase { /// /// Initializes a new instance of the class. @@ -24,10 +24,15 @@ internal AvailabilitySetContainer(ResourceGroupOperations resourceGroup) /// protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; + /// + /// Typed Resource Identifier for the container. + /// + public new ResourceGroupResourceIdentifier Id => base.Id as ResourceGroupResourceIdentifier; + /// public override ArmResponse CreateOrUpdate(string name, AvailabilitySetData resourceDetails, CancellationToken cancellationToken = default) { - var response = Operations.CreateOrUpdate(Id.ResourceGroup, name, resourceDetails.Model); + var response = Operations.CreateOrUpdate(Id.ResourceGroupName, name, resourceDetails.Model); return new PhArmResponse( response, a => new AvailabilitySet(Parent, new AvailabilitySetData(a))); @@ -36,7 +41,8 @@ public override ArmResponse CreateOrUpdate(string name, Availab /// public async override Task> CreateOrUpdateAsync(string name, AvailabilitySetData resourceDetails, CancellationToken cancellationToken = default) { - var response = await Operations.CreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false); + var containerId = Id as ResourceGroupResourceIdentifier; + var response = await Operations.CreateOrUpdateAsync(Id.ResourceGroupName, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false); return new PhArmResponse( response, a => new AvailabilitySet(Parent, new AvailabilitySetData(a))); @@ -46,7 +52,7 @@ public async override Task> CreateOrUpdateAsync(str public override ArmOperation StartCreateOrUpdate(string name, AvailabilitySetData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - Operations.CreateOrUpdate(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken), + Operations.CreateOrUpdate(Id.ResourceGroupName, name, resourceDetails.Model, cancellationToken), a => new AvailabilitySet(Parent, new AvailabilitySetData(a))); } @@ -54,7 +60,7 @@ public override ArmOperation StartCreateOrUpdate(string name, A public async override Task> StartCreateOrUpdateAsync(string name, AvailabilitySetData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - await Operations.CreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false), + await Operations.CreateOrUpdateAsync(Id.ResourceGroupName, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false), a => new AvailabilitySet(Parent, new AvailabilitySetData(a))); } @@ -64,9 +70,9 @@ await Operations.CreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails.Mod /// The sku name of the resource. /// The location of the resource. /// A builder with and . - public ArmBuilder Construct(string skuName, LocationData location = null) + public ArmBuilder Construct(string skuName, LocationData location = null) { - var parent = GetParentResource(); + var parent = GetParentResource(); var availabilitySet = new Azure.ResourceManager.Compute.Models.AvailabilitySet(location ?? parent.Data.Location) { PlatformUpdateDomainCount = 5, @@ -74,7 +80,7 @@ public ArmBuilder Construct(string skuName Sku = new Azure.ResourceManager.Compute.Models.Sku() { Name = skuName } }; - return new ArmBuilder(this, new AvailabilitySetData(availabilitySet)); + return new ArmBuilder(this, new AvailabilitySetData(availabilitySet)); } /// @@ -135,7 +141,7 @@ public AsyncPageable ListAsync(string nameFilter, int? top = nu private AvailabilitySetsOperations Operations => new ComputeManagementClient( BaseUri, - Id.Subscription, + Id.SubscriptionId, Credential, ClientOptions.Convert()).AvailabilitySets; @@ -143,14 +149,14 @@ public AsyncPageable ListAsync(string nameFilter, int? top = nu /// public override ArmResponse Get(string availabilitySetName, CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, availabilitySetName), + return new PhArmResponse(Operations.Get(Id.ResourceGroupName, availabilitySetName), g => new AvailabilitySet(Parent, new AvailabilitySetData(g))); } /// public override async Task> GetAsync(string availabilitySetName, CancellationToken cancellationToken = default) { - return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, availabilitySetName, cancellationToken), + return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroupName, availabilitySetName, cancellationToken), g => new AvailabilitySet(Parent, new AvailabilitySetData(g))); } } diff --git a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs index 1e12cb1c9213d..b35e3ae633bd8 100644 --- a/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs +++ b/sdk/resourcemanager/Proto.Client/compute/AvailabilitySetOperations.cs @@ -12,7 +12,7 @@ namespace Proto.Compute /// /// A class representing the operations that can be performed over a specific availability set. /// - public class AvailabilitySetOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource + public class AvailabilitySetOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource { /// /// Initializes a new instance of the class. @@ -29,7 +29,7 @@ internal AvailabilitySetOperations(GenericResourceOperations genericOperations) /// The client parameters to use in these operations. /// The name of the availability set to use. internal AvailabilitySetOperations(ResourceGroupOperations resourceGroup, string availabilitySetName) - : base(resourceGroup, $"{resourceGroup.Id}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}") + : base(resourceGroup, resourceGroup.Id.AppendProviderResource(ResourceType.Namespace, ResourceType.Type, availabilitySetName)) { } @@ -38,7 +38,7 @@ internal AvailabilitySetOperations(ResourceGroupOperations resourceGroup, string /// /// The client parameters to use in these operations. /// The identifier of the resource that is the target of operations. - protected AvailabilitySetOperations(ResourceOperationsBase options, ResourceIdentifier id) + protected AvailabilitySetOperations(ResourceOperationsBase options, ResourceGroupResourceIdentifier id) : base(options, id) { } @@ -53,39 +53,39 @@ protected AvailabilitySetOperations(ResourceOperationsBase options, ResourceIden private AvailabilitySetsOperations Operations => new ComputeManagementClient( BaseUri, - Id.Subscription, + Id.SubscriptionId, Credential, ClientOptions.Convert()).AvailabilitySets; /// public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.Delete(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmResponse(Operations.Delete(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse(await Operations.DeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmResponse(await Operations.DeleteAsync(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(Operations.Delete(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(Operations.Delete(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(await Operations.DeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(await Operations.DeleteAsync(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// public override ArmResponse Get(CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Get(Id.ResourceGroup, Id.Name), + Operations.Get(Id.ResourceGroupName, Id.Name), a => new AvailabilitySet(this, new AvailabilitySetData(a))); } @@ -93,7 +93,7 @@ public override ArmResponse Get(CancellationToken cancellationT public async override Task> GetAsync(CancellationToken cancellationToken = default) { return new PhArmResponse( - await Operations.GetAsync(Id.ResourceGroup, Id.Name, cancellationToken), + await Operations.GetAsync(Id.ResourceGroupName, Id.Name, cancellationToken), a => new AvailabilitySet(this, new AvailabilitySetData(a))); } @@ -105,7 +105,7 @@ await Operations.GetAsync(Id.ResourceGroup, Id.Name, cancellationToken), public ArmResponse Update(AvailabilitySetUpdate patchable, CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Update(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.Update(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), a => new AvailabilitySet(this, new AvailabilitySetData(a))); } @@ -118,7 +118,7 @@ public ArmResponse Update(AvailabilitySetUpdate patchable, Canc public async Task> UpdateAsync(AvailabilitySetUpdate patchable, CancellationToken cancellationToken = default) { return new PhArmResponse( - await Operations.UpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), a => new AvailabilitySet(this, new AvailabilitySetData(a))); } @@ -130,7 +130,7 @@ await Operations.UpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationT public ArmOperation StartUpdate(AvailabilitySetUpdate patchable, CancellationToken cancellationToken = default) { return new PhArmOperation( - Operations.Update(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.Update(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), a => new AvailabilitySet(this, new AvailabilitySetData(a))); } @@ -143,7 +143,7 @@ public ArmOperation StartUpdate(AvailabilitySetUpdate patchable public async Task> StartUpdateAsync(AvailabilitySetUpdate patchable, CancellationToken cancellationToken = default) { return new PhArmOperation( - await Operations.UpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), a => new AvailabilitySet(this, new AvailabilitySetData(a))); } diff --git a/sdk/resourcemanager/Proto.Client/compute/Convenience/VirtualMachineModelBuilder.cs b/sdk/resourcemanager/Proto.Client/compute/Convenience/VirtualMachineModelBuilder.cs index 79a31fecf2cf4..2a9ebfaabcc4a 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Convenience/VirtualMachineModelBuilder.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Convenience/VirtualMachineModelBuilder.cs @@ -25,7 +25,7 @@ public VirtualMachineModelBuilder(VirtualMachineContainer containerOperations, V /// /// The disk to attach. /// An instance of - public VirtualMachineModelBuilderBase AttachDataDisk(TrackedResource azureEntity) + public VirtualMachineModelBuilderBase AttachDataDisk(TrackedResource azureEntity) { throw new NotImplementedException(); } diff --git a/sdk/resourcemanager/Proto.Client/compute/Convenience/VirtualMachineModelBuilderBase.cs b/sdk/resourcemanager/Proto.Client/compute/Convenience/VirtualMachineModelBuilderBase.cs index b3ee5ee648f8d..013100e0a95d2 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Convenience/VirtualMachineModelBuilderBase.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Convenience/VirtualMachineModelBuilderBase.cs @@ -5,7 +5,7 @@ namespace Proto.Compute.Convenience /// /// A class representing the base for a builder object to help create a virtual machine. /// - public abstract class VirtualMachineModelBuilderBase : ArmBuilder + public abstract class VirtualMachineModelBuilderBase : ArmBuilder { /// /// Initializes a new instance of . diff --git a/sdk/resourcemanager/Proto.Client/compute/Extensions/ArmClientExtensions.cs b/sdk/resourcemanager/Proto.Client/compute/Extensions/ArmClientExtensions.cs index 1601ce928cc87..e283e86aba454 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Extensions/ArmClientExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Extensions/ArmClientExtensions.cs @@ -17,14 +17,14 @@ public static class ArmClientExtensions /// Returns an object representing the operations that can be performed over a specific . /// ResourceIdentifier provided is not for an AvailabilitySet. /// ResourceIdentifier cannot be null. - public static AvailabilitySetOperations GetAvailabilitySetOperations(this AzureResourceManagerClient client, ResourceIdentifier resourceId) + public static AvailabilitySetOperations GetAvailabilitySetOperations(this AzureResourceManagerClient client, ResourceGroupResourceIdentifier resourceId) { if (resourceId is null) throw new ArgumentNullException(nameof(resourceId)); - if (resourceId.Type != AvailabilitySetOperations.ResourceType) - throw new ArgumentException($"{nameof(resourceId.Type)} provided is not for an AvailabilitySet.", nameof(resourceId.Type)); + if (resourceId.ResourceType != AvailabilitySetOperations.ResourceType) + throw new ArgumentException($"{nameof(resourceId.ResourceType)} provided is not for an AvailabilitySet.", nameof(resourceId.ResourceType)); - return client.GetSubscriptionOperations(resourceId.Subscription).GetResourceGroupOperations(resourceId.ResourceGroup).GetAvailabilitySetOperations(resourceId.Name); + return client.GetSubscriptionOperations(resourceId.SubscriptionId).GetResourceGroupOperations(resourceId.ResourceGroupName).GetAvailabilitySetOperations(resourceId.Name); } /// @@ -35,14 +35,14 @@ public static AvailabilitySetOperations GetAvailabilitySetOperations(this AzureR /// Returns an object representing the operations that can be performed over a specific . /// ResourceIdentifier provided is not for a VirtualMachine. /// ResourceIdentifier cannot be null. - public static VirtualMachineOperations GetVirtualMachineOperations(this AzureResourceManagerClient client, ResourceIdentifier resourceId) + public static VirtualMachineOperations GetVirtualMachineOperations(this AzureResourceManagerClient client, ResourceGroupResourceIdentifier resourceId) { if (resourceId is null) throw new ArgumentNullException(nameof(resourceId)); - if (resourceId.Type != VirtualMachineOperations.ResourceType) - throw new ArgumentException($"{nameof(resourceId.Type)} provided is not for a VirtualMachine.", nameof(resourceId.Type)); + if (resourceId.ResourceType != VirtualMachineOperations.ResourceType) + throw new ArgumentException($"{nameof(resourceId.ResourceType)} provided is not for a VirtualMachine.", nameof(resourceId.ResourceType)); - return client.GetSubscriptionOperations(resourceId.Subscription).GetResourceGroupOperations(resourceId.ResourceGroup).GetVirtualMachineOperations(resourceId.Name); + return client.GetSubscriptionOperations(resourceId.SubscriptionId).GetResourceGroupOperations(resourceId.ResourceGroupName).GetVirtualMachineOperations(resourceId.Name); } } } diff --git a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs index 950a92fd6fa3e..859272060d737 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs @@ -34,7 +34,7 @@ public static Pageable ListVirtualMachines(this SubscriptionOper return subscription.ListResources( (baseUri, credential, options) => { - ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.Subscription, credential, options); + ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.SubscriptionId, credential, options); var vmOperations = computeClient.VirtualMachines; var result = vmOperations.ListAll(); return new PhWrappingPageable( @@ -54,7 +54,7 @@ public static AsyncPageable ListVirtualMachinesAsync(this Subscr return subscription.ListResourcesAsync( (baseUri, credential, options) => { - ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.Subscription, credential, options); + ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.SubscriptionId, credential, options); var vmOperations = computeClient.VirtualMachines; var result = vmOperations.ListAllAsync(); return new PhWrappingAsyncPageable( @@ -106,7 +106,7 @@ public static Pageable ListAvailabilitySets(this SubscriptionOp return subscription.ListResources( (baseUri, credential, options) => { - ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.Subscription, credential, options); + ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.SubscriptionId, credential, options); var availabilitySetOperations = computeClient.AvailabilitySets; var result = availabilitySetOperations.ListBySubscription(); return new PhWrappingPageable( @@ -126,7 +126,7 @@ public static AsyncPageable ListAvailabilitySetsAsync(this Subs return subscription.ListResourcesAsync( (baseUri, credential, options) => { - ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.Subscription, credential, options); + ComputeManagementClient computeClient = GetComputeClient(baseUri, subscription.Id.SubscriptionId, credential, options); var availabilitySetOperations = computeClient.AvailabilitySets; var result = availabilitySetOperations.ListBySubscriptionAsync(); return new PhWrappingAsyncPageable( diff --git a/sdk/resourcemanager/Proto.Client/compute/Placeholder/AvailabilitySetData.cs b/sdk/resourcemanager/Proto.Client/compute/Placeholder/AvailabilitySetData.cs index 57b1f66a3602a..63e6354d9f5ae 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Placeholder/AvailabilitySetData.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Placeholder/AvailabilitySetData.cs @@ -8,7 +8,7 @@ namespace Proto.Compute /// /// A class representing the availability set data model. /// - public class AvailabilitySetData : TrackedResource + public class AvailabilitySetData : TrackedResource { /// /// Gets the resource type definition for an availability set. diff --git a/sdk/resourcemanager/Proto.Client/compute/Placeholder/VirtualMachineData.cs b/sdk/resourcemanager/Proto.Client/compute/Placeholder/VirtualMachineData.cs index 65f46a4961fc5..1f047c7a58e38 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Placeholder/VirtualMachineData.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Placeholder/VirtualMachineData.cs @@ -8,7 +8,7 @@ namespace Proto.Compute /// /// A class representing the VirtualMachine data model. /// - public class VirtualMachineData : TrackedResource + public class VirtualMachineData : TrackedResource { /// /// Initializes a new instance of the class. @@ -136,12 +136,12 @@ public ResourceIdentity Identity private ResourceIdentity VmIdentityToIdentity(VirtualMachineIdentity vmIdentity) { SystemAssignedIdentity systemAssignedIdentity = new SystemAssignedIdentity(new Guid(vmIdentity.TenantId), new Guid(vmIdentity.PrincipalId)); - var userAssignedIdentities = new Dictionary(); + var userAssignedIdentities = new Dictionary(); if (vmIdentity.UserAssignedIdentities != null) { foreach (var entry in vmIdentity.UserAssignedIdentities) { - ResourceIdentifier resourceId = new ResourceIdentifier(entry.Key); + var resourceId = new ResourceGroupResourceIdentifier(entry.Key); var userAssignedIdentity = new UserAssignedIdentity(new Guid(entry.Value.ClientId), new Guid(entry.Value.PrincipalId)); userAssignedIdentities[resourceId] = userAssignedIdentity; } diff --git a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs index 249d9a0770648..47b755470a5f9 100644 --- a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs +++ b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineContainer.cs @@ -13,7 +13,7 @@ namespace Proto.Compute /// /// A class representing collection of VirtualMachine and their operations over a ResourceGroup. /// - public class VirtualMachineContainer : ResourceContainerBase + public class VirtualMachineContainer : ResourceContainerBase { /// /// Initializes a new instance of the class. @@ -24,9 +24,14 @@ internal VirtualMachineContainer(ResourceGroupOperations resourceGroup) { } + /// + /// Typed Resource Identifier for the container. + /// + public new ResourceGroupResourceIdentifier Id => base.Id as ResourceGroupResourceIdentifier; + private VirtualMachinesOperations Operations => new ComputeManagementClient( BaseUri, - Id.Subscription, + Id.SubscriptionId, Credential, ClientOptions.Convert()).VirtualMachines; @@ -44,7 +49,7 @@ internal VirtualMachineContainer(ResourceGroupOperations resourceGroup) /// A response with the operation for this resource. public override ArmResponse CreateOrUpdate(string name, VirtualMachineData resourceDetails, CancellationToken cancellationToken = default) { - var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken); + var operation = Operations.StartCreateOrUpdate(Id.ResourceGroupName, name, resourceDetails.Model, cancellationToken); return new PhArmResponse( operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), v => new VirtualMachine(Parent, new VirtualMachineData(v))); @@ -59,7 +64,7 @@ public override ArmResponse CreateOrUpdate(string name, VirtualM /// A that on completion returns a response with the operation for this resource. public async override Task> CreateOrUpdateAsync(string name, VirtualMachineData resourceDetails, CancellationToken cancellationToken = default) { - var operation = await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false); + var operation = await Operations.StartCreateOrUpdateAsync(Id.ResourceGroupName, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false); return new PhArmResponse( await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), v => new VirtualMachine(Parent, new VirtualMachineData(v))); @@ -78,7 +83,7 @@ await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), public override ArmOperation StartCreateOrUpdate(string name, VirtualMachineData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken), + Operations.StartCreateOrUpdate(Id.ResourceGroupName, name, resourceDetails.Model, cancellationToken), v => new VirtualMachine(Parent, new VirtualMachineData(v))); } @@ -95,7 +100,7 @@ public override ArmOperation StartCreateOrUpdate(string name, Vi public async override Task> StartCreateOrUpdateAsync(string name, VirtualMachineData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false), + await Operations.StartCreateOrUpdateAsync(Id.ResourceGroupName, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false), v => new VirtualMachine(Parent, new VirtualMachineData(v))); } @@ -111,7 +116,7 @@ await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetail /// Object used to create a . public VirtualMachineModelBuilder Construct(string hostName, string adminUser, string adminPassword, ResourceIdentifier networkInterfaceId, ResourceIdentifier availabilitySetId, LocationData location = null) { - var parent = GetParentResource(); + var parent = GetParentResource(); var vm = new Azure.ResourceManager.Compute.Models.VirtualMachine(location ?? parent.Data.Location) { NetworkProfile = new NetworkProfile(), @@ -225,14 +230,14 @@ public AsyncPageable ListAsync(string nameFilter, int? top = nul /// public override ArmResponse Get(string virtualMachineName, CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, virtualMachineName, cancellationToken), + return new PhArmResponse(Operations.Get(Id.ResourceGroupName, virtualMachineName, cancellationToken), v => new VirtualMachine(Parent, new VirtualMachineData(v))); } /// public override async Task> GetAsync(string virtualMachineName, CancellationToken cancellationToken = default) { - return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, virtualMachineName, cancellationToken), + return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroupName, virtualMachineName, cancellationToken), v => new VirtualMachine(Parent, new VirtualMachineData(v))); } } diff --git a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs index 45c61033c4e77..5b5a04c8f6c8b 100644 --- a/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs +++ b/sdk/resourcemanager/Proto.Client/compute/VirtualMachineOperations.cs @@ -12,7 +12,7 @@ namespace Proto.Compute /// /// A class representing the operations that can be performed over a specific VirtualMachine. /// - public class VirtualMachineOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource + public class VirtualMachineOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource { /// /// Initializes a new instance of the class. @@ -29,7 +29,7 @@ internal VirtualMachineOperations(GenericResourceOperations genericOperations) /// The client parameters to use in these operations. /// The identifier of the resource that is the target of operations. internal VirtualMachineOperations(ResourceGroupOperations resourceGroup, string vmName) - : base(resourceGroup, $"{resourceGroup.Id}/providers/Microsoft.Compute/virtualMachines/{vmName}") + : base(resourceGroup, resourceGroup.Id.AppendProviderResource(ResourceType.Namespace, ResourceType.Type, vmName)) { } @@ -38,7 +38,7 @@ internal VirtualMachineOperations(ResourceGroupOperations resourceGroup, string /// /// The client parameters to use in these operations. /// The identifier of the resource that is the target of operations. - protected VirtualMachineOperations(ResourceOperationsBase operation, ResourceIdentifier id) + protected VirtualMachineOperations(ResourceOperationsBase operation, ResourceGroupResourceIdentifier id) : base(operation, id) { } @@ -55,7 +55,7 @@ protected VirtualMachineOperations(ResourceOperationsBase operation, ResourceIde private VirtualMachinesOperations Operations => new ComputeManagementClient( BaseUri, - Id.Subscription, + Id.SubscriptionId, Credential, ClientOptions.Convert()).VirtualMachines; @@ -72,25 +72,25 @@ public static VirtualMachineOperations FromGeneric(GenericResourceOperations gen /// public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse(Operations.StartDelete(Id.ResourceGroupName, Id.Name, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroupName, Id.Name, cancellationToken)).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroupName, Id.Name, cancellationToken)); } #region PowerOn @@ -101,7 +101,7 @@ public async Task> StartDeleteAsync(CancellationToken can /// A response with the operation for this resource. public ArmResponse PowerOn(CancellationToken cancellationToken = default) { - var operation = Operations.StartStart(Id.ResourceGroup, Id.Name, cancellationToken); + var operation = Operations.StartStart(Id.ResourceGroupName, Id.Name, cancellationToken); return new ArmResponse(operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } @@ -112,7 +112,7 @@ public ArmResponse PowerOn(CancellationToken cancellationToken = defau /// A that on completion returns a response with the operation for this resource. public async Task> PowerOnAsync(CancellationToken cancellationToken = default) { - var operation = await Operations.StartStartAsync(Id.ResourceGroup, Id.Name, cancellationToken).ConfigureAwait(false); + var operation = await Operations.StartStartAsync(Id.ResourceGroupName, Id.Name, cancellationToken).ConfigureAwait(false); return new ArmResponse(await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false)); } @@ -123,7 +123,7 @@ public async Task> PowerOnAsync(CancellationToken cancella /// An that allows polling for completion of the operation. public ArmOperation StartPowerOn(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(Operations.StartStart(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(Operations.StartStart(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// @@ -133,7 +133,7 @@ public ArmOperation StartPowerOn(CancellationToken cancellationToken = /// A that on completion returns an that allows polling for completion of the operation. public async Task> StartPowerOnAsync(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(await Operations.StartStartAsync(Id.ResourceGroup, Id.Name, cancellationToken).ConfigureAwait(false)); + return new ArmVoidOperation(await Operations.StartStartAsync(Id.ResourceGroupName, Id.Name, cancellationToken).ConfigureAwait(false)); } #endregion @@ -146,7 +146,7 @@ public async Task> StartPowerOnAsync(CancellationToken ca /// A response with the operation for this resource. public ArmResponse PowerOff(bool? skipShutdown = null, CancellationToken cancellationToken = default) { - var operation = Operations.StartPowerOff(Id.ResourceGroup, Id.Name, skipShutdown, cancellationToken); + var operation = Operations.StartPowerOff(Id.ResourceGroupName, Id.Name, skipShutdown, cancellationToken); return new ArmResponse(operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } @@ -158,7 +158,7 @@ public ArmResponse PowerOff(bool? skipShutdown = null, CancellationTok /// A that on completion returns a response with the operation for this resource. public async Task> PowerOffAsync(bool? skipShutdown = null, CancellationToken cancellationToken = default) { - var operation = await Operations.StartPowerOffAsync(Id.ResourceGroup, Id.Name, skipShutdown, cancellationToken).ConfigureAwait(false); + var operation = await Operations.StartPowerOffAsync(Id.ResourceGroupName, Id.Name, skipShutdown, cancellationToken).ConfigureAwait(false); return new ArmResponse(await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false)); } @@ -170,7 +170,7 @@ public async Task> PowerOffAsync(bool? skipShutdown = null /// An that allows polling for completion of the operation. public ArmOperation StartPowerOff(bool? skipShutdown = null, CancellationToken cancellationToken = default) { - return new ArmVoidOperation(Operations.StartPowerOff(Id.ResourceGroup, Id.Name, skipShutdown, cancellationToken)); + return new ArmVoidOperation(Operations.StartPowerOff(Id.ResourceGroupName, Id.Name, skipShutdown, cancellationToken)); } /// @@ -181,7 +181,7 @@ public ArmOperation StartPowerOff(bool? skipShutdown = null, Cancellat /// A that on completion returns an that allows polling for completion of the operation. public async Task> StartPowerOffAsync(bool? skipShutdown = null, CancellationToken cancellationToken = default) { - return new ArmVoidOperation(await Operations.StartPowerOffAsync(Id.ResourceGroup, Id.Name, skipShutdown, cancellationToken).ConfigureAwait(false)); + return new ArmVoidOperation(await Operations.StartPowerOffAsync(Id.ResourceGroupName, Id.Name, skipShutdown, cancellationToken).ConfigureAwait(false)); } #endregion @@ -189,7 +189,7 @@ public async Task> StartPowerOffAsync(bool? skipShutdown public override ArmResponse Get(CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Get(Id.ResourceGroup, Id.Name, cancellationToken), + Operations.Get(Id.ResourceGroupName, Id.Name, cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -197,7 +197,7 @@ public override ArmResponse Get(CancellationToken cancellationTo public override async Task> GetAsync(CancellationToken cancellationToken = default) { return new PhArmResponse( - await Operations.GetAsync(Id.ResourceGroup, Id.Name, cancellationToken), + await Operations.GetAsync(Id.ResourceGroupName, Id.Name, cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -209,7 +209,7 @@ await Operations.GetAsync(Id.ResourceGroup, Id.Name, cancellationToken), public ArmOperation StartUpdate(VirtualMachineUpdate patchable, CancellationToken cancellationToken = default) { return new PhArmOperation( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.StartUpdate(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -222,7 +222,7 @@ public ArmOperation StartUpdate(VirtualMachineUpdate patchable, public async Task> StartUpdateAsync(VirtualMachineUpdate patchable, CancellationToken cancellationToken = default) { return new PhArmOperation( - await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.StartUpdateAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -235,7 +235,7 @@ public ArmResponse AddTag(string key, string value, Cancellation patchable.Tags[key] = value; return new PhArmResponse( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), + Operations.StartUpdate(Id.ResourceGroupName, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -248,7 +248,7 @@ public async Task> AddTagAsync(string key, string va patchable.Tags[key] = value; return new PhArmResponse( - await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(), + await Operations.StartUpdateAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -261,7 +261,7 @@ public ArmOperation StartAddTag(string key, string value, Cancel patchable.Tags[key] = value; return new PhArmOperation( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.StartUpdate(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -274,7 +274,7 @@ public async Task> StartAddTagAsync(string key, str patchable.Tags[key] = value; return new PhArmOperation( - await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.StartUpdateAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -285,7 +285,7 @@ public ArmResponse SetTags(IDictionary tags, Can patchable.Tags.ReplaceWith(tags); return new PhArmResponse( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), + Operations.StartUpdate(Id.ResourceGroupName, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -296,7 +296,7 @@ public async Task> SetTagsAsync(IDictionary( - await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(cancellationToken), + await Operations.StartUpdateAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -307,7 +307,7 @@ public ArmOperation StartSetTags(IDictionary tag patchable.Tags.ReplaceWith(tags); return new PhArmOperation( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), + Operations.StartUpdate(Id.ResourceGroupName, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -318,7 +318,7 @@ public async Task> StartSetTagsAsync(IDictionary( - await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(cancellationToken), + await Operations.StartUpdateAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -331,7 +331,7 @@ public ArmResponse RemoveTag(string key, CancellationToken cance patchable.Tags.Remove(key); return new PhArmResponse( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), + Operations.StartUpdate(Id.ResourceGroupName, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -344,7 +344,7 @@ public async Task> RemoveTagAsync(string key, Cancel patchable.Tags.Remove(key); return new PhArmResponse( - await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(cancellationToken), + await Operations.StartUpdateAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -357,7 +357,7 @@ public ArmOperation StartRemoveTag(string key, CancellationToken patchable.Tags.Remove(key); return new PhArmOperation( - Operations.StartUpdate(Id.ResourceGroup, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), + Operations.StartUpdate(Id.ResourceGroupName, Id.Name, patchable, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), v => new VirtualMachine(this, new VirtualMachineData(v))); } @@ -370,7 +370,7 @@ public async Task> StartRemoveTagAsync(string key, patchable.Tags.Remove(key); return new PhArmOperation( - await Operations.StartUpdateAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(cancellationToken), + await Operations.StartUpdateAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken).Result.WaitForCompletionAsync(cancellationToken), v => new VirtualMachine(this, new VirtualMachineData(v))); } diff --git a/sdk/resourcemanager/Proto.Client/network/Extensions/ArmClientExtensions.cs b/sdk/resourcemanager/Proto.Client/network/Extensions/ArmClientExtensions.cs index 1b5103d57f996..c1474cc3b6286 100644 --- a/sdk/resourcemanager/Proto.Client/network/Extensions/ArmClientExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/network/Extensions/ArmClientExtensions.cs @@ -17,15 +17,15 @@ public static class ArmClientExtensions /// Returns an object representing the operations that can be performed over a specific . /// ResourceIdentifier provided is not for a NetworkInterfaceOperations. /// ResourceIdentifier cannot be null. - public static NetworkInterfaceOperations GetNetworkInterfaceOperations(this AzureResourceManagerClient client, ResourceIdentifier resourceId) + public static NetworkInterfaceOperations GetNetworkInterfaceOperations(this AzureResourceManagerClient client, ResourceGroupResourceIdentifier resourceId) { if (resourceId is null) throw new ArgumentNullException(nameof(resourceId)); - if (resourceId.Type != NetworkInterfaceOperations.ResourceType) - throw new ArgumentException($"{nameof(resourceId.Type)} provided is not for a NetworkInterface.", nameof(resourceId.Type)); + if (resourceId.ResourceType != NetworkInterfaceOperations.ResourceType) + throw new ArgumentException($"{nameof(resourceId.ResourceType)} provided is not for a NetworkInterface.", nameof(resourceId.ResourceType)); - var subOps = client.GetSubscriptionOperations(resourceId.Subscription); - var rgOps = subOps.GetResourceGroupOperations(resourceId.ResourceGroup); + var subOps = client.GetSubscriptionOperations(resourceId.SubscriptionId); + var rgOps = subOps.GetResourceGroupOperations(resourceId.ResourceGroupName); return rgOps.GetNetworkInterfaceOperations(resourceId.Name); } @@ -37,15 +37,15 @@ public static NetworkInterfaceOperations GetNetworkInterfaceOperations(this Azur /// Returns an object representing the operations that can be performed over a specific . /// ResourceIdentifier provided is not for a NetworkSecurityGroup. /// ResourceIdentifier cannot be null. - public static NetworkSecurityGroupOperations GetNetworkSecurityGroupOperations(this AzureResourceManagerClient client, ResourceIdentifier resourceId) + public static NetworkSecurityGroupOperations GetNetworkSecurityGroupOperations(this AzureResourceManagerClient client, ResourceGroupResourceIdentifier resourceId) { if (resourceId is null) throw new ArgumentNullException(nameof(resourceId)); - if (resourceId.Type != NetworkSecurityGroupOperations.ResourceType) - throw new ArgumentException($"{nameof(resourceId.Type)} provided is not for a NetworkSecurityGroup.", nameof(resourceId.Type)); + if (resourceId.ResourceType != NetworkSecurityGroupOperations.ResourceType) + throw new ArgumentException($"{nameof(resourceId.ResourceType)} provided is not for a NetworkSecurityGroup.", nameof(resourceId.ResourceType)); - var subOps = client.GetSubscriptionOperations(resourceId.Subscription); - var rgOps = subOps.GetResourceGroupOperations(resourceId.ResourceGroup); + var subOps = client.GetSubscriptionOperations(resourceId.SubscriptionId); + var rgOps = subOps.GetResourceGroupOperations(resourceId.ResourceGroupName); return rgOps.GetNetworkSecurityGroupOperations(resourceId.Name); } @@ -57,15 +57,15 @@ public static NetworkSecurityGroupOperations GetNetworkSecurityGroupOperations(t /// Returns an object representing the operations that can be performed over a specific . /// ResourceIdentifier provided is not for a PublicIpAddress. /// ResourceIdentifier cannot be null. - public static PublicIpAddressOperations GetPublicIpAddressOperations(this AzureResourceManagerClient client, ResourceIdentifier resourceId) + public static PublicIpAddressOperations GetPublicIpAddressOperations(this AzureResourceManagerClient client, ResourceGroupResourceIdentifier resourceId) { if (resourceId is null) throw new ArgumentNullException(nameof(resourceId)); - if (resourceId.Type != PublicIpAddressOperations.ResourceType) - throw new ArgumentException($"{nameof(resourceId.Type)} provided is not for a PublicIpAddress.", nameof(resourceId.Type)); + if (resourceId.ResourceType != PublicIpAddressOperations.ResourceType) + throw new ArgumentException($"{nameof(resourceId.ResourceType)} provided is not for a PublicIpAddress.", nameof(resourceId.ResourceType)); - var subOps = client.GetSubscriptionOperations(resourceId.Subscription); - var rgOps = subOps.GetResourceGroupOperations(resourceId.ResourceGroup); + var subOps = client.GetSubscriptionOperations(resourceId.SubscriptionId); + var rgOps = subOps.GetResourceGroupOperations(resourceId.ResourceGroupName); return rgOps.GetPublicIpAddressOperations(resourceId.Name); } @@ -77,14 +77,14 @@ public static PublicIpAddressOperations GetPublicIpAddressOperations(this AzureR /// Returns an object representing the operations that can be performed over a specific . /// ResourceIdentifier provided is not for a Subnet. /// ResourceIdentifier cannot be null. - public static SubnetOperations GetSubnetOperations(this AzureResourceManagerClient client, ResourceIdentifier resourceId) + public static SubnetOperations GetSubnetOperations(this AzureResourceManagerClient client, ResourceGroupResourceIdentifier resourceId) { if (resourceId is null) throw new ArgumentNullException(nameof(resourceId)); - if (resourceId.Type != SubnetOperations.ResourceType) - throw new ArgumentException($"{nameof(resourceId.Type)} provided is not for a Subnet.", nameof(resourceId.Type)); - var subOps = client.GetSubscriptionOperations(resourceId.Subscription); - var rgOps = subOps.GetResourceGroupOperations(resourceId.ResourceGroup); + if (resourceId.ResourceType != SubnetOperations.ResourceType) + throw new ArgumentException($"{nameof(resourceId.ResourceType)} provided is not for a Subnet.", nameof(resourceId.ResourceType)); + var subOps = client.GetSubscriptionOperations(resourceId.SubscriptionId); + var rgOps = subOps.GetResourceGroupOperations(resourceId.ResourceGroupName); var vnetOps = rgOps.GetVirtualNetworkOperations(resourceId.Parent.Name); return vnetOps.GetSubnetOperations(resourceId.Name); } @@ -97,15 +97,15 @@ public static SubnetOperations GetSubnetOperations(this AzureResourceManagerClie /// Returns an object representing the operations that can be performed over a specific . /// ResourceIdentifier provided is not for a VirtualNetwork. /// ResourceIdentifier cannot be null. - public static VirtualNetworkOperations GetVirtualNetworkOperations(this AzureResourceManagerClient client, ResourceIdentifier resourceId) + public static VirtualNetworkOperations GetVirtualNetworkOperations(this AzureResourceManagerClient client, ResourceGroupResourceIdentifier resourceId) { if (resourceId is null) throw new ArgumentNullException(nameof(resourceId)); - if (resourceId.Type != VirtualNetworkOperations.ResourceType) - throw new ArgumentException($"{nameof(resourceId.Type)} provided is not for a VirtualNetwork.", nameof(resourceId.Type)); + if (resourceId.ResourceType != VirtualNetworkOperations.ResourceType) + throw new ArgumentException($"{nameof(resourceId.ResourceType)} provided is not for a VirtualNetwork.", nameof(resourceId.ResourceType)); - var subOps = client.GetSubscriptionOperations(resourceId.Subscription); - var rgOps = subOps.GetResourceGroupOperations(resourceId.ResourceGroup); + var subOps = client.GetSubscriptionOperations(resourceId.SubscriptionId); + var rgOps = subOps.GetResourceGroupOperations(resourceId.ResourceGroupName); return rgOps.GetVirtualNetworkOperations(resourceId.Parent.Name); } } diff --git a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs index 093c978ccfe40..1fef2e0db422f 100644 --- a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs @@ -35,7 +35,7 @@ public static Pageable ListVnets(this SubscriptionOperations sub return subscription.ListResources( (baseUri, credential, options) => { - NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.SubscriptionId, credential, options); var vmOperations = networkClient.VirtualNetworks; var result = vmOperations.ListAll(); return new PhWrappingPageable( @@ -55,7 +55,7 @@ public static AsyncPageable ListVnetsAsync(this SubscriptionOper return subscription.ListResourcesAsync( (baseUri, credential, options) => { - NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.SubscriptionId, credential, options); var vmOperations = networkClient.VirtualNetworks; var result = vmOperations.ListAllAsync(); return new PhWrappingAsyncPageable( @@ -79,7 +79,7 @@ public static Pageable ListPublicIps(this SubscriptionOperation return subscription.ListResources( (baseUri, credential, options) => { - NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.SubscriptionId, credential, options); var publicIPAddressesOperations = networkClient.PublicIPAddresses; var result = publicIPAddressesOperations.ListAll(); return new PhWrappingPageable( @@ -99,7 +99,7 @@ public static AsyncPageable ListPublicIpsAsync(this Subscriptio return subscription.ListResourcesAsync( (baseUri, credential, options) => { - NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.SubscriptionId, credential, options); var publicIPAddressesOperations = networkClient.PublicIPAddresses; var result = publicIPAddressesOperations.ListAllAsync(); return new PhWrappingAsyncPageable( @@ -123,7 +123,7 @@ public static Pageable ListNics(this SubscriptionOperations su return subscription.ListResources( (baseUri, credential, options) => { - NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.SubscriptionId, credential, options); var networkInterfacesOperations = networkClient.NetworkInterfaces; var result = networkInterfacesOperations.ListAll(); return new PhWrappingPageable( @@ -143,7 +143,7 @@ public static AsyncPageable ListNicsAsync(this SubscriptionOpe return subscription.ListResourcesAsync( (baseUri, credential, options) => { - NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.SubscriptionId, credential, options); var networkInterfacesOperations = networkClient.NetworkInterfaces; var result = networkInterfacesOperations.ListAllAsync(); return new PhWrappingAsyncPageable( @@ -167,7 +167,7 @@ public static Pageable ListNsgs(this SubscriptionOperation return subscription.ListResources( (baseUri, credential, options) => { - NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.SubscriptionId, credential, options); var networkSecurityGroupsOperations = networkClient.NetworkSecurityGroups; var result = networkSecurityGroupsOperations.ListAll(); return new PhWrappingPageable( @@ -187,7 +187,7 @@ public static AsyncPageable ListNsgsAsync(this Subscriptio return subscription.ListResourcesAsync( (baseUri, credential, options) => { - NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.Subscription, credential, options); + NetworkManagementClient networkClient = GetNetworkClient(baseUri, subscription.Id.SubscriptionId, credential, options); var networkSecurityGroupsOperations = networkClient.NetworkSecurityGroups; var result = networkSecurityGroupsOperations.ListAllAsync(); return new PhWrappingAsyncPageable( diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs index 8720586116fec..8ca3a7a84a541 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs @@ -16,7 +16,7 @@ namespace Proto.Network /// /// A class representing collection of and their operations over a . /// - public class NetworkInterfaceContainer : ResourceContainerBase + public class NetworkInterfaceContainer : ResourceContainerBase { internal NetworkInterfaceContainer(ResourceGroupOperations resourceGroup) : base(resourceGroup) @@ -24,18 +24,23 @@ internal NetworkInterfaceContainer(ResourceGroupOperations resourceGroup) } internal NetworkInterfacesOperations Operations => new NetworkManagementClient( - Id.Subscription, + Id.SubscriptionId, BaseUri, Credential, ClientOptions.Convert()).NetworkInterfaces; /// + /// + /// Typed Resource Identifier for the container. + /// + public new ResourceGroupResourceIdentifier Id => base.Id as ResourceGroupResourceIdentifier; + protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; /// public override ArmResponse CreateOrUpdate(string name, NetworkInterfaceData resourceDetails, CancellationToken cancellationToken = default) { - var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails, cancellationToken); + var operation = Operations.StartCreateOrUpdate(Id.ResourceGroupName, name, resourceDetails, cancellationToken); return new PhArmResponse( operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), n => new NetworkInterface(Parent, new NetworkInterfaceData(n))); @@ -44,7 +49,7 @@ public override ArmResponse CreateOrUpdate(string name, Networ /// public async override Task> CreateOrUpdateAsync(string name, NetworkInterfaceData resourceDetails, CancellationToken cancellationToken = default) { - var operation = await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails, cancellationToken).ConfigureAwait(false); + var operation = await Operations.StartCreateOrUpdateAsync(Id.ResourceGroupName, name, resourceDetails, cancellationToken).ConfigureAwait(false); return new PhArmResponse( await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), n => new NetworkInterface(Parent, new NetworkInterfaceData(n))); @@ -54,7 +59,7 @@ await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), public override ArmOperation StartCreateOrUpdate(string name, NetworkInterfaceData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails, cancellationToken), + Operations.StartCreateOrUpdate(Id.ResourceGroupName, name, resourceDetails, cancellationToken), n => new NetworkInterface(Parent, new NetworkInterfaceData(n))); } @@ -62,7 +67,7 @@ public override ArmOperation StartCreateOrUpdate(string name, public async override Task> StartCreateOrUpdateAsync(string name, NetworkInterfaceData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails, cancellationToken).ConfigureAwait(false), + await Operations.StartCreateOrUpdateAsync(Id.ResourceGroupName, name, resourceDetails, cancellationToken).ConfigureAwait(false), n => new NetworkInterface(Parent, new NetworkInterfaceData(n))); } @@ -73,9 +78,9 @@ await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetail /// The resource identifier of the subnet attached to this . /// The that will contain the . /// An object used to create a . - public ArmBuilder Construct(string subnetId, PublicIPAddressData ip = default, LocationData location = null) + public ArmBuilder Construct(string subnetId, PublicIPAddressData ip = default, LocationData location = null) { - var parent = GetParentResource(); + var parent = GetParentResource(); var nic = new Azure.ResourceManager.Network.Models.NetworkInterface() { Location = location ?? parent.Data.Location, @@ -92,7 +97,7 @@ public ArmBuilder Construct(string subne if (ip != null) nic.IpConfigurations[0].PublicIPAddress = new PublicIPAddress() { Id = ip.Id }; - return new ArmBuilder(this, new NetworkInterfaceData(nic)); + return new ArmBuilder(this, new NetworkInterfaceData(nic)); } /// @@ -191,7 +196,7 @@ public AsyncPageable ListAsync(string nameFilter, int? top = n public override ArmResponse Get(string networkInterfaceName, CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Get(Id.ResourceGroup, networkInterfaceName, cancellationToken: cancellationToken), + Operations.Get(Id.ResourceGroupName, networkInterfaceName, cancellationToken: cancellationToken), g => new NetworkInterface(Parent, new NetworkInterfaceData(g))); } @@ -199,7 +204,7 @@ public override ArmResponse Get(string networkInterfaceName, C public override async Task> GetAsync(string networkInterfaceName, CancellationToken cancellationToken = default) { return new PhArmResponse( - await Operations.GetAsync(Id.ResourceGroup, networkInterfaceName, null, cancellationToken), + await Operations.GetAsync(Id.ResourceGroupName, networkInterfaceName, null, cancellationToken), g => new NetworkInterface(Parent, new NetworkInterfaceData(g))); } } diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs index cee3b0dd91675..60ffdb798789e 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceOperations.cs @@ -12,7 +12,7 @@ namespace Proto.Network /// /// A class representing the operations that can be pefroemd over a specific . /// - public class NetworkInterfaceOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource + public class NetworkInterfaceOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource { internal NetworkInterfaceOperations(GenericResourceOperations genericOperations) : base(genericOperations, genericOperations.Id) @@ -20,7 +20,7 @@ internal NetworkInterfaceOperations(GenericResourceOperations genericOperations) } internal NetworkInterfaceOperations(ResourceGroupOperations resourceGroup, string nicName) - : base(resourceGroup, $"{resourceGroup.Id}/providers/Microsoft.Network/networkInterfaces/{nicName}") + : base(resourceGroup, resourceGroup.Id.AppendProviderResource( ResourceType.Namespace, ResourceType.Type, nicName)) { } @@ -29,7 +29,7 @@ internal NetworkInterfaceOperations(ResourceGroupOperations resourceGroup, strin /// /// The client parameters to use in these operations. /// The identifier of the resource that is the target of operations. - protected NetworkInterfaceOperations(ResourceOperationsBase options, ResourceIdentifier id) + protected NetworkInterfaceOperations(ResourceOperationsBase options, ResourceGroupResourceIdentifier id) : base(options, id) { } @@ -43,7 +43,7 @@ protected NetworkInterfaceOperations(ResourceOperationsBase options, ResourceIde protected override ResourceType ValidResourceType => ResourceType; internal NetworkInterfacesOperations Operations => new NetworkManagementClient( - Id.Subscription, + Id.SubscriptionId, BaseUri, Credential, ClientOptions.Convert()).NetworkInterfaces; @@ -51,34 +51,34 @@ protected NetworkInterfaceOperations(ResourceOperationsBase options, ResourceIde /// public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken) + return new ArmResponse(Operations.StartDelete(Id.ResourceGroupName, Id.Name, cancellationToken) .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)) + return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroupName, Id.Name, cancellationToken)) .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// public override ArmResponse Get(CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Get(Id.ResourceGroup, Id.Name, cancellationToken: cancellationToken), + Operations.Get(Id.ResourceGroupName, Id.Name, cancellationToken: cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -86,7 +86,7 @@ public override ArmResponse Get(CancellationToken cancellation public async override Task> GetAsync(CancellationToken cancellationToken = default) { return new PhArmResponse( - await Operations.GetAsync(Id.ResourceGroup, Id.Name, null, cancellationToken), + await Operations.GetAsync(Id.ResourceGroupName, Id.Name, null, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -98,7 +98,7 @@ public ArmResponse AddTag(string key, string value, Cancellati patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmResponse( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -110,7 +110,7 @@ public async Task> AddTagAsync(string key, string patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmResponse( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -122,7 +122,7 @@ public ArmOperation StartAddTag(string key, string value, Canc patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmOperation( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -134,7 +134,7 @@ public async Task> StartAddTagAsync(string key, s patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmOperation( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -144,7 +144,7 @@ public ArmResponse SetTags(IDictionary tags, C var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); return new PhArmResponse( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -154,7 +154,7 @@ public async Task> SetTagsAsync(IDictionary( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -164,7 +164,7 @@ public ArmOperation StartSetTags(IDictionary t var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); return new PhArmOperation( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -174,7 +174,7 @@ public async Task> StartSetTagsAsync(IDictionary< var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); return new PhArmOperation( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -186,7 +186,7 @@ public ArmResponse RemoveTag(string key, CancellationToken can patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmResponse( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -198,7 +198,7 @@ public async Task> RemoveTagAsync(string key, Canc patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmResponse( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -210,7 +210,7 @@ public ArmOperation StartRemoveTag(string key, CancellationTok patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmOperation( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } @@ -222,7 +222,7 @@ public async Task> StartRemoveTagAsync(string key patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmOperation( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkInterface(this, new NetworkInterfaceData(n))); } diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs index 9ba6382d3c1dc..3d6b63e4bfd87 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs @@ -15,7 +15,7 @@ namespace Proto.Network /// /// A class representing collection of NetworkSecurityGroup and their operations over a resource group. /// - public class NetworkSecurityGroupContainer : ResourceContainerBase + public class NetworkSecurityGroupContainer : ResourceContainerBase { /// /// Initializes a new instance of the class. @@ -38,10 +38,15 @@ internal NetworkSecurityGroupContainer(ResourceGroupOperations resourceGroup) /// /// Gets the valid resource type for network security groups. /// + /// + /// Typed Resource Identifier for the container. + /// + public new ResourceGroupResourceIdentifier Id => base.Id as ResourceGroupResourceIdentifier; + protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; private NetworkSecurityGroupsOperations Operations => new NetworkManagementClient( - Id.Subscription, + Id.SubscriptionId, BaseUri, Credential, ClientOptions.Convert()).NetworkSecurityGroups; @@ -49,7 +54,7 @@ internal NetworkSecurityGroupContainer(ResourceGroupOperations resourceGroup) /// public override ArmResponse CreateOrUpdate(string name, NetworkSecurityGroupData resourceDetails, CancellationToken cancellationToken = default) { - var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken); + var operation = Operations.StartCreateOrUpdate(Id.ResourceGroupName, name, resourceDetails.Model, cancellationToken); return new PhArmResponse( operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), n => new NetworkSecurityGroup(Parent, new NetworkSecurityGroupData(n))); @@ -58,7 +63,7 @@ public override ArmResponse CreateOrUpdate(string name, Ne /// public override async Task> CreateOrUpdateAsync(string name, NetworkSecurityGroupData resourceDetails, CancellationToken cancellationToken = default) { - var operation = await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false); + var operation = await Operations.StartCreateOrUpdateAsync(Id.ResourceGroupName, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false); return new PhArmResponse( await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), n => new NetworkSecurityGroup(Parent, new NetworkSecurityGroupData(n))); @@ -68,7 +73,7 @@ await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), public override ArmOperation StartCreateOrUpdate(string name, NetworkSecurityGroupData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken), + Operations.StartCreateOrUpdate(Id.ResourceGroupName, name, resourceDetails.Model, cancellationToken), n => new NetworkSecurityGroup(Parent, new NetworkSecurityGroupData(n))); } @@ -76,7 +81,7 @@ public override ArmOperation StartCreateOrUpdate(string na public override async Task> StartCreateOrUpdateAsync(string name, NetworkSecurityGroupData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false), + await Operations.StartCreateOrUpdateAsync(Id.ResourceGroupName, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false), n => new NetworkSecurityGroup(Parent, new NetworkSecurityGroupData(n))); } @@ -86,9 +91,9 @@ await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetail /// The location to create the network security group. /// The location to create the network security group. /// Object used to create a . - public ArmBuilder Construct(LocationData locationData = null, params int[] openPorts) + public ArmBuilder Construct(LocationData locationData = null, params int[] openPorts) { - var parent = GetParentResource(); + var parent = GetParentResource(); var nsg = new Azure.ResourceManager.Network.Models.NetworkSecurityGroup { Location = locationData ?? parent.Data.Location @@ -112,7 +117,7 @@ public ArmBuilder Construct(Loca nsg.SecurityRules.Add(securityRule); } - return new ArmBuilder(this, new NetworkSecurityGroupData(nsg)); + return new ArmBuilder(this, new NetworkSecurityGroupData(nsg)); } /// @@ -120,9 +125,9 @@ public ArmBuilder Construct(Loca /// /// The location to create the network security group. /// Object used to create a . - public ArmBuilder Construct(params int[] openPorts) + public ArmBuilder Construct(params int[] openPorts) { - var parent = GetParentResource(); + var parent = GetParentResource(); var nsg = new Azure.ResourceManager.Network.Models.NetworkSecurityGroup { Location = parent.Data.Location, @@ -146,7 +151,7 @@ public ArmBuilder Construct(para nsg.SecurityRules.Add(securityRule); } - return new ArmBuilder(this, new NetworkSecurityGroupData(nsg)); + return new ArmBuilder(this, new NetworkSecurityGroupData(nsg)); } /// @@ -233,7 +238,7 @@ public AsyncPageable ListAsync(string nameFilter, int? top public override ArmResponse Get(string networkSecurityGroup, CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Get(Id.ResourceGroup, networkSecurityGroup, cancellationToken: cancellationToken), + Operations.Get(Id.ResourceGroupName, networkSecurityGroup, cancellationToken: cancellationToken), g => new NetworkSecurityGroup(Parent, new NetworkSecurityGroupData(g))); } @@ -241,7 +246,7 @@ public override ArmResponse Get(string networkSecurityGrou public override async Task> GetAsync(string networkSecurityGroup, CancellationToken cancellationToken = default) { return new PhArmResponse( - await Operations.GetAsync(Id.ResourceGroup, networkSecurityGroup, null, cancellationToken), + await Operations.GetAsync(Id.ResourceGroupName, networkSecurityGroup, null, cancellationToken), g => new NetworkSecurityGroup(Parent, new NetworkSecurityGroupData(g))); } } diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs index 6ff4c77e7ef9f..f9a72e4368803 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupOperations.cs @@ -16,7 +16,7 @@ namespace Proto.Network /// /// A class representing the operations that can be performed over a specific NetworkSecurityGroup. /// - public class NetworkSecurityGroupOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource + public class NetworkSecurityGroupOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource { /// /// Initializes a new instance of the class. @@ -33,7 +33,7 @@ internal NetworkSecurityGroupOperations(GenericResourceOperations genericOperati /// The client parameters to use in these operations. /// The network security group name. internal NetworkSecurityGroupOperations(ResourceGroupOperations resourceGroup, string nsgName) - : base(resourceGroup, $"{resourceGroup.Id}/providers/Microsoft.Network/networkSecurityGroups/{nsgName}") + : base(resourceGroup, resourceGroup.Id.AppendProviderResource(ResourceType.Namespace, ResourceType.Type, nsgName)) { } @@ -56,7 +56,7 @@ protected NetworkSecurityGroupOperations(ResourceOperationsBase operation, Resou public static readonly ResourceType ResourceType = "Microsoft.Network/networkSecurityGroups"; private NetworkSecurityGroupsOperations Operations => new NetworkManagementClient( - Id.Subscription, + Id.SubscriptionId, BaseUri, Credential, ClientOptions.Convert()).NetworkSecurityGroups; @@ -97,7 +97,7 @@ public ArmOperation UpdateRules(CancellationToken cancella } return new PhArmOperation( - Operations.StartCreateOrUpdate(Id.ResourceGroup, Id.Name, resource.Data), + Operations.StartCreateOrUpdate(Id.ResourceGroupName, Id.Name, resource.Data), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -105,7 +105,7 @@ public ArmOperation UpdateRules(CancellationToken cancella public override ArmResponse Get(CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Get(Id.ResourceGroup, Id.Name, cancellationToken: cancellationToken), + Operations.Get(Id.ResourceGroupName, Id.Name, cancellationToken: cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -113,7 +113,7 @@ public override ArmResponse Get(CancellationToken cancella public override async Task> GetAsync(CancellationToken cancellationToken = default) { return new PhArmResponse( - await Operations.GetAsync(Id.ResourceGroup, Id.Name, null, cancellationToken), + await Operations.GetAsync(Id.ResourceGroupName, Id.Name, null, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -125,7 +125,7 @@ public ArmResponse AddTag(string key, string value, Cancel patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmResponse( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -137,7 +137,7 @@ public async Task> AddTagAsync(string key, str patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmResponse( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -149,7 +149,7 @@ public ArmOperation StartAddTag(string key, string value, patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmOperation( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -161,34 +161,34 @@ public async Task> StartAddTagAsync(string ke patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmOperation( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } /// public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken) + return new ArmResponse(Operations.StartDelete(Id.ResourceGroupName, Id.Name, cancellationToken) .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)) + return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroupName, Id.Name, cancellationToken)) .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// @@ -203,7 +203,7 @@ public ArmResponse SetTags(IDictionary tag var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); return new PhArmResponse( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -213,7 +213,7 @@ public async Task> SetTagsAsync(IDictionary( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -223,7 +223,7 @@ public ArmOperation StartSetTags(IDictionary( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -233,7 +233,7 @@ public async Task> StartSetTagsAsync(IDiction var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); return new PhArmOperation( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -245,7 +245,7 @@ public ArmResponse RemoveTag(string key, CancellationToken patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmResponse( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -257,7 +257,7 @@ public async Task> RemoveTagAsync(string key, patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmResponse( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -269,7 +269,7 @@ public ArmOperation StartRemoveTag(string key, Cancellatio patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmOperation( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } @@ -281,7 +281,7 @@ public async Task> StartRemoveTagAsync(string patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmOperation( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new NetworkSecurityGroup(this, new NetworkSecurityGroupData(n))); } diff --git a/sdk/resourcemanager/Proto.Client/network/Placeholder/NetworkInterfaceData.cs b/sdk/resourcemanager/Proto.Client/network/Placeholder/NetworkInterfaceData.cs index c69b4442041fd..905d5f1d76d43 100644 --- a/sdk/resourcemanager/Proto.Client/network/Placeholder/NetworkInterfaceData.cs +++ b/sdk/resourcemanager/Proto.Client/network/Placeholder/NetworkInterfaceData.cs @@ -8,7 +8,7 @@ namespace Proto.Network /// /// A network interface in a resource group. /// - public class NetworkInterfaceData : TrackedResource + public class NetworkInterfaceData : TrackedResource { /// /// The ARM resource type for this . diff --git a/sdk/resourcemanager/Proto.Client/network/Placeholder/NetworkSecurityGroupData.cs b/sdk/resourcemanager/Proto.Client/network/Placeholder/NetworkSecurityGroupData.cs index bfb5dfadc68db..977cf87bdeabe 100644 --- a/sdk/resourcemanager/Proto.Client/network/Placeholder/NetworkSecurityGroupData.cs +++ b/sdk/resourcemanager/Proto.Client/network/Placeholder/NetworkSecurityGroupData.cs @@ -11,7 +11,7 @@ namespace Proto.Network /// A class representing the NetworkSecurityGroup data model. /// public class NetworkSecurityGroupData : - TrackedResource + TrackedResource { /// /// Initializes a new instance of the class. diff --git a/sdk/resourcemanager/Proto.Client/network/Placeholder/PublicIPAddressData.cs b/sdk/resourcemanager/Proto.Client/network/Placeholder/PublicIPAddressData.cs index 84303c1f83fc3..a8baefb4c8603 100644 --- a/sdk/resourcemanager/Proto.Client/network/Placeholder/PublicIPAddressData.cs +++ b/sdk/resourcemanager/Proto.Client/network/Placeholder/PublicIPAddressData.cs @@ -11,7 +11,7 @@ namespace Proto.Network /// /// A class representing the public IP address data model. /// - public class PublicIPAddressData : TrackedResource + public class PublicIPAddressData : TrackedResource { /// /// Gets the resource type definition for a public IP address. diff --git a/sdk/resourcemanager/Proto.Client/network/Placeholder/SubnetData.cs b/sdk/resourcemanager/Proto.Client/network/Placeholder/SubnetData.cs index 66fec3350b717..2e919f7d53cd7 100644 --- a/sdk/resourcemanager/Proto.Client/network/Placeholder/SubnetData.cs +++ b/sdk/resourcemanager/Proto.Client/network/Placeholder/SubnetData.cs @@ -7,7 +7,7 @@ namespace Proto.Network /// /// A class representing the subnet data model. /// - public class SubnetData : ProxyResource + public class SubnetData : ProxyResource { /// /// Initializes a new instance of the class. diff --git a/sdk/resourcemanager/Proto.Client/network/Placeholder/VirtualNetworkData.cs b/sdk/resourcemanager/Proto.Client/network/Placeholder/VirtualNetworkData.cs index 07e62b448ca98..eb7fa5bb41ba2 100644 --- a/sdk/resourcemanager/Proto.Client/network/Placeholder/VirtualNetworkData.cs +++ b/sdk/resourcemanager/Proto.Client/network/Placeholder/VirtualNetworkData.cs @@ -8,7 +8,7 @@ namespace Proto.Network /// /// A class representing the virtual nerwork data model. /// - public class VirtualNetworkData : TrackedResource + public class VirtualNetworkData : TrackedResource { /// /// Gets the resource type definition for a virtual nerwork. diff --git a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs index 2279254d33640..2d60fbde72b38 100644 --- a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressContainer.cs @@ -15,7 +15,7 @@ namespace Proto.Network /// /// A class representing collection of PublicIpAddress and their operations over a resource group. /// - public class PublicIpAddressContainer : ResourceContainerBase + public class PublicIpAddressContainer : ResourceContainerBase { /// /// Initializes a new instance of the class. @@ -26,13 +26,18 @@ internal PublicIpAddressContainer(ResourceGroupOperations resourceGroup) { } + /// + /// Typed Resource Identifier for the container. + /// + public new ResourceGroupResourceIdentifier Id => base.Id as ResourceGroupResourceIdentifier; + /// /// Gets the valid resource type for this resource. /// protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; private PublicIPAddressesOperations Operations => new NetworkManagementClient( - Id.Subscription, + Id.SubscriptionId, BaseUri, Credential, ClientOptions.Convert()).PublicIPAddresses; @@ -40,7 +45,7 @@ internal PublicIpAddressContainer(ResourceGroupOperations resourceGroup) /// public override ArmResponse CreateOrUpdate(string name, PublicIPAddressData resourceDetails, CancellationToken cancellationToken = default) { - var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails, cancellationToken); + var operation = Operations.StartCreateOrUpdate(Id.ResourceGroupName, name, resourceDetails, cancellationToken); return new PhArmResponse( operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), n => new PublicIpAddress(Parent, new PublicIPAddressData(n))); @@ -49,7 +54,7 @@ public override ArmResponse CreateOrUpdate(string name, PublicI /// public override async Task> CreateOrUpdateAsync(string name, PublicIPAddressData resourceDetails, CancellationToken cancellationToken = default) { - var operation = await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails, cancellationToken).ConfigureAwait(false); + var operation = await Operations.StartCreateOrUpdateAsync(Id.ResourceGroupName, name, resourceDetails, cancellationToken).ConfigureAwait(false); return new PhArmResponse( await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), n => new PublicIpAddress(Parent, new PublicIPAddressData(n))); @@ -59,7 +64,7 @@ await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), public override ArmOperation StartCreateOrUpdate(string name, PublicIPAddressData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails, cancellationToken), + Operations.StartCreateOrUpdate(Id.ResourceGroupName, name, resourceDetails, cancellationToken), n => new PublicIpAddress(Parent, new PublicIPAddressData(n))); } @@ -67,7 +72,7 @@ public override ArmOperation StartCreateOrUpdate(string name, P public override async Task> StartCreateOrUpdateAsync(string name, PublicIPAddressData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails, cancellationToken).ConfigureAwait(false), + await Operations.StartCreateOrUpdateAsync(Id.ResourceGroupName, name, resourceDetails, cancellationToken).ConfigureAwait(false), n => new PublicIpAddress(Parent, new PublicIPAddressData(n))); } @@ -76,9 +81,9 @@ await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetail /// /// The location to create the network security group. /// Object used to create a . - public ArmBuilder Construct(LocationData location = null) + public ArmBuilder Construct(LocationData location = null) { - var parent = GetParentResource(); + var parent = GetParentResource(); var ipAddress = new PublicIPAddress() { PublicIPAddressVersion = IPVersion.IPv4.ToString(), @@ -86,7 +91,7 @@ public ArmBuilder Construct(LocationData l Location = location ?? parent.Data.Location, }; - return new ArmBuilder(this, new PublicIPAddressData(ipAddress)); + return new ArmBuilder(this, new PublicIPAddressData(ipAddress)); } /// @@ -176,13 +181,13 @@ private Func Convertor() /// public override ArmResponse Get(string publicIpAddressesName, CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, publicIpAddressesName, cancellationToken: cancellationToken), Convertor()); + return new PhArmResponse(Operations.Get(Id.ResourceGroupName, publicIpAddressesName, cancellationToken: cancellationToken), Convertor()); } /// public override async Task> GetAsync(string publicIpAddressesName, CancellationToken cancellationToken = default) { - return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, publicIpAddressesName, cancellationToken: cancellationToken), Convertor()); + return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroupName, publicIpAddressesName, cancellationToken: cancellationToken), Convertor()); } } } diff --git a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs index de49fddad7da6..0e8c4d87f2d84 100644 --- a/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/PublicIpAddressOperations.cs @@ -15,7 +15,7 @@ namespace Proto.Network /// /// A class representing the operations that can be performed over a specific NetworkSecurityGroup. /// - public class PublicIpAddressOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource + public class PublicIpAddressOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource { /// /// Initializes a new instance of the class. @@ -32,7 +32,7 @@ internal PublicIpAddressOperations(GenericResourceOperations genericOperations) /// The client parameters to use in these operations. /// The public ip address name. internal PublicIpAddressOperations(ResourceGroupOperations resourceGroup, string publicIpName) - : base(resourceGroup, $"{resourceGroup.Id}/providers/Microsoft.Network/publicIpAddresses/{publicIpName}") + : base(resourceGroup, resourceGroup.Id.AppendProviderResource(ResourceType.Namespace, ResourceType.Type, publicIpName)) { } @@ -55,7 +55,7 @@ protected PublicIpAddressOperations(ResourceOperationsBase options, ResourceIden protected override ResourceType ValidResourceType => ResourceType; private PublicIPAddressesOperations Operations => new NetworkManagementClient( - Id.Subscription, + Id.SubscriptionId, BaseUri, Credential, ClientOptions.Convert()).PublicIPAddresses; @@ -63,40 +63,40 @@ protected PublicIpAddressOperations(ResourceOperationsBase options, ResourceIden /// public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken) + return new ArmResponse(Operations.StartDelete(Id.ResourceGroupName, Id.Name, cancellationToken) .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)) + return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroupName, Id.Name, cancellationToken)) .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// public override ArmResponse Get(CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, Id.Name, cancellationToken: cancellationToken), + return new PhArmResponse(Operations.Get(Id.ResourceGroupName, Id.Name, cancellationToken: cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } /// public override async Task> GetAsync(CancellationToken cancellationToken = default) { - return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, Id.Name, null, cancellationToken), + return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroupName, Id.Name, null, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -107,7 +107,7 @@ public ArmResponse AddTag(string key, string value, Cancellatio var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -118,7 +118,7 @@ public async Task> AddTagAsync(string key, string v var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmResponse(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmResponse(await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -129,7 +129,7 @@ public ArmOperation StartAddTag(string key, string value, Cance var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -140,7 +140,7 @@ public async Task> StartAddTagAsync(string key, st var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; - return new PhArmOperation(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmOperation(await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -149,7 +149,7 @@ public ArmResponse SetTags(IDictionary tags, Ca { var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); - return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -158,7 +158,7 @@ public async Task> SetTagsAsync(IDictionary(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmResponse(await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -167,7 +167,7 @@ public ArmOperation StartSetTags(IDictionary ta { var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); - return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -176,7 +176,7 @@ public async Task> StartSetTagsAsync(IDictionary(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmOperation(await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -187,7 +187,7 @@ public ArmResponse RemoveTag(string key, CancellationToken canc var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmResponse(Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -198,7 +198,7 @@ public async Task> RemoveTagAsync(string key, Cance var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmResponse(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmResponse(await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -209,7 +209,7 @@ public ArmOperation StartRemoveTag(string key, CancellationToke var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmOperation(Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } @@ -220,7 +220,7 @@ public async Task> StartRemoveTagAsync(string key, var patchable = new TagsObject(); patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); - return new PhArmOperation(await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + return new PhArmOperation(await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new PublicIpAddress(this, new PublicIPAddressData(n))); } diff --git a/sdk/resourcemanager/Proto.Client/network/SubnetBuilder.cs b/sdk/resourcemanager/Proto.Client/network/SubnetBuilder.cs index b1c130ede655f..ecc79bc866e9a 100644 --- a/sdk/resourcemanager/Proto.Client/network/SubnetBuilder.cs +++ b/sdk/resourcemanager/Proto.Client/network/SubnetBuilder.cs @@ -5,7 +5,7 @@ namespace Proto.Network /// /// A class representing a builder object to help create a subnet. /// - public class SubnetBuilder : ArmBuilder + public class SubnetBuilder : ArmBuilder { /// /// Initializes a new instance of the class. diff --git a/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs b/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs index f141d4a5dd718..874f8f5d1c63d 100644 --- a/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/SubnetContainer.cs @@ -10,7 +10,7 @@ namespace Proto.Network /// /// A class representing collection of Subnets and their operations over a VirtualNetwork. /// - public class SubnetContainer : ResourceContainerBase + public class SubnetContainer : ResourceContainerBase { /// /// Initializes a new instance of the class. @@ -21,11 +21,16 @@ internal SubnetContainer(VirtualNetworkOperations virtualNetwork) { } + /// + /// Typed Resource Identifier for the container. + /// + public new ResourceGroupResourceIdentifier Id => base.Id as ResourceGroupResourceIdentifier; + /// protected override ResourceType ValidResourceType => VirtualNetworkOperations.ResourceType; private SubnetsOperations Operations => new NetworkManagementClient( - Id.Subscription, + Id.SubscriptionId, BaseUri, Credential, ClientOptions.Convert()).Subnets; @@ -33,7 +38,7 @@ internal SubnetContainer(VirtualNetworkOperations virtualNetwork) /// public override ArmResponse CreateOrUpdate(string name, SubnetData resourceDetails, CancellationToken cancellationToken = default) { - var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, Id.Name, name, resourceDetails.Model, cancellationToken); + var operation = Operations.StartCreateOrUpdate(Id.ResourceGroupName, Id.Name, name, resourceDetails.Model, cancellationToken); return new PhArmResponse( operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), s => new Subnet(Parent, new SubnetData(s))); @@ -42,7 +47,7 @@ public override ArmResponse CreateOrUpdate(string name, SubnetData resou /// public override async Task> CreateOrUpdateAsync(string name, SubnetData resourceDetails, CancellationToken cancellationToken = default) { - var operation = await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, Id.Name, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false); + var operation = await Operations.StartCreateOrUpdateAsync(Id.ResourceGroupName, Id.Name, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false); return new PhArmResponse( await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), s => new Subnet(Parent, new SubnetData(s))); @@ -52,7 +57,7 @@ await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), public override ArmOperation StartCreateOrUpdate(string name, SubnetData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - Operations.StartCreateOrUpdate(Id.ResourceGroup, Id.Name, name, resourceDetails.Model, cancellationToken), + Operations.StartCreateOrUpdate(Id.ResourceGroupName, Id.Name, name, resourceDetails.Model, cancellationToken), s => new Subnet(Parent, new SubnetData(s))); } @@ -60,7 +65,7 @@ public override ArmOperation StartCreateOrUpdate(string name, SubnetData public async override Task> StartCreateOrUpdateAsync(string name, SubnetData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, Id.Name, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false), + await Operations.StartCreateOrUpdateAsync(Id.ResourceGroupName, Id.Name, name, resourceDetails.Model, cancellationToken).ConfigureAwait(false), s => new Subnet(Parent, new SubnetData(s))); } @@ -93,7 +98,7 @@ public SubnetBuilder Construct(string subnetCidr, NetworkSecurityGroupData group public Pageable List(CancellationToken cancellationToken = default) { return new PhWrappingPageable( - Operations.List(Id.ResourceGroup, Id.Name, cancellationToken), + Operations.List(Id.ResourceGroupName, Id.Name, cancellationToken), convertor()); } @@ -105,7 +110,7 @@ public Pageable List(CancellationToken cancellationToken = default) public AsyncPageable ListAsync(CancellationToken cancellationToken = default) { return new PhWrappingAsyncPageable( - Operations.ListAsync(Id.ResourceGroup, Id.Name, cancellationToken), + Operations.ListAsync(Id.ResourceGroupName, Id.Name, cancellationToken), convertor()); } @@ -117,14 +122,14 @@ public AsyncPageable ListAsync(CancellationToken cancellationToken = def /// public override ArmResponse Get(string subnetName, CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, Id.Name, subnetName, cancellationToken: cancellationToken), + return new PhArmResponse(Operations.Get(Id.ResourceGroupName, Id.Name, subnetName, cancellationToken: cancellationToken), n => new Subnet(Parent, new SubnetData(n))); } /// public override async Task> GetAsync(string subnetName, CancellationToken cancellationToken = default) { - return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, Id.Name, subnetName, null, cancellationToken), + return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroupName, Id.Name, subnetName, null, cancellationToken), n => new Subnet(Parent, new SubnetData(n))); } } diff --git a/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs b/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs index 09e3093ba7811..5ab4f9bd53723 100644 --- a/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/SubnetOperations.cs @@ -9,7 +9,7 @@ namespace Proto.Network /// /// A class representing the operations that can be performed over a specific subnet. /// - public class SubnetOperations : ResourceOperationsBase, IDeletableResource + public class SubnetOperations : ResourceOperationsBase, IDeletableResource { /// /// Initializes a new instance of the class. @@ -17,7 +17,7 @@ public class SubnetOperations : ResourceOperationsBase, IDeletableResour /// The client parameters to use in these operations. /// The name of the subnet. internal SubnetOperations(VirtualNetworkOperations virtualNetwork, string subnetName) - : base(virtualNetwork, $"{virtualNetwork.Id}/subnets/{subnetName}") + : base(virtualNetwork, virtualNetwork.Id.AppendChildResource( "subnets", subnetName)) { } @@ -42,7 +42,7 @@ protected SubnetOperations(ResourceOperationsBase options, ResourceIdentifier id protected override ResourceType ValidResourceType => ResourceType; private SubnetsOperations Operations => new NetworkManagementClient( - Id.Subscription, + Id.SubscriptionId, BaseUri, Credential, ClientOptions.Convert()).Subnets; @@ -50,14 +50,14 @@ protected SubnetOperations(ResourceOperationsBase options, ResourceIdentifier id /// public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Parent.Name, Id.Name, cancellationToken) + return new ArmResponse(Operations.StartDelete(Id.ResourceGroupName, Id.Parent.Name, Id.Name, cancellationToken) .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Parent.Name, Id.Name, cancellationToken)) + return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroupName, Id.Parent.Name, Id.Name, cancellationToken)) .WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } @@ -65,26 +65,26 @@ public async Task> DeleteAsync(CancellationToken cancellat /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroup, Id.Parent.Name, Id.Name, cancellationToken)); + return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroupName, Id.Parent.Name, Id.Name, cancellationToken)); } /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Parent.Name, Id.Name, cancellationToken)); + return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroupName, Id.Parent.Name, Id.Name, cancellationToken)); } /// public override ArmResponse Get(CancellationToken cancellationToken = default) { - return new PhArmResponse(Operations.Get(Id.ResourceGroup, Id.Parent.Name, Id.Name, cancellationToken: cancellationToken), + return new PhArmResponse(Operations.Get(Id.ResourceGroupName, Id.Parent.Name, Id.Name, cancellationToken: cancellationToken), n => new Subnet(this, new SubnetData(n))); } /// public override async Task> GetAsync(CancellationToken cancellationToken = default) { - return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroup, Id.Parent.Name, Id.Name, null, cancellationToken), + return new PhArmResponse(await Operations.GetAsync(Id.ResourceGroupName, Id.Parent.Name, Id.Name, null, cancellationToken), n => new Subnet(this, new SubnetData(n))); } } diff --git a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs index f4ba5849847f6..d7a753904a57d 100644 --- a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkContainer.cs @@ -16,7 +16,7 @@ namespace Proto.Network /// /// A class representing collection of virtual network and their operations over a resource group. /// - public class VirtualNetworkContainer : ResourceContainerBase + public class VirtualNetworkContainer : ResourceContainerBase { /// /// Initializes a new instance of the class. @@ -27,11 +27,16 @@ internal VirtualNetworkContainer(ResourceGroupOperations resourceGroup) { } + /// + /// Typed Resource Identifier for the container. + /// + public new ResourceGroupResourceIdentifier Id => base.Id as ResourceGroupResourceIdentifier; + /// protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; private VirtualNetworksOperations Operations => new NetworkManagementClient( - Id.Subscription, + Id.SubscriptionId, BaseUri, Credential, ClientOptions.Convert()).VirtualNetworks; @@ -39,7 +44,7 @@ internal VirtualNetworkContainer(ResourceGroupOperations resourceGroup) /// public override ArmResponse CreateOrUpdate(string name, VirtualNetworkData resourceDetails, CancellationToken cancellationToken = default) { - var operation = Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails, cancellationToken); + var operation = Operations.StartCreateOrUpdate(Id.ResourceGroupName, name, resourceDetails, cancellationToken); return new PhArmResponse( operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult(), n => new VirtualNetwork(Parent, new VirtualNetworkData(n))); @@ -48,7 +53,7 @@ public override ArmResponse CreateOrUpdate(string name, VirtualN /// public async override Task> CreateOrUpdateAsync(string name, VirtualNetworkData resourceDetails, CancellationToken cancellationToken = default) { - var operation = await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails, cancellationToken).ConfigureAwait(false); + var operation = await Operations.StartCreateOrUpdateAsync(Id.ResourceGroupName, name, resourceDetails, cancellationToken).ConfigureAwait(false); return new PhArmResponse( await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), n => new VirtualNetwork(Parent, new VirtualNetworkData(n))); @@ -58,7 +63,7 @@ await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false), public override ArmOperation StartCreateOrUpdate(string name, VirtualNetworkData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - Operations.StartCreateOrUpdate(Id.ResourceGroup, name, resourceDetails, cancellationToken), + Operations.StartCreateOrUpdate(Id.ResourceGroupName, name, resourceDetails, cancellationToken), n => new VirtualNetwork(Parent, new VirtualNetworkData(n))); } @@ -66,7 +71,7 @@ public override ArmOperation StartCreateOrUpdate(string name, Vi public async override Task> StartCreateOrUpdateAsync(string name, VirtualNetworkData resourceDetails, CancellationToken cancellationToken = default) { return new PhArmOperation( - await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetails, cancellationToken).ConfigureAwait(false), + await Operations.StartCreateOrUpdateAsync(Id.ResourceGroupName, name, resourceDetails, cancellationToken).ConfigureAwait(false), n => new VirtualNetwork(Parent, new VirtualNetworkData(n))); } @@ -76,9 +81,9 @@ await Operations.StartCreateOrUpdateAsync(Id.ResourceGroup, name, resourceDetail /// The CIDR of the resource. /// The location of the resource. /// A builder with and . - public ArmBuilder Construct(string vnetCidr, LocationData location = null) + public ArmBuilder Construct(string vnetCidr, LocationData location = null) { - var parent = GetParentResource(); + var parent = GetParentResource(); var vnet = new Azure.ResourceManager.Network.Models.VirtualNetwork() { Location = location ?? parent.Data.Location, @@ -86,7 +91,7 @@ public ArmBuilder Construct(string vnetCidr, }; vnet.AddressSpace.AddressPrefixes.Add(vnetCidr); - return new ArmBuilder(this, new VirtualNetworkData(vnet)); + return new ArmBuilder(this, new VirtualNetworkData(vnet)); } /// @@ -178,7 +183,7 @@ public AsyncPageable ListAsync(string nameFilter, int? top = nul public override ArmResponse Get(string virtualNetworkName, CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Get(Id.ResourceGroup, virtualNetworkName, cancellationToken: cancellationToken), + Operations.Get(Id.ResourceGroupName, virtualNetworkName, cancellationToken: cancellationToken), Convertor()); } @@ -186,7 +191,7 @@ public override ArmResponse Get(string virtualNetworkName, Cance public override async Task> GetAsync(string virtualNetworkName, CancellationToken cancellationToken = default) { return new PhArmResponse( - await Operations.GetAsync(Id.ResourceGroup, virtualNetworkName, null, cancellationToken), + await Operations.GetAsync(Id.ResourceGroupName, virtualNetworkName, null, cancellationToken), Convertor()); } diff --git a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs index 607be60420ac1..84605f0d0cf26 100644 --- a/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs +++ b/sdk/resourcemanager/Proto.Client/network/VirtualNetworkOperations.cs @@ -12,7 +12,7 @@ namespace Proto.Network /// /// A class representing the operations that can be performed over a specific virtual nerwork. /// - public class VirtualNetworkOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource + public class VirtualNetworkOperations : ResourceOperationsBase, ITaggableResource, IDeletableResource { /// /// Initializes a new instance of the class. @@ -29,7 +29,7 @@ internal VirtualNetworkOperations(GenericResourceOperations genericOperations) /// The client parameters to use in these operations. /// The name of the virtual network to use. internal VirtualNetworkOperations(ResourceGroupOperations resourceGroup, string vnetName) - : base(resourceGroup, $"{resourceGroup.Id}/providers/Microsoft.Network/virtualNetworks/{vnetName}") + : base(resourceGroup, resourceGroup.Id.AppendProviderResource(ResourceType.Namespace, ResourceType.Type, vnetName)) { } @@ -54,7 +54,7 @@ protected VirtualNetworkOperations(ResourceOperationsBase options, ResourceIdent protected override ResourceType ValidResourceType => ResourceType; private VirtualNetworksOperations Operations => new NetworkManagementClient( - Id.Subscription, + Id.SubscriptionId, BaseUri, Credential, ClientOptions.Convert()).VirtualNetworks; @@ -62,32 +62,32 @@ protected VirtualNetworkOperations(ResourceOperationsBase options, ResourceIdent /// public ArmResponse Delete(CancellationToken cancellationToken = default) { - return new ArmResponse(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse(Operations.StartDelete(Id.ResourceGroupName, Id.Name, cancellationToken).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// public async Task> DeleteAsync(CancellationToken cancellationToken = default) { - return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); + return new ArmResponse((await Operations.StartDeleteAsync(Id.ResourceGroupName, Id.Name, cancellationToken)).WaitForCompletionAsync(cancellationToken).ConfigureAwait(false).GetAwaiter().GetResult()); } /// public ArmOperation StartDelete(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(Operations.StartDelete(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// public async Task> StartDeleteAsync(CancellationToken cancellationToken = default) { - return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroup, Id.Name, cancellationToken)); + return new ArmVoidOperation(await Operations.StartDeleteAsync(Id.ResourceGroupName, Id.Name, cancellationToken)); } /// public override ArmResponse Get(CancellationToken cancellationToken = default) { return new PhArmResponse( - Operations.Get(Id.ResourceGroup, Id.Name, cancellationToken: cancellationToken), + Operations.Get(Id.ResourceGroupName, Id.Name, cancellationToken: cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -95,7 +95,7 @@ public override ArmResponse Get(CancellationToken cancellationTo public async override Task> GetAsync(CancellationToken cancellationToken = default) { return new PhArmResponse( - await Operations.GetAsync(Id.ResourceGroup, Id.Name, null, cancellationToken), + await Operations.GetAsync(Id.ResourceGroupName, Id.Name, null, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -107,7 +107,7 @@ public ArmResponse AddTag(string key, string value, Cancellation patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmResponse( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -119,7 +119,7 @@ public async Task> AddTagAsync(string key, string va patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmResponse( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -131,7 +131,7 @@ public ArmOperation StartAddTag(string key, string value, Cancel patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmOperation( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -143,7 +143,7 @@ public async Task> StartAddTagAsync(string key, str patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags[key] = value; return new PhArmOperation( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -172,7 +172,7 @@ public ArmResponse SetTags(IDictionary tags, Can var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); return new PhArmResponse( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -182,7 +182,7 @@ public async Task> SetTagsAsync(IDictionary( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -192,7 +192,7 @@ public ArmOperation StartSetTags(IDictionary tag var patchable = new TagsObject(); patchable.Tags.ReplaceWith(tags); return new PhArmOperation( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -202,7 +202,7 @@ public async Task> StartSetTagsAsync(IDictionary( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -214,7 +214,7 @@ public ArmResponse RemoveTag(string key, CancellationToken cance patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmResponse( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -226,7 +226,7 @@ public async Task> RemoveTagAsync(string key, Cancel patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmResponse( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -238,7 +238,7 @@ public ArmOperation StartRemoveTag(string key, CancellationToken patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmOperation( - Operations.UpdateTags(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + Operations.UpdateTags(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } @@ -250,7 +250,7 @@ public async Task> StartRemoveTagAsync(string key, patchable.Tags.ReplaceWith(resource.Data.Tags); patchable.Tags.Remove(key); return new PhArmOperation( - await Operations.UpdateTagsAsync(Id.ResourceGroup, Id.Name, patchable, cancellationToken), + await Operations.UpdateTagsAsync(Id.ResourceGroupName, Id.Name, patchable, cancellationToken), n => new VirtualNetwork(this, new VirtualNetworkData(n))); } diff --git a/sdk/resourcemanager/Proto.Client/src/Program.cs b/sdk/resourcemanager/Proto.Client/src/Program.cs index 8a34634baaf14..79860bc421835 100644 --- a/sdk/resourcemanager/Proto.Client/src/Program.cs +++ b/sdk/resourcemanager/Proto.Client/src/Program.cs @@ -11,15 +11,15 @@ static void Main(string[] args) Scenario scenario = null; try { - scenario = ScenarioFactory.GetScenario(Scenarios.GenericResourceOperationsExample); + scenario = ScenarioFactory.GetScenario(Scenarios.CreateSingleVmExample); scenario.Execute(); } finally { foreach (var rgId in Scenario.CleanUp) { - ResourceIdentifier id = new ResourceIdentifier(rgId); - var rg = new AzureResourceManagerClient(new DefaultAzureCredential()).GetSubscriptionOperations(id.Subscription).GetResourceGroupOperations(id.ResourceGroup); + var id = new ResourceGroupResourceIdentifier(rgId); + var rg = new AzureResourceManagerClient(new DefaultAzureCredential()).GetSubscriptionOperations(id.SubscriptionId).GetResourceGroupOperations(id.ResourceGroupName); Console.WriteLine($"--------Deleting {rg.Id.Name}--------"); try { diff --git a/sdk/resourcemanager/Proto.Client/src/Scenarios/All.cs b/sdk/resourcemanager/Proto.Client/src/Scenarios/All.cs index 0e81b3bf995e5..16701c88b8735 100644 --- a/sdk/resourcemanager/Proto.Client/src/Scenarios/All.cs +++ b/sdk/resourcemanager/Proto.Client/src/Scenarios/All.cs @@ -28,8 +28,8 @@ public override void Execute() { foreach (var rgId in CleanUp) { - ResourceIdentifier id = new ResourceIdentifier(rgId); - var rg = new AzureResourceManagerClient(new DefaultAzureCredential()).GetResourceGroupOperations(rgId); + var id = new ResourceGroupResourceIdentifier(rgId); + var rg = new AzureResourceManagerClient(new DefaultAzureCredential()).GetResourceGroupOperations(id); Console.WriteLine($"--------Deleting {rg.Id.Name}--------"); try { diff --git a/sdk/resourcemanager/Proto.Client/src/Scenarios/CheckResourceGroupOpsAsync.cs b/sdk/resourcemanager/Proto.Client/src/Scenarios/CheckResourceGroupOpsAsync.cs index 410fc85a1bc8b..a2b8cdebcb850 100644 --- a/sdk/resourcemanager/Proto.Client/src/Scenarios/CheckResourceGroupOpsAsync.cs +++ b/sdk/resourcemanager/Proto.Client/src/Scenarios/CheckResourceGroupOpsAsync.cs @@ -54,12 +54,12 @@ await ShouldThrowAsync( var data = aset.Get().Value.Data; ShouldThrow( - () => rgOps.CreateResource("", data), + () => rgOps.CreateResource("", data), "CreateResource with empty string didn't throw", "CreateResource"); await ShouldThrowAsync( - async () => await rgOps.CreateResourceAsync(" ", data), + async () => await rgOps.CreateResourceAsync(" ", data), "CreateResourceAsync with whitespaces string didn't throw", "CreateResourceAsync"); @@ -104,12 +104,12 @@ await ShouldThrowAsync( "StartRemoveTagAsync"); ShouldThrow( - () => rgOps.CreateResource("tester", null), + () => rgOps.CreateResource("tester", null), "CreateResource model exception not thrown", "CreateResource"); await ShouldThrowAsync( - async () => await rgOps.CreateResourceAsync("tester", null), + async () => await rgOps.CreateResourceAsync("tester", null), "CreateResourceAsync model exception not thrown", "CreateResourceAsync"); diff --git a/sdk/resourcemanager/Proto.Client/src/Scenarios/DefaultSubscription.cs b/sdk/resourcemanager/Proto.Client/src/Scenarios/DefaultSubscription.cs index b10efaac99972..7085cc73505ac 100644 --- a/sdk/resourcemanager/Proto.Client/src/Scenarios/DefaultSubscription.cs +++ b/sdk/resourcemanager/Proto.Client/src/Scenarios/DefaultSubscription.cs @@ -17,14 +17,9 @@ public override void Execute() Console.WriteLine("Found correct subscription"); - client = new AzureResourceManagerClient(new DefaultAzureCredential()); - - sub = client.DefaultSubscription; - - if (sub.Data.SubscriptionGuid != Context.SubscriptionId) - throw new Exception($"Didn't get back expected subscription. Got {sub.Data.SubscriptionGuid} expected {Context.SubscriptionId}"); - - Console.WriteLine("Found correct subscription"); + // Note: check of default subscription without specifying subscription is dependent on the credentials + // used in constructuing the client. Removed this test as its outcome is unpredictable unless you + // always use the same credentials. } } } diff --git a/sdk/resourcemanager/Proto.Client/src/Scenarios/GenericResourcesOperationsExample.cs b/sdk/resourcemanager/Proto.Client/src/Scenarios/GenericResourcesOperationsExample.cs index a026133c44311..c52bb7a1b043f 100644 --- a/sdk/resourcemanager/Proto.Client/src/Scenarios/GenericResourcesOperationsExample.cs +++ b/sdk/resourcemanager/Proto.Client/src/Scenarios/GenericResourcesOperationsExample.cs @@ -3,7 +3,7 @@ using Proto.Network; using System; using Azure.Identity; - +using Azure.Core; namespace Proto.Client { @@ -11,8 +11,10 @@ class GenericResourceOperationsExample : Scenario { public override void Execute() { - var client = new AzureResourceManagerClient(new DefaultAzureCredential()); + AzureResourceManagerClientOptions clientOptions = new AzureResourceManagerClientOptions(); + var client = new AzureResourceManagerClient(new DefaultAzureCredential(), clientOptions); var rgOp = new AzureResourceManagerClient(new DefaultAzureCredential()).GetResourceGroupOperations(Context.SubscriptionId, Context.RgName); + Console.WriteLine(clientOptions.ApiVersions.TryGetApiVersion(VirtualNetwork.ResourceType)); var subscription = client.GetSubscriptionOperations(Context.SubscriptionId); var resourceGroup = subscription.GetResourceGroupContainer().Construct(Context.Loc).CreateOrUpdate(Context.RgName).Value; var aset = resourceGroup.GetAvailabilitySetContainer().Construct("Aligned").CreateOrUpdate(Context.VmName + "_aSet").Value; @@ -27,7 +29,6 @@ public override void Execute() { genericOp.Get(); } - Console.WriteLine(subscription.ClientOptions.ApiVersions.TryGetApiVersion(VirtualNetwork.ResourceType)); } } } diff --git a/sdk/resourcemanager/Proto.Client/src/Scenarios/ShutdownVmsByName.cs b/sdk/resourcemanager/Proto.Client/src/Scenarios/ShutdownVmsByName.cs index 746810e2f5e58..162008c69c9ac 100644 --- a/sdk/resourcemanager/Proto.Client/src/Scenarios/ShutdownVmsByName.cs +++ b/sdk/resourcemanager/Proto.Client/src/Scenarios/ShutdownVmsByName.cs @@ -17,9 +17,9 @@ public override void Execute() foreach(var armResource in sub.ListVirtualMachinesByName("-e")) { var vmOperations = VirtualMachineOperations.FromGeneric(armResource); - Console.WriteLine($"Stopping {armResource.Id.ResourceGroup} : {armResource.Id.Name}"); + Console.WriteLine($"Stopping {vmOperations.Id.ResourceGroupName} : {armResource.Id.Name}"); vmOperations.PowerOff(); - Console.WriteLine($"Starting {armResource.Id.ResourceGroup} : {armResource.Id.Name}"); + Console.WriteLine($"Starting {vmOperations.Id.ResourceGroupName} : {armResource.Id.Name}"); vmOperations.PowerOn(); } diff --git a/sdk/resourcemanager/Proto.Client/src/Scenarios/ShutdownVmsByNameAcrossResourceGroups.cs b/sdk/resourcemanager/Proto.Client/src/Scenarios/ShutdownVmsByNameAcrossResourceGroups.cs index 4c8c10bd10b70..c8cbf11a9ed42 100644 --- a/sdk/resourcemanager/Proto.Client/src/Scenarios/ShutdownVmsByNameAcrossResourceGroups.cs +++ b/sdk/resourcemanager/Proto.Client/src/Scenarios/ShutdownVmsByNameAcrossResourceGroups.cs @@ -27,9 +27,9 @@ public override void Execute() { if (reg.IsMatch(vm.Id.Name)) { - Console.WriteLine($"Stopping {vm.Id.ResourceGroup} {vm.Id.Name}"); + Console.WriteLine($"Stopping {vm.Id.ResourceGroupName} {vm.Id.Name}"); vm.PowerOff(); - Console.WriteLine($"Starting {vm.Id.ResourceGroup} {vm.Id.Name}"); + Console.WriteLine($"Starting {vm.Id.ResourceGroupName} {vm.Id.Name}"); vm.PowerOn(); } }); diff --git a/sdk/resourcemanager/Proto.Client/src/Scenarios/ShutdownVmsByNameAcrossSubscriptions.cs b/sdk/resourcemanager/Proto.Client/src/Scenarios/ShutdownVmsByNameAcrossSubscriptions.cs index 0a1f642049980..cb8a2eb22a120 100644 --- a/sdk/resourcemanager/Proto.Client/src/Scenarios/ShutdownVmsByNameAcrossSubscriptions.cs +++ b/sdk/resourcemanager/Proto.Client/src/Scenarios/ShutdownVmsByNameAcrossSubscriptions.cs @@ -47,9 +47,9 @@ public async override void Execute() await foreach (var armResource in sub.ListVirtualMachinesByNameAsync("-e")) { var vmOperations = VirtualMachineOperations.FromGeneric(armResource); - Console.WriteLine($"Stopping {vmOperations.Id.Subscription} {vmOperations.Id.ResourceGroup} {vmOperations.Id.Name}"); + Console.WriteLine($"Stopping {vmOperations.Id.SubscriptionId} {vmOperations.Id.ResourceGroupName} {vmOperations.Id.Name}"); vmOperations.PowerOff(); - Console.WriteLine($"Starting {vmOperations.Id.Subscription} {vmOperations.Id.ResourceGroup} {vmOperations.Id.Name}"); + Console.WriteLine($"Starting {vmOperations.Id.SubscriptionId} {vmOperations.Id.ResourceGroupName} {vmOperations.Id.Name}"); vmOperations.PowerOn(); } } diff --git a/sdk/resourcemanager/Proto.Client/src/Scenarios/TenantResource.cs b/sdk/resourcemanager/Proto.Client/src/Scenarios/TenantResource.cs index 36f5a850857d7..306b43e725185 100644 --- a/sdk/resourcemanager/Proto.Client/src/Scenarios/TenantResource.cs +++ b/sdk/resourcemanager/Proto.Client/src/Scenarios/TenantResource.cs @@ -12,7 +12,9 @@ public override void Execute() { var client = new AzureResourceManagerClient(new DefaultAzureCredential()); TenantOperations tenant = client.Tenant; - string testAccount = "3984c6f4-2d2a-4b04-93ce-43cf4824b698:e2f1492a-a492-468d-909f-bf7fe6662c01_2019-05-31"; + string testAccount = "9b84fb4c-c79a-4819-bd24-1e58f88885bd"; + // old value: "3984c6f4-2d2a-4b04-93ce-43cf4824b698:e2f1492a-a492-468d-909f-bf7fe6662c01_2019-05-31"; + // Note that the account may or may not be accessible, depending on your credentials BillingAccountOperations billingAccountOperations = tenant.GetBillingAccountsOperations(testAccount); var account = billingAccountOperations.Get(); Debug.Assert(account.Value.Data.Name.Equals(testAccount)); From 9ec2abdb4088f6ebba5d3f5050e4184f8de84e18 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Tue, 30 Mar 2021 12:01:49 -0700 Subject: [PATCH 24/35] WIP --- .../src/ManagementInterceptor.cs | 2 +- .../HasValidVersion.json | 2 +- .../HasValidVersionAsync.json | 2 +- .../src/ContainerBase.cs | 2 +- .../tests/Scenario/ContainerTryGetTest.cs | 4 +- .../TestCreateOrUpdate(% %).json | 28 +- .../TestCreateOrUpdate(% %)Async.json | 32 +- .../TestCreateOrUpdate(null).json | 26 +- .../TestCreateOrUpdate(null)Async.json | 30 +- .../TestStartCreateOrUpdate(% %).json | 28 +- .../TestStartCreateOrUpdate(% %)Async.json | 32 +- .../TestStartCreateOrUpdate(null).json | 28 +- .../TestStartCreateOrUpdate(null)Async.json | 32 +- .../TestClientContextPolicy().json | 56 +- .../TestClientContextPolicy()Async.json | 36 +- .../ContainerTryGetTest/DoesExistTest().json | 42 +- .../DoesExistTest()Async.json | 41 +- .../ContainerTryGetTest/TryGetTest().json | 51 +- .../TryGetTest()Async.json | 51 +- .../GenericResourceTests(False).json | 22 +- .../GenericResourceTests(True)Async.json | 22 +- .../GetGenericsBadApiVersion().json | 41 +- .../GetGenericsBadApiVersion()Async.json | 42 +- .../GetGenericsBadNameSpace().json | 39 +- .../GetGenericsBadNameSpace()Async.json | 39 +- .../GetGenericsConfirmException().json | 50 +- .../GetGenericsConfirmException()Async.json | 50 +- .../GetGenericsGoodApiVersion().json | 60 +- .../GetGenericsGoodApiVersion()Async.json | 56 +- .../ResourceGroupContainerTests/Create().json | 28 +- .../Create()Async.json | 20 +- .../ResourceGroupContainerTests/Get().json | 50 +- .../Get()Async.json | 48 +- .../ResourceGroupContainerTests/List().json | 698 +- .../List()Async.json | 718 +- .../StartCreate().json | 33 +- .../StartCreate()Async.json | 31 +- .../DeleteRg().json | 599 +- .../DeleteRg()Async.json | 568 +- .../ResourceGroupOperationsTests/Get().json | 50 +- .../Get()Async.json | 47 +- .../ListAvailableLocations().json | 3562 +++-- .../ListAvailableLocations()Async.json | 3562 +++-- .../StartDeleteRg().json | 10794 +++++++++++++++- .../StartDeleteRg()Async.json | 530 +- .../GetSubscriptionOperation().json | 13 +- ...ResourceGroupOpsArgException(%te#st%).json | 8 +- ...ResourceGroupOpsArgException(%te$st%).json | 8 +- ...ResourceGroupOpsArgException(%te%st%).json | 10 +- ...ResourceGroupOpsArgException(%test %).json | 9 +- ...tResourceGroupOpsArgNullException(%%).json | 8 +- ...esourceGroupOpsArgNullException(null).json | 8 +- .../TestGetResourceGroupOpsLong(89).json | 8 +- .../TestGetResourceGroupOpsLong(90).json | 8 +- ...rceGroupOpsOutOfRangeArgException(91).json | 8 +- .../TestGetResourceGroupOpsValid(%t%).json | 8 +- .../TestGetResourceGroupOpsValid(%te%).json | 8 +- ...TestGetResourceGroupOpsValid(%te.st%).json | 8 +- .../TaggableResourceTests/TestAddTags.json | 78 +- .../TestAddTagsAsync.json | 78 +- ...onary`2[System.String,System.String]).json | 85 +- ...`2[System.String,System.String])Async.json | 85 +- ...onary`2[System.String,System.String]).json | 84 +- ...`2[System.String,System.String])Async.json | 84 +- ...onary`2[System.String,System.String]).json | 84 +- ...`2[System.String,System.String])Async.json | 85 +- .../TaggableResourceTests/TestSetTags.json | 85 +- .../TestSetTagsAsync.json | 85 +- .../TestStartAddTags.json | 76 +- .../TestStartAddTagsAsync.json | 84 +- ...onary`2[System.String,System.String]).json | 85 +- ...`2[System.String,System.String])Async.json | 85 +- ...onary`2[System.String,System.String]).json | 85 +- ...`2[System.String,System.String])Async.json | 85 +- ...onary`2[System.String,System.String]).json | 85 +- ...`2[System.String,System.String])Async.json | 85 +- .../TestStartSetTags.json | 84 +- .../TestStartSetTagsAsync.json | 85 +- .../Extensions/SubscriptionExtensions.cs | 1 - .../Extensions/SubscriptionExtensions.cs | 2 +- 80 files changed, 18891 insertions(+), 5180 deletions(-) diff --git a/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs index 10dfc27e1137d..15ab1eba2cae6 100644 --- a/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs +++ b/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs @@ -29,7 +29,7 @@ public void Intercept(IInvocation invocation) } var type = result.GetType(); - if (type.Name.StartsWith("Task")) + if (type.Name.StartsWith("Task")) //have to add case for container proxy { var taskResultType = type.GetGenericArguments()[0]; if (taskResultType.Name.StartsWith("ArmResponse") || taskResultType.Name.StartsWith("ArmOperation")) diff --git a/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersion.json b/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersion.json index 6c1eb24537e7d..9899fb64be7b9 100644 --- a/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersion.json +++ b/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersion.json @@ -4,7 +4,7 @@ "RequestUri": "http://localhost/?api=V2", "RequestMethod": "GET", "RequestHeaders": { - "User-Agent": "azsdk-net-Core.Tests/1.0.0-alpha.20210329.1 (.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )", + "User-Agent": "azsdk-net-Core.Tests/1.0.0-alpha.20210330.1 (.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "dc85f443de8d5700b37ac3b4cc6f8430", "x-ms-return-client-request-id": "true" }, diff --git a/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersionAsync.json b/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersionAsync.json index da6c87d8ce606..c3e0a8c0cd85e 100644 --- a/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersionAsync.json +++ b/sdk/core/Azure.Core/tests/SessionRecords/ClientTestBaseMultiVersionTestsWithSpecificVersions/HasValidVersionAsync.json @@ -4,7 +4,7 @@ "RequestUri": "http://localhost/?api=V2", "RequestMethod": "GET", "RequestHeaders": { - "User-Agent": "azsdk-net-Core.Tests/1.0.0-alpha.20210329.1 (.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )", + "User-Agent": "azsdk-net-Core.Tests/1.0.0-alpha.20210330.1 (.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "310df70d817bc1bf9908dbde885585f0", "x-ms-return-client-request-id": "true" }, diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs index 6a50c76dcd9ae..fa788582d0b56 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs @@ -39,7 +39,7 @@ internal ContainerBase(ClientContext clientContext, TIdentifier id) /// /// The resource representing the parent resource. protected ContainerBase(ResourceOperationsBase parent) - : this(new ClientContext(parent.ClientOptions, parent.Credential, parent.BaseUri), parent.Id as TIdentifier) + : base(new ClientContext(parent.ClientOptions, parent.Credential, parent.BaseUri), parent.Id) { Parent = parent; } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ContainerTryGetTest.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ContainerTryGetTest.cs index 2a4d95d6c8f64..7e08f6c797286 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ContainerTryGetTest.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ContainerTryGetTest.cs @@ -21,12 +21,12 @@ public ContainerTryGetTest(bool isAsync) } [SetUp] - public void SetUp() + public async Task SetUp() { _rgName = Recording.GenerateAssetName("CoreRg"); _client = GetArmClient(); _container = _client.DefaultSubscription.GetResourceGroupContainer(); - _resourceGroup = _container.Construct(LocationData.WestUS2).CreateOrUpdate(_rgName); + _resourceGroup = await _container.Construct(LocationData.WestUS2).CreateOrUpdateAsync(_rgName); } [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %).json index c7234eb0d3dbd..891c67b3e01e4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %).json @@ -6,7 +6,11 @@ "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-567280e4e8e2994a8b5e408394f73d84-d9efec826466354d-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": "467d96640c6f7a9dd3f13da606dbf73a", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:49 GMT", + "Date": "Tue, 30 Mar 2021 18:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc189cae-f92e-4c1d-8502-f0b125cd4794", + "x-ms-correlation-request-id": "19a256fc-21b1-4ef1-911b-4bc186fcf21b", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "dc189cae-f92e-4c1d-8502-f0b125cd4794", - "x-ms-routing-request-id": "WESTUS2:20210310T062750Z:dc189cae-f92e-4c1d-8502-f0b125cd4794" + "x-ms-request-id": "19a256fc-21b1-4ef1-911b-4bc186fcf21b", + "x-ms-routing-request-id": "WESTUS:20210330T180537Z:19a256fc-21b1-4ef1-911b-4bc186fcf21b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +51,11 @@ "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-14c9947b8445a545a1185ef994c197ff-8328e4d28ebc2446-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": "238e3fa29ed93fe5b22e9cf4c0cb5037", "x-ms-return-client-request-id": "true" }, @@ -57,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:49 GMT", + "Date": "Tue, 30 Mar 2021 18:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7eadc227-c556-4f5f-847b-d6ae1382bd95", + "x-ms-correlation-request-id": "fdb5f010-5908-4904-82ab-61a544e13785", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "7eadc227-c556-4f5f-847b-d6ae1382bd95", - "x-ms-routing-request-id": "WESTUS2:20210310T062750Z:7eadc227-c556-4f5f-847b-d6ae1382bd95" + "x-ms-request-id": "fdb5f010-5908-4904-82ab-61a544e13785", + "x-ms-routing-request-id": "WESTUS:20210330T180537Z:fdb5f010-5908-4904-82ab-61a544e13785" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %)Async.json index 1e4aa5a715b2e..48474bb5634dc 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %)Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(% %)Async.json @@ -6,7 +6,11 @@ "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-c14de26824b6ae4cbf492320cc8d0401-492a29d5ff10014a-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": "475df7d04c5768875297a306a78ccace", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:52 GMT", + "Date": "Tue, 30 Mar 2021 18:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f61369c5-d6d0-421a-a576-839b7223cd23", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "f61369c5-d6d0-421a-a576-839b7223cd23", - "x-ms-routing-request-id": "WESTUS2:20210310T062752Z:f61369c5-d6d0-421a-a576-839b7223cd23" + "x-ms-correlation-request-id": "7b45e953-f86c-4549-b544-baea5203c491", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "7b45e953-f86c-4549-b544-baea5203c491", + "x-ms-routing-request-id": "WESTUS:20210330T180537Z:7b45e953-f86c-4549-b544-baea5203c491" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +51,11 @@ "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-d57a8a07179bd24b971568ec3cf35f83-61c74e7ef97a4749-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": "40feff21e75d52f09d3f9bf3f2815533", "x-ms-return-client-request-id": "true" }, @@ -57,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:52 GMT", + "Date": "Tue, 30 Mar 2021 18:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d24f5440-2585-4cfa-a209-a6a27c273c97", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "d24f5440-2585-4cfa-a209-a6a27c273c97", - "x-ms-routing-request-id": "WESTUS2:20210310T062752Z:d24f5440-2585-4cfa-a209-a6a27c273c97" + "x-ms-correlation-request-id": "1e957971-ccab-4445-aef4-f024c8fe20c0", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "1e957971-ccab-4445-aef4-f024c8fe20c0", + "x-ms-routing-request-id": "WESTUS:20210330T180537Z:1e957971-ccab-4445-aef4-f024c8fe20c0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null).json index f143cdc161199..c8005a48f70c7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null).json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ea81ef1af96979f09100acb4b96934b1", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:48 GMT", + "Date": "Tue, 30 Mar 2021 18:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd3ea3b1-3c67-4ee0-9db8-ba4f6de05c6e", + "x-ms-correlation-request-id": "2fb1e2ce-2667-4ddf-9780-5000ea430e55", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "bd3ea3b1-3c67-4ee0-9db8-ba4f6de05c6e", - "x-ms-routing-request-id": "WESTUS2:20210310T062749Z:bd3ea3b1-3c67-4ee0-9db8-ba4f6de05c6e" + "x-ms-request-id": "2fb1e2ce-2667-4ddf-9780-5000ea430e55", + "x-ms-routing-request-id": "WESTUS:20210330T180536Z:2fb1e2ce-2667-4ddf-9780-5000ea430e55" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +50,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "767f7da0b6289747e3128dd60c865934", "x-ms-return-client-request-id": "true" }, @@ -57,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:48 GMT", + "Date": "Tue, 30 Mar 2021 18:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ae62c7b-b88d-4de2-bd9b-0fcad9b0eb7e", + "x-ms-correlation-request-id": "a67575f4-56fa-4a22-865e-ac98c53d8d7c", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "0ae62c7b-b88d-4de2-bd9b-0fcad9b0eb7e", - "x-ms-routing-request-id": "WESTUS2:20210310T062749Z:0ae62c7b-b88d-4de2-bd9b-0fcad9b0eb7e" + "x-ms-request-id": "a67575f4-56fa-4a22-865e-ac98c53d8d7c", + "x-ms-routing-request-id": "WESTUS:20210330T180536Z:a67575f4-56fa-4a22-865e-ac98c53d8d7c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null)Async.json index 60ca9d904e1d9..ea58df2c90f81 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null)Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestCreateOrUpdate(null)Async.json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "20ba555d5846f95ae1860e4634d9c1b9", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:52 GMT", + "Date": "Tue, 30 Mar 2021 18:05:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "491a1a4b-bd52-475f-a16f-a2cd46d32f46", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "491a1a4b-bd52-475f-a16f-a2cd46d32f46", - "x-ms-routing-request-id": "WESTUS2:20210310T062752Z:491a1a4b-bd52-475f-a16f-a2cd46d32f46" + "x-ms-correlation-request-id": "d8d0cd1d-9be8-472e-b5d8-ee75a6772914", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "d8d0cd1d-9be8-472e-b5d8-ee75a6772914", + "x-ms-routing-request-id": "WESTUS:20210330T180536Z:d8d0cd1d-9be8-472e-b5d8-ee75a6772914" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +50,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3929ee8f1656fa8ec3ad3062ced16fd9", "x-ms-return-client-request-id": "true" }, @@ -57,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:52 GMT", + "Date": "Tue, 30 Mar 2021 18:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e601d99e-3a49-4feb-ad20-6c377c4988b3", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "e601d99e-3a49-4feb-ad20-6c377c4988b3", - "x-ms-routing-request-id": "WESTUS2:20210310T062752Z:e601d99e-3a49-4feb-ad20-6c377c4988b3" + "x-ms-correlation-request-id": "e873cfd5-0461-4184-9cdc-afbd321e8625", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "e873cfd5-0461-4184-9cdc-afbd321e8625", + "x-ms-routing-request-id": "WESTUS:20210330T180536Z:e873cfd5-0461-4184-9cdc-afbd321e8625" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %).json index 646918fcec6a8..b65855599b6c6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %).json @@ -6,7 +6,11 @@ "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-8d0e42bc2f362b4e9e8929fe5371b28f-145627667335214a-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": "e6a0a2e95c50321b4542313e38182698", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:50 GMT", + "Date": "Tue, 30 Mar 2021 18:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ac11f74-3e0f-4ed5-ac85-9d89c03fcc57", + "x-ms-correlation-request-id": "5cea24cc-1412-4081-ac56-3603742e2179", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "6ac11f74-3e0f-4ed5-ac85-9d89c03fcc57", - "x-ms-routing-request-id": "WESTUS2:20210310T062751Z:6ac11f74-3e0f-4ed5-ac85-9d89c03fcc57" + "x-ms-request-id": "5cea24cc-1412-4081-ac56-3603742e2179", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:5cea24cc-1412-4081-ac56-3603742e2179" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +51,11 @@ "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-dfd6a5844cbbaf4f98699445b54b7d37-ac20e28cdb642d4c-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": "5f3f5179e1d40d9991ce2c9b70978433", "x-ms-return-client-request-id": "true" }, @@ -57,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:50 GMT", + "Date": "Tue, 30 Mar 2021 18:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a60c7734-7280-4833-87ee-8063d339b211", + "x-ms-correlation-request-id": "0d90d555-f615-47ec-aac1-65e52d176cbf", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "a60c7734-7280-4833-87ee-8063d339b211", - "x-ms-routing-request-id": "WESTUS2:20210310T062751Z:a60c7734-7280-4833-87ee-8063d339b211" + "x-ms-request-id": "0d90d555-f615-47ec-aac1-65e52d176cbf", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:0d90d555-f615-47ec-aac1-65e52d176cbf" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %)Async.json index 1984c7f2da22c..9ef7d2a1cacbe 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %)Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(% %)Async.json @@ -6,7 +6,11 @@ "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-3e7634e9348c8846b9b03c5dc9554d2b-e0d222221ae70e46-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": "6f0853fc9350aa46fd3682a800b9d173", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:54 GMT", + "Date": "Tue, 30 Mar 2021 18:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2039d02a-78d4-4a01-abce-2b3539055e12", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "2039d02a-78d4-4a01-abce-2b3539055e12", - "x-ms-routing-request-id": "WESTUS2:20210310T062754Z:2039d02a-78d4-4a01-abce-2b3539055e12" + "x-ms-correlation-request-id": "c7e66101-4957-4c84-9b5a-cdd3ac5bd1dc", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "c7e66101-4957-4c84-9b5a-cdd3ac5bd1dc", + "x-ms-routing-request-id": "WESTUS:20210330T180537Z:c7e66101-4957-4c84-9b5a-cdd3ac5bd1dc" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +51,11 @@ "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-4cbf47a4dcd74f46a427c9f904aa7055-4ca6e68df57d8c4d-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": "d57e0bb36a51cad12845b436cbdee54c", "x-ms-return-client-request-id": "true" }, @@ -57,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:54 GMT", + "Date": "Tue, 30 Mar 2021 18:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c9831ce-72cf-480a-9c1f-6b6b14712e67", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "6c9831ce-72cf-480a-9c1f-6b6b14712e67", - "x-ms-routing-request-id": "WESTUS2:20210310T062754Z:6c9831ce-72cf-480a-9c1f-6b6b14712e67" + "x-ms-correlation-request-id": "435838b9-305d-4d89-9ead-3bca78392041", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "435838b9-305d-4d89-9ead-3bca78392041", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:435838b9-305d-4d89-9ead-3bca78392041" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null).json index df53fc1fd4ed8..609c8014d1342 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null).json @@ -6,7 +6,11 @@ "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-322fc940c5512e4cb0ca96ee0583b987-43851f79ced8964d-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": "d11e18d654ee583cb0e82d445927b1cf", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:50 GMT", + "Date": "Tue, 30 Mar 2021 18:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cbb90a4b-e4db-4f5e-bd68-aa3ea49ed194", + "x-ms-correlation-request-id": "0bd0220b-2601-47ca-83cc-f0c62a469c1e", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "cbb90a4b-e4db-4f5e-bd68-aa3ea49ed194", - "x-ms-routing-request-id": "WESTUS2:20210310T062751Z:cbb90a4b-e4db-4f5e-bd68-aa3ea49ed194" + "x-ms-request-id": "0bd0220b-2601-47ca-83cc-f0c62a469c1e", + "x-ms-routing-request-id": "WESTUS:20210330T180537Z:0bd0220b-2601-47ca-83cc-f0c62a469c1e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +51,11 @@ "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-93a8121b9b2990468b14cea223ca5667-c653e95232d1544a-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": "3c9a7d9f870cbdcc2444a953ea8d6b7c", "x-ms-return-client-request-id": "true" }, @@ -57,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:50 GMT", + "Date": "Tue, 30 Mar 2021 18:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7bdd8961-8c80-4a42-8a12-d5cc0f6f6e2e", + "x-ms-correlation-request-id": "c6236c0c-6088-459c-a435-c04b01c84eb8", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "7bdd8961-8c80-4a42-8a12-d5cc0f6f6e2e", - "x-ms-routing-request-id": "WESTUS2:20210310T062751Z:7bdd8961-8c80-4a42-8a12-d5cc0f6f6e2e" + "x-ms-request-id": "c6236c0c-6088-459c-a435-c04b01c84eb8", + "x-ms-routing-request-id": "WESTUS:20210330T180537Z:c6236c0c-6088-459c-a435-c04b01c84eb8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null)Async.json index 1fe1f4e7f6fe0..6a81158a63707 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null)Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmBuilderTests/TestStartCreateOrUpdate(null)Async.json @@ -6,7 +6,11 @@ "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-d1619e712bebec4bb99ff86cf3167780-b48bac9dc9c12948-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": "e467d08a4bd2cca7203e920aac6d17df", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:53 GMT", + "Date": "Tue, 30 Mar 2021 18:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c41b57d-f323-4634-a086-3474c13fc589", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "8c41b57d-f323-4634-a086-3474c13fc589", - "x-ms-routing-request-id": "WESTUS2:20210310T062753Z:8c41b57d-f323-4634-a086-3474c13fc589" + "x-ms-correlation-request-id": "eae53194-0ce3-427e-ad03-74a4416b27fe", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "eae53194-0ce3-427e-ad03-74a4416b27fe", + "x-ms-routing-request-id": "WESTUS:20210330T180537Z:eae53194-0ce3-427e-ad03-74a4416b27fe" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +51,11 @@ "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-b5a30f4aaa29044cbbb41c4e3a629b3a-532dbcfda8d6984e-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": "bc72cdb6821e4cebb62ea6d7a11cca06", "x-ms-return-client-request-id": "true" }, @@ -57,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:27:53 GMT", + "Date": "Tue, 30 Mar 2021 18:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0bb167fa-ec3a-481a-9cea-1dbfef358558", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "0bb167fa-ec3a-481a-9cea-1dbfef358558", - "x-ms-routing-request-id": "WESTUS2:20210310T062753Z:0bb167fa-ec3a-481a-9cea-1dbfef358558" + "x-ms-correlation-request-id": "c88b8aa5-81a0-4ce7-bae3-4cfa496050d6", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "c88b8aa5-81a0-4ce7-bae3-4cfa496050d6", + "x-ms-routing-request-id": "WESTUS:20210330T180537Z:c88b8aa5-81a0-4ce7-bae3-4cfa496050d6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json index 081e881e4e214..592362382111f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy().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.19042 )", "x-ms-client-request-id": "c6d72a21af7af90b649094d4c0250a58", "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 00:19:48 GMT", + "Date": "Tue, 30 Mar 2021 18:02:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b6a9021-6c31-4fdf-8f70-a91568ecca29", + "x-ms-correlation-request-id": "eb160f33-a114-4495-bb60-d519acebc360", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "3b6a9021-6c31-4fdf-8f70-a91568ecca29", - "x-ms-routing-request-id": "WESTUS:20210330T001949Z:3b6a9021-6c31-4fdf-8f70-a91568ecca29" + "x-ms-request-id": "eb160f33-a114-4495-bb60-d519acebc360", + "x-ms-routing-request-id": "WESTUS:20210330T180252Z:eb160f33-a114-4495-bb60-d519acebc360" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,10 +47,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.19042 )", "x-ms-client-request-id": "c304bd1fd819d829c1e23986542e2a45", "x-ms-return-client-request-id": "true" }, @@ -63,15 +57,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:48 GMT", + "Date": "Tue, 30 Mar 2021 18:02:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed9c0813-e4b0-4b4d-94d4-d5f2e0c0fef2", + "x-ms-correlation-request-id": "c149cf69-a92c-44e2-82ec-2eb3a10e7cc2", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "ed9c0813-e4b0-4b4d-94d4-d5f2e0c0fef2", - "x-ms-routing-request-id": "WESTUS:20210330T001949Z:ed9c0813-e4b0-4b4d-94d4-d5f2e0c0fef2" + "x-ms-request-id": "c149cf69-a92c-44e2-82ec-2eb3a10e7cc2", + "x-ms-routing-request-id": "WESTUS:20210330T180252Z:c149cf69-a92c-44e2-82ec-2eb3a10e7cc2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -94,11 +88,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ec53382ae15d2347bf87c28ba7225450-5230a5e56738dd40-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-d3f160780595d04596a9769af92e38f1-655d0e3902851b44-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6b45aa1bb79428db25fc8df27c72edbd", "x-ms-return-client-request-id": "true" }, @@ -108,15 +99,15 @@ "Cache-Control": "no-cache", "Content-Length": "444", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:48 GMT", + "Date": "Tue, 30 Mar 2021 18:02:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ad3e77b-edaa-447f-a4ed-3f4bd69f95b5", + "x-ms-correlation-request-id": "916a7cb8-b113-401c-812a-1672eac24110", "x-ms-ratelimit-remaining-tenant-reads": "11999", - "x-ms-request-id": "7ad3e77b-edaa-447f-a4ed-3f4bd69f95b5", - "x-ms-routing-request-id": "WESTUS:20210330T001949Z:7ad3e77b-edaa-447f-a4ed-3f4bd69f95b5" + "x-ms-request-id": "916a7cb8-b113-401c-812a-1672eac24110", + "x-ms-routing-request-id": "WESTUS:20210330T180253Z:916a7cb8-b113-401c-812a-1672eac24110" }, "ResponseBody": { "value": [ @@ -147,11 +138,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1fea07de1eb02f4392fe432ba0435e27-173dbe595d029948-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-7a08ae1f156a6a4db2e3e331e7e4bdb7-a65cc6343040d54c-00", + "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "18a4ebad66a1485f01fe05987684a436", "x-ms-return-client-request-id": "true" }, @@ -161,15 +149,15 @@ "Cache-Control": "no-cache", "Content-Length": "444", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:48 GMT", + "Date": "Tue, 30 Mar 2021 18:02:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc92a9e9-24a4-4785-b2b3-1fe8f6161de9", + "x-ms-correlation-request-id": "c9de31dc-c231-4a63-bf43-b8b3e624abef", "x-ms-ratelimit-remaining-tenant-reads": "11998", - "x-ms-request-id": "bc92a9e9-24a4-4785-b2b3-1fe8f6161de9", - "x-ms-routing-request-id": "WESTUS:20210330T001949Z:bc92a9e9-24a4-4785-b2b3-1fe8f6161de9" + "x-ms-request-id": "c9de31dc-c231-4a63-bf43-b8b3e624abef", + "x-ms-routing-request-id": "WESTUS:20210330T180253Z:c9de31dc-c231-4a63-bf43-b8b3e624abef" }, "ResponseBody": { "value": [ diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json index 35653bc5cb699..d5ad165206cdc 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ClientContextTests/TestClientContextPolicy()Async.json @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:48 GMT", + "Date": "Tue, 30 Mar 2021 07:42:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e25a0f1-611f-4578-adb1-3014c505508a", + "x-ms-correlation-request-id": "7f33c549-551c-4cdb-a125-3cbe74735f13", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "9e25a0f1-611f-4578-adb1-3014c505508a", - "x-ms-routing-request-id": "WESTUS:20210330T001949Z:9e25a0f1-611f-4578-adb1-3014c505508a" + "x-ms-request-id": "7f33c549-551c-4cdb-a125-3cbe74735f13", + "x-ms-routing-request-id": "WESTUS:20210330T074216Z:7f33c549-551c-4cdb-a125-3cbe74735f13" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -63,15 +63,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:48 GMT", + "Date": "Tue, 30 Mar 2021 07:42:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aead5cf5-fd3d-47be-8202-ab24f71e9954", + "x-ms-correlation-request-id": "0ec684a8-a103-4929-b5cb-570d6600c2b2", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "aead5cf5-fd3d-47be-8202-ab24f71e9954", - "x-ms-routing-request-id": "WESTUS:20210330T001949Z:aead5cf5-fd3d-47be-8202-ab24f71e9954" + "x-ms-request-id": "0ec684a8-a103-4929-b5cb-570d6600c2b2", + "x-ms-routing-request-id": "WESTUS:20210330T074216Z:0ec684a8-a103-4929-b5cb-570d6600c2b2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -94,7 +94,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3d98729b51e88043b28d2ce5a82ad4bd-36ce12cee716f84b-00", + "traceparent": "00-b806b3ca910f704fad6c50fb87ca92d3-1f44187973c8d644-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" @@ -108,15 +108,15 @@ "Cache-Control": "no-cache", "Content-Length": "444", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:48 GMT", + "Date": "Tue, 30 Mar 2021 07:42:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f42a7a3-2eee-410b-a5dd-c141d5a555a3", + "x-ms-correlation-request-id": "77d2aed5-2d0d-4146-b495-76564648d7f9", "x-ms-ratelimit-remaining-tenant-reads": "11999", - "x-ms-request-id": "7f42a7a3-2eee-410b-a5dd-c141d5a555a3", - "x-ms-routing-request-id": "WESTUS:20210330T001949Z:7f42a7a3-2eee-410b-a5dd-c141d5a555a3" + "x-ms-request-id": "77d2aed5-2d0d-4146-b495-76564648d7f9", + "x-ms-routing-request-id": "WESTUS:20210330T074216Z:77d2aed5-2d0d-4146-b495-76564648d7f9" }, "ResponseBody": { "value": [ @@ -147,7 +147,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c8ffac74b48cd04f92ea7d67e358982f-7ac3f05484e4744b-00", + "traceparent": "00-40a57a933fdfd842a948888046064689-32a0969d5a527844-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" @@ -161,15 +161,15 @@ "Cache-Control": "no-cache", "Content-Length": "444", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:48 GMT", + "Date": "Tue, 30 Mar 2021 07:42:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a47f5f67-a9ab-4d06-88f4-0522f72c3e07", + "x-ms-correlation-request-id": "b772d3bf-7cdc-452e-b652-a56c168dde56", "x-ms-ratelimit-remaining-tenant-reads": "11998", - "x-ms-request-id": "a47f5f67-a9ab-4d06-88f4-0522f72c3e07", - "x-ms-routing-request-id": "WESTUS:20210330T001949Z:a47f5f67-a9ab-4d06-88f4-0522f72c3e07" + "x-ms-request-id": "b772d3bf-7cdc-452e-b652-a56c168dde56", + "x-ms-routing-request-id": "WESTUS:20210330T074216Z:b772d3bf-7cdc-452e-b652-a56c168dde56" }, "ResponseBody": { "value": [ diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json index ade10e0342c6e..c7ed060a27039 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:50:56 GMT", + "Date": "Tue, 30 Mar 2021 18:56:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c6ffdbb-977e-4b2b-98b3-e69bbf9c03d5", + "x-ms-correlation-request-id": "ce7b163f-e83e-47e3-a6ae-0de66ab8933e", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "0c6ffdbb-977e-4b2b-98b3-e69bbf9c03d5", - "x-ms-routing-request-id": "WESTUS2:20210316T005057Z:0c6ffdbb-977e-4b2b-98b3-e69bbf9c03d5" + "x-ms-request-id": "ce7b163f-e83e-47e3-a6ae-0de66ab8933e", + "x-ms-routing-request-id": "WESTUS:20210330T185643Z:ce7b163f-e83e-47e3-a6ae-0de66ab8933e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -57,15 +57,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:50:56 GMT", + "Date": "Tue, 30 Mar 2021 18:56:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14aff16a-8c46-4933-9fac-aa346d01aa80", + "x-ms-correlation-request-id": "5bc89a6f-5ca4-49b6-ab07-ab08ca063a46", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "14aff16a-8c46-4933-9fac-aa346d01aa80", - "x-ms-routing-request-id": "WESTUS2:20210316T005057Z:14aff16a-8c46-4933-9fac-aa346d01aa80" + "x-ms-request-id": "5bc89a6f-5ca4-49b6-ab07-ab08ca063a46", + "x-ms-routing-request-id": "WESTUS:20210330T185643Z:5bc89a6f-5ca4-49b6-ab07-ab08ca063a46" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -90,6 +90,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-7e4a3066ad505b41a3ffa4d1be2091ee-5dfa538a37af2f46-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2f02d6d8e3d8fd54fe196873a757e858", "x-ms-return-client-request-id": "true" @@ -103,15 +104,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:50:57 GMT", + "Date": "Tue, 30 Mar 2021 18:56:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1051bb5e-2dc6-4ed3-9c0b-0d7965773508", + "x-ms-correlation-request-id": "3889230d-0792-4857-9c07-0848f6e268db", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "1051bb5e-2dc6-4ed3-9c0b-0d7965773508", - "x-ms-routing-request-id": "WESTUS2:20210316T005058Z:1051bb5e-2dc6-4ed3-9c0b-0d7965773508" + "x-ms-request-id": "3889230d-0792-4857-9c07-0848f6e268db", + "x-ms-routing-request-id": "WESTUS:20210330T185644Z:3889230d-0792-4857-9c07-0848f6e268db" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg5658", @@ -130,6 +131,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-4b38391ea9e8fc44bbb62655780fa5e0-12e4d9709aaf394d-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ccbe1c59735c3f4d933c4510017ed32c", "x-ms-return-client-request-id": "true" @@ -140,15 +142,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:50:57 GMT", + "Date": "Tue, 30 Mar 2021 18:56:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e20d78f-7096-4483-b691-e7b75464fd10", + "x-ms-correlation-request-id": "a2f5a3be-33c4-44ed-b44f-f549fff810a7", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "9e20d78f-7096-4483-b691-e7b75464fd10", - "x-ms-routing-request-id": "WESTUS2:20210316T005058Z:9e20d78f-7096-4483-b691-e7b75464fd10" + "x-ms-request-id": "a2f5a3be-33c4-44ed-b44f-f549fff810a7", + "x-ms-routing-request-id": "WESTUS:20210330T185645Z:a2f5a3be-33c4-44ed-b44f-f549fff810a7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg5658", @@ -177,16 +179,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:50:57 GMT", + "Date": "Tue, 30 Mar 2021 18:56:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01cefdce-ae3f-41d5-be6d-985b47d81269", + "x-ms-correlation-request-id": "07cce4d9-35b0-473c-a73a-ca9a75280673", "x-ms-failure-cause": "gateway", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "01cefdce-ae3f-41d5-be6d-985b47d81269", - "x-ms-routing-request-id": "WESTUS2:20210316T005058Z:01cefdce-ae3f-41d5-be6d-985b47d81269" + "x-ms-request-id": "07cce4d9-35b0-473c-a73a-ca9a75280673", + "x-ms-routing-request-id": "WESTUS:20210330T185645Z:07cce4d9-35b0-473c-a73a-ca9a75280673" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest()Async.json index 82e062cdde376..8732c2461bb32 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest()Async.json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:24 GMT", + "Date": "Tue, 30 Mar 2021 18:56:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce48c9fa-b9d3-4a20-98f2-a374c728a6ae", + "x-ms-correlation-request-id": "dc0d096d-c3cd-4af1-8dab-80066e7cc905", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "ce48c9fa-b9d3-4a20-98f2-a374c728a6ae", - "x-ms-routing-request-id": "WESTUS2:20210316T005124Z:ce48c9fa-b9d3-4a20-98f2-a374c728a6ae" + "x-ms-request-id": "dc0d096d-c3cd-4af1-8dab-80066e7cc905", + "x-ms-routing-request-id": "WESTUS:20210330T185643Z:dc0d096d-c3cd-4af1-8dab-80066e7cc905" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -57,15 +57,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:25 GMT", + "Date": "Tue, 30 Mar 2021 18:56:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33647981-2a05-4b21-a9de-db3d73db1af6", + "x-ms-correlation-request-id": "0df457a7-7c54-4fd1-9a42-5ffe41147bd6", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "33647981-2a05-4b21-a9de-db3d73db1af6", - "x-ms-routing-request-id": "WESTUS2:20210316T005125Z:33647981-2a05-4b21-a9de-db3d73db1af6" + "x-ms-request-id": "0df457a7-7c54-4fd1-9a42-5ffe41147bd6", + "x-ms-routing-request-id": "WESTUS:20210330T185643Z:0df457a7-7c54-4fd1-9a42-5ffe41147bd6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -90,6 +90,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-33f2b9acabd8ce429ec8419e67934598-60feb02fd3b89f45-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "adb38169ab78bf4921c73827e08c45e8", "x-ms-return-client-request-id": "true" @@ -103,15 +104,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:25 GMT", + "Date": "Tue, 30 Mar 2021 18:56:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7a2cbc8-9c8f-46fc-b3fa-e7b870855ab9", + "x-ms-correlation-request-id": "5d14c039-7f8a-47f7-b7ea-3a14c4cb75ae", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "c7a2cbc8-9c8f-46fc-b3fa-e7b870855ab9", - "x-ms-routing-request-id": "WESTUS2:20210316T005125Z:c7a2cbc8-9c8f-46fc-b3fa-e7b870855ab9" + "x-ms-request-id": "5d14c039-7f8a-47f7-b7ea-3a14c4cb75ae", + "x-ms-routing-request-id": "WESTUS:20210330T185645Z:5d14c039-7f8a-47f7-b7ea-3a14c4cb75ae" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg4338", @@ -140,15 +141,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:25 GMT", + "Date": "Tue, 30 Mar 2021 18:56:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f5a58b4-cce7-4ced-a15f-ab9aa9b3d982", + "x-ms-correlation-request-id": "9259c6e5-3971-467b-ab6d-ac835a442b01", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "7f5a58b4-cce7-4ced-a15f-ab9aa9b3d982", - "x-ms-routing-request-id": "WESTUS2:20210316T005125Z:7f5a58b4-cce7-4ced-a15f-ab9aa9b3d982" + "x-ms-request-id": "9259c6e5-3971-467b-ab6d-ac835a442b01", + "x-ms-routing-request-id": "WESTUS:20210330T185645Z:9259c6e5-3971-467b-ab6d-ac835a442b01" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg4338", @@ -177,16 +178,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:25 GMT", + "Date": "Tue, 30 Mar 2021 18:56:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36786c25-727b-4938-89af-aa9a225a7442", + "x-ms-correlation-request-id": "9a44cd06-958b-4265-a563-1efe80d151de", "x-ms-failure-cause": "gateway", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "36786c25-727b-4938-89af-aa9a225a7442", - "x-ms-routing-request-id": "WESTUS2:20210316T005125Z:36786c25-727b-4938-89af-aa9a225a7442" + "x-ms-request-id": "9a44cd06-958b-4265-a563-1efe80d151de", + "x-ms-routing-request-id": "WESTUS:20210330T185645Z:9a44cd06-958b-4265-a563-1efe80d151de" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest().json index 5ec864b474233..2c187c830f582 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest().json @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:00 GMT", + "Date": "Tue, 30 Mar 2021 18:56:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0efb3a5-2ad0-451a-9359-0740014bb102", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "f0efb3a5-2ad0-451a-9359-0740014bb102", - "x-ms-routing-request-id": "WESTUS2:20210316T005101Z:f0efb3a5-2ad0-451a-9359-0740014bb102" + "x-ms-correlation-request-id": "43de037e-2418-4832-ae11-695fcac86919", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "43de037e-2418-4832-ae11-695fcac86919", + "x-ms-routing-request-id": "WESTUS:20210330T185649Z:43de037e-2418-4832-ae11-695fcac86919" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -57,15 +57,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:00 GMT", + "Date": "Tue, 30 Mar 2021 18:56:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc91e236-4449-4c68-80d9-9c3837b733f7", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "bc91e236-4449-4c68-80d9-9c3837b733f7", - "x-ms-routing-request-id": "WESTUS2:20210316T005101Z:bc91e236-4449-4c68-80d9-9c3837b733f7" + "x-ms-correlation-request-id": "a28e37db-3fd9-463d-817d-7e89a2dad24a", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "a28e37db-3fd9-463d-817d-7e89a2dad24a", + "x-ms-routing-request-id": "WESTUS:20210330T185649Z:a28e37db-3fd9-463d-817d-7e89a2dad24a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -90,6 +90,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-2b46bbd2733b514ea1bc5d1653a91a9a-45f472aa6cad484d-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c4c34c1fe8db5ae289cd72ccc48f3ddb", "x-ms-return-client-request-id": "true" @@ -103,15 +104,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:01 GMT", + "Date": "Tue, 30 Mar 2021 18:56:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "37228567-5a9f-49e5-b7ff-d53be37efd9a", + "x-ms-correlation-request-id": "557cba14-a1b7-4bf2-a359-6ea5e75d74ed", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "37228567-5a9f-49e5-b7ff-d53be37efd9a", - "x-ms-routing-request-id": "WESTUS2:20210316T005101Z:37228567-5a9f-49e5-b7ff-d53be37efd9a" + "x-ms-request-id": "557cba14-a1b7-4bf2-a359-6ea5e75d74ed", + "x-ms-routing-request-id": "WESTUS:20210330T185650Z:557cba14-a1b7-4bf2-a359-6ea5e75d74ed" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg7386", @@ -130,6 +131,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-d719432ee1ae3d4bacc7938ca9a2d226-56136fe13ab3a147-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6573ff6ff659b5bc6765650c5fe55762", "x-ms-return-client-request-id": "true" @@ -140,15 +142,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:01 GMT", + "Date": "Tue, 30 Mar 2021 18:56:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef14316c-ccd1-429f-8faa-cdca4637606f", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "ef14316c-ccd1-429f-8faa-cdca4637606f", - "x-ms-routing-request-id": "WESTUS2:20210316T005102Z:ef14316c-ccd1-429f-8faa-cdca4637606f" + "x-ms-correlation-request-id": "7a71cf4e-e0e6-4757-91ee-2ebaef01f575", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "7a71cf4e-e0e6-4757-91ee-2ebaef01f575", + "x-ms-routing-request-id": "WESTUS:20210330T185650Z:7a71cf4e-e0e6-4757-91ee-2ebaef01f575" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg7386", @@ -167,6 +169,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-55e9a27053c8e3488eab6325b18b9da8-fb65a251b1de614a-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d96e5ebe993f5d7861385f706a5affca", "x-ms-return-client-request-id": "true" @@ -177,16 +180,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:01 GMT", + "Date": "Tue, 30 Mar 2021 18:56:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8dca8b8b-8501-4824-995f-63d68331bba2", + "x-ms-correlation-request-id": "2b4eb4b0-5966-41ce-aea9-77ad50e01eb9", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "8dca8b8b-8501-4824-995f-63d68331bba2", - "x-ms-routing-request-id": "WESTUS2:20210316T005102Z:8dca8b8b-8501-4824-995f-63d68331bba2" + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "2b4eb4b0-5966-41ce-aea9-77ad50e01eb9", + "x-ms-routing-request-id": "WESTUS:20210330T185650Z:2b4eb4b0-5966-41ce-aea9-77ad50e01eb9" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest()Async.json index a00a601af054a..ef1eda2926593 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest()Async.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "Request-Id": "|c3b9f1b9-450f9dd9985eea58.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e327fc4517bb78bac63c96daaf951470", "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, 16 Mar 2021 00:51:29 GMT", + "Date": "Tue, 30 Mar 2021 18:56:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dbcd4056-02ae-4172-b872-466c9892c2df", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "dbcd4056-02ae-4172-b872-466c9892c2df", - "x-ms-routing-request-id": "WESTUS2:20210316T005129Z:dbcd4056-02ae-4172-b872-466c9892c2df" + "x-ms-correlation-request-id": "1519c215-c246-495a-ac4a-aefc4de29b8a", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "1519c215-c246-495a-ac4a-aefc4de29b8a", + "x-ms-routing-request-id": "WESTUS:20210330T185649Z:1519c215-c246-495a-ac4a-aefc4de29b8a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,6 +48,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-f4570ab7516e9f40b5792dcc376952ff-43e2828a1dc01645-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "eb748011e5124bc6ca16570b21b9ba36", "x-ms-return-client-request-id": "true" @@ -57,15 +59,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:29 GMT", + "Date": "Tue, 30 Mar 2021 18:56:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "286d25ac-da10-419e-a70a-e1cdc571d6bd", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "286d25ac-da10-419e-a70a-e1cdc571d6bd", - "x-ms-routing-request-id": "WESTUS2:20210316T005129Z:286d25ac-da10-419e-a70a-e1cdc571d6bd" + "x-ms-correlation-request-id": "3ef05a93-da3c-46ad-953f-276ae96f2019", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "3ef05a93-da3c-46ad-953f-276ae96f2019", + "x-ms-routing-request-id": "WESTUS:20210330T185649Z:3ef05a93-da3c-46ad-953f-276ae96f2019" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -90,6 +92,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", + "traceparent": "00-f6241270e8ba3442906753cfebac6400-2df95efa66823d4e-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f3e34ec6763156a7bab6bf06b080a975", "x-ms-return-client-request-id": "true" @@ -103,15 +106,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:29 GMT", + "Date": "Tue, 30 Mar 2021 18:56:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10404d75-5490-49c5-aa96-b171b9aeb366", + "x-ms-correlation-request-id": "d99066b4-e164-49f9-bc7d-bfeffaea1555", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "10404d75-5490-49c5-aa96-b171b9aeb366", - "x-ms-routing-request-id": "WESTUS2:20210316T005129Z:10404d75-5490-49c5-aa96-b171b9aeb366" + "x-ms-request-id": "d99066b4-e164-49f9-bc7d-bfeffaea1555", + "x-ms-routing-request-id": "WESTUS:20210330T185650Z:d99066b4-e164-49f9-bc7d-bfeffaea1555" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg3672", @@ -140,15 +143,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:29 GMT", + "Date": "Tue, 30 Mar 2021 18:56:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d044b1c-f242-44dd-b3cb-ef68bc5f8f1f", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "0d044b1c-f242-44dd-b3cb-ef68bc5f8f1f", - "x-ms-routing-request-id": "WESTUS2:20210316T005130Z:0d044b1c-f242-44dd-b3cb-ef68bc5f8f1f" + "x-ms-correlation-request-id": "08f1162d-233b-416b-a04a-b34bd823ede3", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "08f1162d-233b-416b-a04a-b34bd823ede3", + "x-ms-routing-request-id": "WESTUS:20210330T185650Z:08f1162d-233b-416b-a04a-b34bd823ede3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg3672", @@ -177,16 +180,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:29 GMT", + "Date": "Tue, 30 Mar 2021 18:56:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fcdfe158-c3d7-415d-8251-5e86e49939fa", + "x-ms-correlation-request-id": "da70de9b-3503-4773-a961-300eb7a202d2", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "fcdfe158-c3d7-415d-8251-5e86e49939fa", - "x-ms-routing-request-id": "WESTUS2:20210316T005130Z:fcdfe158-c3d7-415d-8251-5e86e49939fa" + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "da70de9b-3503-4773-a961-300eb7a202d2", + "x-ms-routing-request-id": "WESTUS:20210330T185650Z:da70de9b-3503-4773-a961-300eb7a202d2" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(False).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(False).json index 50392e40f87a2..4108e1b8b02ad 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(False).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(False).json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dcf3bc7c7c526c42606b4f8bbe125c8b", "x-ms-return-client-request-id": "true" @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:16 GMT", + "Date": "Tue, 30 Mar 2021 18:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5af63ede-8c23-4213-a4bf-7b2606cf63de", + "x-ms-correlation-request-id": "d4ffe75f-e5d7-4877-963c-38ac4b537e8b", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "5af63ede-8c23-4213-a4bf-7b2606cf63de", - "x-ms-routing-request-id": "WESTUS2:20210326T204816Z:5af63ede-8c23-4213-a4bf-7b2606cf63de" + "x-ms-request-id": "d4ffe75f-e5d7-4877-963c-38ac4b537e8b", + "x-ms-routing-request-id": "WESTUS:20210330T180536Z:d4ffe75f-e5d7-4877-963c-38ac4b537e8b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -52,10 +52,10 @@ "Authorization": "Sanitized", "Content-Length": "41", "Content-Type": "application/json", - "traceparent": "00-3ebbdff37aaf2f498dc79990b8df93e6-151bf3a217d65545-00", + "traceparent": "00-de5c1acf7cea7f44a72c2781b37a2aad-378b9cb3154dc74b-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "79a83b24b946fa1eda91a6de3f21361c", "x-ms-return-client-request-id": "true" @@ -69,15 +69,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e928edf-5d94-40d2-a0a9-d77f7b31b5d7", + "x-ms-correlation-request-id": "6d51a7cb-d75e-421a-b9ee-048206814532", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "3e928edf-5d94-40d2-a0a9-d77f7b31b5d7", - "x-ms-routing-request-id": "WESTUS2:20210326T204818Z:3e928edf-5d94-40d2-a0a9-d77f7b31b5d7" + "x-ms-request-id": "6d51a7cb-d75e-421a-b9ee-048206814532", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:6d51a7cb-d75e-421a-b9ee-048206814532" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-898", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(True)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(True)Async.json index 6ac81b136900a..ef74ac6c1f599 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(True)Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(True)Async.json @@ -8,7 +8,7 @@ "Authorization": "Sanitized", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d38fd7f7b6cb82c1eba6971ec8201dcf", "x-ms-return-client-request-id": "true" @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:15 GMT", + "Date": "Tue, 30 Mar 2021 18:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48d85ddb-df3f-43f3-b91e-414f33f365a2", + "x-ms-correlation-request-id": "47b5f6d8-5e67-45aa-a193-cca363eed99d", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "48d85ddb-df3f-43f3-b91e-414f33f365a2", - "x-ms-routing-request-id": "WESTUS2:20210326T204816Z:48d85ddb-df3f-43f3-b91e-414f33f365a2" + "x-ms-request-id": "47b5f6d8-5e67-45aa-a193-cca363eed99d", + "x-ms-routing-request-id": "WESTUS:20210330T180536Z:47b5f6d8-5e67-45aa-a193-cca363eed99d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -52,10 +52,10 @@ "Authorization": "Sanitized", "Content-Length": "41", "Content-Type": "application/json", - "traceparent": "00-814691dca03d51479b9d41e01b53801e-4eb39788722e7a40-00", + "traceparent": "00-3b5c04314f26924aa2509bdbadf10d6c-76e8618d5c1b584e-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "da0d467684b06e69e3916b74a7ad4a51", "x-ms-return-client-request-id": "true" @@ -69,15 +69,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:17 GMT", + "Date": "Tue, 30 Mar 2021 18:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a14fc2d4-5099-4be6-8672-36b63cabdf47", + "x-ms-correlation-request-id": "c3126256-4fcb-4221-a643-6f21f9fb6639", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "a14fc2d4-5099-4be6-8672-36b63cabdf47", - "x-ms-routing-request-id": "WESTUS2:20210326T204818Z:a14fc2d4-5099-4be6-8672-36b63cabdf47" + "x-ms-request-id": "c3126256-4fcb-4221-a643-6f21f9fb6639", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:c3126256-4fcb-4221-a643-6f21f9fb6639" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8970", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion().json index 98a6b13387877..1bbb8e75fea87 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion().json @@ -6,9 +6,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-07fe723401d4dd4c8084ad09f1ccf7bc-80c464420c2e4c45-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "73dd40ef3a162c97ff1a8572cffe6c23", "x-ms-return-client-request-id": "true" @@ -19,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "737c923b-7074-4290-9c59-6bc32a2719bf", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "737c923b-7074-4290-9c59-6bc32a2719bf", - "x-ms-routing-request-id": "WESTUS2:20210326T204818Z:737c923b-7074-4290-9c59-6bc32a2719bf" + "x-ms-correlation-request-id": "56223400-014d-400c-b208-1c4cbd674a22", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "56223400-014d-400c-b208-1c4cbd674a22", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:56223400-014d-400c-b208-1c4cbd674a22" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,9 +51,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-56274774448b464d9c9e732686e11ea7-59bd2a1f1f45c04c-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "79839a8b0a86501d4939e0b6b503eaa5", "x-ms-return-client-request-id": "true" @@ -63,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6a5f4db-44c9-4722-bf94-a52dc31c28ce", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "c6a5f4db-44c9-4722-bf94-a52dc31c28ce", - "x-ms-routing-request-id": "WESTUS2:20210326T204818Z:c6a5f4db-44c9-4722-bf94-a52dc31c28ce" + "x-ms-correlation-request-id": "08be2be1-e150-4293-ab4d-d82920c1cd75", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "08be2be1-e150-4293-ab4d-d82920c1cd75", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:08be2be1-e150-4293-ab4d-d82920c1cd75" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -94,9 +96,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-2a9a2a45a609264fb4a8f037a6c56100-1dfaa839c5b70a4a-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "730ac5cc6749baf3668a6b2a926e9812", "x-ms-return-client-request-id": "true" @@ -105,22 +108,22 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "619", + "Content-Length": "608", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8407279-ce97-48eb-95b9-2f5df072372b", + "x-ms-correlation-request-id": "7347f04c-499f-4bd2-afc1-87696e37d280", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "c8407279-ce97-48eb-95b9-2f5df072372b", - "x-ms-routing-request-id": "WESTUS2:20210326T204818Z:c8407279-ce97-48eb-95b9-2f5df072372b" + "x-ms-request-id": "7347f04c-499f-4bd2-afc1-87696e37d280", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:7347f04c-499f-4bd2-afc1-87696e37d280" }, "ResponseBody": { "error": { "code": "InvalidApiVersionParameter", - "message": "The api-version \u00271500-10-10\u0027 is invalid. The supported versions are \u00272021-04-01,2021-01-01,2020-10-01,2020-09-01,2020-08-01,2020-07-01,2020-06-01,2020-05-01,2020-01-01,2019-11-01,2019-10-01,2019-09-01,2019-08-01,2019-07-01,2019-06-01,2019-05-10,2019-05-01,2019-03-01,2018-11-01,2018-09-01,2018-08-01,2018-07-01,2018-06-01,2018-05-01,2018-02-01,2018-01-01,2017-12-01,2017-08-01,2017-06-01,2017-05-10,2017-05-01,2017-03-01,2016-09-01,2016-07-01,2016-06-01,2016-02-01,2015-11-01,2015-01-01,2014-04-01-preview,2014-04-01,2014-01-01,2013-03-01,2014-02-26,2014-04\u0027." + "message": "The api-version \u00271500-10-10\u0027 is invalid. The supported versions are \u00272021-01-01,2020-10-01,2020-09-01,2020-08-01,2020-07-01,2020-06-01,2020-05-01,2020-01-01,2019-11-01,2019-10-01,2019-09-01,2019-08-01,2019-07-01,2019-06-01,2019-05-10,2019-05-01,2019-03-01,2018-11-01,2018-09-01,2018-08-01,2018-07-01,2018-06-01,2018-05-01,2018-02-01,2018-01-01,2017-12-01,2017-08-01,2017-06-01,2017-05-10,2017-05-01,2017-03-01,2016-09-01,2016-07-01,2016-06-01,2016-02-01,2015-11-01,2015-01-01,2014-04-01-preview,2014-04-01,2014-01-01,2013-03-01,2014-02-26,2014-04\u0027." } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion()Async.json index d9b8cbfded701..0f9fd69f712af 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion()Async.json @@ -6,10 +6,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-43011dfcb5de18458a4a2e982e179eb6-d54c163c51650c4b-00", + "traceparent": "00-18eeabff09e4094e98d577e1f5f31aef-d7fa094a8a9a0d46-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "30bad03c75065f404fd3a31e715c4ee0", "x-ms-return-client-request-id": "true" @@ -20,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:17 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf65469a-94aa-4c9c-bd7b-7eb1e0bec893", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "cf65469a-94aa-4c9c-bd7b-7eb1e0bec893", - "x-ms-routing-request-id": "WESTUS2:20210326T204818Z:cf65469a-94aa-4c9c-bd7b-7eb1e0bec893" + "x-ms-correlation-request-id": "59a346fd-ab93-40b0-8b6d-bb2d666d0d9c", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "59a346fd-ab93-40b0-8b6d-bb2d666d0d9c", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:59a346fd-ab93-40b0-8b6d-bb2d666d0d9c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,9 +51,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-3ef22a1ac073f748931942a008a69982-ed105493335fcf45-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d0b5bc88ddcaf428b94d99f833fa485", "x-ms-return-client-request-id": "true" @@ -64,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:17 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61975697-71de-4799-b0e2-f4a30f104244", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "61975697-71de-4799-b0e2-f4a30f104244", - "x-ms-routing-request-id": "WESTUS2:20210326T204818Z:61975697-71de-4799-b0e2-f4a30f104244" + "x-ms-correlation-request-id": "43808ce7-cca3-47ad-940c-f83975971f01", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "43808ce7-cca3-47ad-940c-f83975971f01", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:43808ce7-cca3-47ad-940c-f83975971f01" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -95,9 +96,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-ecbe726ba9efdb4e962daaa91484ddb6-5d7917d2b8ef1f4f-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "95a0e861dafa8a6733778ca1e817a76b", "x-ms-return-client-request-id": "true" @@ -106,22 +108,22 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "619", + "Content-Length": "608", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57ab4dde-a157-4ac3-a2c6-51d4fe1c4ab2", + "x-ms-correlation-request-id": "c124950e-088d-467f-aff8-40cdf07506d1", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "57ab4dde-a157-4ac3-a2c6-51d4fe1c4ab2", - "x-ms-routing-request-id": "WESTUS2:20210326T204818Z:57ab4dde-a157-4ac3-a2c6-51d4fe1c4ab2" + "x-ms-request-id": "c124950e-088d-467f-aff8-40cdf07506d1", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:c124950e-088d-467f-aff8-40cdf07506d1" }, "ResponseBody": { "error": { "code": "InvalidApiVersionParameter", - "message": "The api-version \u00271500-10-10\u0027 is invalid. The supported versions are \u00272021-04-01,2021-01-01,2020-10-01,2020-09-01,2020-08-01,2020-07-01,2020-06-01,2020-05-01,2020-01-01,2019-11-01,2019-10-01,2019-09-01,2019-08-01,2019-07-01,2019-06-01,2019-05-10,2019-05-01,2019-03-01,2018-11-01,2018-09-01,2018-08-01,2018-07-01,2018-06-01,2018-05-01,2018-02-01,2018-01-01,2017-12-01,2017-08-01,2017-06-01,2017-05-10,2017-05-01,2017-03-01,2016-09-01,2016-07-01,2016-06-01,2016-02-01,2015-11-01,2015-01-01,2014-04-01-preview,2014-04-01,2014-01-01,2013-03-01,2014-02-26,2014-04\u0027." + "message": "The api-version \u00271500-10-10\u0027 is invalid. The supported versions are \u00272021-01-01,2020-10-01,2020-09-01,2020-08-01,2020-07-01,2020-06-01,2020-05-01,2020-01-01,2019-11-01,2019-10-01,2019-09-01,2019-08-01,2019-07-01,2019-06-01,2019-05-10,2019-05-01,2019-03-01,2018-11-01,2018-09-01,2018-08-01,2018-07-01,2018-06-01,2018-05-01,2018-02-01,2018-01-01,2017-12-01,2017-08-01,2017-06-01,2017-05-10,2017-05-01,2017-03-01,2016-09-01,2016-07-01,2016-06-01,2016-02-01,2015-11-01,2015-01-01,2014-04-01-preview,2014-04-01,2014-01-01,2013-03-01,2014-02-26,2014-04\u0027." } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace().json index 123aa3becfc8c..df92821559f65 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace().json @@ -6,9 +6,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-ca0344a8e7c74b44b197ed5ca925ebdc-6bf1a0376cbce94c-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5151118777d6bfec9b643321ecf9b10b", "x-ms-return-client-request-id": "true" @@ -19,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1164316b-77f9-4de4-957e-49b999625a31", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "1164316b-77f9-4de4-957e-49b999625a31", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:1164316b-77f9-4de4-957e-49b999625a31" + "x-ms-correlation-request-id": "f56c9436-3282-4d07-9ea0-00977f2deaa3", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "f56c9436-3282-4d07-9ea0-00977f2deaa3", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:f56c9436-3282-4d07-9ea0-00977f2deaa3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,9 +51,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-be3b60d1d667bf44a8c9c9a5cfa8d59e-083ed3090fd94242-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "62ea807bb0389daebb529b8e1c9e6e42", "x-ms-return-client-request-id": "true" @@ -63,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd7be6d9-eb06-4a45-b081-07d47ceae117", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "fd7be6d9-eb06-4a45-b081-07d47ceae117", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:fd7be6d9-eb06-4a45-b081-07d47ceae117" + "x-ms-correlation-request-id": "631e624d-e0d4-4292-a2ef-3e6084b0a6d7", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "631e624d-e0d4-4292-a2ef-3e6084b0a6d7", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:631e624d-e0d4-4292-a2ef-3e6084b0a6d7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -94,9 +96,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-c300a5b642c4414ab13248e6e53da195-16092f48f1f0ab49-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9ee983b77f4c319affe45aa6118259b2", "x-ms-return-client-request-id": "true" @@ -107,16 +110,16 @@ "Cache-Control": "no-cache", "Content-Length": "126", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f16d029-f23a-46f7-b08f-b0d2d6a52faa", + "x-ms-correlation-request-id": "1444a9da-6dd5-49bb-b9ce-4ce2735a1b83", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "5f16d029-f23a-46f7-b08f-b0d2d6a52faa", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:5f16d029-f23a-46f7-b08f-b0d2d6a52faa" + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "1444a9da-6dd5-49bb-b9ce-4ce2735a1b83", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:1444a9da-6dd5-49bb-b9ce-4ce2735a1b83" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace()Async.json index ebbba68c55f8f..fd2785be1c930 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace()Async.json @@ -6,9 +6,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-edaed2d45b17504987ebbf2865ffb915-fbfe7f314ed05548-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fd430b3dc5813912b8a404965658e0f0", "x-ms-return-client-request-id": "true" @@ -19,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d2564bb-e4b3-4d0b-abd9-8e84f47c3e52", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "7d2564bb-e4b3-4d0b-abd9-8e84f47c3e52", - "x-ms-routing-request-id": "WESTUS2:20210326T204818Z:7d2564bb-e4b3-4d0b-abd9-8e84f47c3e52" + "x-ms-correlation-request-id": "dc3d5824-499b-4077-99fe-1f5417087a88", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "dc3d5824-499b-4077-99fe-1f5417087a88", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:dc3d5824-499b-4077-99fe-1f5417087a88" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,9 +51,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-9b966b5d890f0645920c5cce604932e7-7616ab246653a446-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "69271b0e12a9d83718cc929ba3a56fb7", "x-ms-return-client-request-id": "true" @@ -63,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c092216-3515-4b40-a7b3-c21d5c7eb8bc", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "2c092216-3515-4b40-a7b3-c21d5c7eb8bc", - "x-ms-routing-request-id": "WESTUS2:20210326T204818Z:2c092216-3515-4b40-a7b3-c21d5c7eb8bc" + "x-ms-correlation-request-id": "42aecfd0-f09d-4e3c-8f28-150ceec2c59b", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "42aecfd0-f09d-4e3c-8f28-150ceec2c59b", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:42aecfd0-f09d-4e3c-8f28-150ceec2c59b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -94,9 +96,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-453ae33d9093834b982a0189becdc07e-60c2b8a096c7d443-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a811fb38a4e909fb55310a84cbc96e79", "x-ms-return-client-request-id": "true" @@ -107,16 +110,16 @@ "Cache-Control": "no-cache", "Content-Length": "126", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1614d818-4887-4346-8cca-5e4be5a294d6", + "x-ms-correlation-request-id": "aa5fda1d-b212-4324-9be8-9374c2bb9364", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "1614d818-4887-4346-8cca-5e4be5a294d6", - "x-ms-routing-request-id": "WESTUS2:20210326T204818Z:1614d818-4887-4346-8cca-5e4be5a294d6" + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "aa5fda1d-b212-4324-9be8-9374c2bb9364", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:aa5fda1d-b212-4324-9be8-9374c2bb9364" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException().json index 96201af934fba..cb6346f39b7af 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException().json @@ -6,9 +6,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-89fb219b0b16444c9216b3dd1609fa14-0e781888494dbf4d-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "23ac95ff522586a33b684b04dca6535d", "x-ms-return-client-request-id": "true" @@ -19,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89d4794b-11b8-423a-81e9-1d0cde579150", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "89d4794b-11b8-423a-81e9-1d0cde579150", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:89d4794b-11b8-423a-81e9-1d0cde579150" + "x-ms-correlation-request-id": "5f0bc1d4-f96d-4cdd-ae4f-529e55e8fb3c", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "5f0bc1d4-f96d-4cdd-ae4f-529e55e8fb3c", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:5f0bc1d4-f96d-4cdd-ae4f-529e55e8fb3c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,9 +51,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-e0224a12f7666d438a938402231b2918-3909988c626f144d-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b42c6cbcf4125dd13aeb17e2d5b2819b", "x-ms-return-client-request-id": "true" @@ -63,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:18 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "806f9599-1eb6-46f2-9ecd-76a3a5684f08", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "806f9599-1eb6-46f2-9ecd-76a3a5684f08", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:806f9599-1eb6-46f2-9ecd-76a3a5684f08" + "x-ms-correlation-request-id": "c0193a3a-6836-4917-8cf6-66462aa6d7e0", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "c0193a3a-6836-4917-8cf6-66462aa6d7e0", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:c0193a3a-6836-4917-8cf6-66462aa6d7e0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -94,9 +96,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-998239bb1429f145bb4c713799280cb3-3a0279f01417fa49-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ed695f8b84ed2fe320a9bb5cd7827c85", "x-ms-return-client-request-id": "true" @@ -107,15 +110,15 @@ "Cache-Control": "no-cache", "Content-Length": "44733", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d079501-0832-42e6-8993-bf1a538fbd07", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "6d079501-0832-42e6-8993-bf1a538fbd07", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:6d079501-0832-42e6-8993-bf1a538fbd07" + "x-ms-correlation-request-id": "e5e12d1e-27e8-4784-88d8-ad7431f4b253", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "e5e12d1e-27e8-4784-88d8-ad7431f4b253", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:e5e12d1e-27e8-4784-88d8-ad7431f4b253" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -3435,9 +3438,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-0112af07328431478eb9016944841df0-d6cf9f5ab32d5748-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2de56ed162800aa1c34fe93a3ac0b188", "x-ms-return-client-request-id": "true" @@ -3448,15 +3452,15 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0769a2b2-e592-411c-8475-bb1762835acd", + "x-ms-correlation-request-id": "60528da1-aa1c-4c0d-ae9d-1af372d2275d", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "0769a2b2-e592-411c-8475-bb1762835acd", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:0769a2b2-e592-411c-8475-bb1762835acd" + "x-ms-request-id": "60528da1-aa1c-4c0d-ae9d-1af372d2275d", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:60528da1-aa1c-4c0d-ae9d-1af372d2275d" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException()Async.json index bb717cadceee3..5626cb7c8f46f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException()Async.json @@ -6,9 +6,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-4e89ba717d55164f8d16ffa614f7ee5c-01c57a1c77d2154f-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b112e4146692a8bb02632ac5f91757bd", "x-ms-return-client-request-id": "true" @@ -19,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aae3cea3-2bb6-4aeb-a55a-5114210a8629", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "aae3cea3-2bb6-4aeb-a55a-5114210a8629", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:aae3cea3-2bb6-4aeb-a55a-5114210a8629" + "x-ms-correlation-request-id": "202e441a-4689-4f1c-904a-2be6fbf277e7", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "202e441a-4689-4f1c-904a-2be6fbf277e7", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:202e441a-4689-4f1c-904a-2be6fbf277e7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,9 +51,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-dd3dce5f5058b5409690f254155f4d6b-6f807b29e238bb4b-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7e8ab70c181dbc90cacbba837fca06f1", "x-ms-return-client-request-id": "true" @@ -63,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6486e048-0d4c-4d12-a2b2-5ed7740967c1", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "6486e048-0d4c-4d12-a2b2-5ed7740967c1", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:6486e048-0d4c-4d12-a2b2-5ed7740967c1" + "x-ms-correlation-request-id": "b6de968c-a278-4f27-81e6-6c063bcf76d3", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "b6de968c-a278-4f27-81e6-6c063bcf76d3", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:b6de968c-a278-4f27-81e6-6c063bcf76d3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -94,9 +96,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-099c6a353d6e774597256d23c8786d66-72749288d8e14a44-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "898eb309b1f0c9399d3293c1a876a2ba", "x-ms-return-client-request-id": "true" @@ -107,15 +110,15 @@ "Cache-Control": "no-cache", "Content-Length": "44733", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2089c66-bf79-4356-a746-f45d8f8b44f8", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "a2089c66-bf79-4356-a746-f45d8f8b44f8", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:a2089c66-bf79-4356-a746-f45d8f8b44f8" + "x-ms-correlation-request-id": "0c42a19b-115b-4460-accf-112e32ddafb3", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "0c42a19b-115b-4460-accf-112e32ddafb3", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:0c42a19b-115b-4460-accf-112e32ddafb3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -3435,9 +3438,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-aa69554bc40bc44f9eb277f6e389eeae-0b3fc87a86efec4c-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "85c3ed009922fcd75356e6c7ab382837", "x-ms-return-client-request-id": "true" @@ -3448,15 +3452,15 @@ "Cache-Control": "no-cache", "Content-Length": "227", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88c135d2-fdf1-4b46-84f8-881b611dbe90", + "x-ms-correlation-request-id": "a5f39e06-6d5c-458e-86f6-5c4cadab80d2", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "88c135d2-fdf1-4b46-84f8-881b611dbe90", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:88c135d2-fdf1-4b46-84f8-881b611dbe90" + "x-ms-request-id": "a5f39e06-6d5c-458e-86f6-5c4cadab80d2", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:a5f39e06-6d5c-458e-86f6-5c4cadab80d2" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion().json index 817daef7c5617..f28aed701b611 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion().json @@ -6,9 +6,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-e9e002808e838649a6e01174c79eec92-80906a324a1e9e4a-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c2e7e4fb960965b374d0b981cd8d6564", "x-ms-return-client-request-id": "true" @@ -19,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7429f912-0bc7-4862-bbba-a5b457627eae", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "7429f912-0bc7-4862-bbba-a5b457627eae", - "x-ms-routing-request-id": "WESTUS2:20210326T204820Z:7429f912-0bc7-4862-bbba-a5b457627eae" + "x-ms-correlation-request-id": "46484eb1-a4bc-4209-b13f-54644d249c81", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "46484eb1-a4bc-4209-b13f-54644d249c81", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:46484eb1-a4bc-4209-b13f-54644d249c81" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,9 +51,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-ac107cea3838f54fa51e7661efa78ecc-d9aec9af0ddf904b-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2726f6ad7d7f4015f9eee8a32b67ff87", "x-ms-return-client-request-id": "true" @@ -63,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65804d90-c052-4c1f-ad1e-a71f2cac5047", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "65804d90-c052-4c1f-ad1e-a71f2cac5047", - "x-ms-routing-request-id": "WESTUS2:20210326T204820Z:65804d90-c052-4c1f-ad1e-a71f2cac5047" + "x-ms-correlation-request-id": "f26b10dc-1aef-4159-b482-cf1c854e40f9", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "f26b10dc-1aef-4159-b482-cf1c854e40f9", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:f26b10dc-1aef-4159-b482-cf1c854e40f9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -94,9 +96,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-d4947875ef19644b9bc2e14b7230af97-9f8450fee2cf0c4d-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8743cf30fafb384ee330ef39e53bbb3a", "x-ms-return-client-request-id": "true" @@ -105,17 +108,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "16313", + "Content-Length": "16347", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c82489bb-3a1b-4549-b039-0665f8fc2246", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "c82489bb-3a1b-4549-b039-0665f8fc2246", - "x-ms-routing-request-id": "WESTUS2:20210326T204820Z:c82489bb-3a1b-4549-b039-0665f8fc2246" + "x-ms-correlation-request-id": "d14094aa-6cf7-4a7f-a5f2-02e7fba60d43", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "d14094aa-6cf7-4a7f-a5f2-02e7fba60d43", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:d14094aa-6cf7-4a7f-a5f2-02e7fba60d43" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -643,7 +646,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2019-05-01", @@ -716,7 +720,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2019-05-01", @@ -1278,9 +1283,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-9d2b1244f867834da6168f9911142933-8498431c75e1a841-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "39b0afd4ffe07e7ecfa6c91aae0f3a0d", "x-ms-return-client-request-id": "true" @@ -1291,15 +1297,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1cf9651-14a2-4f85-bfe7-afbffc99f512", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "c1cf9651-14a2-4f85-bfe7-afbffc99f512", - "x-ms-routing-request-id": "WESTUS2:20210326T204820Z:c1cf9651-14a2-4f85-bfe7-afbffc99f512" + "x-ms-correlation-request-id": "aabc83af-1597-406c-9856-5595d3502096", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "aabc83af-1597-406c-9856-5595d3502096", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:aabc83af-1597-406c-9856-5595d3502096" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-898", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion()Async.json index 61a42feb1c471..479d3d9900c6e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion()Async.json @@ -6,9 +6,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-ee6096ea7e506b42b3e80f5776a2c734-dae0cb4bd8a1b345-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b2e5521add72ba324689b48fb23515ad", "x-ms-return-client-request-id": "true" @@ -19,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4db4a139-b1c2-4a32-865e-cb979916a428", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "4db4a139-b1c2-4a32-865e-cb979916a428", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:4db4a139-b1c2-4a32-865e-cb979916a428" + "x-ms-correlation-request-id": "721e798c-d992-4482-98ee-94cf9bc8d270", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "721e798c-d992-4482-98ee-94cf9bc8d270", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:721e798c-d992-4482-98ee-94cf9bc8d270" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,9 +51,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-e277d9dbc1b0bc45bdbb8de5cf81ce9d-04272979b7dcff43-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e2d6cc8b852a88657d5b75e4d8f0980c", "x-ms-return-client-request-id": "true" @@ -63,15 +65,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b94b5d5-cc4d-4127-a60e-9b10183b05e5", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "6b94b5d5-cc4d-4127-a60e-9b10183b05e5", - "x-ms-routing-request-id": "WESTUS2:20210326T204819Z:6b94b5d5-cc4d-4127-a60e-9b10183b05e5" + "x-ms-correlation-request-id": "3990d42e-2bec-4bae-abec-2797706742c8", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "3990d42e-2bec-4bae-abec-2797706742c8", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:3990d42e-2bec-4bae-abec-2797706742c8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -94,9 +96,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-50d7ee8ce5d35a4fb524c507098ebd54-71625de1e208934a-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "87288283ad79b65f7265945b00442657", "x-ms-return-client-request-id": "true" @@ -105,17 +108,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "16313", + "Content-Length": "16347", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfa22fbf-df94-4a94-bce2-65cba8c451da", + "x-ms-correlation-request-id": "20341ab1-5804-49ef-bfd9-3e5dfa072619", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "dfa22fbf-df94-4a94-bce2-65cba8c451da", - "x-ms-routing-request-id": "WESTUS2:20210326T204820Z:dfa22fbf-df94-4a94-bce2-65cba8c451da" + "x-ms-request-id": "20341ab1-5804-49ef-bfd9-3e5dfa072619", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:20341ab1-5804-49ef-bfd9-3e5dfa072619" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -643,7 +646,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2019-05-01", @@ -716,7 +720,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2019-05-01", @@ -1278,9 +1283,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-a863609414caf8468260916afac57fbc-b4dd9c2fb0702448-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET 5.0.4; Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020)" + "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f1035904dfab9470ec5c3517684ee155", "x-ms-return-client-request-id": "true" @@ -1291,15 +1297,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 26 Mar 2021 20:48:20 GMT", + "Date": "Tue, 30 Mar 2021 18:05:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0bf83d7c-6d1d-4a03-9785-c52f0233bdbe", + "x-ms-correlation-request-id": "feba94ec-6474-4970-93d4-c41023cdd9c0", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "0bf83d7c-6d1d-4a03-9785-c52f0233bdbe", - "x-ms-routing-request-id": "WESTUS2:20210326T204820Z:0bf83d7c-6d1d-4a03-9785-c52f0233bdbe" + "x-ms-request-id": "feba94ec-6474-4970-93d4-c41023cdd9c0", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:feba94ec-6474-4970-93d4-c41023cdd9c0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8970", 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 7cafe89b4502e..c8bcde3911c9f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Create().json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "fbf5ae5d9d0e4ef6d820c67cd78a6b7d", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 05:15:19 GMT", + "Date": "Tue, 30 Mar 2021 18:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "972ec4b1-ff25-46c1-b10e-f49527fbeed8", + "x-ms-correlation-request-id": "176fabc3-9b9d-40b4-9970-db9d19b5b5d6", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "972ec4b1-ff25-46c1-b10e-f49527fbeed8", - "x-ms-routing-request-id": "WESTUS2:20210310T051520Z:972ec4b1-ff25-46c1-b10e-f49527fbeed8" + "x-ms-request-id": "176fabc3-9b9d-40b4-9970-db9d19b5b5d6", + "x-ms-routing-request-id": "WESTUS:20210330T180536Z:176fabc3-9b9d-40b4-9970-db9d19b5b5d6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +52,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-de005d4107504346b77f3f2209db456c-3b8600e5d9e2884e-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-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 )" + ], "x-ms-client-request-id": "4f9b1cb0c615a755df66b08668e1e5c8", "x-ms-return-client-request-id": "true" }, @@ -63,15 +69,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 05:15:20 GMT", + "Date": "Tue, 30 Mar 2021 18:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90427e78-9d8b-42d1-9652-1eee29473860", + "x-ms-correlation-request-id": "c1e67f02-80a1-43da-8957-30b60639d74c", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "90427e78-9d8b-42d1-9652-1eee29473860", - "x-ms-routing-request-id": "WESTUS2:20210310T051521Z:90427e78-9d8b-42d1-9652-1eee29473860" + "x-ms-request-id": "c1e67f02-80a1-43da-8957-30b60639d74c", + "x-ms-routing-request-id": "WESTUS:20210330T180537Z:c1e67f02-80a1-43da-8957-30b60639d74c" }, "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 0bc3d6678fd3a..b2a71ac0ee3be 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": "Wed, 10 Mar 2021 05:15:20 GMT", + "Date": "Tue, 30 Mar 2021 18:34:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59f27370-5c39-49b5-9f52-0d212751eef3", + "x-ms-correlation-request-id": "9f1ad86e-1c25-460e-8ced-1a6fa0953b40", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "59f27370-5c39-49b5-9f52-0d212751eef3", - "x-ms-routing-request-id": "WESTUS2:20210310T051520Z:59f27370-5c39-49b5-9f52-0d212751eef3" + "x-ms-request-id": "9f1ad86e-1c25-460e-8ced-1a6fa0953b40", + "x-ms-routing-request-id": "WESTUS:20210330T183439Z:9f1ad86e-1c25-460e-8ced-1a6fa0953b40" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,7 +49,7 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-ce40bf9d0427a54a9e5b0ec049bd4473-361e0abe2fb5d445-00", + "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 )", "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": "Wed, 10 Mar 2021 05:15:21 GMT", + "Date": "Tue, 30 Mar 2021 18:34:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "628880e0-c079-48cb-a8b1-6f8f24acd509", + "x-ms-correlation-request-id": "841cdbac-a446-4b4c-8ab9-df4fe48d034a", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "628880e0-c079-48cb-a8b1-6f8f24acd509", - "x-ms-routing-request-id": "WESTUS2:20210310T051521Z:628880e0-c079-48cb-a8b1-6f8f24acd509" + "x-ms-request-id": "841cdbac-a446-4b4c-8ab9-df4fe48d034a", + "x-ms-routing-request-id": "WESTUS:20210330T183440Z:841cdbac-a446-4b4c-8ab9-df4fe48d034a" }, "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 dab56db1c8456..9a91a00e83cfc 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/Get().json @@ -6,7 +6,11 @@ "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-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 )" + ], "x-ms-client-request-id": "947ed80a888c329c78682d2e8a26a844", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 05:18:07 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8490e1c-7d96-43f7-b5f4-19cb401dcadc", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "d8490e1c-7d96-43f7-b5f4-19cb401dcadc", - "x-ms-routing-request-id": "WESTUS:20210310T051808Z:d8490e1c-7d96-43f7-b5f4-19cb401dcadc" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-8d586b10a435ee40aad9e1d6d5281229-b8c0fd44274d5043-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-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 )" + ], "x-ms-client-request-id": "6e214c3fac952f6afda406451eb6e501", "x-ms-return-client-request-id": "true" }, @@ -63,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 05:18:09 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf9cfc6c-23df-49a8-9c3b-580d0f735ce1", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "cf9cfc6c-23df-49a8-9c3b-580d0f735ce1", - "x-ms-routing-request-id": "WESTUS:20210310T051809Z:cf9cfc6c-23df-49a8-9c3b-580d0f735ce1" + "x-ms-correlation-request-id": "c3752461-fe83-415c-8f48-e37865681e94", + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", @@ -90,8 +97,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-dd89f88eeead664e841d951608cb23d3-169ce5980f43e74e-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-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 )" + ], "x-ms-client-request-id": "9730847ff5de83c556d82af59a97e08a", "x-ms-return-client-request-id": "true" }, @@ -101,15 +111,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 05:18:09 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "813ecb1b-3fe7-42be-92eb-d4436d10f5fb", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "813ecb1b-3fe7-42be-92eb-d4436d10f5fb", - "x-ms-routing-request-id": "WESTUS:20210310T051810Z:813ecb1b-3fe7-42be-92eb-d4436d10f5fb" + "x-ms-correlation-request-id": "2258c7a2-addb-4585-8ef5-a3e38a0b7739", + "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" }, "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 c9041db9bf363..c7bfa9f043bf0 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,7 +6,11 @@ "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-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 )" + ], "x-ms-client-request-id": "bf56a65b1b3503a53e85268135c4c103", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 05:15:22 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f797c1dc-d279-4c3d-8689-97b003c9ed83", + "x-ms-correlation-request-id": "19d2332e-2790-44b2-b602-7f25f9eaf66e", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "f797c1dc-d279-4c3d-8689-97b003c9ed83", - "x-ms-routing-request-id": "WESTUS2:20210310T051522Z:f797c1dc-d279-4c3d-8689-97b003c9ed83" + "x-ms-request-id": "19d2332e-2790-44b2-b602-7f25f9eaf66e", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:19d2332e-2790-44b2-b602-7f25f9eaf66e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-78cc233f15a95346bedb2c2ab4478b64-3fd8355585821742-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-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 )" + ], "x-ms-client-request-id": "b569d83722f70f6203999b272959e7c7", "x-ms-return-client-request-id": "true" }, @@ -58,20 +65,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": "Wed, 10 Mar 2021 05:15:23 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64d6d2b6-d403-4211-a024-192a494babb0", + "x-ms-correlation-request-id": "adbccdc5-ce04-461d-9dee-227d2e0229aa", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "64d6d2b6-d403-4211-a024-192a494babb0", - "x-ms-routing-request-id": "WESTUS2:20210310T051523Z:64d6d2b6-d403-4211-a024-192a494babb0" + "x-ms-request-id": "adbccdc5-ce04-461d-9dee-227d2e0229aa", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:adbccdc5-ce04-461d-9dee-227d2e0229aa" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", @@ -90,8 +97,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6f08995bc596184d8c534efaf15a72c2-d24ac8f13a413e44-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-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 )" + ], "x-ms-client-request-id": "1e0f8777a432c9cce195e5f9f9edde36", "x-ms-return-client-request-id": "true" }, @@ -101,15 +111,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 05:15:23 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2eda456a-2c96-4175-8690-aa2896eeb1f9", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "2eda456a-2c96-4175-8690-aa2896eeb1f9", - "x-ms-routing-request-id": "WESTUS2:20210310T051523Z:2eda456a-2c96-4175-8690-aa2896eeb1f9" + "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" }, "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 365425040a917..3e64933857240 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/List().json @@ -1,332 +1,382 @@ { - "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.19042 )", - "x-ms-client-request-id": "32314624bfbe8662a7fea2c55ef4175d", - "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, 10 Mar 2021 06:25:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ecf0ca7-e60b-40ab-a957-e628559bfefd", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "0ecf0ca7-e60b-40ab-a957-e628559bfefd", - "x-ms-routing-request-id": "WESTUS2:20210310T062504Z:0ecf0ca7-e60b-40ab-a957-e628559bfefd" - }, - "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" - } + "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-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 )" + ], + "x-ms-client-request-id": "32314624bfbe8662a7fea2c55ef4175d", + "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": "Tue, 30 Mar 2021 18:05:41 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" + }, + "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/testRg-6350?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "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 )" + ], + "x-ms-client-request-id": "4d506cbd48c3a8c934b1e57276165c60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 30 Mar 2021 18:05:41 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-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" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6350", + "name": "testRg-6350", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6091?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "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 )" + ], + "x-ms-client-request-id": "997a583a7a13a661eb9ff26126efcbab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 30 Mar 2021 18:05:42 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-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" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", + "name": "testRg-6091", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-01", + "RequestMethod": "GET", + "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 )" + ], + "x-ms-client-request-id": "db5e9666609168fe8a8a0e7c1330e845", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "4790", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 30 Mar 2021 18:05:42 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" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-898", + "name": "testRg-898", + "type": "Microsoft.Resources/resourceGroups", + "location": "southcentralus", + "tags": {}, + "properties": { + "provisioningState": "Deleting" } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6350?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "traceparent": "00-b2b6e8e2eaace845813249360a910e74-07d30f4b16990549-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "4d506cbd48c3a8c934b1e57276165c60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "230", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62074c1f-e848-4b4c-a717-1158f11dbdda", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "62074c1f-e848-4b4c-a717-1158f11dbdda", - "x-ms-routing-request-id": "WESTUS2:20210310T062505Z:62074c1f-e848-4b4c-a717-1158f11dbdda" - }, - "ResponseBody": { - "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-8970", + "name": "testRg-8970", + "type": "Microsoft.Resources/resourceGroups", + "location": "southcentralus", + "tags": {}, + "properties": { + "provisioningState": "Deleting" } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-6091?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "traceparent": "00-49a3327804017b4c90519e478041799f-92a50af83b091047-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "997a583a7a13a661eb9ff26126efcbab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "230", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "37653f5a-92ed-468d-807a-b7bca0bf0b29", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "37653f5a-92ed-468d-807a-b7bca0bf0b29", - "x-ms-routing-request-id": "WESTUS2:20210310T062506Z:37653f5a-92ed-468d-807a-b7bca0bf0b29" - }, - "ResponseBody": { - "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/AzSecPackAutoConfigRG", + "name": "AzSecPackAutoConfigRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a28128415086dc429e2de05ff896de98-91079d230d1d6a4b-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "db5e9666609168fe8a8a0e7c1330e845", - "x-ms-return-client-request-id": "true" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/nibhati-432037640-rg", + "name": "nibhati-432037640-rg", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", + "name": "NetworkWatcherRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5701", + "name": "rg5701", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "key1": "value1", + "key2": "value2", + "UpdateKey3": "UpdateValue3" }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "3978", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c75bb25-9302-4b8a-9242-9c943b69b61c", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "4c75bb25-9302-4b8a-9242-9c943b69b61c", - "x-ms-routing-request-id": "WESTUS2:20210310T062506Z:4c75bb25-9302-4b8a-9242-9c943b69b61c" + "properties": { + "provisioningState": "Deleting" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2616", + "name": "rg2616", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "key1": "value1", + "key2": "value2", + "UpdateKey3": "UpdateValue3" }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", - "name": "NetworkWatcherRG", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9714", - "name": "testRg-9714", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-4091", - "name": "testRg-4091", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-3536", - "name": "testRg-3536", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7291", - "name": "testRg-7291", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5007", - "name": "testRg-5007", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-557", - "name": "testRg-557", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7976", - "name": "testRg-7976", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8051", - "name": "testRg-8051", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9131", - "name": "testRg-9131", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5858", - "name": "testRg-5858", - "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/AutoRestResources2", - "name": "AutoRestResources2", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", - "name": "Default-Storage-EastAsia", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastasia", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", - "name": "Default-Storage-EastUS", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", - "name": "Default-Storage-WestUS", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus", - "properties": { - "provisioningState": "Succeeded" - } - } - ] + "properties": { + "provisioningState": "Deleting" } - } - ], - "Variables": { - "RandomSeed": "1884863518", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9936", + "name": "rg9936", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", + "name": "testRg-9476", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Deleting" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3087", + "name": "testrg3087", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Deleting" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", + "name": "testRg-6439", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Deleting" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", + "name": "testRg-2388", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Deleting" + } + }, + { + "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/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-2283", + "name": "testRg-2283", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2", + "name": "AutoRestResources2", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", + "name": "Default-Storage-EastAsia", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastasia", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", + "name": "Default-Storage-EastUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", + "name": "Default-Storage-WestUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + } + ] + } } -} + ], + "Variables": { + "RandomSeed": "1884863518", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file 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 41f430105eb63..b61a4d64b1f72 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 @@ -1,352 +1,382 @@ { - "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.19042 )", - "x-ms-client-request-id": "fc4e15b5fbbb5705603d2b33fb5b2337", - "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, 10 Mar 2021 06:25:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f80fd14-dd45-4451-84ed-812c18b27e15", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "3f80fd14-dd45-4451-84ed-812c18b27e15", - "x-ms-routing-request-id": "WESTUS2:20210310T062529Z:3f80fd14-dd45-4451-84ed-812c18b27e15" - }, - "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" - } + "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-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 )" + ], + "x-ms-client-request-id": "fc4e15b5fbbb5705603d2b33fb5b2337", + "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": "Tue, 30 Mar 2021 18:05:40 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" + }, + "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/testRg-9522?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "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 )" + ], + "x-ms-client-request-id": "9c1867024544a4ce2fd808a6a8f416fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 30 Mar 2021 18:05:41 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" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9522", + "name": "testRg-9522", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-2283?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "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 )" + ], + "x-ms-client-request-id": "f77522cdaf69f33f8f0ffba77bde90a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "230", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 30 Mar 2021 18:05:42 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" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", + "name": "testRg-2283", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-01", + "RequestMethod": "GET", + "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 )" + ], + "x-ms-client-request-id": "1e6fd11270f580cf588b22fcb1b74814", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "4790", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 30 Mar 2021 18:05:42 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" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-898", + "name": "testRg-898", + "type": "Microsoft.Resources/resourceGroups", + "location": "southcentralus", + "tags": {}, + "properties": { + "provisioningState": "Deleting" } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-9522?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "traceparent": "00-805fdc079074e34a93a3733a6095241e-3b3894355803df41-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "9c1867024544a4ce2fd808a6a8f416fa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "230", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1a483e9-8e20-47d3-804a-e1242604cd8d", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "e1a483e9-8e20-47d3-804a-e1242604cd8d", - "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:e1a483e9-8e20-47d3-804a-e1242604cd8d" - }, - "ResponseBody": { - "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/testRg-8970", + "name": "testRg-8970", + "type": "Microsoft.Resources/resourceGroups", + "location": "southcentralus", + "tags": {}, + "properties": { + "provisioningState": "Deleting" } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-2283?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "traceparent": "00-70155e612b4cbb45a86b4e1bf9311095-b588d522b5823c47-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "f77522cdaf69f33f8f0ffba77bde90a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "West US 2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "230", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6c3013d-c726-43b6-8654-c37ae885405c", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "b6c3013d-c726-43b6-8654-c37ae885405c", - "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:b6c3013d-c726-43b6-8654-c37ae885405c" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2283", - "name": "testRg-2283", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG", + "name": "AzSecPackAutoConfigRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b02852abdb9797459ffe52b9697415a8-27aa7a1d092f0248-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "1e6fd11270f580cf588b22fcb1b74814", - "x-ms-return-client-request-id": "true" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/nibhati-432037640-rg", + "name": "nibhati-432037640-rg", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", + "name": "NetworkWatcherRG", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5701", + "name": "rg5701", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "key1": "value1", + "key2": "value2", + "UpdateKey3": "UpdateValue3" }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "4438", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 06:25:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ca1d1e5-e0b0-4411-9066-fa927b2e6000", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "5ca1d1e5-e0b0-4411-9066-fa927b2e6000", - "x-ms-routing-request-id": "WESTUS2:20210310T062530Z:5ca1d1e5-e0b0-4411-9066-fa927b2e6000" + "properties": { + "provisioningState": "Deleting" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2616", + "name": "rg2616", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": { + "key1": "value1", + "key2": "value2", + "UpdateKey3": "UpdateValue3" }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/NetworkWatcherRG", - "name": "NetworkWatcherRG", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9714", - "name": "testRg-9714", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-4091", - "name": "testRg-4091", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-3536", - "name": "testRg-3536", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7291", - "name": "testRg-7291", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5007", - "name": "testRg-5007", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-557", - "name": "testRg-557", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-7976", - "name": "testRg-7976", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8051", - "name": "testRg-8051", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9131", - "name": "testRg-9131", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-5858", - "name": "testRg-5858", - "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": "Deleting" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6091", - "name": "testRg-6091", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Deleting" - } - }, - { - "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/testRg-2283", - "name": "testRg-2283", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2", - "name": "AutoRestResources2", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", - "name": "Default-Storage-EastAsia", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastasia", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", - "name": "Default-Storage-EastUS", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", - "name": "Default-Storage-WestUS", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus", - "properties": { - "provisioningState": "Succeeded" - } - } - ] + "properties": { + "provisioningState": "Deleting" } - } - ], - "Variables": { - "RandomSeed": "1410275346", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9936", + "name": "rg9936", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9476", + "name": "testRg-9476", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Deleting" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3087", + "name": "testrg3087", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Deleting" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-6439", + "name": "testRg-6439", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Deleting" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2388", + "name": "testRg-2388", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Deleting" + } + }, + { + "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/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-2283", + "name": "testRg-2283", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2", + "name": "AutoRestResources2", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia", + "name": "Default-Storage-EastAsia", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastasia", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS", + "name": "Default-Storage-EastUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS", + "name": "Default-Storage-WestUS", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus", + "properties": { + "provisioningState": "Succeeded" + } + } + ] + } } -} + ], + "Variables": { + "RandomSeed": "1410275346", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file 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 8f8eb382cbb21..d268247829732 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,11 @@ "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-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 )" + ], "x-ms-client-request-id": "884af3a7695b086bb37b82d98938cb3a", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 05:15:27 GMT", + "Date": "Tue, 30 Mar 2021 18:05:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dda3da96-f995-4243-80f3-0939b8dfff96", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "dda3da96-f995-4243-80f3-0939b8dfff96", - "x-ms-routing-request-id": "WESTUS2:20210310T051527Z:dda3da96-f995-4243-80f3-0939b8dfff96" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-55d8c590e1aed44992195675bf597999-94a38f8af5eebe4d-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-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 )" + ], "x-ms-client-request-id": "8b2b066fc48fef0717970e149205230a", "x-ms-return-client-request-id": "true" }, @@ -63,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 05:15:28 GMT", + "Date": "Tue, 30 Mar 2021 18:05:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2709a0bb-d0b2-4e71-b33d-5d2e0d72538b", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "2709a0bb-d0b2-4e71-b33d-5d2e0d72538b", - "x-ms-routing-request-id": "WESTUS2:20210310T051528Z:2709a0bb-d0b2-4e71-b33d-5d2e0d72538b" + "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" }, "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 692982fb0bd42..c253734c74b2e 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,11 @@ "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-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 )" + ], "x-ms-client-request-id": "41d0d7715fb7e09d06eff6e127b77d79", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 05:15:27 GMT", + "Date": "Tue, 30 Mar 2021 18:05:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88603c52-4188-4a51-aa9c-cbb91ac391a5", + "x-ms-correlation-request-id": "ca9ef72d-3544-4bab-b51e-f2180d76b91d", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "88603c52-4188-4a51-aa9c-cbb91ac391a5", - "x-ms-routing-request-id": "WESTUS2:20210310T051527Z:88603c52-4188-4a51-aa9c-cbb91ac391a5" + "x-ms-request-id": "ca9ef72d-3544-4bab-b51e-f2180d76b91d", + "x-ms-routing-request-id": "WESTUS:20210330T180544Z:ca9ef72d-3544-4bab-b51e-f2180d76b91d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-be7d46ca04c9344396f1cab03ad3c784-6ffcbe3dbe970041-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-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 )" + ], "x-ms-client-request-id": "a3b69c81f3028db1851038e65627d650", "x-ms-return-client-request-id": "true" }, @@ -63,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 05:15:28 GMT", + "Date": "Tue, 30 Mar 2021 18:05:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ddb161e3-3281-41e5-a101-a10f9d25c726", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "ddb161e3-3281-41e5-a101-a10f9d25c726", - "x-ms-routing-request-id": "WESTUS2:20210310T051528Z:ddb161e3-3281-41e5-a101-a10f9d25c726" + "x-ms-correlation-request-id": "499c9318-f3f7-443c-8c09-4e8ea1388da6", + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-1105", 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 64ea4455853c6..7f198be7e2b82 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json @@ -6,7 +6,11 @@ "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-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 )" + ], "x-ms-client-request-id": "36ca397932140e126372a7087188334f", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 18:55:58 GMT", + "Date": "Tue, 30 Mar 2021 18:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1baeb551-a957-4e9a-b016-6fba3e7898da", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "1baeb551-a957-4e9a-b016-6fba3e7898da", - "x-ms-routing-request-id": "WESTUS:20210310T185558Z:1baeb551-a957-4e9a-b016-6fba3e7898da" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-9e66757a8a980d4e908a54dd02c69781-6eac1ad0af72ff45-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-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 )" + ], "x-ms-client-request-id": "a2fa65b3af59b8c04d4be3d77f82d2af", "x-ms-return-client-request-id": "true" }, @@ -58,20 +65,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 18:55:59 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "191510b2-a611-47c1-b77c-87e284830dd6", + "x-ms-correlation-request-id": "98376e75-9fb6-4162-a67d-6abf7e82564a", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "191510b2-a611-47c1-b77c-87e284830dd6", - "x-ms-routing-request-id": "WESTUS:20210310T185600Z:191510b2-a611-47c1-b77c-87e284830dd6" + "x-ms-request-id": "98376e75-9fb6-4162-a67d-6abf7e82564a", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:98376e75-9fb6-4162-a67d-6abf7e82564a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3087", @@ -90,8 +97,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-f71e262abc027a49-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-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 )" + ], "x-ms-client-request-id": "d80061beada5eb9763bfaae39996fb94", "x-ms-return-client-request-id": "true" }, @@ -100,17 +110,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:00 GMT", + "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": "21782b45-ef92-4516-96cb-09fbfbed6dc1", + "x-ms-correlation-request-id": "02db09c9-ea51-43d3-b471-de43ceb35cc6", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "21782b45-ef92-4516-96cb-09fbfbed6dc1", - "x-ms-routing-request-id": "WESTUS:20210310T185601Z:21782b45-ef92-4516-96cb-09fbfbed6dc1" + "x-ms-request-id": "02db09c9-ea51-43d3-b471-de43ceb35cc6", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:02db09c9-ea51-43d3-b471-de43ceb35cc6" }, "ResponseBody": [] }, @@ -119,8 +129,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-2f4e61744d7c7c40-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-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" }, @@ -129,17 +142,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:00 GMT", + "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": "a6d7bfe0-f1bf-4087-a852-b63c6a413339", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "a6d7bfe0-f1bf-4087-a852-b63c6a413339", - "x-ms-routing-request-id": "WESTUS:20210310T185601Z:a6d7bfe0-f1bf-4087-a852-b63c6a413339" + "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": [] }, @@ -148,8 +161,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-f84d374f0505b948-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-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" }, @@ -158,17 +174,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:01 GMT", + "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": "18c5e45a-5226-4e14-9a19-13278c282288", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "18c5e45a-5226-4e14-9a19-13278c282288", - "x-ms-routing-request-id": "WESTUS:20210310T185602Z:18c5e45a-5226-4e14-9a19-13278c282288" + "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": [] }, @@ -177,8 +193,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-d9c89534133d8240-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-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" }, @@ -187,17 +206,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:03 GMT", + "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": "71a6f9a5-95a4-4b6b-80ec-8bcbb484e128", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "71a6f9a5-95a4-4b6b-80ec-8bcbb484e128", - "x-ms-routing-request-id": "WESTUS:20210310T185603Z:71a6f9a5-95a4-4b6b-80ec-8bcbb484e128" + "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": [] }, @@ -206,8 +225,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-2d643e5ae238e645-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-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" }, @@ -216,17 +238,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:04 GMT", + "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": "444df045-9446-4eb5-bfe7-d193856d7f7f", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "444df045-9446-4eb5-bfe7-d193856d7f7f", - "x-ms-routing-request-id": "WESTUS:20210310T185604Z:444df045-9446-4eb5-bfe7-d193856d7f7f" + "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": [] }, @@ -235,8 +257,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-b9c49252ea00824e-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-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" }, @@ -245,17 +270,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:05 GMT", + "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": "3ae0b15f-fab8-459f-a3ff-5b7e12ccb280", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "3ae0b15f-fab8-459f-a3ff-5b7e12ccb280", - "x-ms-routing-request-id": "WESTUS:20210310T185605Z:3ae0b15f-fab8-459f-a3ff-5b7e12ccb280" + "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": [] }, @@ -264,8 +289,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-1805521f250dae44-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-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" }, @@ -274,17 +302,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:06 GMT", + "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": "d44bb94d-424c-49c0-9da3-ce2360275e99", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "d44bb94d-424c-49c0-9da3-ce2360275e99", - "x-ms-routing-request-id": "WESTUS:20210310T185606Z:d44bb94d-424c-49c0-9da3-ce2360275e99" + "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": [] }, @@ -293,8 +321,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-86b8e34ef4e25946-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-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" }, @@ -303,17 +334,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:07 GMT", + "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": "e0adf71a-d7dd-41ad-b42b-779196eaaa90", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "e0adf71a-d7dd-41ad-b42b-779196eaaa90", - "x-ms-routing-request-id": "WESTUS:20210310T185607Z:e0adf71a-d7dd-41ad-b42b-779196eaaa90" + "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": [] }, @@ -322,8 +353,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-01a25a1a8fbcdb4d-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-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" }, @@ -332,17 +366,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:08 GMT", + "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": "1097b01c-eaef-4cb9-a472-4c964a170f1e", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "1097b01c-eaef-4cb9-a472-4c964a170f1e", - "x-ms-routing-request-id": "WESTUS:20210310T185609Z:1097b01c-eaef-4cb9-a472-4c964a170f1e" + "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": [] }, @@ -351,8 +385,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-c654ee75f7b4f241-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-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" }, @@ -361,17 +398,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:09 GMT", + "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": "823b40c9-af90-461b-91b7-2662f7b2e8d5", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "823b40c9-af90-461b-91b7-2662f7b2e8d5", - "x-ms-routing-request-id": "WESTUS:20210310T185610Z:823b40c9-af90-461b-91b7-2662f7b2e8d5" + "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": [] }, @@ -380,8 +417,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-339954dbcd9e484d-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-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" }, @@ -390,17 +430,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:10 GMT", + "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": "c650ebfe-95ba-4cd3-bff9-07dc5f477f6b", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "c650ebfe-95ba-4cd3-bff9-07dc5f477f6b", - "x-ms-routing-request-id": "WESTUS:20210310T185611Z:c650ebfe-95ba-4cd3-bff9-07dc5f477f6b" + "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": [] }, @@ -409,8 +449,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-8d61e36d856ab84e-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-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" }, @@ -419,17 +462,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:11 GMT", + "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": "c4a687ad-07ff-41d5-9257-52add2de36f1", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "c4a687ad-07ff-41d5-9257-52add2de36f1", - "x-ms-routing-request-id": "WESTUS:20210310T185612Z:c4a687ad-07ff-41d5-9257-52add2de36f1" + "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": [] }, @@ -438,8 +481,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-b97f5209c57cf146-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-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" }, @@ -448,17 +494,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:12 GMT", + "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": "25e701d9-cba1-468a-a9b9-f02cf0ef41e5", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "25e701d9-cba1-468a-a9b9-f02cf0ef41e5", - "x-ms-routing-request-id": "WESTUS:20210310T185613Z:25e701d9-cba1-468a-a9b9-f02cf0ef41e5" + "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": [] }, @@ -467,8 +513,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-af09e6166ec93744-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-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" }, @@ -477,17 +526,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:13 GMT", + "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": "c03a9df5-071c-4746-bec8-05b2da700b26", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "c03a9df5-071c-4746-bec8-05b2da700b26", - "x-ms-routing-request-id": "WESTUS:20210310T185614Z:c03a9df5-071c-4746-bec8-05b2da700b26" + "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": [] }, @@ -496,8 +545,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-b878bdb7f469a84e-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-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" }, @@ -506,17 +558,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:15 GMT", + "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": "411ba3e5-e67c-4dc9-90d4-0d960d3cd847", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "411ba3e5-e67c-4dc9-90d4-0d960d3cd847", - "x-ms-routing-request-id": "WESTUS:20210310T185615Z:411ba3e5-e67c-4dc9-90d4-0d960d3cd847" + "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": [] }, @@ -525,8 +577,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-a195a60933c88a4e-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-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" }, @@ -535,17 +590,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:16 GMT", + "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": "6c6583a1-eafc-4881-8565-8ba554c1f66b", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "6c6583a1-eafc-4881-8565-8ba554c1f66b", - "x-ms-routing-request-id": "WESTUS:20210310T185616Z:6c6583a1-eafc-4881-8565-8ba554c1f66b" + "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": [] }, @@ -554,8 +609,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-b58e70b74e4aef45-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-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" }, @@ -564,17 +622,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:17 GMT", + "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": "80a57c67-774e-49c1-8713-1fbacdd3135c", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "80a57c67-774e-49c1-8713-1fbacdd3135c", - "x-ms-routing-request-id": "WESTUS:20210310T185617Z:80a57c67-774e-49c1-8713-1fbacdd3135c" + "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": [] }, @@ -583,8 +641,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-b4117c10e8e4eb49-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-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" }, @@ -593,17 +654,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:18 GMT", + "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": "fe560207-2374-44c5-be75-40f1a2fb517f", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "fe560207-2374-44c5-be75-40f1a2fb517f", - "x-ms-routing-request-id": "WESTUS:20210310T185618Z:fe560207-2374-44c5-be75-40f1a2fb517f" + "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": [] }, @@ -612,8 +673,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-dae0eed71d62da4f-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-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" }, @@ -622,17 +686,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:19 GMT", + "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": "c23935b7-e7a4-43ee-854a-a52dabcb2f86", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "c23935b7-e7a4-43ee-854a-a52dabcb2f86", - "x-ms-routing-request-id": "WESTUS:20210310T185620Z:c23935b7-e7a4-43ee-854a-a52dabcb2f86" + "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": [] }, @@ -641,8 +705,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-a33be6934cc78a4d-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-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" }, @@ -651,17 +718,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:20 GMT", + "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": "74f97b4e-955a-4edd-97f6-c704dfe3d1d8", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "74f97b4e-955a-4edd-97f6-c704dfe3d1d8", - "x-ms-routing-request-id": "WESTUS:20210310T185621Z:74f97b4e-955a-4edd-97f6-c704dfe3d1d8" + "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": [] }, @@ -670,8 +737,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-f10d85668c444d46-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-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" }, @@ -680,17 +750,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:21 GMT", + "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": "97b3f30c-47f3-4f9e-b9dd-f8d5d246a32b", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "97b3f30c-47f3-4f9e-b9dd-f8d5d246a32b", - "x-ms-routing-request-id": "WESTUS:20210310T185622Z:97b3f30c-47f3-4f9e-b9dd-f8d5d246a32b" + "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": [] }, @@ -699,8 +769,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-adbf8fed636b6446-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-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" }, @@ -709,17 +782,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:22 GMT", + "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": "39044684-9f85-4197-a2d6-d015db6300dc", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "39044684-9f85-4197-a2d6-d015db6300dc", - "x-ms-routing-request-id": "WESTUS:20210310T185623Z:39044684-9f85-4197-a2d6-d015db6300dc" + "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": [] }, @@ -728,8 +801,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-4cb6aa9c95127548-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-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" }, @@ -738,17 +814,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:23 GMT", + "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": "e7550b8d-5ce5-4a88-9b2e-8c25089c5166", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "e7550b8d-5ce5-4a88-9b2e-8c25089c5166", - "x-ms-routing-request-id": "WESTUS:20210310T185624Z:e7550b8d-5ce5-4a88-9b2e-8c25089c5166" + "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": [] }, @@ -757,8 +833,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-863fac120eb0c544-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-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" }, @@ -767,17 +846,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:24 GMT", + "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": "99cd3d3a-cb68-42f4-93a3-ba51f0308480", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "99cd3d3a-cb68-42f4-93a3-ba51f0308480", - "x-ms-routing-request-id": "WESTUS:20210310T185625Z:99cd3d3a-cb68-42f4-93a3-ba51f0308480" + "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": [] }, @@ -786,8 +865,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-13bc61da8e0a184d-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-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" }, @@ -796,17 +878,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:26 GMT", + "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": "a6095b21-0a0b-4a00-9ee9-fe65fed2ec10", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "a6095b21-0a0b-4a00-9ee9-fe65fed2ec10", - "x-ms-routing-request-id": "WESTUS:20210310T185626Z:a6095b21-0a0b-4a00-9ee9-fe65fed2ec10" + "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": [] }, @@ -815,8 +897,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-4d9c87c5750bcf4a-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-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" }, @@ -825,17 +910,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:27 GMT", + "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": "de86bca5-e6a4-4760-a948-25f154cf101e", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "de86bca5-e6a4-4760-a948-25f154cf101e", - "x-ms-routing-request-id": "WESTUS:20210310T185627Z:de86bca5-e6a4-4760-a948-25f154cf101e" + "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": [] }, @@ -844,8 +929,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-c99365c61935094d-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-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" }, @@ -854,17 +942,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:28 GMT", + "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": "255cfcba-b4d1-4452-b0e2-564c5a519d36", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "255cfcba-b4d1-4452-b0e2-564c5a519d36", - "x-ms-routing-request-id": "WESTUS:20210310T185628Z:255cfcba-b4d1-4452-b0e2-564c5a519d36" + "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": [] }, @@ -873,8 +961,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-2fffe64276b78a4b-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-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" }, @@ -883,17 +974,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:29 GMT", + "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": "55cb7694-02df-4822-9718-6a9a1b78ebd0", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "55cb7694-02df-4822-9718-6a9a1b78ebd0", - "x-ms-routing-request-id": "WESTUS:20210310T185629Z:55cb7694-02df-4822-9718-6a9a1b78ebd0" + "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": [] }, @@ -902,8 +993,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-3ef648719e384d45-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-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" }, @@ -912,17 +1006,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:30 GMT", + "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": "687a7a8b-bc25-43ce-aec3-761f05b91619", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "687a7a8b-bc25-43ce-aec3-761f05b91619", - "x-ms-routing-request-id": "WESTUS:20210310T185631Z:687a7a8b-bc25-43ce-aec3-761f05b91619" + "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": [] }, @@ -931,83 +1025,28 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-343a0096c58040428ca57608f94e1daf-edb1173d1a3cbd4e-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-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": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56: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": "315ef4a1-f519-47f4-9b03-f268298d2d80", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "315ef4a1-f519-47f4-9b03-f268298d2d80", - "x-ms-routing-request-id": "WESTUS:20210310T185632Z:315ef4a1-f519-47f4-9b03-f268298d2d80" - }, - "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-343a0096c58040428ca57608f94e1daf-500b706f845b2a48-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "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, 10 Mar 2021 18:56: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": "639ce428-72c0-4b83-a51b-711828447fc0", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "639ce428-72c0-4b83-a51b-711828447fc0", - "x-ms-routing-request-id": "WESTUS:20210310T185633Z:639ce428-72c0-4b83-a51b-711828447fc0" - }, - "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-343a0096c58040428ca57608f94e1daf-9f4fc400b719bc40-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "04fde68d3a860f7a053fd7685eded9e8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:33 GMT", + "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": "0be3a7c1-4aaa-4e9b-b4b7-265afd0e2481", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "0be3a7c1-4aaa-4e9b-b4b7-265afd0e2481", - "x-ms-routing-request-id": "WESTUS:20210310T185634Z:0be3a7c1-4aaa-4e9b-b4b7-265afd0e2481" + "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" }, "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 72328f3c35718..27779b758c7ec 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,7 +6,11 @@ "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-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 )" + ], "x-ms-client-request-id": "36ca397932140e126372a7087188334f", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 18:55:58 GMT", + "Date": "Tue, 30 Mar 2021 18:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2716997-a51d-4e30-a356-e917d915bbef", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "e2716997-a51d-4e30-a356-e917d915bbef", - "x-ms-routing-request-id": "WESTUS:20210310T185558Z:e2716997-a51d-4e30-a356-e917d915bbef" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-7461963773664043b59c236cdbd84160-a91d1e1f578a2342-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-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 )" + ], "x-ms-client-request-id": "a2fa65b3af59b8c04d4be3d77f82d2af", "x-ms-return-client-request-id": "true" }, @@ -63,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 18:56:00 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ff98943-3296-41a8-b20b-8d6eebb548aa", + "x-ms-correlation-request-id": "396584c8-3ba6-45c4-b8b8-66698097ad3f", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "7ff98943-3296-41a8-b20b-8d6eebb548aa", - "x-ms-routing-request-id": "WESTUS:20210310T185601Z:7ff98943-3296-41a8-b20b-8d6eebb548aa" + "x-ms-request-id": "396584c8-3ba6-45c4-b8b8-66698097ad3f", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:396584c8-3ba6-45c4-b8b8-66698097ad3f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3087", @@ -90,8 +97,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-32f08a562f575640-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-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 )" + ], "x-ms-client-request-id": "d80061beada5eb9763bfaae39996fb94", "x-ms-return-client-request-id": "true" }, @@ -100,17 +110,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:01 GMT", + "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": "1e3eaae7-7073-4bed-b12c-4203690212fa", + "x-ms-correlation-request-id": "2f0a608e-6d35-4aa9-8b08-64f0be0399cc", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "1e3eaae7-7073-4bed-b12c-4203690212fa", - "x-ms-routing-request-id": "WESTUS:20210310T185601Z:1e3eaae7-7073-4bed-b12c-4203690212fa" + "x-ms-request-id": "2f0a608e-6d35-4aa9-8b08-64f0be0399cc", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:2f0a608e-6d35-4aa9-8b08-64f0be0399cc" }, "ResponseBody": [] }, @@ -119,8 +129,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-091a0f517861ba48-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-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" }, @@ -129,17 +142,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:01 GMT", + "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": "ad8afa23-eddf-4720-81aa-481ffab2b01a", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "ad8afa23-eddf-4720-81aa-481ffab2b01a", - "x-ms-routing-request-id": "WESTUS:20210310T185602Z:ad8afa23-eddf-4720-81aa-481ffab2b01a" + "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": [] }, @@ -148,8 +161,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-dec974a6436f1649-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-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" }, @@ -158,17 +174,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:02 GMT", + "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": "419ad510-59be-45e5-9c07-243e8b7bec5a", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "419ad510-59be-45e5-9c07-243e8b7bec5a", - "x-ms-routing-request-id": "WESTUS:20210310T185603Z:419ad510-59be-45e5-9c07-243e8b7bec5a" + "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": [] }, @@ -177,8 +193,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-ae14cd43345c934e-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-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" }, @@ -187,17 +206,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:03 GMT", + "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": "f0eadf96-2e3d-4486-a235-af776a4c473f", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "f0eadf96-2e3d-4486-a235-af776a4c473f", - "x-ms-routing-request-id": "WESTUS:20210310T185604Z:f0eadf96-2e3d-4486-a235-af776a4c473f" + "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": [] }, @@ -206,8 +225,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-ae75b94370c59e48-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-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" }, @@ -216,17 +238,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:04 GMT", + "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": "27cd31c6-4f0d-428e-a64f-39ff043f7679", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "27cd31c6-4f0d-428e-a64f-39ff043f7679", - "x-ms-routing-request-id": "WESTUS:20210310T185605Z:27cd31c6-4f0d-428e-a64f-39ff043f7679" + "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": [] }, @@ -235,8 +257,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-81b8787f04753c47-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-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" }, @@ -245,17 +270,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:05 GMT", + "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": "6e1d8036-29a7-4c29-9f80-45eccab885e9", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "6e1d8036-29a7-4c29-9f80-45eccab885e9", - "x-ms-routing-request-id": "WESTUS:20210310T185606Z:6e1d8036-29a7-4c29-9f80-45eccab885e9" + "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": [] }, @@ -264,8 +289,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-d0f9b4d672ecfb41-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-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" }, @@ -274,17 +302,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:07 GMT", + "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": "006b93b9-a0e3-4e17-a5d7-4dbc564223a0", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "006b93b9-a0e3-4e17-a5d7-4dbc564223a0", - "x-ms-routing-request-id": "WESTUS:20210310T185607Z:006b93b9-a0e3-4e17-a5d7-4dbc564223a0" + "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": [] }, @@ -293,8 +321,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-c6dba9ded4e74249-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-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" }, @@ -303,17 +334,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:08 GMT", + "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": "a869ea22-9a1e-444a-baf2-3a0fad5eb923", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "a869ea22-9a1e-444a-baf2-3a0fad5eb923", - "x-ms-routing-request-id": "WESTUS:20210310T185608Z:a869ea22-9a1e-444a-baf2-3a0fad5eb923" + "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": [] }, @@ -322,8 +353,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-205d55367503ed4a-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-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" }, @@ -332,17 +366,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:09 GMT", + "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": "55d4ffc7-8551-4cd5-993e-ee85abef9085", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "55d4ffc7-8551-4cd5-993e-ee85abef9085", - "x-ms-routing-request-id": "WESTUS:20210310T185609Z:55d4ffc7-8551-4cd5-993e-ee85abef9085" + "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": [] }, @@ -351,8 +385,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-adc94a2c92c2a249-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-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" }, @@ -361,17 +398,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:10 GMT", + "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": "3424ba02-ecb7-4bb2-bb8e-ee170332d2fc", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "3424ba02-ecb7-4bb2-bb8e-ee170332d2fc", - "x-ms-routing-request-id": "WESTUS:20210310T185610Z:3424ba02-ecb7-4bb2-bb8e-ee170332d2fc" + "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": [] }, @@ -380,8 +417,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-6ef319a92bc05f42-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-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" }, @@ -390,17 +430,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:11 GMT", + "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": "b29bc6d3-aabd-4a42-b545-d28ae1244821", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "b29bc6d3-aabd-4a42-b545-d28ae1244821", - "x-ms-routing-request-id": "WESTUS:20210310T185611Z:b29bc6d3-aabd-4a42-b545-d28ae1244821" + "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": [] }, @@ -409,8 +449,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-413f31c01e5ea946-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-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" }, @@ -419,17 +462,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:12 GMT", + "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": "d5487674-e097-45f6-ba96-3ff4c81ce1c6", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "d5487674-e097-45f6-ba96-3ff4c81ce1c6", - "x-ms-routing-request-id": "WESTUS:20210310T185613Z:d5487674-e097-45f6-ba96-3ff4c81ce1c6" + "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": [] }, @@ -438,8 +481,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-c2eb1c96b78a7143-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-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" }, @@ -448,17 +494,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:13 GMT", + "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": "f281bd16-698d-41eb-8fe2-2f278c0fe033", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "f281bd16-698d-41eb-8fe2-2f278c0fe033", - "x-ms-routing-request-id": "WESTUS:20210310T185614Z:f281bd16-698d-41eb-8fe2-2f278c0fe033" + "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": [] }, @@ -467,8 +513,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-86e394f678d8d046-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-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" }, @@ -477,17 +526,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:14 GMT", + "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": "d16403fe-66c3-4467-8df5-49a36b5b0cfb", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "d16403fe-66c3-4467-8df5-49a36b5b0cfb", - "x-ms-routing-request-id": "WESTUS:20210310T185615Z:d16403fe-66c3-4467-8df5-49a36b5b0cfb" + "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": [] }, @@ -496,8 +545,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-5803ba1965602942-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-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" }, @@ -506,17 +558,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:15 GMT", + "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": "a58b46a9-94b8-42e2-97d9-40dc893c5d25", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "a58b46a9-94b8-42e2-97d9-40dc893c5d25", - "x-ms-routing-request-id": "WESTUS:20210310T185616Z:a58b46a9-94b8-42e2-97d9-40dc893c5d25" + "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": [] }, @@ -525,8 +577,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-e4feb524435bd84f-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-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" }, @@ -535,17 +590,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:16 GMT", + "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": "a4856fab-3ddd-4f82-ad61-eeea47d35d8e", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "a4856fab-3ddd-4f82-ad61-eeea47d35d8e", - "x-ms-routing-request-id": "WESTUS:20210310T185617Z:a4856fab-3ddd-4f82-ad61-eeea47d35d8e" + "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": [] }, @@ -554,8 +609,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-201b327cca58b64d-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-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" }, @@ -564,17 +622,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:17 GMT", + "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": "8faab7c3-d4ab-4446-b9be-6b3e15757de7", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "8faab7c3-d4ab-4446-b9be-6b3e15757de7", - "x-ms-routing-request-id": "WESTUS:20210310T185618Z:8faab7c3-d4ab-4446-b9be-6b3e15757de7" + "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": [] }, @@ -583,8 +641,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-450a6516413c8e4d-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-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" }, @@ -593,17 +654,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:19 GMT", + "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": "bdfa902d-9cbb-4541-9365-c7eef099ec3f", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "bdfa902d-9cbb-4541-9365-c7eef099ec3f", - "x-ms-routing-request-id": "WESTUS:20210310T185619Z:bdfa902d-9cbb-4541-9365-c7eef099ec3f" + "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": [] }, @@ -612,8 +673,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-d3f13d8234c6be4d-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-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" }, @@ -622,17 +686,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:20 GMT", + "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": "3bbdbc4d-5bc4-4cde-9c9e-fc9ba319d7bd", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "3bbdbc4d-5bc4-4cde-9c9e-fc9ba319d7bd", - "x-ms-routing-request-id": "WESTUS:20210310T185620Z:3bbdbc4d-5bc4-4cde-9c9e-fc9ba319d7bd" + "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": [] }, @@ -641,8 +705,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-0816e2812c1e5348-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-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" }, @@ -651,17 +718,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:21 GMT", + "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": "5498e48a-91fe-40ac-b66d-e8fcde742649", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "5498e48a-91fe-40ac-b66d-e8fcde742649", - "x-ms-routing-request-id": "WESTUS:20210310T185621Z:5498e48a-91fe-40ac-b66d-e8fcde742649" + "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": [] }, @@ -670,8 +737,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-cc7680ae46726241-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-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" }, @@ -680,17 +750,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:22 GMT", + "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": "a6ad0ce9-6183-4e2a-a917-72abf579f242", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "a6ad0ce9-6183-4e2a-a917-72abf579f242", - "x-ms-routing-request-id": "WESTUS:20210310T185622Z:a6ad0ce9-6183-4e2a-a917-72abf579f242" + "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": [] }, @@ -699,8 +769,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-a4feb46937a6004b-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-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" }, @@ -709,17 +782,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:23 GMT", + "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": "2f649353-ce75-4759-803f-43b0743265a8", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "2f649353-ce75-4759-803f-43b0743265a8", - "x-ms-routing-request-id": "WESTUS:20210310T185624Z:2f649353-ce75-4759-803f-43b0743265a8" + "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": [] }, @@ -728,8 +801,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-4979e2facf682e42-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-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" }, @@ -738,17 +814,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:24 GMT", + "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": "92c68cf5-d9f7-4294-a06b-786f91a0f695", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "92c68cf5-d9f7-4294-a06b-786f91a0f695", - "x-ms-routing-request-id": "WESTUS:20210310T185625Z:92c68cf5-d9f7-4294-a06b-786f91a0f695" + "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": [] }, @@ -757,8 +833,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-4c9b68b879a5d34a-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-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" }, @@ -767,17 +846,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:25 GMT", + "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": "9d2a1feb-e2e8-4add-8fe6-ea535dc62ed1", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "9d2a1feb-e2e8-4add-8fe6-ea535dc62ed1", - "x-ms-routing-request-id": "WESTUS:20210310T185626Z:9d2a1feb-e2e8-4add-8fe6-ea535dc62ed1" + "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": [] }, @@ -786,8 +865,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-0ae4ef3ae08cb249-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-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" }, @@ -796,17 +878,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:26 GMT", + "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": "89ba22ed-8998-492b-a925-35bdcc86778a", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "89ba22ed-8998-492b-a925-35bdcc86778a", - "x-ms-routing-request-id": "WESTUS:20210310T185627Z:89ba22ed-8998-492b-a925-35bdcc86778a" + "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": [] }, @@ -815,8 +897,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-bab5b06e1ca6514e-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-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" }, @@ -825,17 +910,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:27 GMT", + "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": "966a6e02-4913-41f3-8e05-f0cbf5d496d8", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "966a6e02-4913-41f3-8e05-f0cbf5d496d8", - "x-ms-routing-request-id": "WESTUS:20210310T185628Z:966a6e02-4913-41f3-8e05-f0cbf5d496d8" + "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": [] }, @@ -844,8 +929,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-348dced49a371a44-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-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" }, @@ -854,17 +942,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:28 GMT", + "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": "a17c3ad8-f820-436c-aa4d-45a6b18bee93", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "a17c3ad8-f820-436c-aa4d-45a6b18bee93", - "x-ms-routing-request-id": "WESTUS:20210310T185629Z:a17c3ad8-f820-436c-aa4d-45a6b18bee93" + "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": [] }, @@ -873,8 +961,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-6549a4a94199cb47-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-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" }, @@ -883,17 +974,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:29 GMT", + "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": "4586a83f-c5c9-4ad3-8083-f62a52796536", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "4586a83f-c5c9-4ad3-8083-f62a52796536", - "x-ms-routing-request-id": "WESTUS:20210310T185630Z:4586a83f-c5c9-4ad3-8083-f62a52796536" + "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": [] }, @@ -902,8 +993,11 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-dde43f1b03a2f44b-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-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" }, @@ -912,17 +1006,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:31 GMT", + "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": "af9d534c-0661-45f8-8ded-fd0af5617801", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "af9d534c-0661-45f8-8ded-fd0af5617801", - "x-ms-routing-request-id": "WESTUS:20210310T185631Z:af9d534c-0661-45f8-8ded-fd0af5617801" + "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": [] }, @@ -931,54 +1025,28 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9205e8c5f1cdd64181ef32e7963f74b2-7511f7450ca2794c-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-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": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56: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": "527c16d8-2387-4a9c-a0a7-09fdff80bf52", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "527c16d8-2387-4a9c-a0a7-09fdff80bf52", - "x-ms-routing-request-id": "WESTUS:20210310T185632Z:527c16d8-2387-4a9c-a0a7-09fdff80bf52" - }, - "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-9205e8c5f1cdd64181ef32e7963f74b2-7ec0ad63ed3ef94d-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "b7980d21c31a013d938b5d612918717b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:33 GMT", + "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": "48053b60-3c38-4c95-b2c1-a00a02214df8", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "48053b60-3c38-4c95-b2c1-a00a02214df8", - "x-ms-routing-request-id": "WESTUS:20210310T185633Z:48053b60-3c38-4c95-b2c1-a00a02214df8" + "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" }, "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 b15807a08c34a..d0fe3f97a8e10 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json @@ -6,8 +6,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|f1e38a2d-488e6b80492b743e.", - "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7aee629538309d67f639bdda8430fce0", "x-ms-return-client-request-id": "true" }, @@ -17,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:52:43 GMT", + "Date": "Tue, 30 Mar 2021 18:06:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "532939f0-9eda-442b-8f1d-5888aa9d45fa", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "532939f0-9eda-442b-8f1d-5888aa9d45fa", - "x-ms-routing-request-id": "WESTUS2:20210310T045244Z:532939f0-9eda-442b-8f1d-5888aa9d45fa" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +52,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-7e4c131a927e4b4fae087abf1c0cac27-b07a580fd7bfa941-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-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 )" + ], "x-ms-client-request-id": "378f4ef6677eb4a0d910572cbffefaea", "x-ms-return-client-request-id": "true" }, @@ -64,15 +69,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:52:44 GMT", + "Date": "Tue, 30 Mar 2021 18:06:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75a1c799-3b6c-424a-9fb1-9c2cdc7dac1a", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "75a1c799-3b6c-424a-9fb1-9c2cdc7dac1a", - "x-ms-routing-request-id": "WESTUS2:20210310T045245Z:75a1c799-3b6c-424a-9fb1-9c2cdc7dac1a" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9343", @@ -91,8 +96,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d5ba00da874c21448fa0ca9ef70bfce1-a7fd24983c937f42-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-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 )" + ], "x-ms-client-request-id": "0d1fee3eff85adb7af3c3f830e4eeabb", "x-ms-return-client-request-id": "true" }, @@ -102,15 +110,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:52:44 GMT", + "Date": "Tue, 30 Mar 2021 18:06:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e333aef-7547-47b8-a1c7-2bcb7fb1707d", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "9e333aef-7547-47b8-a1c7-2bcb7fb1707d", - "x-ms-routing-request-id": "WESTUS2:20210310T045245Z:9e333aef-7547-47b8-a1c7-2bcb7fb1707d" + "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" }, "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 366bb3e0f7e2a..a2c025be1865c 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,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "59b7aae8604ff395a6f45701af8fb704", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:52:43 GMT", + "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": "337260de-dcae-40e4-84e3-8f84dfb4ddce", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "337260de-dcae-40e4-84e3-8f84dfb4ddce", - "x-ms-routing-request-id": "WESTUS2:20210310T045244Z:337260de-dcae-40e4-84e3-8f84dfb4ddce" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +52,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-ab17e39f2d703c4085c68232cf7effff-d7f93802ecbae441-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-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 )" + ], "x-ms-client-request-id": "071a7ec67987f24b062ad73bf6781c92", "x-ms-return-client-request-id": "true" }, @@ -63,15 +69,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:52:44 GMT", + "Date": "Tue, 30 Mar 2021 18:06:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a74771b0-98a3-46fd-877d-fdb5fd30a0d6", + "x-ms-correlation-request-id": "cb553fdf-fc07-4dff-99da-95f70b9fabcd", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "a74771b0-98a3-46fd-877d-fdb5fd30a0d6", - "x-ms-routing-request-id": "WESTUS2:20210310T045245Z:a74771b0-98a3-46fd-877d-fdb5fd30a0d6" + "x-ms-request-id": "cb553fdf-fc07-4dff-99da-95f70b9fabcd", + "x-ms-routing-request-id": "WESTUS:20210330T180612Z:cb553fdf-fc07-4dff-99da-95f70b9fabcd" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3094", @@ -90,8 +96,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e46f854b4dc07840977b6fed76534682-00ac70bcc4528d4f-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-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 )" + ], "x-ms-client-request-id": "7a56179c782b01065ad5db32879bec64", "x-ms-return-client-request-id": "true" }, @@ -101,15 +110,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:52:44 GMT", + "Date": "Tue, 30 Mar 2021 18:06:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "16593e05-e2af-4ee5-9675-0027246397ff", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "16593e05-e2af-4ee5-9675-0027246397ff", - "x-ms-routing-request-id": "WESTUS2:20210310T045245Z:16593e05-e2af-4ee5-9675-0027246397ff" + "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" }, "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 1dc1da9ba1cb4..487de6468897d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1ba9401c9199950ab4c6511790a6e967", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 22:03:59 GMT", + "Date": "Tue, 30 Mar 2021 18:06:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4f7244f-57a6-4643-bed3-ff452a5461da", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "e4f7244f-57a6-4643-bed3-ff452a5461da", - "x-ms-routing-request-id": "WESTUS2:20210310T220359Z:e4f7244f-57a6-4643-bed3-ff452a5461da" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +52,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-f8fc9b0a695c364dae18a37fa77161b9-8a9088f52e72214a-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-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 )" + ], "x-ms-client-request-id": "c10c69c4b754a8908de162f0f30ff867", "x-ms-return-client-request-id": "true" }, @@ -63,15 +69,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 22:04:00 GMT", + "Date": "Tue, 30 Mar 2021 18:06:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30c66fef-25f8-4174-bf2f-2adc5b59263e", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "30c66fef-25f8-4174-bf2f-2adc5b59263e", - "x-ms-routing-request-id": "WESTUS2:20210310T220401Z:30c66fef-25f8-4174-bf2f-2adc5b59263e" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4683", @@ -90,8 +96,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-58fce962cfbbf745b62b682af67c57a6-4f739720b802fc43-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-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 )" + ], "x-ms-client-request-id": "cbdfe453c71259281e5e11321ed0c830", "x-ms-return-client-request-id": "true" }, @@ -99,17 +108,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1218927", + "Content-Length": "1239318", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 22:04:02 GMT", + "Date": "Tue, 30 Mar 2021 18:06:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eca1fc8c-3a17-4f45-81f9-cadc760a0788", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "eca1fc8c-3a17-4f45-81f9-cadc760a0788", - "x-ms-routing-request-id": "WESTUS2:20210310T220403Z:eca1fc8c-3a17-4f45-81f9-cadc760a0788" + "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" }, "ResponseBody": { "value": [ @@ -512,7 +521,10 @@ "Brazil SouthEast", "Norway East", "UAE North", - "Japan West" + "Japan West", + "South India", + "France South", + "Norway West" ], "apiVersions": [ "2021-02-01-preview", @@ -1847,7 +1859,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -1892,7 +1905,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview" @@ -1933,7 +1947,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview" @@ -1974,7 +1989,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2016,7 +2032,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2058,7 +2075,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2100,7 +2118,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2142,7 +2161,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2184,7 +2204,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2226,7 +2247,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2268,7 +2290,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2312,7 +2335,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2354,7 +2378,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2396,7 +2421,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2438,7 +2464,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2481,7 +2508,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2524,7 +2552,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2567,7 +2596,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview" @@ -2609,7 +2639,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview" @@ -2620,8 +2651,10 @@ "resourceType": "registries/agentPools", "locations": [ "East US", + "West Europe", "West US 2", "South Central US", + "Canada Central", "Central US", "East US 2" ], @@ -2679,7 +2712,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2722,7 +2756,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2765,7 +2800,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2809,7 +2845,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2852,7 +2889,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -2893,7 +2931,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -2934,7 +2973,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -2975,7 +3015,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3016,7 +3057,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3057,7 +3099,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3098,7 +3141,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3139,7 +3183,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3180,7 +3225,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3221,7 +3267,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3265,7 +3312,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3309,7 +3357,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3353,7 +3402,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3397,7 +3447,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3441,7 +3492,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3482,7 +3534,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3523,7 +3576,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3568,7 +3622,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2019-05-01", @@ -3623,7 +3678,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3668,7 +3724,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3713,7 +3770,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3757,7 +3815,8 @@ "Switzerland West", "UAE Central", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2017-10-01" @@ -3798,7 +3857,8 @@ "Switzerland West", "UAE Central", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2017-10-01" @@ -3852,7 +3912,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2019-05-01", @@ -3895,7 +3956,8 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South" ], "apiVersions": [ "2020-11-01-preview", @@ -3943,7 +4005,8 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South" ], "apiVersions": [ "2020-11-01-preview", @@ -3990,7 +4053,8 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South" ], "apiVersions": [ "2020-11-01-preview", @@ -4139,6 +4203,7 @@ "Norway West" ], "apiVersions": [ + "2021-03-01", "2021-02-01", "2020-12-01", "2020-11-01", @@ -4392,6 +4457,7 @@ "Norway West" ], "apiVersions": [ + "2021-03-01", "2021-02-01", "2020-12-01", "2020-11-01", @@ -4541,6 +4607,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4637,6 +4704,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4689,6 +4757,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4736,6 +4805,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4783,6 +4853,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4831,6 +4902,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4879,6 +4951,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4927,6 +5000,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4975,6 +5049,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5023,6 +5098,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5071,6 +5147,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5117,6 +5194,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5163,6 +5241,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5209,6 +5288,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5255,6 +5335,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5301,6 +5382,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5347,6 +5429,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5393,6 +5476,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5441,6 +5525,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5489,6 +5574,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5539,6 +5625,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5590,6 +5677,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5641,6 +5729,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5866,6 +5955,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5958,6 +6048,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6003,6 +6094,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6180,6 +6272,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2014-04-01-preview", @@ -6314,6 +6407,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6361,6 +6455,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6451,6 +6546,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6498,6 +6594,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6723,6 +6820,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6771,6 +6869,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6819,6 +6918,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6867,6 +6967,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6915,6 +7016,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6962,6 +7064,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" ], @@ -7005,6 +7108,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7052,6 +7156,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7099,6 +7204,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7146,6 +7252,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7193,6 +7300,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" ], @@ -7236,6 +7344,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" ], @@ -7279,6 +7388,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7328,6 +7438,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7377,6 +7488,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7455,6 +7567,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2015-05-01-preview" @@ -7499,6 +7612,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7546,6 +7660,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7593,6 +7708,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7640,6 +7756,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7687,6 +7804,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7734,6 +7852,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7825,6 +7944,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7872,6 +7992,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7919,6 +8040,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7966,6 +8088,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8014,6 +8137,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8062,6 +8186,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8110,6 +8235,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8158,6 +8284,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8206,6 +8333,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8255,6 +8383,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8303,6 +8432,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8352,6 +8482,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8401,6 +8532,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8450,6 +8582,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8499,6 +8632,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8898,6 +9032,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8949,6 +9084,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8997,6 +9133,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9092,6 +9229,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9140,6 +9278,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9188,6 +9327,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9236,6 +9376,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview" @@ -9280,6 +9421,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9327,6 +9469,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9372,6 +9515,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9419,6 +9563,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9464,6 +9609,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9512,6 +9658,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2017-03-01-preview" @@ -9556,6 +9703,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9602,6 +9750,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9648,6 +9797,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9695,6 +9845,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9743,6 +9894,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9791,6 +9943,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9839,6 +9992,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9884,6 +10038,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-08-01", "2020-02-02-preview" @@ -9928,6 +10083,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-08-01", "2020-02-02-preview" @@ -9972,6 +10128,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10017,6 +10174,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10062,6 +10220,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10144,6 +10303,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10191,6 +10351,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10305,6 +10466,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10352,6 +10514,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10399,6 +10562,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10444,6 +10608,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10490,6 +10655,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview" @@ -10534,6 +10700,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview" @@ -10578,6 +10745,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview" @@ -10622,6 +10790,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview" @@ -10666,6 +10835,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10711,6 +10881,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10756,6 +10927,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10801,6 +10973,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10846,6 +11019,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10891,6 +11065,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10936,6 +11111,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10983,6 +11159,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11030,6 +11207,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11077,6 +11255,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11124,6 +11303,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11169,6 +11349,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11214,6 +11395,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11261,6 +11443,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11307,6 +11490,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11353,6 +11537,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11399,6 +11584,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11446,6 +11632,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11493,6 +11680,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11540,6 +11728,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11588,6 +11777,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11636,6 +11826,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11684,6 +11875,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11732,6 +11924,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11780,6 +11973,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11827,6 +12021,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11874,6 +12069,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11922,6 +12118,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11970,6 +12167,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12018,6 +12216,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12066,6 +12265,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12113,6 +12313,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12160,6 +12361,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12207,6 +12409,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12254,6 +12457,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12301,6 +12505,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12348,6 +12553,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12394,6 +12600,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12440,6 +12647,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12487,6 +12695,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12534,6 +12743,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12580,6 +12790,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12626,6 +12837,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12672,6 +12884,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12717,6 +12930,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12762,6 +12976,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12807,6 +13022,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12852,6 +13068,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12900,6 +13117,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" ], @@ -12943,6 +13161,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" ], @@ -12986,6 +13205,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" ], @@ -13735,7 +13955,10 @@ "Japan West", "UAE North", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2015-11-01-preview" @@ -14600,15 +14823,17 @@ { "resourceType": "flexibleServers", "locations": [ - "West US 2", + "Australia East", + "Canada Central", + "Central US", "East US", "East US 2", - "West Europe", - "North Europe", "Japan East", + "North Europe", "Southeast Asia", "UK South", - "Central US" + "West US 2", + "West Europe" ], "apiVersions": [ "2020-11-05-preview", @@ -14687,6 +14912,22 @@ "1", "3" ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] } ], "metadata": { @@ -14727,20 +14968,22 @@ "applicationId": "87bbf879-e67c-49da-a9e1-632ecff043f9" } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "locations/capabilities", "locations": [ - "East US 2", + "Australia East", + "Canada Central", + "Central US", "East US", - "West Europe", - "West US 2", - "North Europe", + "East US 2", "Japan East", + "North Europe", "Southeast Asia", "UK South", - "Central US" + "West Europe", + "West US 2" ], "apiVersions": [ "2020-11-05-preview", @@ -14752,15 +14995,17 @@ { "resourceType": "locations/checkNameAvailability", "locations": [ - "East US 2", + "Australia East", + "Canada Central", + "Central US", "East US", - "West Europe", - "West US 2", - "North Europe", + "East US 2", "Japan East", + "North Europe", "Southeast Asia", "UK South", - "Central US" + "West Europe", + "West US 2" ], "apiVersions": [ "2020-11-05-preview", @@ -15140,18 +15385,19 @@ { "resourceType": "locations/checkVirtualNetworkSubnetUsage", "locations": [ - "East US 2", + "Australia East", + "Canada Central", + "Central US", "East US", + "East US 2", + "France Central", + "Japan East", "North Central US", - "Canada Central", - "Australia East", + "North Europe", + "Southeast Asia", "UK South", "West Europe", - "Southeast Asia", - "West US 2", - "North Europe", - "Japan East", - "Central US" + "West US 2" ], "apiVersions": [ "2020-11-05-preview", @@ -16513,7 +16759,7 @@ } ], "metadata": { - "build": "", + "build": "1.0.2988.0", "microsoft.insights": { "monitoringResourceProvider": { "version": "1.0", @@ -17459,6 +17705,7 @@ "Japan East", "Korea Central", "North Europe", + "South Africa North", "South Central US", "Southeast Asia", "Switzerland North", @@ -17468,6 +17715,7 @@ "West US 2" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17480,6 +17728,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17504,6 +17753,7 @@ "Japan East", "Korea Central", "North Europe", + "South Africa North", "South Central US", "Southeast Asia", "Switzerland North", @@ -17513,6 +17763,7 @@ "West US 2" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17537,6 +17788,7 @@ "Japan East", "Korea Central", "North Europe", + "South Africa North", "South Central US", "Southeast Asia", "Switzerland North", @@ -17546,6 +17798,7 @@ "West US 2" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17557,6 +17810,8 @@ { "resourceType": "operations", "locations": [ + "Central US EUAP", + "West Central US", "West US 2", "East US", "East US 2", @@ -17564,6 +17819,7 @@ "Central US" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17588,6 +17844,7 @@ "Japan East", "Korea Central", "North Europe", + "South Africa North", "South Central US", "Southeast Asia", "Switzerland North", @@ -17597,6 +17854,7 @@ "West US 2" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17621,6 +17879,7 @@ "Japan East", "Korea Central", "North Europe", + "South Africa North", "South Central US", "Southeast Asia", "Switzerland North", @@ -17630,6 +17889,7 @@ "West US 2" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17654,6 +17914,7 @@ "Japan East", "Korea Central", "North Europe", + "South Africa North", "South Central US", "Southeast Asia", "Switzerland North", @@ -17663,6 +17924,7 @@ "West US 2" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -19714,6 +19976,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -20967,6 +21233,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -21219,6 +21489,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -21433,6 +21707,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -22490,6 +22768,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -23462,6 +23744,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -27341,6 +27627,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -28523,6 +28813,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -28607,6 +28898,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -28689,6 +28981,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -28773,6 +29066,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -28857,6 +29151,7 @@ "Japan East" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01" ], @@ -28908,6 +29203,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -28992,6 +29288,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29240,6 +29537,7 @@ "East Asia" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29254,6 +29552,7 @@ "operations": "2016-03-01", "staticSites": "2019-08-01" }, + "mdsMappingResourceIdOverridePathSelector": "id", "metrics": { "mdmInfo": [ { @@ -29265,7 +29564,7 @@ } } }, - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "locations/previewStaticSiteWorkflowFile", @@ -29277,6 +29576,7 @@ "East Asia" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29332,6 +29632,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29406,6 +29707,7 @@ "North Central US (Stage)" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29480,83 +29782,85 @@ "North Central US (Stage)" ], "apiVersions": [ - "2020-10-01", - "2020-09-01", - "2020-06-01", - "2019-12-01-preview", - "2019-08-01", - "2019-01-01", - "2018-11-01", - "2018-02-01", - "2016-08-01" - ], - "defaultApiVersion": "2019-01-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-08-01" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2016-08-01" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-02-01" - }, - { - "profileVersion": "2019-03-01-hybrid", - "apiVersion": "2018-02-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operationResults", - "locations": [ - "South Central US", - "MSFT West US", - "MSFT East US", - "MSFT East Asia", - "MSFT North Europe", - "East US 2 (Stage)", - "Central US (Stage)", - "South Africa North", - "West US 2", - "East US 2", - "East US", - "UK South", - "Southeast Asia", - "North Europe", - "Japan East", - "West Europe", - "East Asia", - "West US", - "Australia East", - "Brazil South", - "Central US", - "Japan West", - "Central India", - "Canada East", - "Korea Central", - "France Central", - "West India", - "Australia Central", - "Germany West Central", - "Norway East", - "UAE North", - "Switzerland North", - "North Central US", - "UK West", - "Australia Southeast", - "Korea South", - "Canada Central", - "South India", - "West Central US", - "East Asia (Stage)", - "North Central US (Stage)" - ], - "apiVersions": [ + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01", + "2019-01-01", + "2018-11-01", + "2018-02-01", + "2016-08-01" + ], + "defaultApiVersion": "2019-01-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-08-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2016-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "South Central US", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Africa North", + "West US 2", + "East US 2", + "East US", + "UK South", + "Southeast Asia", + "North Europe", + "Japan East", + "West Europe", + "East Asia", + "West US", + "Australia East", + "Brazil South", + "Central US", + "Japan West", + "Central India", + "Canada East", + "Korea Central", + "France Central", + "West India", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)" + ], + "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29634,6 +29938,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29715,6 +30020,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29796,6 +30102,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29877,6 +30184,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29958,6 +30266,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30042,6 +30351,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30127,6 +30437,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30247,6 +30558,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30417,6 +30729,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30488,6 +30801,7 @@ "resourceType": "runtimes", "locations": [], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30529,6 +30843,7 @@ "resourceType": "recommendations", "locations": [], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30571,6 +30886,7 @@ "resourceType": "resourceHealthMetadata", "locations": [], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30613,6 +30929,10 @@ "resourceType": "georegions", "locations": [], "apiVersions": [ + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", "2019-08-01", "2018-11-01", "2018-02-01", @@ -30694,6 +31014,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30773,6 +31094,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31018,6 +31340,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31125,6 +31448,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31192,6 +31516,7 @@ "North Central US (Stage)" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31277,6 +31602,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31361,6 +31687,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31445,6 +31772,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31488,6 +31816,7 @@ "resourceType": "ishostingenvironmentnameavailable", "locations": [], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31572,6 +31901,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32244,6 +32574,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32329,6 +32660,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32414,6 +32746,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32500,6 +32833,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32570,6 +32904,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32644,6 +32979,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32715,6 +33051,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32788,6 +33125,7 @@ "South Africa West" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32858,6 +33196,7 @@ "South Africa West" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -33007,6 +33346,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33078,6 +33418,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33241,6 +33582,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -33283,6 +33628,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33354,6 +33700,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33518,6 +33865,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -33568,6 +33919,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33640,6 +33992,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33712,6 +34065,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33783,6 +34137,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33856,6 +34211,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33929,6 +34285,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33956,6 +34313,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34012,6 +34370,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34083,6 +34442,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34153,6 +34513,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34214,6 +34575,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34284,6 +34646,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34347,6 +34710,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34410,6 +34774,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-09-30", "2020-06-01", @@ -34481,6 +34846,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34586,6 +34952,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34638,6 +35005,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34689,6 +35057,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34739,6 +35108,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01" @@ -34826,6 +35196,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01" ], @@ -34870,6 +35241,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01" ], @@ -34914,6 +35286,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-09-30", "2020-06-01", @@ -35489,6 +35862,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -35757,6 +36134,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -35821,6 +36199,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -35871,6 +36250,7 @@ "Australia East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -36011,6 +36391,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -36053,6 +36437,7 @@ "Australia East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -36193,6 +36578,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -36513,6 +36902,7 @@ "Norway East" ], "apiVersions": [ + "2020-10-01", "2020-08-01", "2020-03-01-preview", "2019-08-01-preview", @@ -36678,7 +37068,7 @@ "capabilities": "None" }, { - "resourceType": "workspaces/Tables", + "resourceType": "workspaces/tables", "locations": [ "East US", "West Europe", @@ -36722,17 +37112,7 @@ "capabilities": "None" }, { - "resourceType": "storageInsightConfigs", - "locations": [], - "apiVersions": [ - "2020-08-01", - "2020-03-01-preview", - "2014-10-10" - ], - "capabilities": "SupportsExtension" - }, - { - "resourceType": "workspaces/linkedServices", + "resourceType": "workspaces/storageInsightConfigs", "locations": [ "East US", "West Europe", @@ -36744,8 +37124,8 @@ "Central India", "Canada Central", "West US 2", - "Australia Central", "Australia East", + "Australia Central", "France Central", "Korea Central", "North Europe", @@ -36766,30 +37146,35 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-08-01", "2020-03-01-preview", - "2019-08-01-preview", - "2015-11-01-preview" + "2017-04-26-preview", + "2017-03-15-preview", + "2017-03-03-preview", + "2017-01-01-preview", + "2015-11-01-preview", + "2015-03-20" ], - "defaultApiVersion": "2020-08-01", "capabilities": "None" }, { - "resourceType": "linkTargets", - "locations": [ - "East US" - ], + "resourceType": "storageInsightConfigs", + "locations": [], "apiVersions": [ + "2020-08-01", "2020-03-01-preview", - "2015-03-20" + "2014-10-10" ], - "capabilities": "None" + "capabilities": "SupportsExtension" }, { - "resourceType": "deletedWorkspaces", + "resourceType": "workspaces/linkedServices", "locations": [ "East US", "West Europe", @@ -36826,73 +37211,130 @@ "Norway East" ], "apiVersions": [ - "2020-08-01", - "2020-03-01-preview" - ], - "defaultApiVersion": "2020-08-01", - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2020-10-01", "2020-08-01", "2020-03-01-preview", - "2015-11-01-preview", - "2014-11-10" + "2019-08-01-preview", + "2015-11-01-preview" ], "defaultApiVersion": "2020-08-01", "capabilities": "None" }, { - "resourceType": "clusters", + "resourceType": "linkTargets", "locations": [ - "East US", - "West Europe", - "Southeast Asia", - "Australia Southeast", - "West Central US", - "Japan East", - "UK South", - "Central India", - "Canada Central", - "West US 2", - "Australia Central", - "Australia East", - "France Central", - "Korea Central", - "North Europe", - "Central US", - "East Asia", - "East US 2", - "South Central US", - "North Central US", - "West US", - "UK West", - "South Africa North", - "Switzerland North", - "Switzerland West", - "Germany West Central", - "Australia Central 2", - "UAE Central", - "Brazil South", - "UAE North", - "Japan West", - "Brazil Southeast", - "Norway East" + "East US" ], "apiVersions": [ - "2020-10-01", - "2020-08-01", "2020-03-01-preview", - "2019-08-01-preview" + "2015-03-20" ], - "defaultApiVersion": "2020-08-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "None" }, { - "resourceType": "workspaces/dataExports", + "resourceType": "deletedWorkspaces", + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "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" + ], + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-10-01", + "2020-08-01", + "2020-03-01-preview", + "2015-11-01-preview", + "2014-11-10" + ], + "defaultApiVersion": "2020-08-01", + "capabilities": "None" + }, + { + "resourceType": "clusters", + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "Brazil South", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East" + ], + "apiVersions": [ + "2020-10-01", + "2020-08-01", + "2020-03-01-preview", + "2019-08-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/dataExports", "locations": [ "East US", "West Europe", @@ -37206,6 +37648,8 @@ "West Europe" ], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview", "2019-12-01-preview", "2019-12-01", @@ -37259,6 +37703,8 @@ "West Europe" ], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview" ], "defaultApiVersion": "2020-06-01-preview", @@ -37268,6 +37714,8 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview" ], "defaultApiVersion": "2020-06-01-preview", @@ -37311,6 +37759,8 @@ "West Europe" ], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview" ], "defaultApiVersion": "2020-06-01-preview", @@ -37372,6 +37822,8 @@ "West Europe" ], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview", "2019-12-01-preview", "2019-12-01", @@ -37391,6 +37843,8 @@ "resourceType": "reportFeedback", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview", "2019-12-01-preview", "2019-12-01", @@ -37409,6 +37863,8 @@ "resourceType": "checkFeedbackRequired", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview", "2019-12-01-preview", "2019-12-01", @@ -37427,6 +37883,8 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview", "2019-12-01-preview", "2019-12-01", @@ -37473,6 +37931,50 @@ } }, "capabilities": "None" + }, + { + "resourceType": "getDomainOwnershipIdentifier", + "locations": [ + "Central India", + "UAE North", + "Australia Central", + "Germany West Central", + "West Central US", + "Norway East", + "Switzerland North", + "Korea South", + "West India", + "Korea Central", + "South Africa North", + "UK West", + "Brazil South", + "East Asia", + "South India", + "Canada Central", + "Canada East", + "Australia Southeast", + "Japan East", + "North Central US", + "Southeast Asia", + "West US 2", + "Central US", + "UK South", + "Australia East", + "Japan West", + "West US", + "France Central", + "South Central US", + "East US 2", + "East US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-12-01" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" } ], "metadata": { @@ -39949,7 +40451,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-02-01", @@ -40035,6 +40538,7 @@ "Australia Central", "Switzerland North", "Norway East", + "Jio India West", "Germany West Central" ], "apiVersions": [ @@ -40088,7 +40592,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2016-11-01", @@ -40146,7 +40651,8 @@ "North Central US (Stage)", "Korea Central", "Korea South", - "France Central" + "France Central", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -40190,7 +40696,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2017-04-01", @@ -40279,6 +40786,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "Jio India West", "West US", "Central US", "South Central US", @@ -40339,6 +40847,7 @@ "West India", "Korea Central", "Korea South", + "Jio India West", "East US 2 (Stage)", "North Central US (Stage)" ], @@ -40384,7 +40893,8 @@ "North Central US (Stage)", "Korea Central", "Korea South", - "France Central" + "France Central", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -40542,6 +41052,7 @@ "South Africa North", "UAE North", "Switzerland North", + "Jio India West", "Australia Central", "Germany West Central", "Norway East" @@ -40671,6 +41182,7 @@ "South Africa North", "UAE North", "Switzerland North", + "Jio India West", "Australia Central", "Germany West Central", "Norway East" @@ -40762,6 +41274,7 @@ "South Africa North", "UAE North", "Switzerland North", + "Jio India West", "Australia Central", "Germany West Central", "Norway East" @@ -40896,7 +41409,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2016-11-01", @@ -40956,6 +41470,7 @@ "North Central US (Stage)", "West US 2", "West Central US", + "Jio India West", "East US", "East US 2", "North Central US", @@ -41000,6 +41515,7 @@ "North Central US (Stage)", "West US 2", "West Central US", + "Jio India West", "East US", "East US 2", "North Central US", @@ -41070,7 +41586,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -41122,7 +41639,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -41757,6 +42275,7 @@ "South Central US" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -41867,6 +42386,7 @@ "Korea Central" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -41956,6 +42476,7 @@ "Korea Central" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -42045,6 +42566,7 @@ "Korea Central" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -42134,6 +42656,7 @@ "South Central US" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -42223,6 +42746,7 @@ "South Central US" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -42312,6 +42836,7 @@ "Korea Central" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -42367,6 +42892,7 @@ "South Central US" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -43538,7 +44064,8 @@ "roleDefinitionId": "C121DF10-FE58-4BC4-97F9-8296879F7BBB" }, { - "applicationId": "29f411f1-b2cf-4043-8ac8-2185d7316811" + "applicationId": "29f411f1-b2cf-4043-8ac8-2185d7316811", + "roleDefinitionId": "d04fc6c0-fc10-4ab8-b7de-c979247c3b65" }, { "applicationId": "89d10474-74af-4874-99a7-c23c2f643083", @@ -44460,6 +44987,7 @@ "Norway East" ], "apiVersions": [ + "2021-01-01-preview", "2018-01-01-preview", "2017-04-01", "2015-08-01", @@ -45267,11 +45795,23 @@ "Central India" ], "apiVersions": [ + "2020-11-01-preview", "2018-06-01-preview", "2015-03-01-preview" ], "defaultApiVersion": "2015-03-01-preview", "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "East US 2", + "East US" + ], + "apiVersions": [ + "2020-11-01-preview" + ], + "capabilities": "None" } ], "metadata": { @@ -45349,9 +45889,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45410,9 +45953,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45471,9 +46017,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45501,6 +46050,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", @@ -45530,6 +46080,8 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45580,9 +46132,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45601,6 +46156,8 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45650,9 +46207,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45702,9 +46262,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45748,9 +46311,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45800,9 +46366,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14" @@ -45830,10 +46399,152 @@ "East US" ], "apiVersions": [ + "2021-04-01-preview", "2020-04-01-preview" ], "defaultApiVersion": "2020-04-01-preview", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "deletedManagedHSMs", + "locations": [ + "East US 2", + "South Central US", + "North Europe", + "West Europe", + "Canada Central", + "Central US", + "Switzerland North", + "South Africa North", + "UK South", + "SouthEast Asia", + "East Asia", + "Korea Central", + "Australia Central", + "West US", + "East US" + ], + "apiVersions": [ + "2021-04-01-preview" + ], + "defaultApiVersion": "2021-04-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations/deletedManagedHSMs", + "locations": [ + "East US 2", + "South Central US", + "North Europe", + "West Europe", + "Canada Central", + "Central US", + "Switzerland North", + "South Africa North", + "UK South", + "SouthEast Asia", + "East Asia", + "Korea Central", + "Australia Central", + "West US", + "East US" + ], + "apiVersions": [ + "2021-04-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "vaults/keys", + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01" + ], + "defaultApiVersion": "2019-09-01", + "capabilities": "None" + }, + { + "resourceType": "vaults/keys/versions", + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01" + ], + "defaultApiVersion": "2019-09-01", + "capabilities": "None" } ], "metadata": { @@ -47244,6 +47955,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01" @@ -47289,6 +48001,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01" @@ -47334,6 +48047,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47501,6 +48215,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -47555,6 +48273,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47630,6 +48349,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47697,6 +48417,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47757,6 +48478,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47817,6 +48539,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47877,6 +48600,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47937,6 +48661,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47997,6 +48722,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48017,6 +48743,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48086,6 +48813,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48149,6 +48877,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48169,6 +48898,7 @@ "resourceType": "usages", "locations": [], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48243,6 +48973,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48318,6 +49049,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48524,6 +49256,7 @@ "resourceType": "events", "locations": [], "apiVersions": [ + "2020-09-01-rc", "2018-07-01-rc", "2018-07-01" ], @@ -48563,17 +49296,6 @@ "2015-01-01" ], "capabilities": "None" - }, - { - "resourceType": "notifications", - "locations": [ - "Australia Southeast" - ], - "apiVersions": [ - "2016-09-01", - "2016-06-01" - ], - "capabilities": "SupportsExtension" } ], "metadata": { @@ -48712,6 +49434,23 @@ ], "capabilities": "SupportsExtension" }, + { + "resourceType": "eventGridFilters", + "locations": [], + "apiVersions": [ + "2020-10-01" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "checkPolicyRestrictions", + "locations": [], + "apiVersions": [ + "2020-07-01-preview", + "2020-07-01" + ], + "capabilities": "None" + }, { "resourceType": "policyTrackedResources", "locations": [], @@ -48719,6 +49458,14 @@ "2018-07-01-preview" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "policyMetadata", + "locations": [], + "apiVersions": [ + "2019-10-01" + ], + "capabilities": "None" } ], "registrationState": "Registered", @@ -50171,6 +50918,7 @@ "Norway East" ], "apiVersions": [ + "2021-01-01-preview", "2018-01-01-preview", "2017-04-01", "2015-08-01", @@ -50822,48 +51570,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Conexlink.MyCloudIT", - "namespace": "Conexlink.MyCloudIT", - "resourceTypes": [ - { - "resourceType": "accounts", - "locations": [ - "Central US" - ], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "None" - }, - { - "resourceType": "listCommunicationPreference", - "locations": [], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "None" - }, - { - "resourceType": "updateCommunicationPreference", - "locations": [], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "None" - } - ], - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/LiveArena.Broadcast", "namespace": "LiveArena.Broadcast", @@ -51019,6 +51725,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" @@ -51060,6 +51767,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01", "2020-01-01", "2017-06-01" ], @@ -51100,6 +51808,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" @@ -51141,6 +51850,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" @@ -51182,6 +51892,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" @@ -51604,10 +52315,7 @@ "resourceTypes": [ { "resourceType": "operations", - "locations": [ - "East US", - "West Central US" - ], + "locations": [], "apiVersions": [ "2020-05-12-preview" ], @@ -51616,10 +52324,7 @@ }, { "resourceType": "checkNameAvailability", - "locations": [ - "East US", - "West Central US" - ], + "locations": [], "apiVersions": [ "2020-05-12-preview" ], @@ -51637,6 +52342,10 @@ { "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3", "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" + }, + { + "applicationId": "9581bc0e-c952-4fd3-8d99-e777877718b1", + "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" } ], "resourceTypes": [ @@ -51692,6 +52401,7 @@ "Canada East", "Central India", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -51713,8 +52423,7 @@ "UK South", "Brazil South", "Korea South", - "Korea Central", - "East US" + "Korea Central" ], "apiVersions": [ "2020-12-01-preview", @@ -51732,6 +52441,7 @@ "Canada East", "Central India", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -51753,8 +52463,7 @@ "UK South", "Brazil South", "Korea South", - "Korea Central", - "East US" + "Korea Central" ], "apiVersions": [ "2020-12-01-preview", @@ -51772,6 +52481,7 @@ "Canada East", "Central India", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -51793,8 +52503,7 @@ "UK South", "Brazil South", "Korea South", - "Korea Central", - "East US" + "Korea Central" ], "apiVersions": [ "2020-12-01-preview", @@ -51856,6 +52565,7 @@ "Central India", "Central US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -51879,7 +52589,6 @@ "Brazil South", "Korea South", "Korea Central", - "East US", "South Central US" ], "apiVersions": [ @@ -52658,6 +53367,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -52708,6 +53418,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -52759,6 +53470,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -52806,6 +53518,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -52869,6 +53582,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -52916,6 +53630,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -52965,6 +53680,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -53008,6 +53724,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -53051,6 +53768,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -53278,6 +53996,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53297,6 +54016,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53316,6 +54036,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53358,6 +54079,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53378,6 +54100,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53397,6 +54120,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53416,6 +54140,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53435,6 +54160,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53454,6 +54180,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53473,6 +54200,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53492,6 +54220,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53511,6 +54240,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53530,6 +54260,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53549,6 +54280,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53568,6 +54300,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53587,6 +54320,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53606,6 +54340,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53924,16 +54659,6 @@ { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureData", "namespace": "Microsoft.AzureData", - "authorizations": [ - { - "applicationId": "bb55177b-a7d9-4939-a257-8ab53a3b2bc6", - "roleDefinitionId": "f83de625-af9e-4458-ac9c-e5d62b05fd06" - }, - { - "applicationId": "a12e8ccb-0fcd-46f8-b6a1-b9df7a9d7231", - "roleDefinitionId": "f83de625-af9e-4458-ac9c-e5d62b05fd06" - } - ], "resourceTypes": [ { "resourceType": "sqlServerRegistrations", @@ -53969,95 +54694,6 @@ "defaultApiVersion": "2019-05-10-preview", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, - { - "resourceType": "dataControllers", - "locations": [ - "Japan East", - "Australia East", - "Korea Central", - "North Europe", - "UK South", - "France Central", - "East US", - "East US 2", - "Central US", - "West Europe", - "Southeast Asia", - "West US 2" - ], - "apiVersions": [ - "2020-09-08-preview", - "2019-07-24-preview" - ], - "defaultApiVersion": "2020-09-08-preview", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "postgresInstances", - "locations": [ - "Japan East", - "Australia East", - "Korea Central", - "North Europe", - "UK South", - "France Central", - "East US", - "East US 2", - "Central US", - "West Europe", - "Southeast Asia", - "West US 2" - ], - "apiVersions": [ - "2020-09-08-preview", - "2019-07-24-preview" - ], - "defaultApiVersion": "2020-09-08-preview", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sqlManagedInstances", - "locations": [ - "Japan East", - "Australia East", - "Korea Central", - "North Europe", - "UK South", - "France Central", - "East US", - "East US 2", - "Central US", - "West Europe", - "Southeast Asia", - "West US 2" - ], - "apiVersions": [ - "2020-09-08-preview", - "2019-07-24-preview" - ], - "defaultApiVersion": "2020-09-08-preview", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sqlServerInstances", - "locations": [ - "East US", - "East US 2", - "Central US", - "West Europe", - "Southeast Asia", - "West US 2", - "Australia East", - "North Europe", - "UK South" - ], - "apiVersions": [ - "2020-09-08-preview", - "2019-07-24-preview" - ], - "defaultApiVersion": "2020-09-08-preview", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, { "resourceType": "operations", "locations": [ @@ -54291,6 +54927,7 @@ { "resourceType": "bareMetalInstances", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -54318,6 +54955,7 @@ { "resourceType": "locations/operationsStatus", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -54337,6 +54975,7 @@ { "resourceType": "operations", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -55997,11 +56636,12 @@ "Global" ], "apiVersions": [ + "2021-03-01", "2020-06-02", "2018-07-12", "2017-12-01" ], - "defaultApiVersion": "2020-06-02", + "defaultApiVersion": "2021-03-01", "apiProfiles": [ { "profileVersion": "2017-03-09-profile", @@ -56021,8 +56661,8 @@ "monitoringResourceProvider": { "version": "1.0", "apiVersions": { - "default": "2020-06-02", - "operations": "2020-06-02" + "default": "2021-03-01", + "operations": "2021-03-01" }, "logs": { "mdsInfo": [ @@ -56060,11 +56700,12 @@ "Global" ], "apiVersions": [ + "2021-03-01", "2020-06-02", "2018-07-12", "2017-12-01" ], - "defaultApiVersion": "2020-06-02", + "defaultApiVersion": "2021-03-01", "apiProfiles": [ { "profileVersion": "2017-03-09-profile", @@ -56087,11 +56728,12 @@ "Global" ], "apiVersions": [ + "2021-03-01", "2020-06-02", "2018-07-12", "2017-12-01" ], - "defaultApiVersion": "2020-06-02", + "defaultApiVersion": "2021-03-01", "apiProfiles": [ { "profileVersion": "2017-03-09-profile", @@ -56114,11 +56756,12 @@ "Global" ], "apiVersions": [ + "2021-03-01", "2020-06-02", "2018-07-12", "2017-12-01" ], - "defaultApiVersion": "2020-06-02", + "defaultApiVersion": "2021-03-01", "apiProfiles": [ { "profileVersion": "2017-03-09-profile", @@ -56135,17 +56778,29 @@ ], "capabilities": "None" }, + { + "resourceType": "hostSettings", + "locations": [ + "Global" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, { "resourceType": "checkNameAvailability", "locations": [ "Global" ], "apiVersions": [ + "2021-03-01", "2020-06-02", "2018-07-12", "2017-12-01" ], - "defaultApiVersion": "2020-06-02", + "defaultApiVersion": "2021-03-01", "apiProfiles": [ { "profileVersion": "2017-03-09-profile", @@ -56168,11 +56823,12 @@ "Global" ], "apiVersions": [ + "2021-03-01", "2020-06-02", "2018-07-12", "2017-12-01" ], - "defaultApiVersion": "2020-06-02", + "defaultApiVersion": "2021-03-01", "apiProfiles": [ { "profileVersion": "2017-03-09-profile", @@ -56216,6 +56872,33 @@ ], "capabilities": "None" }, + { + "resourceType": "resourceProviders/locations", + "locations": [], + "apiVersions": [ + "2020-10-25", + "2019-07-19-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "resourceProviders/locations/serviceLimits", + "locations": [], + "apiVersions": [ + "2020-10-25", + "2019-07-19-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "resourceProviders/locations/serviceLimitsRequests", + "locations": [], + "apiVersions": [ + "2020-10-25", + "2019-07-19-preview" + ], + "capabilities": "None" + }, { "resourceType": "resources", "locations": [ @@ -56251,6 +56934,8 @@ "resourceType": "reservationOrders/reservations", "locations": [], "apiVersions": [ + "2021-03-01-privatepreview", + "2021-03-01-beta", "2020-10-01-preview", "2020-10-01-beta", "2020-06-01-beta", @@ -56324,6 +57009,8 @@ "resourceType": "catalogs", "locations": [], "apiVersions": [ + "2021-03-01-privatepreview", + "2021-03-01-beta", "2020-10-01-preview", "2020-10-01-beta", "2019-04-01-beta", @@ -56609,6 +57296,15 @@ "2021-01-01-beta" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "checkBenefitScopes", + "locations": [], + "apiVersions": [ + "2021-03-01-privatepreview", + "2021-03-01-beta" + ], + "capabilities": "None" } ], "registrationState": "NotRegistered", @@ -56696,6 +57392,7 @@ "resourceType": "resourceChanges", "locations": [], "apiVersions": [ + "2021-04-01", "2020-04-01-preview" ], "capabilities": "SupportsExtension" @@ -56704,6 +57401,7 @@ "resourceType": "changes", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01-preview" ], "capabilities": "SupportsExtension" @@ -57150,6 +57848,70 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedVehicle", + "namespace": "Microsoft.ConnectedVehicle", + "authorizations": [ + { + "applicationId": "070fc472-7cef-4d53-9b65-34464c4d5f4a", + "roleDefinitionId": "d9be9a0d-13a3-4571-9428-498be31834b1" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "West US 2", + "West Europe", + "East US" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "070fc472-7cef-4d53-9b65-34464c4d5f4a" + }, + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedVMwarevSphere", "namespace": "Microsoft.ConnectedVMwarevSphere", @@ -57157,6 +57919,14 @@ { "applicationId": "ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7", "roleDefinitionId": "a27a5b7c-3d1a-4e97-b0ad-195eef808eb6" + }, + { + "applicationId": "157638eb-a5cb-4c10-af42-2d6759eb1871", + "roleDefinitionId": "59a59e1d-c18a-4c7c-8a99-2b5b311f08d2" + }, + { + "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1", + "roleDefinitionId": "59a59e1d-c18a-4c7c-8a99-2b5b311f08d2" } ], "resourceTypes": [ @@ -57224,6 +57994,38 @@ } }, "capabilities": "None" + }, + { + "resourceType": "VirtualMachines/Extensions", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "VirtualMachines/GuestAgents", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" } ], "metadata": { @@ -57485,6 +58287,7 @@ "resourceType": "UsageDetails", "locations": [], "apiVersions": [ + "2021-01-01", "2019-11-01", "2019-10-01", "2019-05-01-preview", @@ -57631,32 +58434,33 @@ { "resourceType": "containerGroups", "locations": [ - "West Central US", - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57674,32 +58478,33 @@ { "resourceType": "serviceAssociationLinks", "locations": [ - "West Central US", - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57718,6 +58523,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57735,32 +58541,33 @@ { "resourceType": "locations/capabilities", "locations": [ - "West Central US", - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57778,32 +58585,33 @@ { "resourceType": "locations/usages", "locations": [ - "West Central US", - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57821,32 +58629,33 @@ { "resourceType": "locations/operations", "locations": [ - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", - "West Central US", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57864,32 +58673,33 @@ { "resourceType": "locations/operationresults", "locations": [ - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", - "West Central US", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57908,6 +58718,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57925,67 +58736,77 @@ { "resourceType": "locations/cachedImages", "locations": [ - "West Central US", - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", - "2018-10-01" + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" ], "capabilities": "None" }, { "resourceType": "locations/deleteVirtualNetworkOrSubnets", "locations": [ - "West Central US", - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-12-01", @@ -58003,84 +58824,90 @@ } ], "metadata": { - "Microsoft.ManagedIdentity": { - "applicationId": "6bb8e274-af5d-4df2-98a3-4fd78b4cafd9" - }, - "vnetSupportRegions": [ - "eastus2euap", - "westcentralus", - "centraluseuap", - "westus", - "westeurope", - "australiaeast", - "eastus", - "japaneast", - "northeurope", - "southeastasia", - "eastus2", - "westus2", - "centralus", - "southcentralus", - "canadacentral", - "koreacentral", - "francecentral" - ], "gpuRegionalSkus": [ { - "location": "eastus", "skus": [ - "V100", - "P100", - "K80" - ] + "V100" + ], + "location": "centralindia" }, { - "location": "southcentralus", "skus": [ "V100", "P100", "K80" - ] + ], + "location": "eastus" }, { - "location": "westus2", "skus": [ - "V100", - "P100", "K80" - ] + ], + "location": "northeurope" }, { - "location": "westeurope", "skus": [ "V100", "P100", "K80" - ] + ], + "location": "southcentralus" }, { - "location": "northeurope", "skus": [ - "K80" - ] + "V100", + "P100" + ], + "location": "southeastasia" }, { - "location": "centralindia", "skus": [ - "V100" - ] + "V100", + "P100", + "K80" + ], + "location": "westeurope" }, { - "location": "southeastasia", "skus": [ "V100", - "P100" - ] + "P100", + "K80" + ], + "location": "westus2" } ], + "vnetSupportRegions": [ + "australiaeast", + "brazilsouth", + "canadacentral", + "canadaeast", + "centralindia", + "centralus", + "centraluseuap", + "eastus", + "eastasia", + "eastus2", + "eastus2euap", + "francecentral", + "germanywestcentral", + "japaneast", + "koreacentral", + "northcentralus", + "northeurope", + "southcentralus", + "southeastasia", + "southindia", + "switzerlandnorth", + "uaenorth", + "uksouth", + "westcentralus", + "westeurope", + "westus", + "westus2" + ], "microsoft.insights": { "monitoringResourceProvider": { - "version": "1.0", "apiVersions": { "default": "2017-12-01-preview", "operations": "2017-12-01-preview" @@ -58093,13 +58920,17 @@ ], "mdmInfo": [ { + "sourceMdmNamespace": "AzureMonitoringMetrics", "enableRegionalMdmAccount": true, - "sourceMdmAccount": "MicrosoftContainerInstanceShoebox", - "sourceMdmNamespace": "AzureMonitoringMetrics" + "sourceMdmAccount": "MicrosoftContainerInstanceShoebox" } ] - } + }, + "version": "1.0" } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "6bb8e274-af5d-4df2-98a3-4fd78b4cafd9" } }, "registrationState": "NotRegistered", @@ -59145,261 +59976,267 @@ "Brazil South", "Switzerland North", "France Central", - "UAE North" - ], - "apiVersions": [ - "2018-04-01" - ], - "metadata": { - "microsoft.insights": { - "monitoringResourceProvider": { - "version": "1.0", - "apiVersions": { - "default": "2018-04-01" - }, - "metrics": { - "mdsInfo": [ - { - "serviceIdentity": "DatabrickAuditLogs" - } - ], - "mdmInfo": [ - { - "sourceMdmAccount": "spearfishgenevahotpath", - "sourceMdmNamespace": "Canary" - } - ] - }, - "logs": { - "logFilterPathSelector": "sku.name", - "mdsInfo": [ - { - "serviceIdentity": "DatabrickAuditLogs", - "onbehalfSupportedLogCategories": [ - "dbfs", - "clusters", - "accounts", - "jobs", - "notebook", - "ssh", - "workspace", - "secrets", - "sqlPermissions", - "tables", - "instancePools" - ] - } - ] - } - } - } - }, - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "workspaces/virtualNetworkPeerings", - "locations": [ - "West US", - "East US 2", - "West Europe", - "North Europe", - "East US", - "Southeast Asia", - "East Asia", - "South Central US", - "North Central US", - "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", - "Korea Central", - "Korea South", - "South Africa North", - "South Africa West", - "UAE North", - "Brazil South", - "France Central", - "Switzerland North" - ], - "apiVersions": [ - "2018-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "workspaces/dbWorkspaces", - "locations": [ - "West US", - "East US 2", - "West Europe", - "North Europe", - "East US", - "Southeast Asia", - "East Asia", - "South Central US", - "North Central US", - "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", - "Korea Central", - "Korea South", - "South Africa North", - "South Africa West", "UAE North", - "Brazil South", - "France Central", - "Switzerland North" - ], - "apiVersions": [ - "2018-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "West US", - "East US 2", - "West Europe", - "North Europe", - "East US", - "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", - "UAE North", - "Brazil South", - "France Central" - ], - "apiVersions": [ - "2018-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [ - "West US", - "East US 2", - "West Europe", - "North Europe", - "East US", - "Southeast Asia", - "East Asia", - "South Central US", - "North Central US", - "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", - "Korea Central", - "Korea South", - "South Africa North", - "South Africa West", - "UAE North", - "Brazil South", - "France Central", - "Switzerland North" - ], - "apiVersions": [ - "2018-04-01", - "2018-03-15", - "2018-03-01", - "2017-09-01-preview", - "2017-08-01-preview", - "2016-09-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operationstatuses", - "locations": [ - "West US", - "East US 2", - "West Europe", - "East US", - "North Europe", - "Southeast Asia", - "East Asia", - "South Central US", - "North Central US", - "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", - "Korea Central", - "Korea South", - "South Africa West", - "South Africa North", - "Brazil South", - "Switzerland North", - "France Central", - "UAE North" + "Norway East" + ], + "apiVersions": [ + "2018-04-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-04-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "DatabrickAuditLogs" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "spearfishgenevahotpath", + "sourceMdmNamespace": "Canary" + } + ] + }, + "logs": { + "logFilterPathSelector": "sku.name", + "mdsInfo": [ + { + "serviceIdentity": "DatabrickAuditLogs", + "onbehalfSupportedLogCategories": [ + "dbfs", + "clusters", + "accounts", + "jobs", + "notebook", + "ssh", + "workspace", + "secrets", + "sqlPermissions", + "tables", + "instancePools" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/virtualNetworkPeerings", + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "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", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North", + "Norway East" + ], + "apiVersions": [ + "2018-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/dbWorkspaces", + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "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", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North", + "Norway East" + ], + "apiVersions": [ + "2018-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "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", + "UAE North", + "Brazil South", + "France Central", + "Norway East" + ], + "apiVersions": [ + "2018-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "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", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North", + "Norway East" + ], + "apiVersions": [ + "2018-04-01", + "2018-03-15", + "2018-03-01", + "2017-09-01-preview", + "2017-08-01-preview", + "2016-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationstatuses", + "locations": [ + "West US", + "East US 2", + "West Europe", + "East US", + "North Europe", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "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", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "Brazil South", + "Switzerland North", + "France Central", + "UAE North", + "Norway East" ], "apiVersions": [ "2018-04-01" @@ -59440,7 +60277,8 @@ "Brazil South", "Switzerland North", "France Central", - "UAE North" + "UAE North", + "Norway East" ], "apiVersions": [ "2018-04-01" @@ -60302,7 +61140,10 @@ "West US 2", "South Africa North", "UAE North", - "France Central" + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" ], "apiVersions": [ "2018-07-15-preview", @@ -60347,7 +61188,58 @@ "West US 2", "South Africa North", "UAE North", - "France Central" + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" + ], + "apiVersions": [ + "2018-07-15-preview", + "2018-04-19", + "2018-03-31-preview", + "2018-03-15-preview", + "2017-11-15-privatepreview", + "2017-11-15-preview", + "2017-04-15-privatepreview" + ], + "defaultApiVersion": "2018-07-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "West Central US", + "Brazil South", + "West Europe", + "Australia East", + "East US", + "East US 2", + "Canada Central", + "East Asia", + "Central India", + "West India", + "Japan East", + "Korea South", + "North Central US", + "Australia Southeast", + "Canada East", + "Central US", + "South India", + "Japan West", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "UK West", + "West US", + "UK South", + "West US 2", + "South Africa North", + "UAE North", + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" ], "apiVersions": [ "2018-07-15-preview", @@ -60358,11 +61250,10 @@ "2017-11-15-preview", "2017-04-15-privatepreview" ], - "defaultApiVersion": "2018-07-15-preview", - "capabilities": "SupportsTags, SupportsLocation" + "capabilities": "None" }, { - "resourceType": "locations/operationResults", + "resourceType": "locations/operationStatuses", "locations": [ "West Central US", "Brazil South", @@ -60392,7 +61283,10 @@ "West US 2", "South Africa North", "UAE North", - "France Central" + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" ], "apiVersions": [ "2018-07-15-preview", @@ -60406,7 +61300,7 @@ "capabilities": "None" }, { - "resourceType": "locations/operationStatuses", + "resourceType": "locations/checkNameAvailability", "locations": [ "West Central US", "Brazil South", @@ -60436,7 +61330,10 @@ "West US 2", "South Africa North", "UAE North", - "France Central" + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" ], "apiVersions": [ "2018-07-15-preview", @@ -60450,7 +61347,7 @@ "capabilities": "None" }, { - "resourceType": "locations/checkNameAvailability", + "resourceType": "operations", "locations": [ "West Central US", "Brazil South", @@ -60480,61 +61377,46 @@ "West US 2", "South Africa North", "UAE North", - "France Central" + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central", + "East US 2 EUAP" + ], + "apiVersions": [], + "capabilities": "None" + }, + { + "resourceType": "SqlMigrationServices", + "locations": [ + "East US 2" ], "apiVersions": [ - "2018-07-15-preview", - "2018-04-19", - "2018-03-31-preview", - "2018-03-15-preview", - "2017-11-15-privatepreview", - "2017-11-15-preview", - "2017-04-15-privatepreview" + "2020-09-01-preview" ], - "capabilities": "None" + "defaultApiVersion": "2020-09-01-preview", + "capabilities": "SupportsTags, SupportsLocation" }, { - "resourceType": "operations", + "resourceType": "DatabaseMigrations", "locations": [ - "West Central US", - "Brazil South", - "West Europe", - "Australia East", - "East US", - "East US 2", - "Canada Central", - "East Asia", - "Central India", - "West India", - "Japan East", - "Korea South", - "North Central US", - "Australia Southeast", - "Canada East", - "Central US", - "South India", - "Japan West", - "Korea Central", - "North Europe", - "South Central US", - "Southeast Asia", - "UK West", - "West US", - "UK South", - "West US 2", - "South Africa North", - "UAE North", - "France Central" + "East US 2" ], "apiVersions": [ - "2018-07-15-preview", - "2018-04-19", - "2018-03-31-preview", - "2018-03-15-preview", - "2017-11-15-privatepreview", - "2017-11-15-preview", - "2017-04-15-privatepreview" + "2020-09-01-preview" + ], + "defaultApiVersion": "2020-09-01-preview", + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Locations/OperationTypes", + "locations": [ + "East US 2" + ], + "apiVersions": [ + "2020-09-01-preview" ], + "defaultApiVersion": "2020-09-01-preview", "capabilities": "None" } ], @@ -60583,6 +61465,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -60592,6 +61475,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -60601,6 +61485,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -60644,6 +61529,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -60687,6 +61573,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -60730,6 +61617,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -60773,6 +61661,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -62663,16 +63552,10 @@ { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevOps", "namespace": "Microsoft.DevOps", - "authorizations": [ - { - "applicationId": "499b84ac-1321-427f-aa17-267ca6975798", - "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8" - }, - { - "applicationId": "4c3095a7-cc8a-4028-8301-c68ea6c2b42e", - "roleDefinitionId": "d637ba3a-8a38-41ec-a9e3-5e4a619e7530" - } - ], + "authorization": { + "applicationId": "499b84ac-1321-427f-aa17-267ca6975798", + "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8" + }, "resourceTypes": [ { "resourceType": "pipelines", @@ -62705,45 +63588,8 @@ ], "defaultApiVersion": "2019-07-01-preview", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2020-12-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operationstatuses", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2020-12-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "deploymentdetails", - "locations": [], - "apiVersions": [ - "2020-12-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "Operations", - "locations": [], - "apiVersions": [ - "2020-12-01-preview" - ], - "capabilities": "None" } ], - "metadata": { - "onboardedVia": "ProviderHub" - }, "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, @@ -62757,7 +63603,6 @@ "West Europe", "Canada Central", "Central US", - "West US 2", "East US 2" ], "apiVersions": [ @@ -62771,7 +63616,6 @@ "West Europe", "Canada Central", "Central US", - "West US 2", "East US 2" ], "apiVersions": [ @@ -62785,7 +63629,6 @@ "West Europe", "Canada Central", "Central US", - "West US 2", "East US 2" ], "apiVersions": [ @@ -62800,7 +63643,6 @@ "West Europe", "Canada Central", "Central US", - "West US 2", "East US 2" ], "apiVersions": [ @@ -62814,7 +63656,6 @@ "West Europe", "Canada Central", "Central US", - "West US 2", "East US 2" ], "apiVersions": [ @@ -62828,7 +63669,6 @@ "West Europe", "Canada Central", "Central US", - "West US 2", "East US 2" ], "apiVersions": [ @@ -63603,6 +64443,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-03-15-preview", "2020-07-15-privatepreview" ], "capabilities": "None" @@ -63611,6 +64452,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-15-preview", "2020-07-15-privatepreview" ], "capabilities": "None" @@ -63719,6 +64561,7 @@ { "resourceType": "hanaInstances", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -63738,6 +64581,7 @@ { "resourceType": "sapMonitors", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -63762,6 +64606,7 @@ { "resourceType": "locations/operationsStatus", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -63792,6 +64637,7 @@ { "resourceType": "locations/operations", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -63814,6 +64660,7 @@ { "resourceType": "operations", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -64240,6 +65087,10 @@ { "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1", "roleDefinitionId": "f32ad452-2b05-4296-bee4-fc9056ed85fa" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" } ], "resourceTypes": [ @@ -64781,6 +65632,28 @@ ], "capabilities": "None" }, + { + "resourceType": "locations/generateInvitationAuthCode", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/revokeInvitationAuthCode", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "capabilities": "None" + }, { "resourceType": "locations/downloadInvitationFile", "locations": [ @@ -65172,6 +66045,25 @@ "defaultApiVersion": "2021-03-01", "capabilities": "SupportsExtension" }, + { + "resourceType": "extensions", + "locations": [ + "East US", + "West Europe", + "West Central US", + "West US 2", + "South Central US", + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsExtension" + }, { "resourceType": "operations", "locations": [], @@ -65243,6 +66135,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65398,6 +66291,14 @@ "2", "3" ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -65443,6 +66344,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65497,6 +66399,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65551,6 +66454,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65600,6 +66504,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65654,6 +66559,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65708,6 +66614,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65757,6 +66664,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65774,6 +66682,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65828,6 +66737,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65845,6 +66755,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65857,6 +66768,52 @@ ], "defaultApiVersion": "2020-06-14", "capabilities": "None" + }, + { + "resourceType": "clusters/databases/scripts", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "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-01-01" + ], + "defaultApiVersion": "2021-01-01", + "capabilities": "None" } ], "metadata": { @@ -66121,9 +67078,185 @@ "2018-11-19", "2018-03-01-preview" ], - "defaultApiVersion": "2018-03-01-preview", + "defaultApiVersion": "2021-01-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/onlineEndpoints", + "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": [ + "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": [ + "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": [ + "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": [ + "2020-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/batchEndpoints/jobs", + "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": [ + "2020-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/batchEndpoints/deployments/jobs", + "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": [ + "2020-09-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "workspaces/computes", "locations": [ @@ -67238,6 +68371,7 @@ "resourceType": "managementGroups", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67256,6 +68390,7 @@ "resourceType": "getEntities", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67270,6 +68405,7 @@ "resourceType": "managementGroups/settings", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67281,6 +68417,7 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67295,6 +68432,7 @@ "resourceType": "operationResults", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67309,6 +68447,7 @@ "resourceType": "operationResults/asyncOperation", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67321,6 +68460,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67339,6 +68479,7 @@ "resourceType": "tenantBackfillStatus", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67352,6 +68493,7 @@ "resourceType": "startTenantBackfill", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -68521,6 +69663,7 @@ "Australia East" ], "apiVersions": [ + "2020-11-11-preview", "2020-07-07" ], "capabilities": "SupportsTags, SupportsLocation" @@ -68680,6 +69823,7 @@ "South Africa West" ], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68693,6 +69837,7 @@ "resourceType": "peeringLocations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68706,6 +69851,7 @@ "resourceType": "legacyPeerings", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68719,6 +69865,7 @@ "resourceType": "peerAsns", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68761,6 +69908,7 @@ "South Africa West" ], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68774,6 +69922,7 @@ "resourceType": "peeringServiceCountries", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview" @@ -68785,6 +69934,7 @@ "resourceType": "peeringServiceLocations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68798,6 +69948,7 @@ "resourceType": "peeringServiceProviders", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68811,6 +69962,7 @@ "resourceType": "checkServiceProviderAvailability", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68820,10 +69972,21 @@ "defaultApiVersion": "2020-04-01", "capabilities": "None" }, + { + "resourceType": "cdnPeeringPrefixes", + "locations": [], + "apiVersions": [ + "2021-01-01", + "2020-10-01" + ], + "defaultApiVersion": "2020-10-01", + "capabilities": "None" + }, { "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -69328,9 +70491,10 @@ "resourceType": "enterprisePolicies", "locations": [], "apiVersions": [ + "2020-10-30-preview", "2020-10-30" ], - "capabilities": "None" + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" } ], "registrationState": "NotRegistered", @@ -70409,7 +71573,8 @@ "Norway East" ], "apiVersions": [ - "2018-12-20-preview" + "2018-12-20-preview", + "2018-12-20" ], "apiProfiles": [ { @@ -70821,6 +71986,7 @@ "East US" ], "apiVersions": [ + "2021-03-01", "2020-04-01-preview", "2019-04-01", "2018-09-01-preview" @@ -70869,6 +72035,7 @@ "East US" ], "apiVersions": [ + "2021-03-01", "2020-04-01-preview", "2019-04-01", "2018-09-01-preview" @@ -71426,7 +72593,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2019-05-01", @@ -71499,7 +72667,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2019-05-01", @@ -71697,6 +72866,7 @@ "resourceType": "deployments", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-06-01", "2019-09-01", @@ -71740,6 +72910,7 @@ "resourceType": "deployments/operations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-06-01", "2019-09-01", @@ -71868,6 +73039,8 @@ "Australia East", "Brazil South", "Canada Central", + "Switzerland North", + "Germany West Central", "East US 2", "East US", "Central US", @@ -71879,6 +73052,7 @@ "Japan East", "Korea Central", "North Europe", + "UAE North", "West Central US", "West Europe", "West US 2", @@ -71899,6 +73073,8 @@ "Australia East", "Brazil South", "Canada Central", + "Switzerland North", + "Germany West Central", "East US 2", "East US", "Central US", @@ -71910,6 +73086,7 @@ "Japan East", "Korea Central", "North Europe", + "UAE North", "West Central US", "West Europe", "West US 2", @@ -71930,6 +73107,8 @@ "Australia East", "Brazil South", "Canada Central", + "Switzerland North", + "Germany West Central", "East US 2", "East US", "Central US", @@ -71941,6 +73120,7 @@ "Japan East", "Korea Central", "North Europe", + "UAE North", "West Central US", "West Europe", "West US 2", @@ -72582,6 +73762,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-01-preview", "2020-01-01", "2019-01-01-preview" ], @@ -72597,7 +73778,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2021-03-01-preview", @@ -72616,7 +73799,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2021-03-01-preview", @@ -72635,7 +73820,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72652,7 +73839,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2020-01-01", @@ -72670,7 +73859,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2021-03-01-preview", @@ -72689,7 +73880,28 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" + ], + "apiVersions": [ + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "enrichment", + "locations": [ + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72706,7 +73918,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72723,7 +73937,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2020-01-01", @@ -72741,7 +73957,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72758,9 +73976,12 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ + "2021-03-01-preview", "2019-01-01-preview" ], "capabilities": "SupportsExtension" @@ -72775,7 +73996,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72792,7 +74015,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72809,7 +74034,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72826,7 +74053,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72843,7 +74072,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72860,7 +74091,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -73000,7 +74233,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-01-privatepreview", @@ -73056,7 +74290,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-01-privatepreview", @@ -73135,7 +74370,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-15-privatepreview", @@ -73195,7 +74431,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-15-privatepreview", @@ -73255,7 +74492,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-15-privatepreview", @@ -73315,7 +74553,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-15-privatepreview", @@ -73372,7 +74611,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview", @@ -73386,7 +74627,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview", @@ -73400,7 +74643,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview" @@ -73413,7 +74658,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview" @@ -73426,7 +74673,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview" @@ -73439,7 +74688,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview" @@ -73452,7 +74703,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview", @@ -73466,7 +74719,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview", @@ -73917,6 +75172,51 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServiceLinker", + "namespace": "Microsoft.ServiceLinker", + "authorizations": [ + { + "applicationId": "c4288165-6698-45ba-98a5-48ea7791fed3", + "roleDefinitionId": "57197417-7922-48fd-b5ed-7b142db155ea" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "East US 2 EUAP", + "East US", + "West Central US" + ], + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServicesHub", "namespace": "Microsoft.ServicesHub", @@ -74007,6 +75307,10 @@ { "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3", "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" + }, + { + "applicationId": "9581bc0e-c952-4fd3-8d99-e777877718b1", + "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" } ], "resourceTypes": [ @@ -74135,6 +75439,7 @@ "Canada East", "Central India", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -74156,8 +75461,7 @@ "UK South", "Brazil South", "Korea South", - "Korea Central", - "East US" + "Korea Central" ], "apiVersions": [ "2020-12-01-preview" @@ -74177,6 +75481,7 @@ "Canada East", "Central India", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -74198,8 +75503,7 @@ "UK South", "Brazil South", "Korea South", - "Korea Central", - "East US" + "Korea Central" ], "apiVersions": [ "2020-12-01-preview" @@ -74219,6 +75523,7 @@ "Canada East", "Central India", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -74240,8 +75545,7 @@ "UK South", "Brazil South", "Korea South", - "Korea Central", - "East US" + "Korea Central" ], "apiVersions": [ "2020-12-01-preview" @@ -74301,6 +75605,7 @@ "Central India", "Central US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -74324,7 +75629,6 @@ "Brazil South", "Korea South", "Korea Central", - "East US", "South Central US" ], "apiVersions": [ @@ -74419,7 +75723,8 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-08-21-preview", @@ -74469,7 +75774,8 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-08-21-preview", @@ -74536,7 +75842,8 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-08-21-preview", @@ -74580,7 +75887,8 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-08-21-preview", @@ -76153,6 +77461,22 @@ ], "capabilities": "None" }, + { + "resourceType": "locations/testQuery", + "locations": [], + "apiVersions": [ + "2017-04-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [], + "apiVersions": [ + "2017-04-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "operations", "locations": [ @@ -76649,7 +77973,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -76724,7 +78050,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -76793,7 +78121,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -76868,7 +78198,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2020-04-01-preview" @@ -76932,7 +78264,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2020-04-01-preview" @@ -76968,7 +78302,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2020-04-01-preview" @@ -77004,7 +78340,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2020-04-01-preview" @@ -77040,7 +78378,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2020-04-01-preview" @@ -77076,7 +78416,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -77114,7 +78456,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -77162,7 +78506,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -77200,7 +78546,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -77248,7 +78596,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -77286,7 +78636,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -78116,6 +79468,11 @@ "2021-03-01-privatepreview", "2020-07-01-privatepreview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -78125,6 +79482,7 @@ "East US 2 EUAP" ], "apiVersions": [ + "2021-03-01-privatepreview", "2020-07-01-privatepreview" ], "capabilities": "None" @@ -78176,48 +79534,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Myget.PackageManagement", - "namespace": "Myget.PackageManagement", - "resourceTypes": [ - { - "resourceType": "services", - "locations": [ - "West Europe" - ], - "apiVersions": [ - "2015-01-01" - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2015-01-01" - ], - "capabilities": "None" - }, - { - "resourceType": "listCommunicationPreference", - "locations": [], - "apiVersions": [ - "2015-01-01" - ], - "capabilities": "None" - }, - { - "resourceType": "updateCommunicationPreference", - "locations": [], - "apiVersions": [ - "2015-01-01" - ], - "capabilities": "None" - } - ], - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Paraleap.CloudMonix", "namespace": "Paraleap.CloudMonix", @@ -78530,48 +79846,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/U2uconsult.TheIdentityHub", - "namespace": "U2uconsult.TheIdentityHub", - "resourceTypes": [ - { - "resourceType": "services", - "locations": [ - "West Europe" - ], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "None" - }, - { - "resourceType": "listCommunicationPreference", - "locations": [], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "None" - }, - { - "resourceType": "updateCommunicationPreference", - "locations": [], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "None" - } - ], - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Wandisco.Fusion", "namespace": "Wandisco.Fusion", 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 9d9ec08916dc3..aa485dbba3042 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,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8ea69f816f2f18ccce65ca21918d7337", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 22:04:57 GMT", + "Date": "Tue, 30 Mar 2021 18:06:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0f105a8-f01c-4d4b-8c05-0035cf8def65", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "d0f105a8-f01c-4d4b-8c05-0035cf8def65", - "x-ms-routing-request-id": "WESTUS2:20210310T220457Z:d0f105a8-f01c-4d4b-8c05-0035cf8def65" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +52,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-75b0abd85d58e74090481d3d763451b6-d49cb23d6d2fd443-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-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 )" + ], "x-ms-client-request-id": "22bcabeba86cfa7cc2b3b13c9ce6eda2", "x-ms-return-client-request-id": "true" }, @@ -63,15 +69,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 22:04:58 GMT", + "Date": "Tue, 30 Mar 2021 18:06:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08ef172a-e84a-430f-b453-e0116417c2ec", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "08ef172a-e84a-430f-b453-e0116417c2ec", - "x-ms-routing-request-id": "WESTUS2:20210310T220458Z:08ef172a-e84a-430f-b453-e0116417c2ec" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3699", @@ -90,8 +96,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-58ef22d960f58646a446f7a21e1f0f1f-547c67643144b945-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-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 )" + ], "x-ms-client-request-id": "528e1efe62ef073f41b442f10cdf8fa8", "x-ms-return-client-request-id": "true" }, @@ -99,17 +108,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1218927", + "Content-Length": "1239318", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 22:05:01 GMT", + "Date": "Tue, 30 Mar 2021 18:06:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0d8190a-1540-42c3-af2e-bfed8b8c1277", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "e0d8190a-1540-42c3-af2e-bfed8b8c1277", - "x-ms-routing-request-id": "WESTUS2:20210310T220501Z:e0d8190a-1540-42c3-af2e-bfed8b8c1277" + "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" }, "ResponseBody": { "value": [ @@ -512,7 +521,10 @@ "Brazil SouthEast", "Norway East", "UAE North", - "Japan West" + "Japan West", + "South India", + "France South", + "Norway West" ], "apiVersions": [ "2021-02-01-preview", @@ -1847,7 +1859,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -1892,7 +1905,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview" @@ -1933,7 +1947,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview" @@ -1974,7 +1989,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2016,7 +2032,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2058,7 +2075,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2100,7 +2118,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2142,7 +2161,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2184,7 +2204,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2226,7 +2247,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2268,7 +2290,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2312,7 +2335,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2354,7 +2378,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2396,7 +2421,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -2438,7 +2464,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2481,7 +2508,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2524,7 +2552,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2567,7 +2596,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview" @@ -2609,7 +2639,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview" @@ -2620,8 +2651,10 @@ "resourceType": "registries/agentPools", "locations": [ "East US", + "West Europe", "West US 2", "South Central US", + "Canada Central", "Central US", "East US 2" ], @@ -2679,7 +2712,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2722,7 +2756,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2765,7 +2800,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2809,7 +2845,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2019-06-01-preview", @@ -2852,7 +2889,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -2893,7 +2931,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -2934,7 +2973,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -2975,7 +3015,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3016,7 +3057,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3057,7 +3099,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3098,7 +3141,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3139,7 +3183,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3180,7 +3225,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3221,7 +3267,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3265,7 +3312,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3309,7 +3357,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3353,7 +3402,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3397,7 +3447,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3441,7 +3492,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3482,7 +3534,8 @@ "Switzerland West", "UAE Central", "Brazil Southeast", - "Germany West Central" + "Germany West Central", + "Norway East" ], "apiVersions": [ "2018-02-01-preview" @@ -3523,7 +3576,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3568,7 +3622,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2019-05-01", @@ -3623,7 +3678,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3668,7 +3724,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3713,7 +3770,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2020-11-01-preview", @@ -3757,7 +3815,8 @@ "Switzerland West", "UAE Central", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2017-10-01" @@ -3798,7 +3857,8 @@ "Switzerland West", "UAE Central", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2017-10-01" @@ -3852,7 +3912,8 @@ "UAE Central", "Switzerland West", "Germany West Central", - "Brazil Southeast" + "Brazil Southeast", + "Norway East" ], "apiVersions": [ "2019-05-01", @@ -3895,7 +3956,8 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South" ], "apiVersions": [ "2020-11-01-preview", @@ -3943,7 +4005,8 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South" ], "apiVersions": [ "2020-11-01-preview", @@ -3990,7 +4053,8 @@ "Switzerland West", "Germany West Central", "Brazil Southeast", - "Norway East" + "Norway East", + "Korea South" ], "apiVersions": [ "2020-11-01-preview", @@ -4139,6 +4203,7 @@ "Norway West" ], "apiVersions": [ + "2021-03-01", "2021-02-01", "2020-12-01", "2020-11-01", @@ -4392,6 +4457,7 @@ "Norway West" ], "apiVersions": [ + "2021-03-01", "2021-02-01", "2020-12-01", "2020-11-01", @@ -4541,6 +4607,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4637,6 +4704,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4689,6 +4757,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4736,6 +4805,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4783,6 +4853,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4831,6 +4902,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4879,6 +4951,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4927,6 +5000,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -4975,6 +5049,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5023,6 +5098,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5071,6 +5147,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5117,6 +5194,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5163,6 +5241,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5209,6 +5288,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5255,6 +5335,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5301,6 +5382,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5347,6 +5429,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5393,6 +5476,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5441,6 +5525,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5489,6 +5574,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5539,6 +5625,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5590,6 +5677,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5641,6 +5729,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5866,6 +5955,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -5958,6 +6048,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6003,6 +6094,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6180,6 +6272,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2014-04-01-preview", @@ -6314,6 +6407,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6361,6 +6455,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6451,6 +6546,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6498,6 +6594,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6723,6 +6820,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6771,6 +6869,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6819,6 +6918,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6867,6 +6967,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6915,6 +7016,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -6962,6 +7064,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" ], @@ -7005,6 +7108,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7052,6 +7156,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7099,6 +7204,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7146,6 +7252,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7193,6 +7300,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" ], @@ -7236,6 +7344,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" ], @@ -7279,6 +7388,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7328,6 +7438,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7377,6 +7488,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7455,6 +7567,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2015-05-01-preview" @@ -7499,6 +7612,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7546,6 +7660,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7593,6 +7708,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7640,6 +7756,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7687,6 +7804,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7734,6 +7852,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7825,6 +7944,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7872,6 +7992,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7919,6 +8040,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -7966,6 +8088,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8014,6 +8137,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8062,6 +8186,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8110,6 +8235,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8158,6 +8284,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8206,6 +8333,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8255,6 +8383,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8303,6 +8432,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8352,6 +8482,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8401,6 +8532,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8450,6 +8582,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8499,6 +8632,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8898,6 +9032,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8949,6 +9084,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -8997,6 +9133,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9092,6 +9229,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9140,6 +9278,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9188,6 +9327,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9236,6 +9376,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview" @@ -9280,6 +9421,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9327,6 +9469,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9372,6 +9515,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9419,6 +9563,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9464,6 +9609,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9512,6 +9658,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2017-03-01-preview" @@ -9556,6 +9703,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9602,6 +9750,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9648,6 +9797,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9695,6 +9845,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9743,6 +9894,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9791,6 +9943,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9839,6 +9992,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -9884,6 +10038,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-08-01", "2020-02-02-preview" @@ -9928,6 +10083,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-08-01", "2020-02-02-preview" @@ -9972,6 +10128,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10017,6 +10174,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10062,6 +10220,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10144,6 +10303,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10191,6 +10351,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10305,6 +10466,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10352,6 +10514,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10399,6 +10562,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10444,6 +10608,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10490,6 +10655,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview" @@ -10534,6 +10700,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview" @@ -10578,6 +10745,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview" @@ -10622,6 +10790,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview" @@ -10666,6 +10835,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10711,6 +10881,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10756,6 +10927,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10801,6 +10973,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10846,6 +11019,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10891,6 +11065,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10936,6 +11111,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -10983,6 +11159,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11030,6 +11207,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11077,6 +11255,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11124,6 +11303,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11169,6 +11349,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11214,6 +11395,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11261,6 +11443,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11307,6 +11490,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11353,6 +11537,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11399,6 +11584,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11446,6 +11632,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11493,6 +11680,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11540,6 +11728,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11588,6 +11777,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11636,6 +11826,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11684,6 +11875,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11732,6 +11924,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11780,6 +11973,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11827,6 +12021,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11874,6 +12069,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11922,6 +12118,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -11970,6 +12167,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12018,6 +12216,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12066,6 +12265,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12113,6 +12313,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12160,6 +12361,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12207,6 +12409,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12254,6 +12457,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12301,6 +12505,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12348,6 +12553,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12394,6 +12600,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12440,6 +12647,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12487,6 +12695,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12534,6 +12743,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12580,6 +12790,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12626,6 +12837,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12672,6 +12884,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12717,6 +12930,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12762,6 +12976,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12807,6 +13022,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12852,6 +13068,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", @@ -12900,6 +13117,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" ], @@ -12943,6 +13161,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" ], @@ -12986,6 +13205,7 @@ "West US 2" ], "apiVersions": [ + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview" ], @@ -13735,7 +13955,10 @@ "Japan West", "UAE North", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2015-11-01-preview" @@ -14600,15 +14823,17 @@ { "resourceType": "flexibleServers", "locations": [ - "West US 2", + "Australia East", + "Canada Central", + "Central US", "East US", "East US 2", - "West Europe", - "North Europe", "Japan East", + "North Europe", "Southeast Asia", "UK South", - "Central US" + "West US 2", + "West Europe" ], "apiVersions": [ "2020-11-05-preview", @@ -14687,6 +14912,22 @@ "1", "3" ] + }, + { + "location": "Australia East", + "zones": [ + "2", + "1", + "3" + ] + }, + { + "location": "Canada Central", + "zones": [ + "2", + "1", + "3" + ] } ], "metadata": { @@ -14727,20 +14968,22 @@ "applicationId": "87bbf879-e67c-49da-a9e1-632ecff043f9" } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "locations/capabilities", "locations": [ - "East US 2", + "Australia East", + "Canada Central", + "Central US", "East US", - "West Europe", - "West US 2", - "North Europe", + "East US 2", "Japan East", + "North Europe", "Southeast Asia", "UK South", - "Central US" + "West Europe", + "West US 2" ], "apiVersions": [ "2020-11-05-preview", @@ -14752,15 +14995,17 @@ { "resourceType": "locations/checkNameAvailability", "locations": [ - "East US 2", + "Australia East", + "Canada Central", + "Central US", "East US", - "West Europe", - "West US 2", - "North Europe", + "East US 2", "Japan East", + "North Europe", "Southeast Asia", "UK South", - "Central US" + "West Europe", + "West US 2" ], "apiVersions": [ "2020-11-05-preview", @@ -15140,18 +15385,19 @@ { "resourceType": "locations/checkVirtualNetworkSubnetUsage", "locations": [ - "East US 2", + "Australia East", + "Canada Central", + "Central US", "East US", + "East US 2", + "France Central", + "Japan East", "North Central US", - "Canada Central", - "Australia East", + "North Europe", + "Southeast Asia", "UK South", "West Europe", - "Southeast Asia", - "West US 2", - "North Europe", - "Japan East", - "Central US" + "West US 2" ], "apiVersions": [ "2020-11-05-preview", @@ -16513,7 +16759,7 @@ } ], "metadata": { - "build": "", + "build": "1.0.2988.0", "microsoft.insights": { "monitoringResourceProvider": { "version": "1.0", @@ -17459,6 +17705,7 @@ "Japan East", "Korea Central", "North Europe", + "South Africa North", "South Central US", "Southeast Asia", "Switzerland North", @@ -17468,6 +17715,7 @@ "West US 2" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17480,6 +17728,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17504,6 +17753,7 @@ "Japan East", "Korea Central", "North Europe", + "South Africa North", "South Central US", "Southeast Asia", "Switzerland North", @@ -17513,6 +17763,7 @@ "West US 2" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17537,6 +17788,7 @@ "Japan East", "Korea Central", "North Europe", + "South Africa North", "South Central US", "Southeast Asia", "Switzerland North", @@ -17546,6 +17798,7 @@ "West US 2" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17557,6 +17810,8 @@ { "resourceType": "operations", "locations": [ + "Central US EUAP", + "West Central US", "West US 2", "East US", "East US 2", @@ -17564,6 +17819,7 @@ "Central US" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17588,6 +17844,7 @@ "Japan East", "Korea Central", "North Europe", + "South Africa North", "South Central US", "Southeast Asia", "Switzerland North", @@ -17597,6 +17854,7 @@ "West US 2" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17621,6 +17879,7 @@ "Japan East", "Korea Central", "North Europe", + "South Africa North", "South Central US", "Southeast Asia", "Switzerland North", @@ -17630,6 +17889,7 @@ "West US 2" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -17654,6 +17914,7 @@ "Japan East", "Korea Central", "North Europe", + "South Africa North", "South Central US", "Southeast Asia", "Switzerland North", @@ -17663,6 +17924,7 @@ "West US 2" ], "apiVersions": [ + "2021-04-01-preview", "2020-07-01-preview", "2020-05-01", "2018-10-01", @@ -19714,6 +19976,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -20967,6 +21233,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -21219,6 +21489,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -21433,6 +21707,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -22490,6 +22768,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -23462,6 +23744,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -27341,6 +27627,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -28523,6 +28813,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -28607,6 +28898,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -28689,6 +28981,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -28773,6 +29066,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -28857,6 +29151,7 @@ "Japan East" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01" ], @@ -28908,6 +29203,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -28992,6 +29288,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29240,6 +29537,7 @@ "East Asia" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29254,6 +29552,7 @@ "operations": "2016-03-01", "staticSites": "2019-08-01" }, + "mdsMappingResourceIdOverridePathSelector": "id", "metrics": { "mdmInfo": [ { @@ -29265,7 +29564,7 @@ } } }, - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "locations/previewStaticSiteWorkflowFile", @@ -29277,6 +29576,7 @@ "East Asia" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29332,6 +29632,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29406,6 +29707,7 @@ "North Central US (Stage)" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29480,83 +29782,85 @@ "North Central US (Stage)" ], "apiVersions": [ - "2020-10-01", - "2020-09-01", - "2020-06-01", - "2019-12-01-preview", - "2019-08-01", - "2019-01-01", - "2018-11-01", - "2018-02-01", - "2016-08-01" - ], - "defaultApiVersion": "2019-01-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-08-01" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2016-08-01" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-02-01" - }, - { - "profileVersion": "2019-03-01-hybrid", - "apiVersion": "2018-02-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operationResults", - "locations": [ - "South Central US", - "MSFT West US", - "MSFT East US", - "MSFT East Asia", - "MSFT North Europe", - "East US 2 (Stage)", - "Central US (Stage)", - "South Africa North", - "West US 2", - "East US 2", - "East US", - "UK South", - "Southeast Asia", - "North Europe", - "Japan East", - "West Europe", - "East Asia", - "West US", - "Australia East", - "Brazil South", - "Central US", - "Japan West", - "Central India", - "Canada East", - "Korea Central", - "France Central", - "West India", - "Australia Central", - "Germany West Central", - "Norway East", - "UAE North", - "Switzerland North", - "North Central US", - "UK West", - "Australia Southeast", - "Korea South", - "Canada Central", - "South India", - "West Central US", - "East Asia (Stage)", - "North Central US (Stage)" - ], - "apiVersions": [ + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", + "2019-12-01-preview", + "2019-08-01", + "2019-01-01", + "2018-11-01", + "2018-02-01", + "2016-08-01" + ], + "defaultApiVersion": "2019-01-01", + "apiProfiles": [ + { + "profileVersion": "2017-03-09-profile", + "apiVersion": "2016-08-01" + }, + { + "profileVersion": "2018-03-01-hybrid", + "apiVersion": "2016-08-01" + }, + { + "profileVersion": "2018-06-01-profile", + "apiVersion": "2018-02-01" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2018-02-01" + } + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "South Central US", + "MSFT West US", + "MSFT East US", + "MSFT East Asia", + "MSFT North Europe", + "East US 2 (Stage)", + "Central US (Stage)", + "South Africa North", + "West US 2", + "East US 2", + "East US", + "UK South", + "Southeast Asia", + "North Europe", + "Japan East", + "West Europe", + "East Asia", + "West US", + "Australia East", + "Brazil South", + "Central US", + "Japan West", + "Central India", + "Canada East", + "Korea Central", + "France Central", + "West India", + "Australia Central", + "Germany West Central", + "Norway East", + "UAE North", + "Switzerland North", + "North Central US", + "UK West", + "Australia Southeast", + "Korea South", + "Canada Central", + "South India", + "West Central US", + "East Asia (Stage)", + "North Central US (Stage)" + ], + "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29634,6 +29938,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29715,6 +30020,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29796,6 +30102,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29877,6 +30184,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -29958,6 +30266,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30042,6 +30351,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30127,6 +30437,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30247,6 +30558,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30417,6 +30729,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30488,6 +30801,7 @@ "resourceType": "runtimes", "locations": [], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30529,6 +30843,7 @@ "resourceType": "recommendations", "locations": [], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30571,6 +30886,7 @@ "resourceType": "resourceHealthMetadata", "locations": [], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30613,6 +30929,10 @@ "resourceType": "georegions", "locations": [], "apiVersions": [ + "2020-12-01", + "2020-10-01", + "2020-09-01", + "2020-06-01", "2019-08-01", "2018-11-01", "2018-02-01", @@ -30694,6 +31014,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -30773,6 +31094,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31018,6 +31340,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31125,6 +31448,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31192,6 +31516,7 @@ "North Central US (Stage)" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31277,6 +31602,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31361,6 +31687,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31445,6 +31772,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31488,6 +31816,7 @@ "resourceType": "ishostingenvironmentnameavailable", "locations": [], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -31572,6 +31901,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32244,6 +32574,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32329,6 +32660,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32414,6 +32746,7 @@ "UAE North" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32500,6 +32833,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32570,6 +32904,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32644,6 +32979,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32715,6 +33051,7 @@ "West Europe" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32788,6 +33125,7 @@ "South Africa West" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -32858,6 +33196,7 @@ "South Africa West" ], "apiVersions": [ + "2020-12-01", "2020-10-01", "2020-09-01", "2020-06-01", @@ -33007,6 +33346,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33078,6 +33418,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33241,6 +33582,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -33283,6 +33628,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33354,6 +33700,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33518,6 +33865,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -33568,6 +33919,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33640,6 +33992,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33712,6 +34065,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33783,6 +34137,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33856,6 +34211,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33929,6 +34285,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -33956,6 +34313,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34012,6 +34370,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34083,6 +34442,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34153,6 +34513,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34214,6 +34575,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34284,6 +34646,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34347,6 +34710,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34410,6 +34774,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-09-30", "2020-06-01", @@ -34481,6 +34846,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34586,6 +34952,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34638,6 +35005,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34689,6 +35057,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -34739,6 +35108,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01" @@ -34826,6 +35196,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01" ], @@ -34870,6 +35241,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01" ], @@ -34914,6 +35286,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-09-30", "2020-06-01", @@ -35489,6 +35862,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -35757,6 +36134,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -35821,6 +36199,7 @@ "Norway East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -35871,6 +36250,7 @@ "Australia East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -36011,6 +36391,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -36053,6 +36437,7 @@ "Australia East" ], "apiVersions": [ + "2021-03-01", "2020-12-01", "2020-06-01", "2019-12-01", @@ -36193,6 +36578,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -36513,6 +36902,7 @@ "Norway East" ], "apiVersions": [ + "2020-10-01", "2020-08-01", "2020-03-01-preview", "2019-08-01-preview", @@ -36678,7 +37068,7 @@ "capabilities": "None" }, { - "resourceType": "workspaces/Tables", + "resourceType": "workspaces/tables", "locations": [ "East US", "West Europe", @@ -36722,17 +37112,7 @@ "capabilities": "None" }, { - "resourceType": "storageInsightConfigs", - "locations": [], - "apiVersions": [ - "2020-08-01", - "2020-03-01-preview", - "2014-10-10" - ], - "capabilities": "SupportsExtension" - }, - { - "resourceType": "workspaces/linkedServices", + "resourceType": "workspaces/storageInsightConfigs", "locations": [ "East US", "West Europe", @@ -36744,8 +37124,8 @@ "Central India", "Canada Central", "West US 2", - "Australia Central", "Australia East", + "Australia Central", "France Central", "Korea Central", "North Europe", @@ -36766,30 +37146,35 @@ "UAE North", "Japan West", "Brazil Southeast", - "Norway East" + "Norway East", + "Norway West", + "France South", + "South India" ], "apiVersions": [ "2020-08-01", "2020-03-01-preview", - "2019-08-01-preview", - "2015-11-01-preview" + "2017-04-26-preview", + "2017-03-15-preview", + "2017-03-03-preview", + "2017-01-01-preview", + "2015-11-01-preview", + "2015-03-20" ], - "defaultApiVersion": "2020-08-01", "capabilities": "None" }, { - "resourceType": "linkTargets", - "locations": [ - "East US" - ], + "resourceType": "storageInsightConfigs", + "locations": [], "apiVersions": [ + "2020-08-01", "2020-03-01-preview", - "2015-03-20" + "2014-10-10" ], - "capabilities": "None" + "capabilities": "SupportsExtension" }, { - "resourceType": "deletedWorkspaces", + "resourceType": "workspaces/linkedServices", "locations": [ "East US", "West Europe", @@ -36826,73 +37211,130 @@ "Norway East" ], "apiVersions": [ - "2020-08-01", - "2020-03-01-preview" - ], - "defaultApiVersion": "2020-08-01", - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2020-10-01", "2020-08-01", "2020-03-01-preview", - "2015-11-01-preview", - "2014-11-10" + "2019-08-01-preview", + "2015-11-01-preview" ], "defaultApiVersion": "2020-08-01", "capabilities": "None" }, { - "resourceType": "clusters", + "resourceType": "linkTargets", "locations": [ - "East US", - "West Europe", - "Southeast Asia", - "Australia Southeast", - "West Central US", - "Japan East", - "UK South", - "Central India", - "Canada Central", - "West US 2", - "Australia Central", - "Australia East", - "France Central", - "Korea Central", - "North Europe", - "Central US", - "East Asia", - "East US 2", - "South Central US", - "North Central US", - "West US", - "UK West", - "South Africa North", - "Switzerland North", - "Switzerland West", - "Germany West Central", - "Australia Central 2", - "UAE Central", - "Brazil South", - "UAE North", - "Japan West", - "Brazil Southeast", - "Norway East" + "East US" ], "apiVersions": [ - "2020-10-01", - "2020-08-01", "2020-03-01-preview", - "2019-08-01-preview" + "2015-03-20" ], - "defaultApiVersion": "2020-08-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "None" }, { - "resourceType": "workspaces/dataExports", + "resourceType": "deletedWorkspaces", + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "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" + ], + "apiVersions": [ + "2020-08-01", + "2020-03-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-10-01", + "2020-08-01", + "2020-03-01-preview", + "2015-11-01-preview", + "2014-11-10" + ], + "defaultApiVersion": "2020-08-01", + "capabilities": "None" + }, + { + "resourceType": "clusters", + "locations": [ + "East US", + "West Europe", + "Southeast Asia", + "Australia Southeast", + "West Central US", + "Japan East", + "UK South", + "Central India", + "Canada Central", + "West US 2", + "Australia Central", + "Australia East", + "France Central", + "Korea Central", + "North Europe", + "Central US", + "East Asia", + "East US 2", + "South Central US", + "North Central US", + "West US", + "UK West", + "South Africa North", + "Switzerland North", + "Switzerland West", + "Germany West Central", + "Australia Central 2", + "UAE Central", + "Brazil South", + "UAE North", + "Japan West", + "Brazil Southeast", + "Norway East" + ], + "apiVersions": [ + "2020-10-01", + "2020-08-01", + "2020-03-01-preview", + "2019-08-01-preview" + ], + "defaultApiVersion": "2020-08-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/dataExports", "locations": [ "East US", "West Europe", @@ -37206,6 +37648,8 @@ "West Europe" ], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview", "2019-12-01-preview", "2019-12-01", @@ -37259,6 +37703,8 @@ "West Europe" ], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview" ], "defaultApiVersion": "2020-06-01-preview", @@ -37268,6 +37714,8 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview" ], "defaultApiVersion": "2020-06-01-preview", @@ -37311,6 +37759,8 @@ "West Europe" ], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview" ], "defaultApiVersion": "2020-06-01-preview", @@ -37372,6 +37822,8 @@ "West Europe" ], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview", "2019-12-01-preview", "2019-12-01", @@ -37391,6 +37843,8 @@ "resourceType": "reportFeedback", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview", "2019-12-01-preview", "2019-12-01", @@ -37409,6 +37863,8 @@ "resourceType": "checkFeedbackRequired", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview", "2019-12-01-preview", "2019-12-01", @@ -37427,6 +37883,8 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2020-12-01", "2020-06-01-preview", "2019-12-01-preview", "2019-12-01", @@ -37473,6 +37931,50 @@ } }, "capabilities": "None" + }, + { + "resourceType": "getDomainOwnershipIdentifier", + "locations": [ + "Central India", + "UAE North", + "Australia Central", + "Germany West Central", + "West Central US", + "Norway East", + "Switzerland North", + "Korea South", + "West India", + "Korea Central", + "South Africa North", + "UK West", + "Brazil South", + "East Asia", + "South India", + "Canada Central", + "Canada East", + "Australia Southeast", + "Japan East", + "North Central US", + "Southeast Asia", + "West US 2", + "Central US", + "UK South", + "Australia East", + "Japan West", + "West US", + "France Central", + "South Central US", + "East US 2", + "East US", + "North Europe", + "West Europe" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-12-01" + ], + "defaultApiVersion": "2020-12-01", + "capabilities": "None" } ], "metadata": { @@ -39949,7 +40451,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2021-02-01", @@ -40035,6 +40538,7 @@ "Australia Central", "Switzerland North", "Norway East", + "Jio India West", "Germany West Central" ], "apiVersions": [ @@ -40088,7 +40592,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2016-11-01", @@ -40146,7 +40651,8 @@ "North Central US (Stage)", "Korea Central", "Korea South", - "France Central" + "France Central", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -40190,7 +40696,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2017-04-01", @@ -40279,6 +40786,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "Jio India West", "West US", "Central US", "South Central US", @@ -40339,6 +40847,7 @@ "West India", "Korea Central", "Korea South", + "Jio India West", "East US 2 (Stage)", "North Central US (Stage)" ], @@ -40384,7 +40893,8 @@ "North Central US (Stage)", "Korea Central", "Korea South", - "France Central" + "France Central", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -40542,6 +41052,7 @@ "South Africa North", "UAE North", "Switzerland North", + "Jio India West", "Australia Central", "Germany West Central", "Norway East" @@ -40671,6 +41182,7 @@ "South Africa North", "UAE North", "Switzerland North", + "Jio India West", "Australia Central", "Germany West Central", "Norway East" @@ -40762,6 +41274,7 @@ "South Africa North", "UAE North", "Switzerland North", + "Jio India West", "Australia Central", "Germany West Central", "Norway East" @@ -40896,7 +41409,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2016-11-01", @@ -40956,6 +41470,7 @@ "North Central US (Stage)", "West US 2", "West Central US", + "Jio India West", "East US", "East US 2", "North Central US", @@ -41000,6 +41515,7 @@ "North Central US (Stage)", "West US 2", "West Central US", + "Jio India West", "East US", "East US 2", "North Central US", @@ -41070,7 +41586,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -41122,7 +41639,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2014-04-01" @@ -41757,6 +42275,7 @@ "South Central US" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -41867,6 +42386,7 @@ "Korea Central" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -41956,6 +42476,7 @@ "Korea Central" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -42045,6 +42566,7 @@ "Korea Central" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -42134,6 +42656,7 @@ "South Central US" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -42223,6 +42746,7 @@ "South Central US" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -42312,6 +42836,7 @@ "Korea Central" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -42367,6 +42892,7 @@ "South Central US" ], "apiVersions": [ + "2021-03-15", "2021-03-01-preview", "2021-01-15", "2020-09-01", @@ -43538,7 +44064,8 @@ "roleDefinitionId": "C121DF10-FE58-4BC4-97F9-8296879F7BBB" }, { - "applicationId": "29f411f1-b2cf-4043-8ac8-2185d7316811" + "applicationId": "29f411f1-b2cf-4043-8ac8-2185d7316811", + "roleDefinitionId": "d04fc6c0-fc10-4ab8-b7de-c979247c3b65" }, { "applicationId": "89d10474-74af-4874-99a7-c23c2f643083", @@ -44460,6 +44987,7 @@ "Norway East" ], "apiVersions": [ + "2021-01-01-preview", "2018-01-01-preview", "2017-04-01", "2015-08-01", @@ -45267,11 +45795,23 @@ "Central India" ], "apiVersions": [ + "2020-11-01-preview", "2018-06-01-preview", "2015-03-01-preview" ], "defaultApiVersion": "2015-03-01-preview", "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "East US 2", + "East US" + ], + "apiVersions": [ + "2020-11-01-preview" + ], + "capabilities": "None" } ], "metadata": { @@ -45349,9 +45889,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45410,9 +45953,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45471,9 +46017,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45501,6 +46050,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", @@ -45530,6 +46080,8 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45580,9 +46132,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45601,6 +46156,8 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45650,9 +46207,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45702,9 +46262,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45748,9 +46311,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14", @@ -45800,9 +46366,12 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", "2019-09-01", "2018-02-14-preview", "2018-02-14" @@ -45830,10 +46399,152 @@ "East US" ], "apiVersions": [ + "2021-04-01-preview", "2020-04-01-preview" ], "defaultApiVersion": "2020-04-01-preview", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "deletedManagedHSMs", + "locations": [ + "East US 2", + "South Central US", + "North Europe", + "West Europe", + "Canada Central", + "Central US", + "Switzerland North", + "South Africa North", + "UK South", + "SouthEast Asia", + "East Asia", + "Korea Central", + "Australia Central", + "West US", + "East US" + ], + "apiVersions": [ + "2021-04-01-preview" + ], + "defaultApiVersion": "2021-04-01-preview", + "capabilities": "None" + }, + { + "resourceType": "locations/deletedManagedHSMs", + "locations": [ + "East US 2", + "South Central US", + "North Europe", + "West Europe", + "Canada Central", + "Central US", + "Switzerland North", + "South Africa North", + "UK South", + "SouthEast Asia", + "East Asia", + "Korea Central", + "Australia Central", + "West US", + "East US" + ], + "apiVersions": [ + "2021-04-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "vaults/keys", + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01" + ], + "defaultApiVersion": "2019-09-01", + "capabilities": "None" + }, + { + "resourceType": "vaults/keys/versions", + "locations": [ + "North Central US", + "East US", + "North Europe", + "West Europe", + "East Asia", + "Southeast Asia", + "East US 2", + "Central US", + "South Central US", + "West US", + "Japan East", + "Japan West", + "Australia East", + "Australia Southeast", + "Brazil South", + "Central India", + "South India", + "West India", + "Canada Central", + "Canada East", + "UK South", + "UK West", + "West Central US", + "West US 2", + "Korea Central", + "Korea South", + "France Central", + "Australia Central", + "UAE North", + "South Africa North", + "Switzerland North", + "Germany West Central", + "Norway East", + "Jio India West" + ], + "apiVersions": [ + "2021-04-01-preview", + "2020-04-01-preview", + "2019-09-01" + ], + "defaultApiVersion": "2019-09-01", + "capabilities": "None" } ], "metadata": { @@ -47244,6 +47955,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01" @@ -47289,6 +48001,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01" @@ -47334,6 +48047,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47501,6 +48215,10 @@ { "location": "Korea Central", "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -47555,6 +48273,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47630,6 +48349,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47697,6 +48417,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47757,6 +48478,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47817,6 +48539,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47877,6 +48600,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47937,6 +48661,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -47997,6 +48722,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48017,6 +48743,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48086,6 +48813,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48149,6 +48877,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48169,6 +48898,7 @@ "resourceType": "usages", "locations": [], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48243,6 +48973,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48318,6 +49049,7 @@ "Norway East" ], "apiVersions": [ + "2021-02-01", "2021-01-01", "2020-08-01-preview", "2019-06-01", @@ -48524,6 +49256,7 @@ "resourceType": "events", "locations": [], "apiVersions": [ + "2020-09-01-rc", "2018-07-01-rc", "2018-07-01" ], @@ -48563,17 +49296,6 @@ "2015-01-01" ], "capabilities": "None" - }, - { - "resourceType": "notifications", - "locations": [ - "Australia Southeast" - ], - "apiVersions": [ - "2016-09-01", - "2016-06-01" - ], - "capabilities": "SupportsExtension" } ], "metadata": { @@ -48712,6 +49434,23 @@ ], "capabilities": "SupportsExtension" }, + { + "resourceType": "eventGridFilters", + "locations": [], + "apiVersions": [ + "2020-10-01" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "checkPolicyRestrictions", + "locations": [], + "apiVersions": [ + "2020-07-01-preview", + "2020-07-01" + ], + "capabilities": "None" + }, { "resourceType": "policyTrackedResources", "locations": [], @@ -48719,6 +49458,14 @@ "2018-07-01-preview" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "policyMetadata", + "locations": [], + "apiVersions": [ + "2019-10-01" + ], + "capabilities": "None" } ], "registrationState": "Registered", @@ -50171,6 +50918,7 @@ "Norway East" ], "apiVersions": [ + "2021-01-01-preview", "2018-01-01-preview", "2017-04-01", "2015-08-01", @@ -50822,48 +51570,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Conexlink.MyCloudIT", - "namespace": "Conexlink.MyCloudIT", - "resourceTypes": [ - { - "resourceType": "accounts", - "locations": [ - "Central US" - ], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "None" - }, - { - "resourceType": "listCommunicationPreference", - "locations": [], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "None" - }, - { - "resourceType": "updateCommunicationPreference", - "locations": [], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "None" - } - ], - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/LiveArena.Broadcast", "namespace": "LiveArena.Broadcast", @@ -51019,6 +51725,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" @@ -51060,6 +51767,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01", "2020-01-01", "2017-06-01" ], @@ -51100,6 +51808,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" @@ -51141,6 +51850,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" @@ -51182,6 +51892,7 @@ "Germany West Central" ], "apiVersions": [ + "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" @@ -51604,10 +52315,7 @@ "resourceTypes": [ { "resourceType": "operations", - "locations": [ - "East US", - "West Central US" - ], + "locations": [], "apiVersions": [ "2020-05-12-preview" ], @@ -51616,10 +52324,7 @@ }, { "resourceType": "checkNameAvailability", - "locations": [ - "East US", - "West Central US" - ], + "locations": [], "apiVersions": [ "2020-05-12-preview" ], @@ -51637,6 +52342,10 @@ { "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3", "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" + }, + { + "applicationId": "9581bc0e-c952-4fd3-8d99-e777877718b1", + "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" } ], "resourceTypes": [ @@ -51692,6 +52401,7 @@ "Canada East", "Central India", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -51713,8 +52423,7 @@ "UK South", "Brazil South", "Korea South", - "Korea Central", - "East US" + "Korea Central" ], "apiVersions": [ "2020-12-01-preview", @@ -51732,6 +52441,7 @@ "Canada East", "Central India", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -51753,8 +52463,7 @@ "UK South", "Brazil South", "Korea South", - "Korea Central", - "East US" + "Korea Central" ], "apiVersions": [ "2020-12-01-preview", @@ -51772,6 +52481,7 @@ "Canada East", "Central India", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -51793,8 +52503,7 @@ "UK South", "Brazil South", "Korea South", - "Korea Central", - "East US" + "Korea Central" ], "apiVersions": [ "2020-12-01-preview", @@ -51856,6 +52565,7 @@ "Central India", "Central US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -51879,7 +52589,6 @@ "Brazil South", "Korea South", "Korea Central", - "East US", "South Central US" ], "apiVersions": [ @@ -52658,6 +53367,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -52708,6 +53418,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -52759,6 +53470,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -52806,6 +53518,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -52869,6 +53582,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -52916,6 +53630,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -52965,6 +53680,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -53008,6 +53724,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -53051,6 +53768,7 @@ "UAE Central", "Australia Central 2", "South India", + "France South", "Southeast Asia", "South Central US", "North Central US", @@ -53278,6 +53996,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53297,6 +54016,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53316,6 +54036,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53358,6 +54079,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53378,6 +54100,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53397,6 +54120,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53416,6 +54140,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53435,6 +54160,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53454,6 +54180,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53473,6 +54200,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53492,6 +54220,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53511,6 +54240,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53530,6 +54260,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53549,6 +54280,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53568,6 +54300,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53587,6 +54320,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53606,6 +54340,7 @@ "West US", "West Europe", "Australia East", + "South Central US", "Japan East", "UK South", "Canada Central", @@ -53924,16 +54659,6 @@ { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AzureData", "namespace": "Microsoft.AzureData", - "authorizations": [ - { - "applicationId": "bb55177b-a7d9-4939-a257-8ab53a3b2bc6", - "roleDefinitionId": "f83de625-af9e-4458-ac9c-e5d62b05fd06" - }, - { - "applicationId": "a12e8ccb-0fcd-46f8-b6a1-b9df7a9d7231", - "roleDefinitionId": "f83de625-af9e-4458-ac9c-e5d62b05fd06" - } - ], "resourceTypes": [ { "resourceType": "sqlServerRegistrations", @@ -53969,95 +54694,6 @@ "defaultApiVersion": "2019-05-10-preview", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, - { - "resourceType": "dataControllers", - "locations": [ - "Japan East", - "Australia East", - "Korea Central", - "North Europe", - "UK South", - "France Central", - "East US", - "East US 2", - "Central US", - "West Europe", - "Southeast Asia", - "West US 2" - ], - "apiVersions": [ - "2020-09-08-preview", - "2019-07-24-preview" - ], - "defaultApiVersion": "2020-09-08-preview", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "postgresInstances", - "locations": [ - "Japan East", - "Australia East", - "Korea Central", - "North Europe", - "UK South", - "France Central", - "East US", - "East US 2", - "Central US", - "West Europe", - "Southeast Asia", - "West US 2" - ], - "apiVersions": [ - "2020-09-08-preview", - "2019-07-24-preview" - ], - "defaultApiVersion": "2020-09-08-preview", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sqlManagedInstances", - "locations": [ - "Japan East", - "Australia East", - "Korea Central", - "North Europe", - "UK South", - "France Central", - "East US", - "East US 2", - "Central US", - "West Europe", - "Southeast Asia", - "West US 2" - ], - "apiVersions": [ - "2020-09-08-preview", - "2019-07-24-preview" - ], - "defaultApiVersion": "2020-09-08-preview", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sqlServerInstances", - "locations": [ - "East US", - "East US 2", - "Central US", - "West Europe", - "Southeast Asia", - "West US 2", - "Australia East", - "North Europe", - "UK South" - ], - "apiVersions": [ - "2020-09-08-preview", - "2019-07-24-preview" - ], - "defaultApiVersion": "2020-09-08-preview", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, { "resourceType": "operations", "locations": [ @@ -54291,6 +54927,7 @@ { "resourceType": "bareMetalInstances", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -54318,6 +54955,7 @@ { "resourceType": "locations/operationsStatus", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -54337,6 +54975,7 @@ { "resourceType": "operations", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -55997,11 +56636,12 @@ "Global" ], "apiVersions": [ + "2021-03-01", "2020-06-02", "2018-07-12", "2017-12-01" ], - "defaultApiVersion": "2020-06-02", + "defaultApiVersion": "2021-03-01", "apiProfiles": [ { "profileVersion": "2017-03-09-profile", @@ -56021,8 +56661,8 @@ "monitoringResourceProvider": { "version": "1.0", "apiVersions": { - "default": "2020-06-02", - "operations": "2020-06-02" + "default": "2021-03-01", + "operations": "2021-03-01" }, "logs": { "mdsInfo": [ @@ -56060,11 +56700,12 @@ "Global" ], "apiVersions": [ + "2021-03-01", "2020-06-02", "2018-07-12", "2017-12-01" ], - "defaultApiVersion": "2020-06-02", + "defaultApiVersion": "2021-03-01", "apiProfiles": [ { "profileVersion": "2017-03-09-profile", @@ -56087,11 +56728,12 @@ "Global" ], "apiVersions": [ + "2021-03-01", "2020-06-02", "2018-07-12", "2017-12-01" ], - "defaultApiVersion": "2020-06-02", + "defaultApiVersion": "2021-03-01", "apiProfiles": [ { "profileVersion": "2017-03-09-profile", @@ -56114,11 +56756,12 @@ "Global" ], "apiVersions": [ + "2021-03-01", "2020-06-02", "2018-07-12", "2017-12-01" ], - "defaultApiVersion": "2020-06-02", + "defaultApiVersion": "2021-03-01", "apiProfiles": [ { "profileVersion": "2017-03-09-profile", @@ -56135,17 +56778,29 @@ ], "capabilities": "None" }, + { + "resourceType": "hostSettings", + "locations": [ + "Global" + ], + "apiVersions": [ + "2021-03-01" + ], + "defaultApiVersion": "2021-03-01", + "capabilities": "None" + }, { "resourceType": "checkNameAvailability", "locations": [ "Global" ], "apiVersions": [ + "2021-03-01", "2020-06-02", "2018-07-12", "2017-12-01" ], - "defaultApiVersion": "2020-06-02", + "defaultApiVersion": "2021-03-01", "apiProfiles": [ { "profileVersion": "2017-03-09-profile", @@ -56168,11 +56823,12 @@ "Global" ], "apiVersions": [ + "2021-03-01", "2020-06-02", "2018-07-12", "2017-12-01" ], - "defaultApiVersion": "2020-06-02", + "defaultApiVersion": "2021-03-01", "apiProfiles": [ { "profileVersion": "2017-03-09-profile", @@ -56216,6 +56872,33 @@ ], "capabilities": "None" }, + { + "resourceType": "resourceProviders/locations", + "locations": [], + "apiVersions": [ + "2020-10-25", + "2019-07-19-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "resourceProviders/locations/serviceLimits", + "locations": [], + "apiVersions": [ + "2020-10-25", + "2019-07-19-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "resourceProviders/locations/serviceLimitsRequests", + "locations": [], + "apiVersions": [ + "2020-10-25", + "2019-07-19-preview" + ], + "capabilities": "None" + }, { "resourceType": "resources", "locations": [ @@ -56251,6 +56934,8 @@ "resourceType": "reservationOrders/reservations", "locations": [], "apiVersions": [ + "2021-03-01-privatepreview", + "2021-03-01-beta", "2020-10-01-preview", "2020-10-01-beta", "2020-06-01-beta", @@ -56324,6 +57009,8 @@ "resourceType": "catalogs", "locations": [], "apiVersions": [ + "2021-03-01-privatepreview", + "2021-03-01-beta", "2020-10-01-preview", "2020-10-01-beta", "2019-04-01-beta", @@ -56609,6 +57296,15 @@ "2021-01-01-beta" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "checkBenefitScopes", + "locations": [], + "apiVersions": [ + "2021-03-01-privatepreview", + "2021-03-01-beta" + ], + "capabilities": "None" } ], "registrationState": "NotRegistered", @@ -56696,6 +57392,7 @@ "resourceType": "resourceChanges", "locations": [], "apiVersions": [ + "2021-04-01", "2020-04-01-preview" ], "capabilities": "SupportsExtension" @@ -56704,6 +57401,7 @@ "resourceType": "changes", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01-preview" ], "capabilities": "SupportsExtension" @@ -57150,6 +57848,70 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedVehicle", + "namespace": "Microsoft.ConnectedVehicle", + "authorizations": [ + { + "applicationId": "070fc472-7cef-4d53-9b65-34464c4d5f4a", + "roleDefinitionId": "d9be9a0d-13a3-4571-9428-498be31834b1" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "West US 2", + "West Europe", + "East US" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-12-01-preview" + ], + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "070fc472-7cef-4d53-9b65-34464c4d5f4a" + }, + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConnectedVMwarevSphere", "namespace": "Microsoft.ConnectedVMwarevSphere", @@ -57157,6 +57919,14 @@ { "applicationId": "ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7", "roleDefinitionId": "a27a5b7c-3d1a-4e97-b0ad-195eef808eb6" + }, + { + "applicationId": "157638eb-a5cb-4c10-af42-2d6759eb1871", + "roleDefinitionId": "59a59e1d-c18a-4c7c-8a99-2b5b311f08d2" + }, + { + "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1", + "roleDefinitionId": "59a59e1d-c18a-4c7c-8a99-2b5b311f08d2" } ], "resourceTypes": [ @@ -57224,6 +57994,38 @@ } }, "capabilities": "None" + }, + { + "resourceType": "VirtualMachines/Extensions", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "VirtualMachines/GuestAgents", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2020-10-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" } ], "metadata": { @@ -57485,6 +58287,7 @@ "resourceType": "UsageDetails", "locations": [], "apiVersions": [ + "2021-01-01", "2019-11-01", "2019-10-01", "2019-05-01-preview", @@ -57631,32 +58434,33 @@ { "resourceType": "containerGroups", "locations": [ - "West Central US", - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57674,32 +58478,33 @@ { "resourceType": "serviceAssociationLinks", "locations": [ - "West Central US", - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57718,6 +58523,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57735,32 +58541,33 @@ { "resourceType": "locations/capabilities", "locations": [ - "West Central US", - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57778,32 +58585,33 @@ { "resourceType": "locations/usages", "locations": [ - "West Central US", - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57821,32 +58629,33 @@ { "resourceType": "locations/operations", "locations": [ - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", - "West Central US", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57864,32 +58673,33 @@ { "resourceType": "locations/operationresults", "locations": [ - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", - "West Central US", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57908,6 +58718,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-10-01", @@ -57925,67 +58736,77 @@ { "resourceType": "locations/cachedImages", "locations": [ - "West Central US", - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", - "2018-10-01" + "2018-10-01", + "2018-09-01", + "2018-07-01", + "2018-06-01", + "2018-04-01", + "2018-02-01-preview", + "2017-12-01-preview", + "2017-10-01-preview", + "2017-08-01-preview" ], "capabilities": "None" }, { "resourceType": "locations/deleteVirtualNetworkOrSubnets", "locations": [ - "West Central US", - "West US", - "East US", - "West Europe", - "West US 2", - "North Europe", - "Southeast Asia", - "East US 2", - "Central US", "Australia East", - "UK South", - "South Central US", - "Central India", "Brazil South", - "South India", - "North Central US", - "East Asia", "Canada Central", + "Central India", + "Central US", + "East US", + "East Asia", + "East US 2", + "France Central", + "Germany West Central", "Japan East", "Korea Central", - "France Central", + "North Central US", + "North Europe", + "South Central US", + "Southeast Asia", + "South India", "Switzerland North", - "Germany West Central", - "UAE North" + "UAE North", + "UK South", + "West Central US", + "West Europe", + "West US", + "West US 2" ], "apiVersions": [ + "2021-03-01", "2020-11-01", "2019-12-01", "2018-12-01", @@ -58003,84 +58824,90 @@ } ], "metadata": { - "Microsoft.ManagedIdentity": { - "applicationId": "6bb8e274-af5d-4df2-98a3-4fd78b4cafd9" - }, - "vnetSupportRegions": [ - "eastus2euap", - "westcentralus", - "centraluseuap", - "westus", - "westeurope", - "australiaeast", - "eastus", - "japaneast", - "northeurope", - "southeastasia", - "eastus2", - "westus2", - "centralus", - "southcentralus", - "canadacentral", - "koreacentral", - "francecentral" - ], "gpuRegionalSkus": [ { - "location": "eastus", "skus": [ - "V100", - "P100", - "K80" - ] + "V100" + ], + "location": "centralindia" }, { - "location": "southcentralus", "skus": [ "V100", "P100", "K80" - ] + ], + "location": "eastus" }, { - "location": "westus2", "skus": [ - "V100", - "P100", "K80" - ] + ], + "location": "northeurope" }, { - "location": "westeurope", "skus": [ "V100", "P100", "K80" - ] + ], + "location": "southcentralus" }, { - "location": "northeurope", "skus": [ - "K80" - ] + "V100", + "P100" + ], + "location": "southeastasia" }, { - "location": "centralindia", "skus": [ - "V100" - ] + "V100", + "P100", + "K80" + ], + "location": "westeurope" }, { - "location": "southeastasia", "skus": [ "V100", - "P100" - ] + "P100", + "K80" + ], + "location": "westus2" } ], + "vnetSupportRegions": [ + "australiaeast", + "brazilsouth", + "canadacentral", + "canadaeast", + "centralindia", + "centralus", + "centraluseuap", + "eastus", + "eastasia", + "eastus2", + "eastus2euap", + "francecentral", + "germanywestcentral", + "japaneast", + "koreacentral", + "northcentralus", + "northeurope", + "southcentralus", + "southeastasia", + "southindia", + "switzerlandnorth", + "uaenorth", + "uksouth", + "westcentralus", + "westeurope", + "westus", + "westus2" + ], "microsoft.insights": { "monitoringResourceProvider": { - "version": "1.0", "apiVersions": { "default": "2017-12-01-preview", "operations": "2017-12-01-preview" @@ -58093,13 +58920,17 @@ ], "mdmInfo": [ { + "sourceMdmNamespace": "AzureMonitoringMetrics", "enableRegionalMdmAccount": true, - "sourceMdmAccount": "MicrosoftContainerInstanceShoebox", - "sourceMdmNamespace": "AzureMonitoringMetrics" + "sourceMdmAccount": "MicrosoftContainerInstanceShoebox" } ] - } + }, + "version": "1.0" } + }, + "Microsoft.ManagedIdentity": { + "applicationId": "6bb8e274-af5d-4df2-98a3-4fd78b4cafd9" } }, "registrationState": "NotRegistered", @@ -59145,261 +59976,267 @@ "Brazil South", "Switzerland North", "France Central", - "UAE North" - ], - "apiVersions": [ - "2018-04-01" - ], - "metadata": { - "microsoft.insights": { - "monitoringResourceProvider": { - "version": "1.0", - "apiVersions": { - "default": "2018-04-01" - }, - "metrics": { - "mdsInfo": [ - { - "serviceIdentity": "DatabrickAuditLogs" - } - ], - "mdmInfo": [ - { - "sourceMdmAccount": "spearfishgenevahotpath", - "sourceMdmNamespace": "Canary" - } - ] - }, - "logs": { - "logFilterPathSelector": "sku.name", - "mdsInfo": [ - { - "serviceIdentity": "DatabrickAuditLogs", - "onbehalfSupportedLogCategories": [ - "dbfs", - "clusters", - "accounts", - "jobs", - "notebook", - "ssh", - "workspace", - "secrets", - "sqlPermissions", - "tables", - "instancePools" - ] - } - ] - } - } - } - }, - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "workspaces/virtualNetworkPeerings", - "locations": [ - "West US", - "East US 2", - "West Europe", - "North Europe", - "East US", - "Southeast Asia", - "East Asia", - "South Central US", - "North Central US", - "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", - "Korea Central", - "Korea South", - "South Africa North", - "South Africa West", - "UAE North", - "Brazil South", - "France Central", - "Switzerland North" - ], - "apiVersions": [ - "2018-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "workspaces/dbWorkspaces", - "locations": [ - "West US", - "East US 2", - "West Europe", - "North Europe", - "East US", - "Southeast Asia", - "East Asia", - "South Central US", - "North Central US", - "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", - "Korea Central", - "Korea South", - "South Africa North", - "South Africa West", "UAE North", - "Brazil South", - "France Central", - "Switzerland North" - ], - "apiVersions": [ - "2018-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "West US", - "East US 2", - "West Europe", - "North Europe", - "East US", - "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", - "UAE North", - "Brazil South", - "France Central" - ], - "apiVersions": [ - "2018-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [ - "West US", - "East US 2", - "West Europe", - "North Europe", - "East US", - "Southeast Asia", - "East Asia", - "South Central US", - "North Central US", - "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", - "Korea Central", - "Korea South", - "South Africa North", - "South Africa West", - "UAE North", - "Brazil South", - "France Central", - "Switzerland North" - ], - "apiVersions": [ - "2018-04-01", - "2018-03-15", - "2018-03-01", - "2017-09-01-preview", - "2017-08-01-preview", - "2016-09-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operationstatuses", - "locations": [ - "West US", - "East US 2", - "West Europe", - "East US", - "North Europe", - "Southeast Asia", - "East Asia", - "South Central US", - "North Central US", - "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", - "Korea Central", - "Korea South", - "South Africa West", - "South Africa North", - "Brazil South", - "Switzerland North", - "France Central", - "UAE North" + "Norway East" + ], + "apiVersions": [ + "2018-04-01" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "apiVersions": { + "default": "2018-04-01" + }, + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "DatabrickAuditLogs" + } + ], + "mdmInfo": [ + { + "sourceMdmAccount": "spearfishgenevahotpath", + "sourceMdmNamespace": "Canary" + } + ] + }, + "logs": { + "logFilterPathSelector": "sku.name", + "mdsInfo": [ + { + "serviceIdentity": "DatabrickAuditLogs", + "onbehalfSupportedLogCategories": [ + "dbfs", + "clusters", + "accounts", + "jobs", + "notebook", + "ssh", + "workspace", + "secrets", + "sqlPermissions", + "tables", + "instancePools" + ] + } + ] + } + } + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/virtualNetworkPeerings", + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "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", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North", + "Norway East" + ], + "apiVersions": [ + "2018-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/dbWorkspaces", + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "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", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North", + "Norway East" + ], + "apiVersions": [ + "2018-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "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", + "UAE North", + "Brazil South", + "France Central", + "Norway East" + ], + "apiVersions": [ + "2018-04-01" + ], + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "West US", + "East US 2", + "West Europe", + "North Europe", + "East US", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "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", + "Korea Central", + "Korea South", + "South Africa North", + "South Africa West", + "UAE North", + "Brazil South", + "France Central", + "Switzerland North", + "Norway East" + ], + "apiVersions": [ + "2018-04-01", + "2018-03-15", + "2018-03-01", + "2017-09-01-preview", + "2017-08-01-preview", + "2016-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationstatuses", + "locations": [ + "West US", + "East US 2", + "West Europe", + "East US", + "North Europe", + "Southeast Asia", + "East Asia", + "South Central US", + "North Central US", + "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", + "Korea Central", + "Korea South", + "South Africa West", + "South Africa North", + "Brazil South", + "Switzerland North", + "France Central", + "UAE North", + "Norway East" ], "apiVersions": [ "2018-04-01" @@ -59440,7 +60277,8 @@ "Brazil South", "Switzerland North", "France Central", - "UAE North" + "UAE North", + "Norway East" ], "apiVersions": [ "2018-04-01" @@ -60302,7 +61140,10 @@ "West US 2", "South Africa North", "UAE North", - "France Central" + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" ], "apiVersions": [ "2018-07-15-preview", @@ -60347,7 +61188,58 @@ "West US 2", "South Africa North", "UAE North", - "France Central" + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" + ], + "apiVersions": [ + "2018-07-15-preview", + "2018-04-19", + "2018-03-31-preview", + "2018-03-15-preview", + "2017-11-15-privatepreview", + "2017-11-15-preview", + "2017-04-15-privatepreview" + ], + "defaultApiVersion": "2018-07-15-preview", + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "locations/operationResults", + "locations": [ + "West Central US", + "Brazil South", + "West Europe", + "Australia East", + "East US", + "East US 2", + "Canada Central", + "East Asia", + "Central India", + "West India", + "Japan East", + "Korea South", + "North Central US", + "Australia Southeast", + "Canada East", + "Central US", + "South India", + "Japan West", + "Korea Central", + "North Europe", + "South Central US", + "Southeast Asia", + "UK West", + "West US", + "UK South", + "West US 2", + "South Africa North", + "UAE North", + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" ], "apiVersions": [ "2018-07-15-preview", @@ -60358,11 +61250,10 @@ "2017-11-15-preview", "2017-04-15-privatepreview" ], - "defaultApiVersion": "2018-07-15-preview", - "capabilities": "SupportsTags, SupportsLocation" + "capabilities": "None" }, { - "resourceType": "locations/operationResults", + "resourceType": "locations/operationStatuses", "locations": [ "West Central US", "Brazil South", @@ -60392,7 +61283,10 @@ "West US 2", "South Africa North", "UAE North", - "France Central" + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" ], "apiVersions": [ "2018-07-15-preview", @@ -60406,7 +61300,7 @@ "capabilities": "None" }, { - "resourceType": "locations/operationStatuses", + "resourceType": "locations/checkNameAvailability", "locations": [ "West Central US", "Brazil South", @@ -60436,7 +61330,10 @@ "West US 2", "South Africa North", "UAE North", - "France Central" + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central" ], "apiVersions": [ "2018-07-15-preview", @@ -60450,7 +61347,7 @@ "capabilities": "None" }, { - "resourceType": "locations/checkNameAvailability", + "resourceType": "operations", "locations": [ "West Central US", "Brazil South", @@ -60480,61 +61377,46 @@ "West US 2", "South Africa North", "UAE North", - "France Central" + "France Central", + "Norway East", + "Switzerland North", + "Germany West Central", + "East US 2 EUAP" + ], + "apiVersions": [], + "capabilities": "None" + }, + { + "resourceType": "SqlMigrationServices", + "locations": [ + "East US 2" ], "apiVersions": [ - "2018-07-15-preview", - "2018-04-19", - "2018-03-31-preview", - "2018-03-15-preview", - "2017-11-15-privatepreview", - "2017-11-15-preview", - "2017-04-15-privatepreview" + "2020-09-01-preview" ], - "capabilities": "None" + "defaultApiVersion": "2020-09-01-preview", + "capabilities": "SupportsTags, SupportsLocation" }, { - "resourceType": "operations", + "resourceType": "DatabaseMigrations", "locations": [ - "West Central US", - "Brazil South", - "West Europe", - "Australia East", - "East US", - "East US 2", - "Canada Central", - "East Asia", - "Central India", - "West India", - "Japan East", - "Korea South", - "North Central US", - "Australia Southeast", - "Canada East", - "Central US", - "South India", - "Japan West", - "Korea Central", - "North Europe", - "South Central US", - "Southeast Asia", - "UK West", - "West US", - "UK South", - "West US 2", - "South Africa North", - "UAE North", - "France Central" + "East US 2" ], "apiVersions": [ - "2018-07-15-preview", - "2018-04-19", - "2018-03-31-preview", - "2018-03-15-preview", - "2017-11-15-privatepreview", - "2017-11-15-preview", - "2017-04-15-privatepreview" + "2020-09-01-preview" + ], + "defaultApiVersion": "2020-09-01-preview", + "capabilities": "SupportsExtension" + }, + { + "resourceType": "Locations/OperationTypes", + "locations": [ + "East US 2" + ], + "apiVersions": [ + "2020-09-01-preview" ], + "defaultApiVersion": "2020-09-01-preview", "capabilities": "None" } ], @@ -60583,6 +61465,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -60592,6 +61475,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -60601,6 +61485,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -60644,6 +61529,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -60687,6 +61573,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -60730,6 +61617,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -60773,6 +61661,7 @@ "West US 2" ], "apiVersions": [ + "2021-02-01-preview", "2021-01-01", "2020-01-01-alpha" ], @@ -62663,16 +63552,10 @@ { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevOps", "namespace": "Microsoft.DevOps", - "authorizations": [ - { - "applicationId": "499b84ac-1321-427f-aa17-267ca6975798", - "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8" - }, - { - "applicationId": "4c3095a7-cc8a-4028-8301-c68ea6c2b42e", - "roleDefinitionId": "d637ba3a-8a38-41ec-a9e3-5e4a619e7530" - } - ], + "authorization": { + "applicationId": "499b84ac-1321-427f-aa17-267ca6975798", + "roleDefinitionId": "6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8" + }, "resourceTypes": [ { "resourceType": "pipelines", @@ -62705,45 +63588,8 @@ ], "defaultApiVersion": "2019-07-01-preview", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2020-12-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operationstatuses", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2020-12-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "deploymentdetails", - "locations": [], - "apiVersions": [ - "2020-12-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "Operations", - "locations": [], - "apiVersions": [ - "2020-12-01-preview" - ], - "capabilities": "None" } ], - "metadata": { - "onboardedVia": "ProviderHub" - }, "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, @@ -62757,7 +63603,6 @@ "West Europe", "Canada Central", "Central US", - "West US 2", "East US 2" ], "apiVersions": [ @@ -62771,7 +63616,6 @@ "West Europe", "Canada Central", "Central US", - "West US 2", "East US 2" ], "apiVersions": [ @@ -62785,7 +63629,6 @@ "West Europe", "Canada Central", "Central US", - "West US 2", "East US 2" ], "apiVersions": [ @@ -62800,7 +63643,6 @@ "West Europe", "Canada Central", "Central US", - "West US 2", "East US 2" ], "apiVersions": [ @@ -62814,7 +63656,6 @@ "West Europe", "Canada Central", "Central US", - "West US 2", "East US 2" ], "apiVersions": [ @@ -62828,7 +63669,6 @@ "West Europe", "Canada Central", "Central US", - "West US 2", "East US 2" ], "apiVersions": [ @@ -63603,6 +64443,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-03-15-preview", "2020-07-15-privatepreview" ], "capabilities": "None" @@ -63611,6 +64452,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-15-preview", "2020-07-15-privatepreview" ], "capabilities": "None" @@ -63719,6 +64561,7 @@ { "resourceType": "hanaInstances", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -63738,6 +64581,7 @@ { "resourceType": "sapMonitors", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -63762,6 +64606,7 @@ { "resourceType": "locations/operationsStatus", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -63792,6 +64637,7 @@ { "resourceType": "locations/operations", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -63814,6 +64660,7 @@ { "resourceType": "operations", "locations": [ + "Germany West Central", "West US", "West US 2", "East US", @@ -64240,6 +65087,10 @@ { "applicationId": "d2a590e7-6906-4a45-8f41-cecfdca9bca1", "roleDefinitionId": "f32ad452-2b05-4296-bee4-fc9056ed85fa" + }, + { + "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", + "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" } ], "resourceTypes": [ @@ -64781,6 +65632,28 @@ ], "capabilities": "None" }, + { + "resourceType": "locations/generateInvitationAuthCode", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/revokeInvitationAuthCode", + "locations": [ + "West Central US", + "East US 2" + ], + "apiVersions": [ + "2020-01-12-preview" + ], + "capabilities": "None" + }, { "resourceType": "locations/downloadInvitationFile", "locations": [ @@ -65172,6 +66045,25 @@ "defaultApiVersion": "2021-03-01", "capabilities": "SupportsExtension" }, + { + "resourceType": "extensions", + "locations": [ + "East US", + "West Europe", + "West Central US", + "West US 2", + "South Central US", + "East US 2", + "North Europe", + "UK South", + "Southeast Asia", + "Australia East" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "SystemAssignedResourceIdentity, SupportsExtension" + }, { "resourceType": "operations", "locations": [], @@ -65243,6 +66135,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65398,6 +66291,14 @@ "2", "3" ] + }, + { + "location": "Norway East", + "zones": [ + "1", + "2", + "3" + ] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -65443,6 +66344,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65497,6 +66399,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65551,6 +66454,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65600,6 +66504,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65654,6 +66559,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65708,6 +66614,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65757,6 +66664,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65774,6 +66682,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65828,6 +66737,7 @@ "West US 2" ], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65845,6 +66755,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-09-18", "2020-06-14", "2020-02-15", @@ -65857,6 +66768,52 @@ ], "defaultApiVersion": "2020-06-14", "capabilities": "None" + }, + { + "resourceType": "clusters/databases/scripts", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Brazil Southeast", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "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-01-01" + ], + "defaultApiVersion": "2021-01-01", + "capabilities": "None" } ], "metadata": { @@ -66121,9 +67078,185 @@ "2018-11-19", "2018-03-01-preview" ], - "defaultApiVersion": "2018-03-01-preview", + "defaultApiVersion": "2021-01-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/onlineEndpoints", + "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": [ + "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": [ + "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": [ + "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": [ + "2020-09-01-preview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "workspaces/batchEndpoints/jobs", + "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": [ + "2020-09-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "workspaces/batchEndpoints/deployments/jobs", + "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": [ + "2020-09-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "workspaces/computes", "locations": [ @@ -67238,6 +68371,7 @@ "resourceType": "managementGroups", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67256,6 +68390,7 @@ "resourceType": "getEntities", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67270,6 +68405,7 @@ "resourceType": "managementGroups/settings", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67281,6 +68417,7 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67295,6 +68432,7 @@ "resourceType": "operationResults", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67309,6 +68447,7 @@ "resourceType": "operationResults/asyncOperation", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67321,6 +68460,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67339,6 +68479,7 @@ "resourceType": "tenantBackfillStatus", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -67352,6 +68493,7 @@ "resourceType": "startTenantBackfill", "locations": [], "apiVersions": [ + "2021-04-01", "2020-10-01", "2020-05-01", "2020-02-01", @@ -68521,6 +69663,7 @@ "Australia East" ], "apiVersions": [ + "2020-11-11-preview", "2020-07-07" ], "capabilities": "SupportsTags, SupportsLocation" @@ -68680,6 +69823,7 @@ "South Africa West" ], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68693,6 +69837,7 @@ "resourceType": "peeringLocations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68706,6 +69851,7 @@ "resourceType": "legacyPeerings", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68719,6 +69865,7 @@ "resourceType": "peerAsns", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68761,6 +69908,7 @@ "South Africa West" ], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68774,6 +69922,7 @@ "resourceType": "peeringServiceCountries", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview" @@ -68785,6 +69934,7 @@ "resourceType": "peeringServiceLocations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68798,6 +69948,7 @@ "resourceType": "peeringServiceProviders", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68811,6 +69962,7 @@ "resourceType": "checkServiceProviderAvailability", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -68820,10 +69972,21 @@ "defaultApiVersion": "2020-04-01", "capabilities": "None" }, + { + "resourceType": "cdnPeeringPrefixes", + "locations": [], + "apiVersions": [ + "2021-01-01", + "2020-10-01" + ], + "defaultApiVersion": "2020-10-01", + "capabilities": "None" + }, { "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-04-01", "2020-01-01-preview", @@ -69328,9 +70491,10 @@ "resourceType": "enterprisePolicies", "locations": [], "apiVersions": [ + "2020-10-30-preview", "2020-10-30" ], - "capabilities": "None" + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" } ], "registrationState": "NotRegistered", @@ -70409,7 +71573,8 @@ "Norway East" ], "apiVersions": [ - "2018-12-20-preview" + "2018-12-20-preview", + "2018-12-20" ], "apiProfiles": [ { @@ -70821,6 +71986,7 @@ "East US" ], "apiVersions": [ + "2021-03-01", "2020-04-01-preview", "2019-04-01", "2018-09-01-preview" @@ -70869,6 +72035,7 @@ "East US" ], "apiVersions": [ + "2021-03-01", "2020-04-01-preview", "2019-04-01", "2018-09-01-preview" @@ -71426,7 +72593,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2019-05-01", @@ -71499,7 +72667,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2019-05-01", @@ -71697,6 +72866,7 @@ "resourceType": "deployments", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-06-01", "2019-09-01", @@ -71740,6 +72910,7 @@ "resourceType": "deployments/operations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-10-01", "2020-06-01", "2019-09-01", @@ -71868,6 +73039,8 @@ "Australia East", "Brazil South", "Canada Central", + "Switzerland North", + "Germany West Central", "East US 2", "East US", "Central US", @@ -71879,6 +73052,7 @@ "Japan East", "Korea Central", "North Europe", + "UAE North", "West Central US", "West Europe", "West US 2", @@ -71899,6 +73073,8 @@ "Australia East", "Brazil South", "Canada Central", + "Switzerland North", + "Germany West Central", "East US 2", "East US", "Central US", @@ -71910,6 +73086,7 @@ "Japan East", "Korea Central", "North Europe", + "UAE North", "West Central US", "West Europe", "West US 2", @@ -71930,6 +73107,8 @@ "Australia East", "Brazil South", "Canada Central", + "Switzerland North", + "Germany West Central", "East US 2", "East US", "Central US", @@ -71941,6 +73120,7 @@ "Japan East", "Korea Central", "North Europe", + "UAE North", "West Central US", "West Europe", "West US 2", @@ -72582,6 +73762,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-03-01-preview", "2020-01-01", "2019-01-01-preview" ], @@ -72597,7 +73778,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2021-03-01-preview", @@ -72616,7 +73799,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2021-03-01-preview", @@ -72635,7 +73820,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72652,7 +73839,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2020-01-01", @@ -72670,7 +73859,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2021-03-01-preview", @@ -72689,7 +73880,28 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" + ], + "apiVersions": [ + "2019-01-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "enrichment", + "locations": [ + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72706,7 +73918,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72723,7 +73937,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2020-01-01", @@ -72741,7 +73957,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72758,9 +73976,12 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ + "2021-03-01-preview", "2019-01-01-preview" ], "capabilities": "SupportsExtension" @@ -72775,7 +73996,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72792,7 +74015,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72809,7 +74034,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72826,7 +74053,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72843,7 +74072,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -72860,7 +74091,9 @@ "UK West", "France South", "Switzerland North", - "Switzerland West" + "Switzerland West", + "Norway East", + "Germany West Central" ], "apiVersions": [ "2019-01-01-preview" @@ -73000,7 +74233,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-01-privatepreview", @@ -73056,7 +74290,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-01-privatepreview", @@ -73135,7 +74370,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-15-privatepreview", @@ -73195,7 +74431,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-15-privatepreview", @@ -73255,7 +74492,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-15-privatepreview", @@ -73315,7 +74553,8 @@ "UAE North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-12-15-privatepreview", @@ -73372,7 +74611,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview", @@ -73386,7 +74627,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview", @@ -73400,7 +74643,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview" @@ -73413,7 +74658,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview" @@ -73426,7 +74673,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview" @@ -73439,7 +74688,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview" @@ -73452,7 +74703,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview", @@ -73466,7 +74719,9 @@ "East Asia", "North Europe", "West Central US", - "East US 2" + "East US 2", + "Southeast Asia", + "West Europe" ], "apiVersions": [ "2021-01-01-preview", @@ -73917,6 +75172,51 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServiceLinker", + "namespace": "Microsoft.ServiceLinker", + "authorizations": [ + { + "applicationId": "c4288165-6698-45ba-98a5-48ea7791fed3", + "roleDefinitionId": "57197417-7922-48fd-b5ed-7b142db155ea" + } + ], + "resourceTypes": [ + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "East US 2 EUAP", + "East US", + "West Central US" + ], + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-01-01-privatepreview" + ], + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ServicesHub", "namespace": "Microsoft.ServicesHub", @@ -74007,6 +75307,10 @@ { "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3", "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" + }, + { + "applicationId": "9581bc0e-c952-4fd3-8d99-e777877718b1", + "roleDefinitionId": "da5c10f8-3b94-4076-bb95-1421b4518aee" } ], "resourceTypes": [ @@ -74135,6 +75439,7 @@ "Canada East", "Central India", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -74156,8 +75461,7 @@ "UK South", "Brazil South", "Korea South", - "Korea Central", - "East US" + "Korea Central" ], "apiVersions": [ "2020-12-01-preview" @@ -74177,6 +75481,7 @@ "Canada East", "Central India", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -74198,8 +75503,7 @@ "UK South", "Brazil South", "Korea South", - "Korea Central", - "East US" + "Korea Central" ], "apiVersions": [ "2020-12-01-preview" @@ -74219,6 +75523,7 @@ "Canada East", "Central India", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -74240,8 +75545,7 @@ "UK South", "Brazil South", "Korea South", - "Korea Central", - "East US" + "Korea Central" ], "apiVersions": [ "2020-12-01-preview" @@ -74301,6 +75605,7 @@ "Central India", "Central US", "East Asia", + "East US", "East US 2", "France Central", "Germany West Central", @@ -74324,7 +75629,6 @@ "Brazil South", "Korea South", "Korea Central", - "East US", "South Central US" ], "apiVersions": [ @@ -74419,7 +75723,8 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-08-21-preview", @@ -74469,7 +75774,8 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-08-21-preview", @@ -74536,7 +75842,8 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-08-21-preview", @@ -74580,7 +75887,8 @@ "South Africa North", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West" ], "apiVersions": [ "2020-08-21-preview", @@ -76153,6 +77461,22 @@ ], "capabilities": "None" }, + { + "resourceType": "locations/testQuery", + "locations": [], + "apiVersions": [ + "2017-04-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/operationResults", + "locations": [], + "apiVersions": [ + "2017-04-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "operations", "locations": [ @@ -76649,7 +77973,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -76724,7 +78050,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -76793,7 +78121,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -76868,7 +78198,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2020-04-01-preview" @@ -76932,7 +78264,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2020-04-01-preview" @@ -76968,7 +78302,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2020-04-01-preview" @@ -77004,7 +78340,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2020-04-01-preview" @@ -77040,7 +78378,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2020-04-01-preview" @@ -77076,7 +78416,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -77114,7 +78456,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -77162,7 +78506,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -77200,7 +78546,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -77248,7 +78596,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -77286,7 +78636,9 @@ "Japan West", "France Central", "Switzerland North", - "Germany West Central" + "Germany West Central", + "Norway East", + "UAE North" ], "apiVersions": [ "2021-03-01", @@ -78116,6 +79468,11 @@ "2021-03-01-privatepreview", "2020-07-01-privatepreview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -78125,6 +79482,7 @@ "East US 2 EUAP" ], "apiVersions": [ + "2021-03-01-privatepreview", "2020-07-01-privatepreview" ], "capabilities": "None" @@ -78176,48 +79534,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Myget.PackageManagement", - "namespace": "Myget.PackageManagement", - "resourceTypes": [ - { - "resourceType": "services", - "locations": [ - "West Europe" - ], - "apiVersions": [ - "2015-01-01" - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2015-01-01" - ], - "capabilities": "None" - }, - { - "resourceType": "listCommunicationPreference", - "locations": [], - "apiVersions": [ - "2015-01-01" - ], - "capabilities": "None" - }, - { - "resourceType": "updateCommunicationPreference", - "locations": [], - "apiVersions": [ - "2015-01-01" - ], - "capabilities": "None" - } - ], - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Paraleap.CloudMonix", "namespace": "Paraleap.CloudMonix", @@ -78530,48 +79846,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/U2uconsult.TheIdentityHub", - "namespace": "U2uconsult.TheIdentityHub", - "resourceTypes": [ - { - "resourceType": "services", - "locations": [ - "West Europe" - ], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "None" - }, - { - "resourceType": "listCommunicationPreference", - "locations": [], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "None" - }, - { - "resourceType": "updateCommunicationPreference", - "locations": [], - "apiVersions": [ - "2015-06-15" - ], - "capabilities": "None" - } - ], - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Wandisco.Fusion", "namespace": "Wandisco.Fusion", 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 d849b89692602..d9f324633776f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|4dcab76b-4b7043cec43e23cc.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "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 )" + ], "x-ms-client-request-id": "fde1e93a0695fe71bc13502d3827c8af", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 18:56:34 GMT", + "Date": "Tue, 30 Mar 2021 18:06:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "769089ed-8930-4005-96b4-aed7c52b48f4", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "769089ed-8930-4005-96b4-aed7c52b48f4", - "x-ms-routing-request-id": "WESTUS:20210310T185635Z:769089ed-8930-4005-96b4-aed7c52b48f4" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-30b0b632cd2bf74b8607447ff5e03beb-9c8695e6663f4e4c-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-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 )" + ], "x-ms-client-request-id": "3d726b1de7729904587642ebee69403a", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 18:56:35 GMT", + "Date": "Tue, 30 Mar 2021 18:06:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf60a380-ef3b-458b-ad3b-87a5a09398f3", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "bf60a380-ef3b-458b-ad3b-87a5a09398f3", - "x-ms-routing-request-id": "WESTUS:20210310T185636Z:bf60a380-ef3b-458b-ad3b-87a5a09398f3" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3809", @@ -91,7 +97,11 @@ "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-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 )" + ], "x-ms-client-request-id": "ea3c4c7f24a73ca66dc276a5d00cfc3d", "x-ms-return-client-request-id": "true" }, @@ -100,17 +110,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:35 GMT", + "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": "2d14b8cd-6135-4915-81ce-2ada50c502ff", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "2d14b8cd-6135-4915-81ce-2ada50c502ff", - "x-ms-routing-request-id": "WESTUS:20210310T185636Z:2d14b8cd-6135-4915-81ce-2ada50c502ff" + "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": [] }, @@ -119,7 +129,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -128,17 +141,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:35 GMT", + "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": "3bd32082-1c9c-4207-af2d-510180a80630", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "3bd32082-1c9c-4207-af2d-510180a80630", - "x-ms-routing-request-id": "WESTUS:20210310T185636Z:3bd32082-1c9c-4207-af2d-510180a80630" + "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": [] }, @@ -147,7 +160,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -156,17 +172,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:37 GMT", + "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": "a832fd16-3447-4f12-9d01-2b67badc8dcc", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "a832fd16-3447-4f12-9d01-2b67badc8dcc", - "x-ms-routing-request-id": "WESTUS:20210310T185637Z:a832fd16-3447-4f12-9d01-2b67badc8dcc" + "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": [] }, @@ -175,7 +191,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -184,17 +203,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:38 GMT", + "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": "98ca1a61-20f3-4f65-969e-c1aae1001128", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "98ca1a61-20f3-4f65-969e-c1aae1001128", - "x-ms-routing-request-id": "WESTUS:20210310T185638Z:98ca1a61-20f3-4f65-969e-c1aae1001128" + "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": [] }, @@ -203,7 +222,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -212,17 +234,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:39 GMT", + "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": "200cd527-b4a7-4fab-b44b-292acfb66957", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "200cd527-b4a7-4fab-b44b-292acfb66957", - "x-ms-routing-request-id": "WESTUS:20210310T185639Z:200cd527-b4a7-4fab-b44b-292acfb66957" + "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": [] }, @@ -231,7 +253,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -240,17 +265,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:40 GMT", + "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": "bc95e975-bf54-4cea-b443-d665b9a56595", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "bc95e975-bf54-4cea-b443-d665b9a56595", - "x-ms-routing-request-id": "WESTUS:20210310T185641Z:bc95e975-bf54-4cea-b443-d665b9a56595" + "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": [] }, @@ -259,7 +284,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -268,17 +296,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:41 GMT", + "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": "3a5809bc-d8ac-48e1-a22d-0dddcccca920", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "3a5809bc-d8ac-48e1-a22d-0dddcccca920", - "x-ms-routing-request-id": "WESTUS:20210310T185642Z:3a5809bc-d8ac-48e1-a22d-0dddcccca920" + "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": [] }, @@ -287,7 +315,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -296,17 +327,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:42 GMT", + "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": "e5440945-2e08-4a2b-8ca0-4aa3df8e6ac1", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "e5440945-2e08-4a2b-8ca0-4aa3df8e6ac1", - "x-ms-routing-request-id": "WESTUS:20210310T185643Z:e5440945-2e08-4a2b-8ca0-4aa3df8e6ac1" + "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": [] }, @@ -315,7 +346,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -324,17 +358,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:43 GMT", + "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": "09b71d86-d74c-4a6c-9759-0ab19eb8d650", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "09b71d86-d74c-4a6c-9759-0ab19eb8d650", - "x-ms-routing-request-id": "WESTUS:20210310T185644Z:09b71d86-d74c-4a6c-9759-0ab19eb8d650" + "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": [] }, @@ -343,7 +377,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -352,17 +389,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:44 GMT", + "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": "7e228b1c-6943-47d9-ab33-93c797649e57", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "7e228b1c-6943-47d9-ab33-93c797649e57", - "x-ms-routing-request-id": "WESTUS:20210310T185645Z:7e228b1c-6943-47d9-ab33-93c797649e57" + "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": [] }, @@ -371,7 +408,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -380,17 +420,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:45 GMT", + "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": "d59b02a6-8cd9-4f72-b5fd-0eff0ed250be", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "d59b02a6-8cd9-4f72-b5fd-0eff0ed250be", - "x-ms-routing-request-id": "WESTUS:20210310T185646Z:d59b02a6-8cd9-4f72-b5fd-0eff0ed250be" + "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": [] }, @@ -399,7 +439,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -408,17 +451,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:46 GMT", + "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": "308bfd3b-9b6b-4b6a-80c1-e1774e5a0fe6", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "308bfd3b-9b6b-4b6a-80c1-e1774e5a0fe6", - "x-ms-routing-request-id": "WESTUS:20210310T185647Z:308bfd3b-9b6b-4b6a-80c1-e1774e5a0fe6" + "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": [] }, @@ -427,7 +470,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -436,17 +482,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:47 GMT", + "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": "75d67ead-105f-4a25-9af9-05bb2c8ea72f", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "75d67ead-105f-4a25-9af9-05bb2c8ea72f", - "x-ms-routing-request-id": "WESTUS:20210310T185648Z:75d67ead-105f-4a25-9af9-05bb2c8ea72f" + "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": [] }, @@ -455,7 +501,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -464,17 +513,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:49 GMT", + "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": "de8d2644-9f6d-4f30-aa3b-bfabaf348ae1", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "de8d2644-9f6d-4f30-aa3b-bfabaf348ae1", - "x-ms-routing-request-id": "WESTUS:20210310T185649Z:de8d2644-9f6d-4f30-aa3b-bfabaf348ae1" + "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": [] }, @@ -483,7 +532,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -492,17 +544,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:50 GMT", + "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": "c0eeb4c8-781b-4d57-bcd8-9458e1166673", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "c0eeb4c8-781b-4d57-bcd8-9458e1166673", - "x-ms-routing-request-id": "WESTUS:20210310T185651Z:c0eeb4c8-781b-4d57-bcd8-9458e1166673" + "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": [] }, @@ -511,7 +563,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -520,17 +575,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:51 GMT", + "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": "ed158e09-0c6d-4663-8826-96a8212ae756", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "ed158e09-0c6d-4663-8826-96a8212ae756", - "x-ms-routing-request-id": "WESTUS:20210310T185652Z:ed158e09-0c6d-4663-8826-96a8212ae756" + "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": [] }, @@ -539,7 +594,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -548,17 +606,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:52 GMT", + "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": "efc5df94-0313-4ae7-82b9-bfe15e7eda75", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "efc5df94-0313-4ae7-82b9-bfe15e7eda75", - "x-ms-routing-request-id": "WESTUS:20210310T185653Z:efc5df94-0313-4ae7-82b9-bfe15e7eda75" + "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": [] }, @@ -567,7 +625,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -576,17 +637,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:53 GMT", + "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": "1c41f1ca-999b-4c9a-b039-d826683c0a14", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "1c41f1ca-999b-4c9a-b039-d826683c0a14", - "x-ms-routing-request-id": "WESTUS:20210310T185654Z:1c41f1ca-999b-4c9a-b039-d826683c0a14" + "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": [] }, @@ -595,7 +656,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -604,17 +668,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:54 GMT", + "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": "4c7df565-624f-48b2-9b24-e9475736092a", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "4c7df565-624f-48b2-9b24-e9475736092a", - "x-ms-routing-request-id": "WESTUS:20210310T185655Z:4c7df565-624f-48b2-9b24-e9475736092a" + "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": [] }, @@ -623,7 +687,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -632,17 +699,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:55 GMT", + "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": "2450b52f-ba16-4352-ad62-cb7025f00e50", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "2450b52f-ba16-4352-ad62-cb7025f00e50", - "x-ms-routing-request-id": "WESTUS:20210310T185656Z:2450b52f-ba16-4352-ad62-cb7025f00e50" + "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": [] }, @@ -651,7 +718,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -660,17 +730,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:56 GMT", + "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": "c2eaf3df-4a2e-4bd4-bf57-ec55810bcd8d", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "c2eaf3df-4a2e-4bd4-bf57-ec55810bcd8d", - "x-ms-routing-request-id": "WESTUS:20210310T185657Z:c2eaf3df-4a2e-4bd4-bf57-ec55810bcd8d" + "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": [] }, @@ -679,7 +749,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -688,17 +761,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:57 GMT", + "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": "41f58330-707d-4369-b57a-5ae5f556e2ab", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "41f58330-707d-4369-b57a-5ae5f556e2ab", - "x-ms-routing-request-id": "WESTUS:20210310T185658Z:41f58330-707d-4369-b57a-5ae5f556e2ab" + "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": [] }, @@ -707,7 +780,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -716,17 +792,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:58 GMT", + "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": "d4b3cdde-f6cf-4385-8a76-30e616c38216", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "d4b3cdde-f6cf-4385-8a76-30e616c38216", - "x-ms-routing-request-id": "WESTUS:20210310T185659Z:d4b3cdde-f6cf-4385-8a76-30e616c38216" + "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": [] }, @@ -735,7 +811,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -744,17 +823,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:00 GMT", + "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": "afdc3970-72e8-48a7-a593-0f831662eda4", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "afdc3970-72e8-48a7-a593-0f831662eda4", - "x-ms-routing-request-id": "WESTUS:20210310T185700Z:afdc3970-72e8-48a7-a593-0f831662eda4" + "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": [] }, @@ -763,7 +842,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -772,17 +854,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:01 GMT", + "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": "853e02cf-a8db-4fcf-9da7-3dd0ffa1a716", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "853e02cf-a8db-4fcf-9da7-3dd0ffa1a716", - "x-ms-routing-request-id": "WESTUS:20210310T185701Z:853e02cf-a8db-4fcf-9da7-3dd0ffa1a716" + "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": [] }, @@ -791,7 +873,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -800,17 +885,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:02 GMT", + "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": "e36ba6be-1079-4d53-b8da-521f95c023a5", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "e36ba6be-1079-4d53-b8da-521f95c023a5", - "x-ms-routing-request-id": "WESTUS:20210310T185703Z:e36ba6be-1079-4d53-b8da-521f95c023a5" + "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": [] }, @@ -819,7 +904,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -828,17 +916,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:03 GMT", + "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": "ddecb950-97d1-4382-963b-ee5a803529ef", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "ddecb950-97d1-4382-963b-ee5a803529ef", - "x-ms-routing-request-id": "WESTUS:20210310T185704Z:ddecb950-97d1-4382-963b-ee5a803529ef" + "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": [] }, @@ -847,7 +935,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -856,17 +947,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:04 GMT", + "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": "af3c5f18-bd97-45e0-9c38-cf760bfad26d", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-request-id": "af3c5f18-bd97-45e0-9c38-cf760bfad26d", - "x-ms-routing-request-id": "WESTUS:20210310T185705Z:af3c5f18-bd97-45e0-9c38-cf760bfad26d" + "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": [] }, @@ -875,7 +966,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -884,17 +978,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:06 GMT", + "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": "0a6e8141-a826-4427-95d3-ba441c6f02a2", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "0a6e8141-a826-4427-95d3-ba441c6f02a2", - "x-ms-routing-request-id": "WESTUS:20210310T185706Z:0a6e8141-a826-4427-95d3-ba441c6f02a2" + "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": [] }, @@ -903,7 +997,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -912,17 +1009,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:07 GMT", + "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": "5b63e0ad-c36b-4c8c-90f2-da93b29a89b6", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "5b63e0ad-c36b-4c8c-90f2-da93b29a89b6", - "x-ms-routing-request-id": "WESTUS:20210310T185707Z:5b63e0ad-c36b-4c8c-90f2-da93b29a89b6" + "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": [] }, @@ -931,24 +1028,10319 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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": 200, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:08 GMT", + "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": "364cee09-a46d-4e6a-a64b-3d88fdc9f9d5", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "364cee09-a46d-4e6a-a64b-3d88fdc9f9d5", - "x-ms-routing-request-id": "WESTUS:20210310T185708Z:364cee09-a46d-4e6a-a64b-3d88fdc9f9d5" + "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" }, "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 1bd368d09d658..e1468a3707c26 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,8 +6,10 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4d0efbbc21556e4286e4dd35426bd5c0-395788b51745ce4e-00", - "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "fa2ef457757d9b442c1db93ad69fe692", "x-ms-return-client-request-id": "true" }, @@ -17,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 18:56:34 GMT", + "Date": "Tue, 30 Mar 2021 18:06:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7decb239-a8a6-48ff-a4b1-4237b70d3965", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "7decb239-a8a6-48ff-a4b1-4237b70d3965", - "x-ms-routing-request-id": "WESTUS:20210310T185634Z:7decb239-a8a6-48ff-a4b1-4237b70d3965" + "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" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +52,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-796fdd8933577349bf1c25c54d97633e-e7f8f53bd1a9964c-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-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 )" + ], "x-ms-client-request-id": "5186692cac050d7d79a4b9d1fe39028a", "x-ms-return-client-request-id": "true" }, @@ -64,15 +69,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 18:56:35 GMT", + "Date": "Tue, 30 Mar 2021 18:06:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "adeb2f17-2b34-4523-9e04-e5ba14fac3dd", + "x-ms-correlation-request-id": "a07449d0-4eb1-4615-9b50-c08d697ccb00", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "adeb2f17-2b34-4523-9e04-e5ba14fac3dd", - "x-ms-routing-request-id": "WESTUS:20210310T185635Z:adeb2f17-2b34-4523-9e04-e5ba14fac3dd" + "x-ms-request-id": "a07449d0-4eb1-4615-9b50-c08d697ccb00", + "x-ms-routing-request-id": "WESTUS:20210330T180619Z:a07449d0-4eb1-4615-9b50-c08d697ccb00" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9243", @@ -91,8 +96,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d2b25adabcf5254ea73388b3cd8633e9-8a7cea22bb0a7248-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-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 )" + ], "x-ms-client-request-id": "42ec7da7387011849116b5a7432ed035", "x-ms-return-client-request-id": "true" }, @@ -101,17 +109,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:35 GMT", + "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": "88f3815a-e79a-4b61-9301-34aa2cb5fd26", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-request-id": "88f3815a-e79a-4b61-9301-34aa2cb5fd26", - "x-ms-routing-request-id": "WESTUS:20210310T185636Z:88f3815a-e79a-4b61-9301-34aa2cb5fd26" + "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": [] }, @@ -120,7 +128,11 @@ "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.19042 )", + "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" }, @@ -129,17 +141,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:35 GMT", + "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": "4fa64522-47d5-4e98-9249-4b364992790f", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "4fa64522-47d5-4e98-9249-4b364992790f", - "x-ms-routing-request-id": "WESTUS:20210310T185636Z:4fa64522-47d5-4e98-9249-4b364992790f" + "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": [] }, @@ -148,7 +160,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -157,17 +172,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:36 GMT", + "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": "350a5ebb-960e-45e7-a519-2a45e20ac6b7", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "350a5ebb-960e-45e7-a519-2a45e20ac6b7", - "x-ms-routing-request-id": "WESTUS:20210310T185637Z:350a5ebb-960e-45e7-a519-2a45e20ac6b7" + "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": [] }, @@ -176,7 +191,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -185,17 +203,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:38 GMT", + "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": "78e8f97c-5f50-446f-87e3-ec707f7dbbe4", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "78e8f97c-5f50-446f-87e3-ec707f7dbbe4", - "x-ms-routing-request-id": "WESTUS:20210310T185638Z:78e8f97c-5f50-446f-87e3-ec707f7dbbe4" + "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": [] }, @@ -204,7 +222,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -213,17 +234,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:39 GMT", + "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": "29451021-de80-47a9-ae40-afc160bfad2b", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "29451021-de80-47a9-ae40-afc160bfad2b", - "x-ms-routing-request-id": "WESTUS:20210310T185639Z:29451021-de80-47a9-ae40-afc160bfad2b" + "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": [] }, @@ -232,7 +253,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -241,17 +265,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:40 GMT", + "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": "3278b74f-a120-4628-854a-93d58680fd51", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "3278b74f-a120-4628-854a-93d58680fd51", - "x-ms-routing-request-id": "WESTUS:20210310T185640Z:3278b74f-a120-4628-854a-93d58680fd51" + "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": [] }, @@ -260,7 +284,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -269,17 +296,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:41 GMT", + "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": "71e268c4-79ef-476d-a578-25e9ae6fa0b4", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-request-id": "71e268c4-79ef-476d-a578-25e9ae6fa0b4", - "x-ms-routing-request-id": "WESTUS:20210310T185642Z:71e268c4-79ef-476d-a578-25e9ae6fa0b4" + "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": [] }, @@ -288,7 +315,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -297,17 +327,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:42 GMT", + "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": "7131f8d3-edc1-4071-a4b0-60012be966ef", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "7131f8d3-edc1-4071-a4b0-60012be966ef", - "x-ms-routing-request-id": "WESTUS:20210310T185643Z:7131f8d3-edc1-4071-a4b0-60012be966ef" + "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": [] }, @@ -316,7 +346,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -325,17 +358,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:43 GMT", + "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": "72a147be-03b7-4f5a-aec8-a77ae0310ec2", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "72a147be-03b7-4f5a-aec8-a77ae0310ec2", - "x-ms-routing-request-id": "WESTUS:20210310T185644Z:72a147be-03b7-4f5a-aec8-a77ae0310ec2" + "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": [] }, @@ -344,7 +377,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -353,17 +389,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:44 GMT", + "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": "1bac0b3f-4c80-4704-8fd1-8cd307432938", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "1bac0b3f-4c80-4704-8fd1-8cd307432938", - "x-ms-routing-request-id": "WESTUS:20210310T185645Z:1bac0b3f-4c80-4704-8fd1-8cd307432938" + "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": [] }, @@ -372,7 +408,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -381,17 +420,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:45 GMT", + "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": "7beff0a7-5b5b-4d4c-95c7-d81ce5c858ed", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "7beff0a7-5b5b-4d4c-95c7-d81ce5c858ed", - "x-ms-routing-request-id": "WESTUS:20210310T185646Z:7beff0a7-5b5b-4d4c-95c7-d81ce5c858ed" + "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": [] }, @@ -400,7 +439,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -409,17 +451,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:46 GMT", + "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": "15b8fdb4-4561-4d5a-a6b5-1f31dbb1c545", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "15b8fdb4-4561-4d5a-a6b5-1f31dbb1c545", - "x-ms-routing-request-id": "WESTUS:20210310T185647Z:15b8fdb4-4561-4d5a-a6b5-1f31dbb1c545" + "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": [] }, @@ -428,7 +470,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -437,17 +482,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:47 GMT", + "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": "ccb2d0c5-14f1-447c-92b2-98a3cbbdc1b6", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "ccb2d0c5-14f1-447c-92b2-98a3cbbdc1b6", - "x-ms-routing-request-id": "WESTUS:20210310T185648Z:ccb2d0c5-14f1-447c-92b2-98a3cbbdc1b6" + "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": [] }, @@ -456,7 +501,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -465,17 +513,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:48 GMT", + "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": "bc36f985-ce86-4720-a355-f0b6c617e9f9", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "bc36f985-ce86-4720-a355-f0b6c617e9f9", - "x-ms-routing-request-id": "WESTUS:20210310T185649Z:bc36f985-ce86-4720-a355-f0b6c617e9f9" + "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": [] }, @@ -484,7 +532,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -493,17 +544,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:50 GMT", + "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": "afae13cd-c6c7-42d9-9240-d7665e44dc91", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "afae13cd-c6c7-42d9-9240-d7665e44dc91", - "x-ms-routing-request-id": "WESTUS:20210310T185650Z:afae13cd-c6c7-42d9-9240-d7665e44dc91" + "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": [] }, @@ -512,7 +563,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -521,17 +575,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:51 GMT", + "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": "f92abc52-f0ae-4ae1-9fc0-7ccafc075a85", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "f92abc52-f0ae-4ae1-9fc0-7ccafc075a85", - "x-ms-routing-request-id": "WESTUS:20210310T185652Z:f92abc52-f0ae-4ae1-9fc0-7ccafc075a85" + "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": [] }, @@ -540,7 +594,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -549,17 +606,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:52 GMT", + "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": "ab64a89c-d559-4909-a81b-7ce5e08bbd8e", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "ab64a89c-d559-4909-a81b-7ce5e08bbd8e", - "x-ms-routing-request-id": "WESTUS:20210310T185653Z:ab64a89c-d559-4909-a81b-7ce5e08bbd8e" + "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": [] }, @@ -568,7 +625,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -577,17 +637,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:53 GMT", + "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": "70a31813-6b56-4d36-8200-d8ac1fb90419", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "70a31813-6b56-4d36-8200-d8ac1fb90419", - "x-ms-routing-request-id": "WESTUS:20210310T185654Z:70a31813-6b56-4d36-8200-d8ac1fb90419" + "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": [] }, @@ -596,7 +656,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -605,17 +668,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:54 GMT", + "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": "30255a0b-88a3-49ee-a9f9-95a2d24d434a", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "30255a0b-88a3-49ee-a9f9-95a2d24d434a", - "x-ms-routing-request-id": "WESTUS:20210310T185655Z:30255a0b-88a3-49ee-a9f9-95a2d24d434a" + "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": [] }, @@ -624,7 +687,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -633,17 +699,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:55 GMT", + "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": "04556730-5393-45d1-b80b-aa91dcdee2b8", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "04556730-5393-45d1-b80b-aa91dcdee2b8", - "x-ms-routing-request-id": "WESTUS:20210310T185656Z:04556730-5393-45d1-b80b-aa91dcdee2b8" + "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": [] }, @@ -652,7 +718,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -661,17 +730,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:56 GMT", + "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": "86d42cdc-6a28-4f5a-b625-61aa228b4b8c", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "86d42cdc-6a28-4f5a-b625-61aa228b4b8c", - "x-ms-routing-request-id": "WESTUS:20210310T185657Z:86d42cdc-6a28-4f5a-b625-61aa228b4b8c" + "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": [] }, @@ -680,7 +749,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -689,17 +761,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:57 GMT", + "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": "d4e5e362-6ef1-4690-9998-913242546c79", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "d4e5e362-6ef1-4690-9998-913242546c79", - "x-ms-routing-request-id": "WESTUS:20210310T185658Z:d4e5e362-6ef1-4690-9998-913242546c79" + "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": [] }, @@ -708,7 +780,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -717,17 +792,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:58 GMT", + "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": "6ed27bf8-7a14-4c7f-8549-c69a3fb8318e", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "6ed27bf8-7a14-4c7f-8549-c69a3fb8318e", - "x-ms-routing-request-id": "WESTUS:20210310T185659Z:6ed27bf8-7a14-4c7f-8549-c69a3fb8318e" + "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": [] }, @@ -736,7 +811,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -745,17 +823,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:56:59 GMT", + "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": "a19d56e0-9656-4a7c-9903-76730ee00458", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "a19d56e0-9656-4a7c-9903-76730ee00458", - "x-ms-routing-request-id": "WESTUS:20210310T185700Z:a19d56e0-9656-4a7c-9903-76730ee00458" + "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": [] }, @@ -764,7 +842,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -773,17 +854,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:01 GMT", + "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": "20a899b8-a246-4f24-93c4-7de2977a7f01", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-request-id": "20a899b8-a246-4f24-93c4-7de2977a7f01", - "x-ms-routing-request-id": "WESTUS:20210310T185701Z:20a899b8-a246-4f24-93c4-7de2977a7f01" + "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": [] }, @@ -792,7 +873,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -801,17 +885,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:02 GMT", + "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": "5e9c8927-f508-49ec-923d-dc08e4fdc019", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "5e9c8927-f508-49ec-923d-dc08e4fdc019", - "x-ms-routing-request-id": "WESTUS:20210310T185703Z:5e9c8927-f508-49ec-923d-dc08e4fdc019" + "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": [] }, @@ -820,7 +904,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -829,17 +916,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:03 GMT", + "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": "f18ecebc-92d5-4ed4-bced-b878e5b9bc43", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-request-id": "f18ecebc-92d5-4ed4-bced-b878e5b9bc43", - "x-ms-routing-request-id": "WESTUS:20210310T185704Z:f18ecebc-92d5-4ed4-bced-b878e5b9bc43" + "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": [] }, @@ -848,7 +935,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -857,17 +947,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:04 GMT", + "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": "246b11e1-6621-4a75-a705-69063e58562d", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-request-id": "246b11e1-6621-4a75-a705-69063e58562d", - "x-ms-routing-request-id": "WESTUS:20210310T185705Z:246b11e1-6621-4a75-a705-69063e58562d" + "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": [] }, @@ -876,7 +966,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -885,17 +978,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:05 GMT", + "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": "96061f46-7a2e-467e-b6ca-49039c1b3343", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-request-id": "96061f46-7a2e-467e-b6ca-49039c1b3343", - "x-ms-routing-request-id": "WESTUS:20210310T185706Z:96061f46-7a2e-467e-b6ca-49039c1b3343" + "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": [] }, @@ -904,7 +997,10 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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" }, @@ -913,17 +1009,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 10 Mar 2021 18:57:06 GMT", + "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": "377122a0-140a-4840-85f5-ec0893cea231", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-request-id": "377122a0-140a-4840-85f5-ec0893cea231", - "x-ms-routing-request-id": "WESTUS:20210310T185707Z:377122a0-140a-4840-85f5-ec0893cea231" + "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": [] }, @@ -932,24 +1028,58 @@ "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.19042 )", + "User-Agent": [ + "azsdk-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": "Wed, 10 Mar 2021 18:57:07 GMT", + "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": "0e490f05-32c4-47d4-baa6-63a9e2ec8df4", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "0e490f05-32c4-47d4-baa6-63a9e2ec8df4", - "x-ms-routing-request-id": "WESTUS:20210310T185708Z:0e490f05-32c4-47d4-baa6-63a9e2ec8df4" + "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" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/GetSubscriptionOperation().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/GetSubscriptionOperation().json index 811e04db2f942..d2c02d74c5395 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/GetSubscriptionOperation().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/GetSubscriptionOperation().json @@ -6,7 +6,10 @@ "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 Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "795fad1a30d20a1bfed6e99e6fb43cc2", "x-ms-return-client-request-id": "true" }, @@ -16,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 01:04:21 GMT", + "Date": "Tue, 30 Mar 2021 07:42:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "002bbdb4-58cc-4b30-973f-248cb3f9f24e", + "x-ms-correlation-request-id": "402e4372-3a49-4141-ad6a-6fe720238bcc", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "002bbdb4-58cc-4b30-973f-248cb3f9f24e", - "x-ms-routing-request-id": "WESTUS:20210330T010421Z:002bbdb4-58cc-4b30-973f-248cb3f9f24e" + "x-ms-request-id": "402e4372-3a49-4141-ad6a-6fe720238bcc", + "x-ms-routing-request-id": "WESTUS:20210330T074216Z:402e4372-3a49-4141-ad6a-6fe720238bcc" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te#st%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te#st%).json index 23c0fb258d645..6a821422e011b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te#st%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te#st%).json @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:49 GMT", + "Date": "Tue, 30 Mar 2021 07:42:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba5faa24-9f58-4af2-88e0-0ede0615aa31", + "x-ms-correlation-request-id": "74c3da20-0ba5-4d84-ab64-b0937c150190", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "ba5faa24-9f58-4af2-88e0-0ede0615aa31", - "x-ms-routing-request-id": "WESTUS:20210330T001950Z:ba5faa24-9f58-4af2-88e0-0ede0615aa31" + "x-ms-request-id": "74c3da20-0ba5-4d84-ab64-b0937c150190", + "x-ms-routing-request-id": "WESTUS:20210330T074217Z:74c3da20-0ba5-4d84-ab64-b0937c150190" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te$st%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te$st%).json index 2ba16928296ed..436ab55bef041 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te$st%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te$st%).json @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:49 GMT", + "Date": "Tue, 30 Mar 2021 07:42:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bde297b8-e72e-43b0-b446-6c62ca17cf96", + "x-ms-correlation-request-id": "7e411c15-8185-4a6e-abbe-55742062dbe3", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "bde297b8-e72e-43b0-b446-6c62ca17cf96", - "x-ms-routing-request-id": "WESTUS:20210330T001950Z:bde297b8-e72e-43b0-b446-6c62ca17cf96" + "x-ms-request-id": "7e411c15-8185-4a6e-abbe-55742062dbe3", + "x-ms-routing-request-id": "WESTUS:20210330T074217Z:7e411c15-8185-4a6e-abbe-55742062dbe3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te%st%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te%st%).json index acbff1b581aac..59029645bbba2 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te%st%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%te%st%).json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0c66babf902b0b4793218be1b345b517-09a0b6346896c74e-00", + "traceparent": "00-2c697c825bcf27458de24e6a221984e8-e607fec94528574e-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" @@ -20,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:49 GMT", + "Date": "Tue, 30 Mar 2021 07:42:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60c7bc82-2739-4a79-a312-9768f7e61ddb", + "x-ms-correlation-request-id": "d737b722-2b31-4874-b039-84c79758f69c", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "60c7bc82-2739-4a79-a312-9768f7e61ddb", - "x-ms-routing-request-id": "WESTUS:20210330T001949Z:60c7bc82-2739-4a79-a312-9768f7e61ddb" + "x-ms-request-id": "d737b722-2b31-4874-b039-84c79758f69c", + "x-ms-routing-request-id": "WESTUS:20210330T074216Z:d737b722-2b31-4874-b039-84c79758f69c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%test %).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%test %).json index 6c1cc7b0d2acc..9669fc09bb1b8 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%test %).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgException(%test %).json @@ -6,7 +6,6 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-828ff47e59ab71439b6a1c9ad7b14585-108d8f983a043249-00", "User-Agent": [ "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" @@ -20,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:49 GMT", + "Date": "Tue, 30 Mar 2021 07:42:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f684b0b3-1555-4da1-aabb-7e3a80cf7d82", + "x-ms-correlation-request-id": "f1dcc146-1c6d-493e-9590-d6bad77492d0", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "f684b0b3-1555-4da1-aabb-7e3a80cf7d82", - "x-ms-routing-request-id": "WESTUS:20210330T001949Z:f684b0b3-1555-4da1-aabb-7e3a80cf7d82" + "x-ms-request-id": "f1dcc146-1c6d-493e-9590-d6bad77492d0", + "x-ms-routing-request-id": "WESTUS:20210330T074216Z:f1dcc146-1c6d-493e-9590-d6bad77492d0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(%%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(%%).json index 9bf7e742418c9..2dcc4bdca9c30 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(%%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(%%).json @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:50 GMT", + "Date": "Tue, 30 Mar 2021 07:42:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e320bf5-a855-4e50-afc3-44b4037631d3", + "x-ms-correlation-request-id": "c5c60869-515d-4ba8-b89e-b934d4915fdf", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "5e320bf5-a855-4e50-afc3-44b4037631d3", - "x-ms-routing-request-id": "WESTUS:20210330T001950Z:5e320bf5-a855-4e50-afc3-44b4037631d3" + "x-ms-request-id": "c5c60869-515d-4ba8-b89e-b934d4915fdf", + "x-ms-routing-request-id": "WESTUS:20210330T074218Z:c5c60869-515d-4ba8-b89e-b934d4915fdf" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(null).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(null).json index 5105320bf8de5..a064b30e738e6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(null).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsArgNullException(null).json @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:49 GMT", + "Date": "Tue, 30 Mar 2021 07:42:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f12bf906-de22-4dcf-a581-d5d4f0df0060", + "x-ms-correlation-request-id": "4f446ce5-30dd-4155-a17a-902458013f47", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "f12bf906-de22-4dcf-a581-d5d4f0df0060", - "x-ms-routing-request-id": "WESTUS:20210330T001950Z:f12bf906-de22-4dcf-a581-d5d4f0df0060" + "x-ms-request-id": "4f446ce5-30dd-4155-a17a-902458013f47", + "x-ms-routing-request-id": "WESTUS:20210330T074218Z:4f446ce5-30dd-4155-a17a-902458013f47" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(89).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(89).json index 9f964b922d61d..269c2b1b11a71 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(89).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(89).json @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:50 GMT", + "Date": "Tue, 30 Mar 2021 07:42:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4dee6cb8-f56f-416a-aa37-c25e38ff26f5", + "x-ms-correlation-request-id": "782672b9-0846-43e7-a1ab-4d7590addacb", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "4dee6cb8-f56f-416a-aa37-c25e38ff26f5", - "x-ms-routing-request-id": "WESTUS:20210330T001951Z:4dee6cb8-f56f-416a-aa37-c25e38ff26f5" + "x-ms-request-id": "782672b9-0846-43e7-a1ab-4d7590addacb", + "x-ms-routing-request-id": "WESTUS:20210330T074218Z:782672b9-0846-43e7-a1ab-4d7590addacb" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(90).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(90).json index c11065a3d5cec..29d188d5bb04e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(90).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsLong(90).json @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:50 GMT", + "Date": "Tue, 30 Mar 2021 07:42:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "355cb43c-1e5e-4fdb-a36d-43483ec12da5", + "x-ms-correlation-request-id": "cfc9532a-6bd1-4140-a4ae-f874f97c0168", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "355cb43c-1e5e-4fdb-a36d-43483ec12da5", - "x-ms-routing-request-id": "WESTUS:20210330T001951Z:355cb43c-1e5e-4fdb-a36d-43483ec12da5" + "x-ms-request-id": "cfc9532a-6bd1-4140-a4ae-f874f97c0168", + "x-ms-routing-request-id": "WESTUS:20210330T074218Z:cfc9532a-6bd1-4140-a4ae-f874f97c0168" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsOutOfRangeArgException(91).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsOutOfRangeArgException(91).json index df736d00e9eda..1e912bd72a39d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsOutOfRangeArgException(91).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsOutOfRangeArgException(91).json @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:50 GMT", + "Date": "Tue, 30 Mar 2021 07:42:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "696301a0-ff64-4fdb-b4b5-4c1a26487a37", + "x-ms-correlation-request-id": "b16eef7e-0842-497f-aabb-e2e64e2de9aa", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "696301a0-ff64-4fdb-b4b5-4c1a26487a37", - "x-ms-routing-request-id": "WESTUS:20210330T001951Z:696301a0-ff64-4fdb-b4b5-4c1a26487a37" + "x-ms-request-id": "b16eef7e-0842-497f-aabb-e2e64e2de9aa", + "x-ms-routing-request-id": "WESTUS:20210330T074218Z:b16eef7e-0842-497f-aabb-e2e64e2de9aa" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%t%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%t%).json index fe7e308350e1e..493416a334415 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%t%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%t%).json @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:51 GMT", + "Date": "Tue, 30 Mar 2021 07:42:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1cb81c74-b999-4557-8403-6453b46a4a66", + "x-ms-correlation-request-id": "03da4fb3-b1bb-423a-94fb-740fc65bc305", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "1cb81c74-b999-4557-8403-6453b46a4a66", - "x-ms-routing-request-id": "WESTUS:20210330T001952Z:1cb81c74-b999-4557-8403-6453b46a4a66" + "x-ms-request-id": "03da4fb3-b1bb-423a-94fb-740fc65bc305", + "x-ms-routing-request-id": "WESTUS:20210330T074219Z:03da4fb3-b1bb-423a-94fb-740fc65bc305" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te%).json index b9570824613d0..51ecb0cc21bed 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te%).json @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:51 GMT", + "Date": "Tue, 30 Mar 2021 07:42:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f56ad179-5449-4b58-9adb-a0b93644e035", + "x-ms-correlation-request-id": "43d20487-7c2f-46e3-9868-c4b33c87c882", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "f56ad179-5449-4b58-9adb-a0b93644e035", - "x-ms-routing-request-id": "WESTUS:20210330T001952Z:f56ad179-5449-4b58-9adb-a0b93644e035" + "x-ms-request-id": "43d20487-7c2f-46e3-9868-c4b33c87c882", + "x-ms-routing-request-id": "WESTUS:20210330T074219Z:43d20487-7c2f-46e3-9868-c4b33c87c882" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te.st%).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te.st%).json index ad27a80c213fe..536b370f37015 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te.st%).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionOperationsTests/TestGetResourceGroupOpsValid(%te.st%).json @@ -19,15 +19,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 00:19:51 GMT", + "Date": "Tue, 30 Mar 2021 07:42:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ab9f02d-4082-42fe-b598-a6996786d1a1", + "x-ms-correlation-request-id": "d24002dd-3d1d-49f9-b42a-f80d77383d6b", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "8ab9f02d-4082-42fe-b598-a6996786d1a1", - "x-ms-routing-request-id": "WESTUS:20210330T001951Z:8ab9f02d-4082-42fe-b598-a6996786d1a1" + "x-ms-request-id": "d24002dd-3d1d-49f9-b42a-f80d77383d6b", + "x-ms-routing-request-id": "WESTUS:20210330T074219Z:d24002dd-3d1d-49f9-b42a-f80d77383d6b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTags.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTags.json index cbf280ad9f6cc..7ded7f27ed6af 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTags.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTags.json @@ -6,7 +6,11 @@ "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-fa0ec2d383d0734dbcb081e7ebfc8227-a4ce611f149e294b-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": "fe0f5412fe83e8d64f667f6d1a000787", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:06 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "028a2efc-b79e-40b0-b1df-eeb2c9fe699b", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "028a2efc-b79e-40b0-b1df-eeb2c9fe699b", - "x-ms-routing-request-id": "WESTUS2:20210310T041406Z:028a2efc-b79e-40b0-b1df-eeb2c9fe699b" + "x-ms-correlation-request-id": "a7423880-41da-4358-9da6-ccd93462affc", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "a7423880-41da-4358-9da6-ccd93462affc", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:a7423880-41da-4358-9da6-ccd93462affc" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-3b270f62f9cdd741841d193bbb026e55-4d2d7c5d8376e542-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-a3a6aef2708e9444b30adbe822913eba-14450df0d283164f-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": "a059d135fd3810dd697d34384296e526", "x-ms-return-client-request-id": "true" }, @@ -58,20 +65,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:07 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5eb0fd90-464f-4844-a8e1-5c3deeda9915", + "x-ms-correlation-request-id": "5db65fba-4046-4b7e-83ed-96aecf213157", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "5eb0fd90-464f-4844-a8e1-5c3deeda9915", - "x-ms-routing-request-id": "WESTUS2:20210310T041408Z:5eb0fd90-464f-4844-a8e1-5c3deeda9915" + "x-ms-request-id": "5db65fba-4046-4b7e-83ed-96aecf213157", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:5db65fba-4046-4b7e-83ed-96aecf213157" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5701", @@ -92,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-629f2cf5f585924ca78e4fe18099b331-c5a7315b3cf6c749-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-3807993da85de146a29d32a6443d042c-4e517b7c7122d945-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": "6b580f381d4cd2e11c85894c7578a2ee", "x-ms-return-client-request-id": "true" }, @@ -107,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:07 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70f6aac6-5c3b-44ec-9e57-bf299a4d0531", + "x-ms-correlation-request-id": "82a271c0-a779-4774-8ffc-5b6f74d75749", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "70f6aac6-5c3b-44ec-9e57-bf299a4d0531", - "x-ms-routing-request-id": "WESTUS2:20210310T041408Z:70f6aac6-5c3b-44ec-9e57-bf299a4d0531" + "x-ms-request-id": "82a271c0-a779-4774-8ffc-5b6f74d75749", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:82a271c0-a779-4774-8ffc-5b6f74d75749" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5701", @@ -138,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-644c37dea733c842b426e295e406e339-65f5af32f6e02549-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-6f568192597e664fa3bc51954447f4e5-a994c786f8a1604e-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": "36d36beb5ac857d932ee1a81a2af0cd0", "x-ms-return-client-request-id": "true" }, @@ -154,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:08 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8dab1e73-61c1-429e-8129-a3789809a210", + "x-ms-correlation-request-id": "825632ad-bc4c-4b9b-93d2-9fa692ae61a4", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "8dab1e73-61c1-429e-8129-a3789809a210", - "x-ms-routing-request-id": "WESTUS2:20210310T041408Z:8dab1e73-61c1-429e-8129-a3789809a210" + "x-ms-request-id": "825632ad-bc4c-4b9b-93d2-9fa692ae61a4", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:825632ad-bc4c-4b9b-93d2-9fa692ae61a4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5701", @@ -186,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "70", "Content-Type": "application/json", - "traceparent": "00-0be04cbd0f595645870f2ca5834feca0-9caaef8890eda749-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-3bed747024164d44b61d2e664d4634b0-05bc65ce340df241-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": "f0e147991cae17dbef8684b274909af0", "x-ms-return-client-request-id": "true" }, @@ -203,15 +219,15 @@ "Cache-Control": "no-cache", "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:08 GMT", + "Date": "Tue, 30 Mar 2021 18:05:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a1aa2b4-4a35-4a85-9482-99ba788742d7", + "x-ms-correlation-request-id": "a0850bf6-99eb-48b7-bf5e-83191c0e8d78", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "9a1aa2b4-4a35-4a85-9482-99ba788742d7", - "x-ms-routing-request-id": "WESTUS2:20210310T041409Z:9a1aa2b4-4a35-4a85-9482-99ba788742d7" + "x-ms-request-id": "a0850bf6-99eb-48b7-bf5e-83191c0e8d78", + "x-ms-routing-request-id": "WESTUS:20210330T180541Z:a0850bf6-99eb-48b7-bf5e-83191c0e8d78" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5701", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTagsAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTagsAsync.json index a46a13bf3587c..bf08ae01a763d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTagsAsync.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestAddTagsAsync.json @@ -6,7 +6,11 @@ "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-c4d2054d37990a4da1a830bac6ef1bc2-c28c0b879a02dc4a-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": "80bf6f08a1f40f849042acf3263101ca", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:35 GMT", + "Date": "Tue, 30 Mar 2021 18:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1bdba57-8e3c-4567-adc8-2591593410ee", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "c1bdba57-8e3c-4567-adc8-2591593410ee", - "x-ms-routing-request-id": "WESTUS2:20210310T041435Z:c1bdba57-8e3c-4567-adc8-2591593410ee" + "x-ms-correlation-request-id": "206d9d12-bf23-4c8d-b0bf-b02f3609a7f7", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "206d9d12-bf23-4c8d-b0bf-b02f3609a7f7", + "x-ms-routing-request-id": "WESTUS:20210330T180538Z:206d9d12-bf23-4c8d-b0bf-b02f3609a7f7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-56717f1fbf88fd42886c7266cf6360eb-ea44370b78df6b49-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-e8e1b00ecc008b4e8894c45931ab723b-628b00b4aeb87e4f-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": "a41991e5a5adf27672281b20fb652a83", "x-ms-return-client-request-id": "true" }, @@ -63,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:35 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6569ec6-6f7a-4c19-b4c2-fbe31f5981dc", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "e6569ec6-6f7a-4c19-b4c2-fbe31f5981dc", - "x-ms-routing-request-id": "WESTUS2:20210310T041436Z:e6569ec6-6f7a-4c19-b4c2-fbe31f5981dc" + "x-ms-correlation-request-id": "57f8349a-c776-44a2-94fe-9227355f6669", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "57f8349a-c776-44a2-94fe-9227355f6669", + "x-ms-routing-request-id": "WESTUS:20210330T180539Z:57f8349a-c776-44a2-94fe-9227355f6669" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2616", @@ -92,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-243c3120f6c1ee479c8ac863bc031256-4034727ae3468744-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-f53c35f8d14e7e45b37725021d5de971-ba0571322533e64f-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": "963787ebb692ac455c591c49d3f0c750", "x-ms-return-client-request-id": "true" }, @@ -107,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:36 GMT", + "Date": "Tue, 30 Mar 2021 18:05:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55bc5254-a117-49d7-aabb-18547a594695", + "x-ms-correlation-request-id": "5f77c48a-d83e-4c43-9767-2d4de8069ee7", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "55bc5254-a117-49d7-aabb-18547a594695", - "x-ms-routing-request-id": "WESTUS2:20210310T041437Z:55bc5254-a117-49d7-aabb-18547a594695" + "x-ms-request-id": "5f77c48a-d83e-4c43-9767-2d4de8069ee7", + "x-ms-routing-request-id": "WESTUS:20210330T180540Z:5f77c48a-d83e-4c43-9767-2d4de8069ee7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2616", @@ -138,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-4235f0d74dffed44aa8a1be375fc12c5-f1b8519ff5a3134b-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-7ca5a0754952a7408e39aaf46e8b2b57-ccbb6f9883573945-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": "c14218501a92ca5a498d817869ef95dc", "x-ms-return-client-request-id": "true" }, @@ -154,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:36 GMT", + "Date": "Tue, 30 Mar 2021 18:05:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f18a50f-5ca1-426f-af57-021243df0fad", + "x-ms-correlation-request-id": "24be9b42-875b-4d00-a2fb-d4e194744dc7", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "8f18a50f-5ca1-426f-af57-021243df0fad", - "x-ms-routing-request-id": "WESTUS2:20210310T041437Z:8f18a50f-5ca1-426f-af57-021243df0fad" + "x-ms-request-id": "24be9b42-875b-4d00-a2fb-d4e194744dc7", + "x-ms-routing-request-id": "WESTUS:20210330T180541Z:24be9b42-875b-4d00-a2fb-d4e194744dc7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2616", @@ -186,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "70", "Content-Type": "application/json", - "traceparent": "00-87ca525768a3444582727bf5b0abfef3-12a42bb779751e42-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-33111c8f19df344abf1f7218aa6bc04c-2595c84055a4d448-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": "aa3a6f8234ca2f644b6d4854882c1f81", "x-ms-return-client-request-id": "true" }, @@ -203,15 +219,15 @@ "Cache-Control": "no-cache", "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:36 GMT", + "Date": "Tue, 30 Mar 2021 18:05:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79835e11-0211-4df0-b838-12b33fe7360e", + "x-ms-correlation-request-id": "b92bfadb-81cd-4718-a6d9-66277c6d18c6", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "79835e11-0211-4df0-b838-12b33fe7360e", - "x-ms-routing-request-id": "WESTUS2:20210310T041437Z:79835e11-0211-4df0-b838-12b33fe7360e" + "x-ms-request-id": "b92bfadb-81cd-4718-a6d9-66277c6d18c6", + "x-ms-routing-request-id": "WESTUS:20210330T180541Z:b92bfadb-81cd-4718-a6d9-66277c6d18c6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2616", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json index dc694558383c4..2b38a83e0cca6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f6663ea90829b344bb49e50b8a4c5c2c-a256ffe29700ed44-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-bf3e467d529a194d85562c4c29950ad2-b81f2b7a5d3ad74d-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": "130b15db0ee7c47a0bd47ce240a0248c", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:50 GMT", + "Date": "Tue, 30 Mar 2021 18:05:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9394cd6e-ab90-4253-aaeb-acfbb9bf3ed7", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "9394cd6e-ab90-4253-aaeb-acfbb9bf3ed7", - "x-ms-routing-request-id": "WESTUS2:20210310T041451Z:9394cd6e-ab90-4253-aaeb-acfbb9bf3ed7" + "x-ms-correlation-request-id": "2287e351-0a06-4784-81e3-5b1b0fc115ba", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "2287e351-0a06-4784-81e3-5b1b0fc115ba", + "x-ms-routing-request-id": "WESTUS:20210330T180558Z:2287e351-0a06-4784-81e3-5b1b0fc115ba" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-c3a02346da430e4a8616e040fd777917-9c4cd776e8d9564d-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-ffc846bbfd92464898bb0aa8b723cb1a-e6fbed9214ce2d45-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": "fb6960a7ddbf2b823a20f76a9d544aa8", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:51 GMT", + "Date": "Tue, 30 Mar 2021 18:05:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6da9c939-3d85-414d-a3ec-ae8f7bb8b0ff", - "x-ms-ratelimit-remaining-subscription-writes": "1177", - "x-ms-request-id": "6da9c939-3d85-414d-a3ec-ae8f7bb8b0ff", - "x-ms-routing-request-id": "WESTUS2:20210310T041451Z:6da9c939-3d85-414d-a3ec-ae8f7bb8b0ff" + "x-ms-correlation-request-id": "f5421cf4-39d7-46ee-9913-14f3bb6f914d", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "f5421cf4-39d7-46ee-9913-14f3bb6f914d", + "x-ms-routing-request-id": "WESTUS:20210330T180559Z:f5421cf4-39d7-46ee-9913-14f3bb6f914d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8350", @@ -93,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-5bbe3e7b456b2d43bce27634091cb5bd-93e35edf46f1a241-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-6f40dd8c3f494c4c89a3e404fef20b3e-fb8ac95e24784744-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": "65cc81cf1b0d295255bef47f8570ca05", "x-ms-return-client-request-id": "true" }, @@ -108,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:51 GMT", + "Date": "Tue, 30 Mar 2021 18:05:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5218102f-4faf-4593-83a0-606fdea984b5", - "x-ms-ratelimit-remaining-subscription-writes": "1176", - "x-ms-request-id": "5218102f-4faf-4593-83a0-606fdea984b5", - "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:5218102f-4faf-4593-83a0-606fdea984b5" + "x-ms-correlation-request-id": "d81849c8-bad4-437e-84bc-319fd253db5a", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "d81849c8-bad4-437e-84bc-319fd253db5a", + "x-ms-routing-request-id": "WESTUS:20210330T180559Z:d81849c8-bad4-437e-84bc-319fd253db5a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8350", @@ -139,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-0529746dabedca40bc7cd6826c01da14-979f020cd059a142-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-b580e6c82a3b564bb80e080c137cefaf-9e97a4abce005642-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": "409f459a154f381b88e8aced825a6d7f", "x-ms-return-client-request-id": "true" }, @@ -155,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:52 GMT", + "Date": "Tue, 30 Mar 2021 18:05:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "370a0992-41e3-4ae1-a3c1-3ccf59d64bb1", - "x-ms-ratelimit-remaining-subscription-writes": "1175", - "x-ms-request-id": "370a0992-41e3-4ae1-a3c1-3ccf59d64bb1", - "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:370a0992-41e3-4ae1-a3c1-3ccf59d64bb1" + "x-ms-correlation-request-id": "7e3c944d-b99d-48fd-b181-8bedc496cb05", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "7e3c944d-b99d-48fd-b181-8bedc496cb05", + "x-ms-routing-request-id": "WESTUS:20210330T180600Z:7e3c944d-b99d-48fd-b181-8bedc496cb05" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8350", @@ -187,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-2290182a38f35140aa9921a12f70b368-e06ad630a1bdd745-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-9efe45605d7dd940807eda2d010da2df-dd06514585518743-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": "1f70393227578cc60d40a600e902a5ca", "x-ms-return-client-request-id": "true" }, @@ -203,15 +218,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:52 GMT", + "Date": "Tue, 30 Mar 2021 18:06:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2353106e-ca59-4ddc-9174-b4be5a239eca", - "x-ms-ratelimit-remaining-subscription-writes": "1174", - "x-ms-request-id": "2353106e-ca59-4ddc-9174-b4be5a239eca", - "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:2353106e-ca59-4ddc-9174-b4be5a239eca" + "x-ms-correlation-request-id": "e1ead76e-4193-4b6b-8774-77bdeaae126b", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "e1ead76e-4193-4b6b-8774-77bdeaae126b", + "x-ms-routing-request-id": "WESTUS:20210330T180600Z:e1ead76e-4193-4b6b-8774-77bdeaae126b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8350", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json index adc2fec7b67df..6ab6a94891653 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|1493765e-4e7065a7c404cc0d.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-27753b14241cef4b90c19ffee443f2d6-f2a6f4e6b2be554b-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": "115949ef5ba4488102482d83ed421716", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:50 GMT", + "Date": "Tue, 30 Mar 2021 18:05:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c35296d-df66-49a3-a291-63fb1f294ea7", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "4c35296d-df66-49a3-a291-63fb1f294ea7", - "x-ms-routing-request-id": "WESTUS2:20210310T041451Z:4c35296d-df66-49a3-a291-63fb1f294ea7" + "x-ms-correlation-request-id": "e8fb66c2-3dac-4182-bcb3-079aafafe9a6", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "e8fb66c2-3dac-4182-bcb3-079aafafe9a6", + "x-ms-routing-request-id": "WESTUS:20210330T180558Z:e8fb66c2-3dac-4182-bcb3-079aafafe9a6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-be21f897f60f254281a7e8fb3650f244-795cfd1ee8e1b849-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-584c8ca96aac084688ea2f59da9e8ad3-4771677aaa80af47-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": "1f27ed888bd2f54fded16d147cb1c6e4", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:51 GMT", + "Date": "Tue, 30 Mar 2021 18:05:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1eae0293-d7ae-4941-97c6-13194fd534fd", - "x-ms-ratelimit-remaining-subscription-writes": "1175", - "x-ms-request-id": "1eae0293-d7ae-4941-97c6-13194fd534fd", - "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:1eae0293-d7ae-4941-97c6-13194fd534fd" + "x-ms-correlation-request-id": "63f9ce0f-4808-4610-aa39-c808a9fe4f28", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "63f9ce0f-4808-4610-aa39-c808a9fe4f28", + "x-ms-routing-request-id": "WESTUS:20210330T180559Z:63f9ce0f-4808-4610-aa39-c808a9fe4f28" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2981", @@ -93,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-2f5fd92dbe6c3540823a328d059c12a8-7ee75a1fba2c6a44-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-6afa46d2ba910b4f987e4038add5ebfc-2e73e51c1696734a-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": "c750f68cbbfdbcab68fa5d13ba0bec1d", "x-ms-return-client-request-id": "true" }, @@ -108,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:51 GMT", + "Date": "Tue, 30 Mar 2021 18:05:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc1dd336-f2c5-44ac-90c0-3af70e456fd6", - "x-ms-ratelimit-remaining-subscription-writes": "1174", - "x-ms-request-id": "bc1dd336-f2c5-44ac-90c0-3af70e456fd6", - "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:bc1dd336-f2c5-44ac-90c0-3af70e456fd6" + "x-ms-correlation-request-id": "ea0bda00-d1dd-4a50-bec7-82489e6152b9", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "ea0bda00-d1dd-4a50-bec7-82489e6152b9", + "x-ms-routing-request-id": "WESTUS:20210330T180600Z:ea0bda00-d1dd-4a50-bec7-82489e6152b9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2981", @@ -139,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-fa06cd53c320114b85db650e546ce3c2-b3dbcaf26c0a7d4e-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-ce9627975af3da49b3f172074a9773ed-409d7770cae50f4a-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": "546966b9eb2bbd1c0a1bc68a14348697", "x-ms-return-client-request-id": "true" }, @@ -155,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:52 GMT", + "Date": "Tue, 30 Mar 2021 18:06:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81cf7c80-619d-4306-b0ae-b4ca8f338194", - "x-ms-ratelimit-remaining-subscription-writes": "1173", - "x-ms-request-id": "81cf7c80-619d-4306-b0ae-b4ca8f338194", - "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:81cf7c80-619d-4306-b0ae-b4ca8f338194" + "x-ms-correlation-request-id": "494f5540-79aa-4d37-b710-e01a83cf3c00", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "494f5540-79aa-4d37-b710-e01a83cf3c00", + "x-ms-routing-request-id": "WESTUS:20210330T180600Z:494f5540-79aa-4d37-b710-e01a83cf3c00" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2981", @@ -187,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-683d53284ed5f74a8d8d8fe8a34d73f7-d0771eba0266c44a-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-920a977922d2cc48968c262b36a84fe8-63eec46a86895746-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": "4b609e674fc7cc8f416ab7d82e3c3bd2", "x-ms-return-client-request-id": "true" }, @@ -203,15 +218,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:52 GMT", + "Date": "Tue, 30 Mar 2021 18:06:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af1bc118-7f7b-4800-8129-ed6d8a01a1b3", - "x-ms-ratelimit-remaining-subscription-writes": "1172", - "x-ms-request-id": "af1bc118-7f7b-4800-8129-ed6d8a01a1b3", - "x-ms-routing-request-id": "WESTUS2:20210310T041452Z:af1bc118-7f7b-4800-8129-ed6d8a01a1b3" + "x-ms-correlation-request-id": "5b5bf437-5271-4c64-aa67-71480735de4a", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "5b5bf437-5271-4c64-aa67-71480735de4a", + "x-ms-routing-request-id": "WESTUS:20210330T180601Z:5b5bf437-5271-4c64-aa67-71480735de4a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2981", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json index f03256c35130a..5e1fb6e819295 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json @@ -6,7 +6,11 @@ "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-08323ccd178ceb4d8ab843487e4ed78c-c6d4f8dc5de87840-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": "1d2c673714e4c522206d9c20b0f922ab", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:46 GMT", + "Date": "Tue, 30 Mar 2021 18:05:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d167ed3-b821-4a93-bbc1-c8cfdf71ba52", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "5d167ed3-b821-4a93-bbc1-c8cfdf71ba52", - "x-ms-routing-request-id": "WESTUS2:20210310T041446Z:5d167ed3-b821-4a93-bbc1-c8cfdf71ba52" + "x-ms-correlation-request-id": "ba8806c4-a24a-4766-9c6c-2ab3f0659c49", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "ba8806c4-a24a-4766-9c6c-2ab3f0659c49", + "x-ms-routing-request-id": "WESTUS:20210330T180551Z:ba8806c4-a24a-4766-9c6c-2ab3f0659c49" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-904e74ccdee5b649ae06b1998404db1f-04be4ea307e5bd47-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-528eea946ee09f479d8ccfde63ed7284-9a6d57c41050424c-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": "4053a89af29c1eb9cfc8bad530a0a039", "x-ms-return-client-request-id": "true" }, @@ -63,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:47 GMT", + "Date": "Tue, 30 Mar 2021 18:05:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "945f0aad-5035-4ef0-9404-0b88e01c7a54", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-request-id": "945f0aad-5035-4ef0-9404-0b88e01c7a54", - "x-ms-routing-request-id": "WESTUS2:20210310T041447Z:945f0aad-5035-4ef0-9404-0b88e01c7a54" + "x-ms-correlation-request-id": "49625bcb-8d2f-4e2c-9b43-d99cdfea3dc8", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "49625bcb-8d2f-4e2c-9b43-d99cdfea3dc8", + "x-ms-routing-request-id": "WESTUS:20210330T180552Z:49625bcb-8d2f-4e2c-9b43-d99cdfea3dc8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4896", @@ -92,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-1f3979ddf7807d41a30ee9df1bac5fea-780438b9be38cf44-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-65d9c0eb1241894194e86fc966a44fce-71be75eda19de94d-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": "cd7e26eca9308cd37717139c809f48a1", "x-ms-return-client-request-id": "true" }, @@ -107,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:47 GMT", + "Date": "Tue, 30 Mar 2021 18:05:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43085474-3073-4b3d-af64-0b82ca6ce64d", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-request-id": "43085474-3073-4b3d-af64-0b82ca6ce64d", - "x-ms-routing-request-id": "WESTUS2:20210310T041447Z:43085474-3073-4b3d-af64-0b82ca6ce64d" + "x-ms-correlation-request-id": "83cae94f-aaef-4e4a-86b2-542d5d77eab3", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "83cae94f-aaef-4e4a-86b2-542d5d77eab3", + "x-ms-routing-request-id": "WESTUS:20210330T180552Z:83cae94f-aaef-4e4a-86b2-542d5d77eab3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4896", @@ -138,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-87b12cc64db39e4092ac47a2a25da10d-866694cea39fde4b-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-a77587ce2daf1540a9ea3f63105d225b-df38f1bc4ffcc145-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": "3a26c6834aca749a72fe144b68eff0cc", "x-ms-return-client-request-id": "true" }, @@ -154,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:47 GMT", + "Date": "Tue, 30 Mar 2021 18:05:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "429dc762-30c7-4302-8efc-2f58f496a0a4", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-request-id": "429dc762-30c7-4302-8efc-2f58f496a0a4", - "x-ms-routing-request-id": "WESTUS2:20210310T041447Z:429dc762-30c7-4302-8efc-2f58f496a0a4" + "x-ms-correlation-request-id": "90173eb5-1af5-4c57-87ee-337a5db43ab1", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "90173eb5-1af5-4c57-87ee-337a5db43ab1", + "x-ms-routing-request-id": "WESTUS:20210330T180553Z:90173eb5-1af5-4c57-87ee-337a5db43ab1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4896", @@ -186,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-7a6331fbc1b0614999ecfb9ea88e47d1-da975a3a145b4d48-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-9e30e3eac37da54c8c4e27d8dc62216b-fe6ee0a763d2cf4d-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": "d2c3e6fbdda3f11ad5c7c984df1d9e2f", "x-ms-return-client-request-id": "true" }, @@ -201,15 +217,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:48 GMT", + "Date": "Tue, 30 Mar 2021 18:05:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab4f6c37-149b-42ab-9a53-016804cf1995", - "x-ms-ratelimit-remaining-subscription-writes": "1182", - "x-ms-request-id": "ab4f6c37-149b-42ab-9a53-016804cf1995", - "x-ms-routing-request-id": "WESTUS2:20210310T041448Z:ab4f6c37-149b-42ab-9a53-016804cf1995" + "x-ms-correlation-request-id": "515379c5-a72b-4404-9a35-b685ee3c334d", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "515379c5-a72b-4404-9a35-b685ee3c334d", + "x-ms-routing-request-id": "WESTUS:20210330T180553Z:515379c5-a72b-4404-9a35-b685ee3c334d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4896", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json index 08a7cf4cb51ef..8b31b8ed66c6c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json @@ -6,7 +6,11 @@ "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-3b22b4ee4bccfb4ea3bd618eab7f3c88-c2ae4b9563610748-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": "f796edbbf8a73d2a37a450f42470ee3c", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:46 GMT", + "Date": "Tue, 30 Mar 2021 18:05:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a5afc87-631f-4b1a-9e90-eeafd1b778dc", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "0a5afc87-631f-4b1a-9e90-eeafd1b778dc", - "x-ms-routing-request-id": "WESTUS2:20210310T041446Z:0a5afc87-631f-4b1a-9e90-eeafd1b778dc" + "x-ms-correlation-request-id": "ea149850-2de5-4ca2-a0a3-d75a24113702", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "ea149850-2de5-4ca2-a0a3-d75a24113702", + "x-ms-routing-request-id": "WESTUS:20210330T180552Z:ea149850-2de5-4ca2-a0a3-d75a24113702" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-f7f4640022f68540a1d9c2fc72db7de0-5205fc921542ee46-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-0654aeecdc249d499cae077e82ef8b62-1d3668618d52624a-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": "49a5635b794b9ba4c0b526745548016e", "x-ms-return-client-request-id": "true" }, @@ -63,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:46 GMT", + "Date": "Tue, 30 Mar 2021 18:05:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "729dfbce-8705-4e5f-b7a4-0a3c6fa8cdbb", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-request-id": "729dfbce-8705-4e5f-b7a4-0a3c6fa8cdbb", - "x-ms-routing-request-id": "WESTUS2:20210310T041447Z:729dfbce-8705-4e5f-b7a4-0a3c6fa8cdbb" + "x-ms-correlation-request-id": "152f10c3-63df-4798-9005-1c37a57993fa", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "152f10c3-63df-4798-9005-1c37a57993fa", + "x-ms-routing-request-id": "WESTUS:20210330T180553Z:152f10c3-63df-4798-9005-1c37a57993fa" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8711", @@ -92,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-5f29366b0c48974796ea0bd1d34bfdf4-3e0072d6fe512342-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-97963a3586c93f42b60e85391178e475-c374216edfb9904b-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": "eeeaf630d68e515a5a3f5ae0a1ab4b5a", "x-ms-return-client-request-id": "true" }, @@ -107,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:47 GMT", + "Date": "Tue, 30 Mar 2021 18:05:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4bf308c-0a59-4224-96d8-c4e97be36d55", - "x-ms-ratelimit-remaining-subscription-writes": "1182", - "x-ms-request-id": "f4bf308c-0a59-4224-96d8-c4e97be36d55", - "x-ms-routing-request-id": "WESTUS2:20210310T041447Z:f4bf308c-0a59-4224-96d8-c4e97be36d55" + "x-ms-correlation-request-id": "fd817e36-fa89-4c94-a19e-b06126258952", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "fd817e36-fa89-4c94-a19e-b06126258952", + "x-ms-routing-request-id": "WESTUS:20210330T180553Z:fd817e36-fa89-4c94-a19e-b06126258952" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8711", @@ -138,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-2b746edf31832444bbf919c34158ab9f-04991f0e1fdbab43-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-646182798e44754a9030c7af0b22d2d5-763f048f5b4f5045-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": "022061560241746ff25ce74203c8e25c", "x-ms-return-client-request-id": "true" }, @@ -154,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:47 GMT", + "Date": "Tue, 30 Mar 2021 18:05:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d2d8847-83d2-4f03-95ce-329a5366edf2", - "x-ms-ratelimit-remaining-subscription-writes": "1181", - "x-ms-request-id": "1d2d8847-83d2-4f03-95ce-329a5366edf2", - "x-ms-routing-request-id": "WESTUS2:20210310T041447Z:1d2d8847-83d2-4f03-95ce-329a5366edf2" + "x-ms-correlation-request-id": "204fb74d-e936-4cfb-b21a-646261b8aa8c", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "204fb74d-e936-4cfb-b21a-646261b8aa8c", + "x-ms-routing-request-id": "WESTUS:20210330T180554Z:204fb74d-e936-4cfb-b21a-646261b8aa8c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8711", @@ -186,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-d632ca66457e7d4d9d7693b83449cdb2-b7ff56a90a084441-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-05ac9f22d755304baadda10b4f45688a-1cd66a67c64b8244-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": "7af3864f4e0485810953ef0c1fc3f914", "x-ms-return-client-request-id": "true" }, @@ -201,15 +217,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:47 GMT", + "Date": "Tue, 30 Mar 2021 18:05:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09abc9d1-c427-4272-af1e-6133546e55f1", - "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-request-id": "09abc9d1-c427-4272-af1e-6133546e55f1", - "x-ms-routing-request-id": "WESTUS2:20210310T041448Z:09abc9d1-c427-4272-af1e-6133546e55f1" + "x-ms-correlation-request-id": "9e65522b-7f6b-47d9-b55d-4084357de007", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "9e65522b-7f6b-47d9-b55d-4084357de007", + "x-ms-routing-request-id": "WESTUS:20210330T180554Z:9e65522b-7f6b-47d9-b55d-4084357de007" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8711", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json index 7bae423250775..8f2836724f835 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json @@ -6,7 +6,11 @@ "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-16b1418b781c874bb99d7924cbf5707c-3390397daf91a747-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": "19451a0677cb7e4dd4b120aa31a71492", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:48 GMT", + "Date": "Tue, 30 Mar 2021 18:05:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e2107ff-c1d7-4b27-8cdb-2ee1060ed355", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "1e2107ff-c1d7-4b27-8cdb-2ee1060ed355", - "x-ms-routing-request-id": "WESTUS2:20210310T041448Z:1e2107ff-c1d7-4b27-8cdb-2ee1060ed355" + "x-ms-correlation-request-id": "aa08b16b-6233-4185-b4e3-fb89bcb0fc5b", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "aa08b16b-6233-4185-b4e3-fb89bcb0fc5b", + "x-ms-routing-request-id": "WESTUS:20210330T180554Z:aa08b16b-6233-4185-b4e3-fb89bcb0fc5b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-f83721bb06484947b78d2fc6a5b26f36-2cb551c6921f124d-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-0728564cd1be59459883352d2e8d2318-cdb75aba0fb3424f-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": "ec46696f45c7cd368c747f3942cb9e1e", "x-ms-return-client-request-id": "true" }, @@ -63,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:49 GMT", + "Date": "Tue, 30 Mar 2021 18:05:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b522ea48-1ad9-4805-b937-3fcb72d4390c", - "x-ms-ratelimit-remaining-subscription-writes": "1181", - "x-ms-request-id": "b522ea48-1ad9-4805-b937-3fcb72d4390c", - "x-ms-routing-request-id": "WESTUS2:20210310T041449Z:b522ea48-1ad9-4805-b937-3fcb72d4390c" + "x-ms-correlation-request-id": "93f55b0f-7cb3-44c0-acc1-3e485dc0251d", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "93f55b0f-7cb3-44c0-acc1-3e485dc0251d", + "x-ms-routing-request-id": "WESTUS:20210330T180555Z:93f55b0f-7cb3-44c0-acc1-3e485dc0251d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5165", @@ -92,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-06aa6ad346c34549a9be62746bfa3179-12984fd3452abf48-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-8356c655f3aa064a9925fe222cfeabed-b73d1cbf8a318249-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": "10797d77bb5d40c2a44c23c398d3dd45", "x-ms-return-client-request-id": "true" }, @@ -107,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:49 GMT", + "Date": "Tue, 30 Mar 2021 18:05:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffcce8b9-50b2-44c8-9396-04fdac655ca2", - "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-request-id": "ffcce8b9-50b2-44c8-9396-04fdac655ca2", - "x-ms-routing-request-id": "WESTUS2:20210310T041449Z:ffcce8b9-50b2-44c8-9396-04fdac655ca2" + "x-ms-correlation-request-id": "3f026c48-9b25-43a6-8886-3d80ec773b94", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "3f026c48-9b25-43a6-8886-3d80ec773b94", + "x-ms-routing-request-id": "WESTUS:20210330T180556Z:3f026c48-9b25-43a6-8886-3d80ec773b94" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5165", @@ -138,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-3ec688f81d181f4c92bd0fb0f6b75fc9-5f4d8704d4232546-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-9bc57406445ef14b89ffc919013ebcb3-4f92ff440911c645-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": "ddd0f96850ecd43f0f4c3e03cd4492e5", "x-ms-return-client-request-id": "true" }, @@ -154,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:49 GMT", + "Date": "Tue, 30 Mar 2021 18:05:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6a79d82-b4f3-49fe-8000-b3547787b06c", - "x-ms-ratelimit-remaining-subscription-writes": "1179", - "x-ms-request-id": "c6a79d82-b4f3-49fe-8000-b3547787b06c", - "x-ms-routing-request-id": "WESTUS2:20210310T041449Z:c6a79d82-b4f3-49fe-8000-b3547787b06c" + "x-ms-correlation-request-id": "36104b6a-ab97-4dc1-ad72-de23d723f884", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "36104b6a-ab97-4dc1-ad72-de23d723f884", + "x-ms-routing-request-id": "WESTUS:20210330T180556Z:36104b6a-ab97-4dc1-ad72-de23d723f884" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5165", @@ -186,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-d340aedf374b0f4095b2fd461d33d278-07e0d1712a904647-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-1115047dd7dbb042b6b252c5b6cc595b-63071702716e164c-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": "2ab98b81819bb3cda606477a227234b8", "x-ms-return-client-request-id": "true" }, @@ -201,15 +217,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:50 GMT", + "Date": "Tue, 30 Mar 2021 18:05:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba50cecd-6579-4b5f-920d-534ed1f5f628", - "x-ms-ratelimit-remaining-subscription-writes": "1178", - "x-ms-request-id": "ba50cecd-6579-4b5f-920d-534ed1f5f628", - "x-ms-routing-request-id": "WESTUS2:20210310T041450Z:ba50cecd-6579-4b5f-920d-534ed1f5f628" + "x-ms-correlation-request-id": "3adb0727-8c0f-43d8-b49e-e6676f5cf0ce", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "3adb0727-8c0f-43d8-b49e-e6676f5cf0ce", + "x-ms-routing-request-id": "WESTUS:20210330T180557Z:3adb0727-8c0f-43d8-b49e-e6676f5cf0ce" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5165", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json index 48e2f1071ab9b..204441287a002 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|1493765d-4e7065a7c404cc0d.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e811a805f98b2a459d3ff3b09a2155a5-1eb3d50be1a3254a-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": "bf041884cc34453642d5b58dd606250f", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:48 GMT", + "Date": "Tue, 30 Mar 2021 18:05:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2466daf-295b-48d9-83c6-69f18272b7e3", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "a2466daf-295b-48d9-83c6-69f18272b7e3", - "x-ms-routing-request-id": "WESTUS2:20210310T041448Z:a2466daf-295b-48d9-83c6-69f18272b7e3" + "x-ms-correlation-request-id": "49a808eb-0e12-4094-902f-fc8b5e02aa8a", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "49a808eb-0e12-4094-902f-fc8b5e02aa8a", + "x-ms-routing-request-id": "WESTUS:20210330T180555Z:49a808eb-0e12-4094-902f-fc8b5e02aa8a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-c87fa3d61e48654e9593990f50ee6241-5ca012a29c4bc941-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-fd9c05d7c6786a44af84a710e8b194de-66da9aca1a8c1342-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": "ea845b278ed6ca969598d516417d2b71", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:48 GMT", + "Date": "Tue, 30 Mar 2021 18:05:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb5015cd-350c-49b7-8101-cdff5ca63279", - "x-ms-ratelimit-remaining-subscription-writes": "1179", - "x-ms-request-id": "fb5015cd-350c-49b7-8101-cdff5ca63279", - "x-ms-routing-request-id": "WESTUS2:20210310T041449Z:fb5015cd-350c-49b7-8101-cdff5ca63279" + "x-ms-correlation-request-id": "02934b0e-3d33-48d1-a5c6-5c67d7b1c8b7", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "02934b0e-3d33-48d1-a5c6-5c67d7b1c8b7", + "x-ms-routing-request-id": "WESTUS:20210330T180556Z:02934b0e-3d33-48d1-a5c6-5c67d7b1c8b7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg7723", @@ -93,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-6afb026211dc9446a13617d1385ba737-5a7c95fe1f5a6e44-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-1fe5f11ee2cb79478686b9990d319920-b747c3bd724e3648-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": "59904c322d54bb8efb29993560f2feb6", "x-ms-return-client-request-id": "true" }, @@ -108,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:49 GMT", + "Date": "Tue, 30 Mar 2021 18:05:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1466bd59-7f2a-4945-9000-7919e9cdfec5", - "x-ms-ratelimit-remaining-subscription-writes": "1178", - "x-ms-request-id": "1466bd59-7f2a-4945-9000-7919e9cdfec5", - "x-ms-routing-request-id": "WESTUS2:20210310T041449Z:1466bd59-7f2a-4945-9000-7919e9cdfec5" + "x-ms-correlation-request-id": "f5597579-d133-48b6-8451-bc590d091bd2", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "f5597579-d133-48b6-8451-bc590d091bd2", + "x-ms-routing-request-id": "WESTUS:20210330T180557Z:f5597579-d133-48b6-8451-bc590d091bd2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg7723", @@ -139,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-9405673bb0628b45ac18be2142b8d074-0e988f8f457dd140-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-9ee76641b42e5e4ea67e8fdace208355-dfba6017730b6f44-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": "d254c812a1da89ae6ef49e34612e0057", "x-ms-return-client-request-id": "true" }, @@ -155,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:49 GMT", + "Date": "Tue, 30 Mar 2021 18:05:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f186ef00-50bc-4ce3-9aaf-8e0fbbb13d1b", - "x-ms-ratelimit-remaining-subscription-writes": "1177", - "x-ms-request-id": "f186ef00-50bc-4ce3-9aaf-8e0fbbb13d1b", - "x-ms-routing-request-id": "WESTUS2:20210310T041450Z:f186ef00-50bc-4ce3-9aaf-8e0fbbb13d1b" + "x-ms-correlation-request-id": "53c3ba3c-3c11-4877-81df-c4341465b6e5", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "53c3ba3c-3c11-4877-81df-c4341465b6e5", + "x-ms-routing-request-id": "WESTUS:20210330T180557Z:53c3ba3c-3c11-4877-81df-c4341465b6e5" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg7723", @@ -187,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-8a9daa6e1ba98b4a8932b5c6af0ec857-cf77a8597fa0c948-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-aab2c4757ded2f4194671cd1ab4e5674-18298550eea85b47-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": "b9a41b89b595f9a1cdc8eeacf56169a2", "x-ms-return-client-request-id": "true" }, @@ -202,15 +217,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:49 GMT", + "Date": "Tue, 30 Mar 2021 18:05:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2f3ad9c-8ea6-4815-a350-ed9208d2f634", - "x-ms-ratelimit-remaining-subscription-writes": "1176", - "x-ms-request-id": "f2f3ad9c-8ea6-4815-a350-ed9208d2f634", - "x-ms-routing-request-id": "WESTUS2:20210310T041450Z:f2f3ad9c-8ea6-4815-a350-ed9208d2f634" + "x-ms-correlation-request-id": "85d0895a-f778-482d-aabd-4bbb3e056683", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "85d0895a-f778-482d-aabd-4bbb3e056683", + "x-ms-routing-request-id": "WESTUS:20210330T180558Z:85d0895a-f778-482d-aabd-4bbb3e056683" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg7723", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTags.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTags.json index ce1c4265532b7..4c98d41841f5c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTags.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTags.json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-82bbcb652ef63447a488da5f39990a6d-16d3e78b0bd80a48-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-9358c5298a610c41afed72e1df053931-3fc47c9eda33e048-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": "b3c7cf7cae8f18ad2537dd8f1a75e9e6", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:37 GMT", + "Date": "Tue, 30 Mar 2021 18:05:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e56124f9-849f-4062-a34e-85e5c82dab90", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "e56124f9-849f-4062-a34e-85e5c82dab90", - "x-ms-routing-request-id": "WESTUS2:20210310T041437Z:e56124f9-849f-4062-a34e-85e5c82dab90" + "x-ms-correlation-request-id": "d6ce8253-0d93-4822-8ab4-a1f4414edc4e", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "d6ce8253-0d93-4822-8ab4-a1f4414edc4e", + "x-ms-routing-request-id": "WESTUS:20210330T180542Z:d6ce8253-0d93-4822-8ab4-a1f4414edc4e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-184ae7a9ce4a244b8745a65c417f583c-8fe6849cf8dd6549-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-11fe1b6dbb92514985a5a8b9164aa12f-178f697e1e915f41-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": "20f28ffc1d8624d948386451c3337eff", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:37 GMT", + "Date": "Tue, 30 Mar 2021 18:05:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d06cc27d-518f-4f81-b7d9-05fdd12b3aff", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "d06cc27d-518f-4f81-b7d9-05fdd12b3aff", - "x-ms-routing-request-id": "WESTUS2:20210310T041438Z:d06cc27d-518f-4f81-b7d9-05fdd12b3aff" + "x-ms-correlation-request-id": "80bccc4c-e18d-4f81-8404-f429e5b9196b", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "80bccc4c-e18d-4f81-8404-f429e5b9196b", + "x-ms-routing-request-id": "WESTUS:20210330T180543Z:80bccc4c-e18d-4f81-8404-f429e5b9196b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9936", @@ -93,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-5310363e1d2e0e4d816332111fec6b3b-3c48fc54ccb99b44-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-24a1fad70109d449b58f3d09b007b39e-6be92df60f3a114c-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": "2fa84c25224e728ad83920899b1cf57e", "x-ms-return-client-request-id": "true" }, @@ -108,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:37 GMT", + "Date": "Tue, 30 Mar 2021 18:05:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26c4180f-3406-401b-ac08-b505c13c96ac", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "26c4180f-3406-401b-ac08-b505c13c96ac", - "x-ms-routing-request-id": "WESTUS2:20210310T041438Z:26c4180f-3406-401b-ac08-b505c13c96ac" + "x-ms-correlation-request-id": "02b5257e-161a-406c-9e06-b9fb1901ba78", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "02b5257e-161a-406c-9e06-b9fb1901ba78", + "x-ms-routing-request-id": "WESTUS:20210330T180543Z:02b5257e-161a-406c-9e06-b9fb1901ba78" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9936", @@ -139,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-fe96f176b6fb254a88686b4beccc757d-896e7384be778b49-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-82a7509fdaad334094360a80cabd0fee-956fe309aba48a49-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": "f5c3384f3f29b1f6ee8f477548c66204", "x-ms-return-client-request-id": "true" }, @@ -155,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:39 GMT", + "Date": "Tue, 30 Mar 2021 18:05:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b366ec6-a8ab-4124-97e0-f88b11b51d1e", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "6b366ec6-a8ab-4124-97e0-f88b11b51d1e", - "x-ms-routing-request-id": "WESTUS2:20210310T041439Z:6b366ec6-a8ab-4124-97e0-f88b11b51d1e" + "x-ms-correlation-request-id": "3c7e8bd4-b40c-42df-8bcd-6886e90a926b", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "3c7e8bd4-b40c-42df-8bcd-6886e90a926b", + "x-ms-routing-request-id": "WESTUS:20210330T180544Z:3c7e8bd4-b40c-42df-8bcd-6886e90a926b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9936", @@ -187,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-7d77da8b8c233946af065451f2fac1bb-cbde4e5ca3177049-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-dde6321da86bde458cbe18fa00914550-981477a89022c149-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": "28f48f5fb740daa2057f474dfd50892c", "x-ms-return-client-request-id": "true" }, @@ -203,15 +218,15 @@ "Cache-Control": "no-cache", "Content-Length": "275", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:39 GMT", + "Date": "Tue, 30 Mar 2021 18:05:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1f59b24-d13b-486c-9ca3-49cc211fa510", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "c1f59b24-d13b-486c-9ca3-49cc211fa510", - "x-ms-routing-request-id": "WESTUS2:20210310T041439Z:c1f59b24-d13b-486c-9ca3-49cc211fa510" + "x-ms-correlation-request-id": "10701f39-0d4a-40b2-9a13-de5e4b90c04a", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "10701f39-0d4a-40b2-9a13-de5e4b90c04a", + "x-ms-routing-request-id": "WESTUS:20210330T180544Z:10701f39-0d4a-40b2-9a13-de5e4b90c04a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9936", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTagsAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTagsAsync.json index f792d3ff74ae2..cff14e7941df6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTagsAsync.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestSetTagsAsync.json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7ac99f3a53827840821909890072faad-f5d02608fa64dd47-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-218eae1d4192534a8c62bc635874e37c-a942c905c9186146-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": "8a79601e043b2d87ac8ffa704664d35b", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:38 GMT", + "Date": "Tue, 30 Mar 2021 18:05:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "37634cc1-08fb-467d-af44-d2e84f8236e6", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "37634cc1-08fb-467d-af44-d2e84f8236e6", - "x-ms-routing-request-id": "WESTUS2:20210310T041438Z:37634cc1-08fb-467d-af44-d2e84f8236e6" + "x-ms-correlation-request-id": "deee5a19-47e8-4ded-b186-70f35aa74cf3", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "deee5a19-47e8-4ded-b186-70f35aa74cf3", + "x-ms-routing-request-id": "WESTUS:20210330T180542Z:deee5a19-47e8-4ded-b186-70f35aa74cf3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-d460c12109b0404fb9e942fa44a24097-67a8bb4345b1f749-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-e3e6cdf0d0d7e4469c54d5ff62599a66-3616c09b3393cf4a-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": "3d8b48cd69c815465a6b49d7f4aaa184", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:38 GMT", + "Date": "Tue, 30 Mar 2021 18:05:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa05e53f-48ad-4d75-8403-6b410dbe8f41", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "aa05e53f-48ad-4d75-8403-6b410dbe8f41", - "x-ms-routing-request-id": "WESTUS2:20210310T041439Z:aa05e53f-48ad-4d75-8403-6b410dbe8f41" + "x-ms-correlation-request-id": "b308001a-d3e2-48f3-ac1e-2775b490d079", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "b308001a-d3e2-48f3-ac1e-2775b490d079", + "x-ms-routing-request-id": "WESTUS:20210330T180543Z:b308001a-d3e2-48f3-ac1e-2775b490d079" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9185", @@ -93,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-4a9cf98546c1e1419f3139c7008427a6-c163564883fb8d41-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-64b7dfb308ec8840ac728887ec523ce5-ca8a3edbe3be7146-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": "aec44c796376daebe0b590d02e30b02f", "x-ms-return-client-request-id": "true" }, @@ -108,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:39 GMT", + "Date": "Tue, 30 Mar 2021 18:05:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec670082-55df-4aa8-b698-5e4721c6fa54", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "ec670082-55df-4aa8-b698-5e4721c6fa54", - "x-ms-routing-request-id": "WESTUS2:20210310T041439Z:ec670082-55df-4aa8-b698-5e4721c6fa54" + "x-ms-correlation-request-id": "13349e3d-95c8-4369-a9f0-8b73dea49d74", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "13349e3d-95c8-4369-a9f0-8b73dea49d74", + "x-ms-routing-request-id": "WESTUS:20210330T180544Z:13349e3d-95c8-4369-a9f0-8b73dea49d74" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9185", @@ -139,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-3b7b3797c3e15647929b36c502558d99-904706dce8126d47-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-bbefecb01506fc41ae7ded47c10fad84-1850ce08fcadc140-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": "2ec1b74ccdfbf7553275e1993e55b8e4", "x-ms-return-client-request-id": "true" }, @@ -155,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:39 GMT", + "Date": "Tue, 30 Mar 2021 18:05:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83e0deb3-af5e-46b7-854c-bef03ece931c", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "83e0deb3-af5e-46b7-854c-bef03ece931c", - "x-ms-routing-request-id": "WESTUS2:20210310T041439Z:83e0deb3-af5e-46b7-854c-bef03ece931c" + "x-ms-correlation-request-id": "2e70e366-f072-4133-a95f-710ee4b79cd1", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "2e70e366-f072-4133-a95f-710ee4b79cd1", + "x-ms-routing-request-id": "WESTUS:20210330T180544Z:2e70e366-f072-4133-a95f-710ee4b79cd1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9185", @@ -187,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-718c496dc5125a4eac67ec6340cedf86-335b50b23707bb4a-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-fd5066961626a047b8f0280eb2ff7a5b-3eac2902371cb847-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": "17ccec59ad0f698c5cb05d12d976e629", "x-ms-return-client-request-id": "true" }, @@ -203,15 +218,15 @@ "Cache-Control": "no-cache", "Content-Length": "275", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:39 GMT", + "Date": "Tue, 30 Mar 2021 18:05:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85baf4a0-8c18-4342-b392-d836f11b2529", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "85baf4a0-8c18-4342-b392-d836f11b2529", - "x-ms-routing-request-id": "WESTUS2:20210310T041440Z:85baf4a0-8c18-4342-b392-d836f11b2529" + "x-ms-correlation-request-id": "e3bb7737-e5ae-49c1-9b7b-b00e6d7ad17e", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "e3bb7737-e5ae-49c1-9b7b-b00e6d7ad17e", + "x-ms-routing-request-id": "WESTUS:20210330T180545Z:e3bb7737-e5ae-49c1-9b7b-b00e6d7ad17e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg9185", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTags.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTags.json index 82609ee2f4815..c7324835d1bff 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTags.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTags.json @@ -6,7 +6,11 @@ "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-bb104e9dd4881c42baec172df4a109ae-69cc7638e2186b49-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": "8f090788fce317369d006ae1ab559622", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:41 GMT", + "Date": "Tue, 30 Mar 2021 18:05:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "feaf69b8-9ff0-44c1-bccc-0c61527671f4", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "feaf69b8-9ff0-44c1-bccc-0c61527671f4", - "x-ms-routing-request-id": "WESTUS2:20210310T041441Z:feaf69b8-9ff0-44c1-bccc-0c61527671f4" + "x-ms-correlation-request-id": "568bda02-3d98-4fee-bf90-9544e6b7b340", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "568bda02-3d98-4fee-bf90-9544e6b7b340", + "x-ms-routing-request-id": "WESTUS:20210330T180545Z:568bda02-3d98-4fee-bf90-9544e6b7b340" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-53162c3ef85f514e948be87e47f2e051-ef0a7c4778b99449-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-d2ef5b7e75508744b877e58009fe6be6-99b283f0e31ce04b-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": "eb77baf501f54b5604c9e4aa496689e2", "x-ms-return-client-request-id": "true" }, @@ -63,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:41 GMT", + "Date": "Tue, 30 Mar 2021 18:05:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3d045d9-8334-4fc1-ad08-0f1279af7607", + "x-ms-correlation-request-id": "f2d17d57-6e77-4bb4-888b-bf5848eb5913", "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "f3d045d9-8334-4fc1-ad08-0f1279af7607", - "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:f3d045d9-8334-4fc1-ad08-0f1279af7607" + "x-ms-request-id": "f2d17d57-6e77-4bb4-888b-bf5848eb5913", + "x-ms-routing-request-id": "WESTUS:20210330T180546Z:f2d17d57-6e77-4bb4-888b-bf5848eb5913" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg1439", @@ -92,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-341ab6e891735748bec74e4ddf458644-4779ffee43f7ad4e-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-a60998d22d864248b942af70190a8e55-64e2bc54481a6847-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": "998148c0e6daed8d0fef57f18ff119ef", "x-ms-return-client-request-id": "true" }, @@ -107,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:42 GMT", + "Date": "Tue, 30 Mar 2021 18:05:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52aab420-da0a-4108-91f9-59689f95b6c4", + "x-ms-correlation-request-id": "f0e0fdc3-473f-4f67-9ea9-72a6bdc79fed", "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "52aab420-da0a-4108-91f9-59689f95b6c4", - "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:52aab420-da0a-4108-91f9-59689f95b6c4" + "x-ms-request-id": "f0e0fdc3-473f-4f67-9ea9-72a6bdc79fed", + "x-ms-routing-request-id": "WESTUS:20210330T180546Z:f0e0fdc3-473f-4f67-9ea9-72a6bdc79fed" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg1439", @@ -138,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-0be7f4d97397d248aaccaa86b7be0494-f1c3d6e01477ba4d-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-99054a970d3e794d845b7338996de2ce-58bed706caa5c845-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": "2bb900e234140592b343de33526d5399", "x-ms-return-client-request-id": "true" }, @@ -154,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:42 GMT", + "Date": "Tue, 30 Mar 2021 18:05:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6582e17a-f721-4e14-abef-41e7937e9c7f", + "x-ms-correlation-request-id": "73ea886f-058e-40f9-b33b-4b269e493f1d", "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "6582e17a-f721-4e14-abef-41e7937e9c7f", - "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:6582e17a-f721-4e14-abef-41e7937e9c7f" + "x-ms-request-id": "73ea886f-058e-40f9-b33b-4b269e493f1d", + "x-ms-routing-request-id": "WESTUS:20210330T180547Z:73ea886f-058e-40f9-b33b-4b269e493f1d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg1439", @@ -186,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "70", "Content-Type": "application/json", - "traceparent": "00-795b9184fe0c4442a8e4f97b93e303db-70b411490d431848-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-cb3e64017b3bf640abe333d90cce4935-4a699c5b43bc2c42-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": "0deaffe089140e6f2d8adb05aa65bc13", "x-ms-return-client-request-id": "true" }, @@ -203,15 +219,15 @@ "Cache-Control": "no-cache", "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:42 GMT", + "Date": "Tue, 30 Mar 2021 18:05:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85fedae6-97dc-4b29-a9a3-6287da2493d9", + "x-ms-correlation-request-id": "a76e4da7-c745-4767-8942-45a5b8c84af9", "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "85fedae6-97dc-4b29-a9a3-6287da2493d9", - "x-ms-routing-request-id": "WESTUS2:20210310T041443Z:85fedae6-97dc-4b29-a9a3-6287da2493d9" + "x-ms-request-id": "a76e4da7-c745-4767-8942-45a5b8c84af9", + "x-ms-routing-request-id": "WESTUS:20210330T180547Z:a76e4da7-c745-4767-8942-45a5b8c84af9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg1439", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTagsAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTagsAsync.json index 89fa76343c546..99e505e025275 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTagsAsync.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartAddTagsAsync.json @@ -6,7 +6,11 @@ "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-e5be83b13e6a8440bd4829fbc055bf23-5fa5051d5fad5b4c-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": "447e676b783102726ade6637a0c158ff", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:41 GMT", + "Date": "Tue, 30 Mar 2021 18:05:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76ddef15-2a07-4767-bcc4-e3eaf12077e8", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "76ddef15-2a07-4767-bcc4-e3eaf12077e8", - "x-ms-routing-request-id": "WESTUS2:20210310T041441Z:76ddef15-2a07-4767-bcc4-e3eaf12077e8" + "x-ms-correlation-request-id": "47e989cb-af9d-4784-b902-d4c8e79e8b51", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "47e989cb-af9d-4784-b902-d4c8e79e8b51", + "x-ms-routing-request-id": "WESTUS:20210330T180545Z:47e989cb-af9d-4784-b902-d4c8e79e8b51" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-a2e9c35b6aa2ee4e9c68508e9cbb80c8-aed1facdeb93454f-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-c9372ef13fcca54ba31490b0701478a6-588227dd1ea5f047-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": "8a2c134c254964ac071837f431426609", "x-ms-return-client-request-id": "true" }, @@ -63,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:42 GMT", + "Date": "Tue, 30 Mar 2021 18:05:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60a17ab0-db14-4386-951f-3da3d6e04c6d", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "60a17ab0-db14-4386-951f-3da3d6e04c6d", - "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:60a17ab0-db14-4386-951f-3da3d6e04c6d" + "x-ms-correlation-request-id": "0d572ed9-34b5-48ed-86d7-a766f3e12e5f", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "0d572ed9-34b5-48ed-86d7-a766f3e12e5f", + "x-ms-routing-request-id": "WESTUS:20210330T180546Z:0d572ed9-34b5-48ed-86d7-a766f3e12e5f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4838", @@ -92,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-b80fa2412a8f794bb968e57638aa55bd-7cb8806c2e9f154b-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-96d76c70a4279347923242d0ef8e0cb7-69a38399d4baef48-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": "63d69bce26e3f79da32b8c0cd3e48088", "x-ms-return-client-request-id": "true" }, @@ -107,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:42 GMT", + "Date": "Tue, 30 Mar 2021 18:05:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0708c27f-e6c4-4ace-90c4-3b4b396ac28c", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "0708c27f-e6c4-4ace-90c4-3b4b396ac28c", - "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:0708c27f-e6c4-4ace-90c4-3b4b396ac28c" + "x-ms-correlation-request-id": "5cfece72-6e4b-48c9-9959-934a017d33dd", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "5cfece72-6e4b-48c9-9959-934a017d33dd", + "x-ms-routing-request-id": "WESTUS:20210330T180547Z:5cfece72-6e4b-48c9-9959-934a017d33dd" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4838", @@ -138,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-900339cd1adce442ba5a8d020e3d5119-b19164f2fc186b4d-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-4f1814c79d052047a3d950a8d2f45575-ba4d97c9e120a14f-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": "b62af8dc69954222d1e0295f3b0e389c", "x-ms-return-client-request-id": "true" }, @@ -154,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:42 GMT", + "Date": "Tue, 30 Mar 2021 18:05:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a90cf3b-2224-40ad-bde3-d1375f33a3b2", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "4a90cf3b-2224-40ad-bde3-d1375f33a3b2", - "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:4a90cf3b-2224-40ad-bde3-d1375f33a3b2" + "x-ms-correlation-request-id": "347d38da-8095-43d0-94c7-99bdcc93dd51", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "347d38da-8095-43d0-94c7-99bdcc93dd51", + "x-ms-routing-request-id": "WESTUS:20210330T180547Z:347d38da-8095-43d0-94c7-99bdcc93dd51" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4838", @@ -186,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "70", "Content-Type": "application/json", - "traceparent": "00-d4f8898246fbb749b7e46d5ff8ba7b9b-7adf312277359c4c-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-85c7acdd633fd94ea804a72a4880723d-33d16e9e6dac574b-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": "25d12eff9b8226f47634e71e98a09022", "x-ms-return-client-request-id": "true" }, @@ -203,15 +219,15 @@ "Cache-Control": "no-cache", "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:42 GMT", + "Date": "Tue, 30 Mar 2021 18:05:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "702cb44b-aaa2-45f3-9357-6bc4abe7d6b3", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "702cb44b-aaa2-45f3-9357-6bc4abe7d6b3", - "x-ms-routing-request-id": "WESTUS2:20210310T041442Z:702cb44b-aaa2-45f3-9357-6bc4abe7d6b3" + "x-ms-correlation-request-id": "61da3c48-9607-41eb-9ad8-be997f67c783", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "61da3c48-9607-41eb-9ad8-be997f67c783", + "x-ms-routing-request-id": "WESTUS:20210330T180548Z:61da3c48-9607-41eb-9ad8-be997f67c783" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg4838", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json index f9265d4116fc1..e95b7e5692268 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-12ab0d4165db0b4faf8c9301e9040439-d9457c382c8a3f4c-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-c2f3a0aa4826a642b5409ad7b7488ae1-c5e8717d2a6fc34f-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": "81d11e498feeb67ebeadaea71f543ecd", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:57 GMT", + "Date": "Tue, 30 Mar 2021 18:06:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "54728012-f0e4-48fa-bda8-2ddaf47e6c39", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "54728012-f0e4-48fa-bda8-2ddaf47e6c39", - "x-ms-routing-request-id": "WESTUS2:20210310T041458Z:54728012-f0e4-48fa-bda8-2ddaf47e6c39" + "x-ms-correlation-request-id": "9f7bad36-91ae-4d7d-8ec9-19edb88485b2", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "9f7bad36-91ae-4d7d-8ec9-19edb88485b2", + "x-ms-routing-request-id": "WESTUS:20210330T180608Z:9f7bad36-91ae-4d7d-8ec9-19edb88485b2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-b5962b46481ea74f98da60304bbaea3a-78b6cf0b5481f24f-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-393fb344ef6a974a8e8cce40b7afcfb3-543b0d8e3aab1244-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": "a50aeeddebb826ab444a4bd5700d7f3c", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:58 GMT", + "Date": "Tue, 30 Mar 2021 18:06:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ce8aa7d-c297-477d-95ed-9afbd1505e18", - "x-ms-ratelimit-remaining-subscription-writes": "1165", - "x-ms-request-id": "8ce8aa7d-c297-477d-95ed-9afbd1505e18", - "x-ms-routing-request-id": "WESTUS2:20210310T041459Z:8ce8aa7d-c297-477d-95ed-9afbd1505e18" + "x-ms-correlation-request-id": "53d85b1e-9f07-4021-903d-8baeac8f63e2", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "53d85b1e-9f07-4021-903d-8baeac8f63e2", + "x-ms-routing-request-id": "WESTUS:20210330T180609Z:53d85b1e-9f07-4021-903d-8baeac8f63e2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2842", @@ -93,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-84d71f72cc6d594ba0418256a257b157-a64cbbe660ffff4f-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-bfbcec33f3286f4199f321f82813405e-1b837ee57f145547-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": "324223b9ff970f428b1ba4b3bd592f77", "x-ms-return-client-request-id": "true" }, @@ -108,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:58 GMT", + "Date": "Tue, 30 Mar 2021 18:06:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc0f62c3-be7b-4755-89a3-af44632acb87", - "x-ms-ratelimit-remaining-subscription-writes": "1164", - "x-ms-request-id": "bc0f62c3-be7b-4755-89a3-af44632acb87", - "x-ms-routing-request-id": "WESTUS2:20210310T041459Z:bc0f62c3-be7b-4755-89a3-af44632acb87" + "x-ms-correlation-request-id": "4a08c0df-ca17-4e03-88b4-5c755b3236d2", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "4a08c0df-ca17-4e03-88b4-5c755b3236d2", + "x-ms-routing-request-id": "WESTUS:20210330T180610Z:4a08c0df-ca17-4e03-88b4-5c755b3236d2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2842", @@ -139,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-bb0d316b6bdd284fa698e06394c33266-c3f704e2ef02604c-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-4738e626ebff594ca71ed4d433904a29-19ced00ba3ddaa4c-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": "b33fedec0faa3291255aaa4532e04d9f", "x-ms-return-client-request-id": "true" }, @@ -155,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:59 GMT", + "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": "c5c3032f-9938-41e1-9f0d-466df7c9f1ba", - "x-ms-ratelimit-remaining-subscription-writes": "1163", - "x-ms-request-id": "c5c3032f-9938-41e1-9f0d-466df7c9f1ba", - "x-ms-routing-request-id": "WESTUS2:20210310T041459Z:c5c3032f-9938-41e1-9f0d-466df7c9f1ba" + "x-ms-correlation-request-id": "027dfc33-857a-41cf-aaa7-6fa1cb4ec99a", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "027dfc33-857a-41cf-aaa7-6fa1cb4ec99a", + "x-ms-routing-request-id": "WESTUS:20210330T180610Z:027dfc33-857a-41cf-aaa7-6fa1cb4ec99a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2842", @@ -187,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-fc67809c1ecad34abaac9a8fb4bbc6fb-612a105da3afaf48-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-f8b1e947c5347a47b5caab207004083b-692756b5c6ffc243-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": "30656b2e9bfbddb9acfa199d46f769ea", "x-ms-return-client-request-id": "true" }, @@ -203,15 +218,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:59 GMT", + "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": "dee84ee8-6346-44d7-a0ae-5a6448116156", - "x-ms-ratelimit-remaining-subscription-writes": "1162", - "x-ms-request-id": "dee84ee8-6346-44d7-a0ae-5a6448116156", - "x-ms-routing-request-id": "WESTUS2:20210310T041500Z:dee84ee8-6346-44d7-a0ae-5a6448116156" + "x-ms-correlation-request-id": "49e362cb-d748-4227-a6d1-26a38e7560bd", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "49e362cb-d748-4227-a6d1-26a38e7560bd", + "x-ms-routing-request-id": "WESTUS:20210330T180611Z:49e362cb-d748-4227-a6d1-26a38e7560bd" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2842", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json index 30ff497f14256..1dd687dc45c38 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%NullKey%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-705b8ea110b7ed4ea108cc8267d9a4d9-670c1085a694484c-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-42c7d79684afdd4984b00b2be644a793-9d72a91f0ac1b74a-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": "cde72c799d1bedb86602dbeae9f76fae", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:58 GMT", + "Date": "Tue, 30 Mar 2021 18:06:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7c8d706-e233-4e47-9b6e-3acdcd37fd23", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "f7c8d706-e233-4e47-9b6e-3acdcd37fd23", - "x-ms-routing-request-id": "WESTUS2:20210310T041459Z:f7c8d706-e233-4e47-9b6e-3acdcd37fd23" + "x-ms-correlation-request-id": "b30ce373-3d8f-4af4-a6fe-271c210b0384", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "b30ce373-3d8f-4af4-a6fe-271c210b0384", + "x-ms-routing-request-id": "WESTUS:20210330T180609Z:b30ce373-3d8f-4af4-a6fe-271c210b0384" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-cdbac409bae6674fab3a65a7ef2c3de1-f4516073abc9464f-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-c3dfc2f1a5b9884cb1924a18a7d8ebd2-bf8ab253dd2cc34b-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": "8f6c9a6f5112a5933f5ed131e16a5ca7", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "218", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:59 GMT", + "Date": "Tue, 30 Mar 2021 18:06:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a29d1d72-2804-4436-9630-cabdba504de1", - "x-ms-ratelimit-remaining-subscription-writes": "1164", - "x-ms-request-id": "a29d1d72-2804-4436-9630-cabdba504de1", - "x-ms-routing-request-id": "WESTUS2:20210310T041459Z:a29d1d72-2804-4436-9630-cabdba504de1" + "x-ms-correlation-request-id": "ed3bf40e-b290-47ee-975c-510f3e553fca", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "ed3bf40e-b290-47ee-975c-510f3e553fca", + "x-ms-routing-request-id": "WESTUS:20210330T180610Z:ed3bf40e-b290-47ee-975c-510f3e553fca" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg881", @@ -93,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-e485716e6fa2434d9acaec3a34d4be74-215488eb341a7c48-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-5ce356b460ca594cb2aeb865d09777fa-ffed1030dc3c5342-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": "2ef4d881986a5c390bdea54df129ced6", "x-ms-return-client-request-id": "true" }, @@ -108,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "233", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:59 GMT", + "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": "9afaff81-4cd9-41ed-8fc1-e63f3e300acf", - "x-ms-ratelimit-remaining-subscription-writes": "1163", - "x-ms-request-id": "9afaff81-4cd9-41ed-8fc1-e63f3e300acf", - "x-ms-routing-request-id": "WESTUS2:20210310T041500Z:9afaff81-4cd9-41ed-8fc1-e63f3e300acf" + "x-ms-correlation-request-id": "50e3221e-eeab-4cff-9a29-4a05754c5b04", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "50e3221e-eeab-4cff-9a29-4a05754c5b04", + "x-ms-routing-request-id": "WESTUS:20210330T180610Z:50e3221e-eeab-4cff-9a29-4a05754c5b04" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg881", @@ -139,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-a5010531f3b7604b9ab3ff6b45493aca-8e74a243165fbc47-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-8fd25668c8aeb44e8b4cbc8db4755291-d1c64baf52eec444-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": "9a1b27b62a9bdb665427dc3ee7bc8597", "x-ms-return-client-request-id": "true" }, @@ -155,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "249", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:15:00 GMT", + "Date": "Tue, 30 Mar 2021 18:06:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f187896-f645-4bfc-826a-d7a8594f4d11", - "x-ms-ratelimit-remaining-subscription-writes": "1162", - "x-ms-request-id": "8f187896-f645-4bfc-826a-d7a8594f4d11", - "x-ms-routing-request-id": "WESTUS2:20210310T041500Z:8f187896-f645-4bfc-826a-d7a8594f4d11" + "x-ms-correlation-request-id": "a99ccd9c-60df-4e29-bc2d-420ef6f01de8", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "a99ccd9c-60df-4e29-bc2d-420ef6f01de8", + "x-ms-routing-request-id": "WESTUS:20210330T180611Z:a99ccd9c-60df-4e29-bc2d-420ef6f01de8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg881", @@ -187,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-5c28b68ee520c94baf197d7ee59993c9-022402782e2cb145-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-6015d6826802b24aa64dec6d283e6367-4b5353ef8b94824e-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": "1e68437e7f7ad6e7610f8333ac45b415", "x-ms-return-client-request-id": "true" }, @@ -203,15 +218,15 @@ "Cache-Control": "no-cache", "Content-Length": "249", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:15:00 GMT", + "Date": "Tue, 30 Mar 2021 18:06:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90074422-4b47-4640-b967-6dd2c2bd59ba", - "x-ms-ratelimit-remaining-subscription-writes": "1161", - "x-ms-request-id": "90074422-4b47-4640-b967-6dd2c2bd59ba", - "x-ms-routing-request-id": "WESTUS2:20210310T041500Z:90074422-4b47-4640-b967-6dd2c2bd59ba" + "x-ms-correlation-request-id": "ffceb513-4753-44d2-929c-b4f7c92f9f37", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "ffceb513-4753-44d2-929c-b4f7c92f9f37", + "x-ms-routing-request-id": "WESTUS:20210330T180611Z:ffceb513-4753-44d2-929c-b4f7c92f9f37" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg881", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json index 85b9fc00a510b..3f45ed0a5d05c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a60751b2cf35da41a36cc373e3f6d4b3-33201c15ca2ff14d-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-fc1caac2a3f23442b2abbdf55c76ea52-76cb40ebca60b347-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": "980c56392d34f8170c395917d912eeeb", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:53 GMT", + "Date": "Tue, 30 Mar 2021 18:06:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0faecac-fa8c-4117-9212-61f9023baeba", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "c0faecac-fa8c-4117-9212-61f9023baeba", - "x-ms-routing-request-id": "WESTUS2:20210310T041453Z:c0faecac-fa8c-4117-9212-61f9023baeba" + "x-ms-correlation-request-id": "472bcc07-83de-46df-9160-54d5fff4f055", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "472bcc07-83de-46df-9160-54d5fff4f055", + "x-ms-routing-request-id": "WESTUS:20210330T180601Z:472bcc07-83de-46df-9160-54d5fff4f055" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-bd449d7817681a44b0e7c7d6b7868bfe-799b72fa362daa4a-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-1abd16d5d669f142962537a3c6151f06-bd55f3f0cbbb714d-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": "efd02ac9dc64bf012e2693de7b6950f7", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:53 GMT", + "Date": "Tue, 30 Mar 2021 18:06:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec664f97-3b19-4312-b6e1-76385bbc15f2", - "x-ms-ratelimit-remaining-subscription-writes": "1173", - "x-ms-request-id": "ec664f97-3b19-4312-b6e1-76385bbc15f2", - "x-ms-routing-request-id": "WESTUS2:20210310T041454Z:ec664f97-3b19-4312-b6e1-76385bbc15f2" + "x-ms-correlation-request-id": "fa165c39-645f-45f1-ac3e-345e6454665a", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "fa165c39-645f-45f1-ac3e-345e6454665a", + "x-ms-routing-request-id": "WESTUS:20210330T180602Z:fa165c39-645f-45f1-ac3e-345e6454665a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5264", @@ -93,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-5cdc0607cf604f438a57c67c505790cf-899d574b25c3b14c-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-56ec1e05d91aef4b8ac2eb61f3847724-d382cbe8b450ce4d-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": "83e154f6e959a5862e009f566ff23ff3", "x-ms-return-client-request-id": "true" }, @@ -108,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:54 GMT", + "Date": "Tue, 30 Mar 2021 18:06:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5bd7b4fa-1861-458d-8ba5-5ab816f02a9d", - "x-ms-ratelimit-remaining-subscription-writes": "1172", - "x-ms-request-id": "5bd7b4fa-1861-458d-8ba5-5ab816f02a9d", - "x-ms-routing-request-id": "WESTUS2:20210310T041454Z:5bd7b4fa-1861-458d-8ba5-5ab816f02a9d" + "x-ms-correlation-request-id": "494c6a4e-7eba-4ed9-b72d-db5bb08623ce", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "494c6a4e-7eba-4ed9-b72d-db5bb08623ce", + "x-ms-routing-request-id": "WESTUS:20210330T180603Z:494c6a4e-7eba-4ed9-b72d-db5bb08623ce" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5264", @@ -139,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-31440c705df0c14ea7f81bfbde841ea7-16c07a36e109784e-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-fcde3d0e568aec4ea0552edc3d7ff251-4edd93756c8dea45-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": "a571a8dc66b879d40bd90507831a91d0", "x-ms-return-client-request-id": "true" }, @@ -155,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:54 GMT", + "Date": "Tue, 30 Mar 2021 18:06:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eeb23517-d23a-4f46-b9d0-3e0cf45503a7", - "x-ms-ratelimit-remaining-subscription-writes": "1171", - "x-ms-request-id": "eeb23517-d23a-4f46-b9d0-3e0cf45503a7", - "x-ms-routing-request-id": "WESTUS2:20210310T041454Z:eeb23517-d23a-4f46-b9d0-3e0cf45503a7" + "x-ms-correlation-request-id": "ee295186-abb2-4caf-b6f9-927e2958ec5f", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-request-id": "ee295186-abb2-4caf-b6f9-927e2958ec5f", + "x-ms-routing-request-id": "WESTUS:20210330T180603Z:ee295186-abb2-4caf-b6f9-927e2958ec5f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5264", @@ -187,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-92353588e74a2340933bdca9b56e76b4-b5eb73905189d74e-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-4ed9fc74758b3841b67aa31205aca45f-a1ff21d0837ac24f-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": "bee21f09680ddfb1a32ac0643caa503c", "x-ms-return-client-request-id": "true" }, @@ -202,15 +217,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:54 GMT", + "Date": "Tue, 30 Mar 2021 18:06:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cbfc8adb-b7a1-43b2-9242-0118d8da8b1b", - "x-ms-ratelimit-remaining-subscription-writes": "1170", - "x-ms-request-id": "cbfc8adb-b7a1-43b2-9242-0118d8da8b1b", - "x-ms-routing-request-id": "WESTUS2:20210310T041455Z:cbfc8adb-b7a1-43b2-9242-0118d8da8b1b" + "x-ms-correlation-request-id": "d0bd23cc-df5e-49bf-8912-adce02b40b00", + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-request-id": "d0bd23cc-df5e-49bf-8912-adce02b40b00", + "x-ms-routing-request-id": "WESTUS:20210330T180604Z:d0bd23cc-df5e-49bf-8912-adce02b40b00" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg5264", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json index 5fc381583fdb7..65c84bb3e8dec 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key1%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|1493765f-4e7065a7c404cc0d.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a22a3ddf9c01f0449795ff6e0f7bafe2-da06833b8926b940-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": "b63104118d8435bf401f03f069812721", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:53 GMT", + "Date": "Tue, 30 Mar 2021 18:06:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68756585-3e9b-4e60-bfcc-9228f0b17c27", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "68756585-3e9b-4e60-bfcc-9228f0b17c27", - "x-ms-routing-request-id": "WESTUS2:20210310T041453Z:68756585-3e9b-4e60-bfcc-9228f0b17c27" + "x-ms-correlation-request-id": "50455d91-904d-4979-8942-d59ef4d7c68a", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "50455d91-904d-4979-8942-d59ef4d7c68a", + "x-ms-routing-request-id": "WESTUS:20210330T180602Z:50455d91-904d-4979-8942-d59ef4d7c68a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-35ce2542da5028478b7c0adbe17cf085-a21da4c2f8a40e47-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-6709fab0e3e2124e9f9d33d99e36bf8a-ed2afcbf11e76a49-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": "f3e74d87f83311cbd2ec4e92e7bec035", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:53 GMT", + "Date": "Tue, 30 Mar 2021 18:06:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d43c718-cc4e-44ef-9970-597b37c83ba6", - "x-ms-ratelimit-remaining-subscription-writes": "1171", - "x-ms-request-id": "1d43c718-cc4e-44ef-9970-597b37c83ba6", - "x-ms-routing-request-id": "WESTUS2:20210310T041454Z:1d43c718-cc4e-44ef-9970-597b37c83ba6" + "x-ms-correlation-request-id": "30f80e30-96ab-4723-90c4-1558f56e0887", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "30f80e30-96ab-4723-90c4-1558f56e0887", + "x-ms-routing-request-id": "WESTUS:20210330T180603Z:30f80e30-96ab-4723-90c4-1558f56e0887" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8660", @@ -93,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-303e7e3485c1184098e7f86471729a6b-8507ed792728614e-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-bd85b1a43e13d948b58b5c93508b3125-9a811f9ff9e7f148-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": "be8623aed8eb86cd37b9ebaac8f9da3f", "x-ms-return-client-request-id": "true" }, @@ -108,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:54 GMT", + "Date": "Tue, 30 Mar 2021 18:06:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59443082-c2c3-4e43-89f4-2e15475a557e", - "x-ms-ratelimit-remaining-subscription-writes": "1170", - "x-ms-request-id": "59443082-c2c3-4e43-89f4-2e15475a557e", - "x-ms-routing-request-id": "WESTUS2:20210310T041454Z:59443082-c2c3-4e43-89f4-2e15475a557e" + "x-ms-correlation-request-id": "7245cfb3-e88d-470e-a1db-6dd9759929d6", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "7245cfb3-e88d-470e-a1db-6dd9759929d6", + "x-ms-routing-request-id": "WESTUS:20210330T180603Z:7245cfb3-e88d-470e-a1db-6dd9759929d6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8660", @@ -139,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-d98a7c565cadda4d937f84aa4dd907ac-bd2333daf041d340-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-4b213cff69af6744bba10744f8680ef5-75dabf812efc354c-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": "27ee3e4d4ddf0bdd66a4b2a171a35861", "x-ms-return-client-request-id": "true" }, @@ -155,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:54 GMT", + "Date": "Tue, 30 Mar 2021 18:06:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4c61bc3-5e16-4e01-a5a6-6c2603f9c431", - "x-ms-ratelimit-remaining-subscription-writes": "1169", - "x-ms-request-id": "d4c61bc3-5e16-4e01-a5a6-6c2603f9c431", - "x-ms-routing-request-id": "WESTUS2:20210310T041455Z:d4c61bc3-5e16-4e01-a5a6-6c2603f9c431" + "x-ms-correlation-request-id": "2a303e39-2fef-4523-89fe-3353906766ce", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "2a303e39-2fef-4523-89fe-3353906766ce", + "x-ms-routing-request-id": "WESTUS:20210330T180604Z:2a303e39-2fef-4523-89fe-3353906766ce" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8660", @@ -187,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-7d765d955c34384fa8a04a7690ac64b8-2c594b8c0d5d8649-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-f20961fbd4aa6340bb555a9fc1247f6f-66a037a0a9f88949-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": "5dbaba4363a1ae547f61bc790d2049d9", "x-ms-return-client-request-id": "true" }, @@ -202,15 +217,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:55 GMT", + "Date": "Tue, 30 Mar 2021 18:06:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12479c3b-82c2-4ca0-b9ae-f436d4cfed98", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "12479c3b-82c2-4ca0-b9ae-f436d4cfed98", - "x-ms-routing-request-id": "WESTUS2:20210310T041455Z:12479c3b-82c2-4ca0-b9ae-f436d4cfed98" + "x-ms-correlation-request-id": "f80319fb-a8c9-4461-8a36-1b231acf2335", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "f80319fb-a8c9-4461-8a36-1b231acf2335", + "x-ms-routing-request-id": "WESTUS:20210330T180604Z:f80319fb-a8c9-4461-8a36-1b231acf2335" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8660", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json index fbdc9433ff0f5..994e0a1a8b522 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String]).json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-636d569ab1b1954ebb64987c78d93a4d-ebdf21a9c081e445-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-eabcd54cab71f2489e5c8845df5b4c3d-fc503ece4862c547-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": "a7ee9d39096528f2c3ee4aa8e429747f", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:55 GMT", + "Date": "Tue, 30 Mar 2021 18:06:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38921ac6-e54c-4022-a794-14730a74b8c5", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "38921ac6-e54c-4022-a794-14730a74b8c5", - "x-ms-routing-request-id": "WESTUS2:20210310T041455Z:38921ac6-e54c-4022-a794-14730a74b8c5" + "x-ms-correlation-request-id": "dd688ceb-8db8-42c3-98f8-cf4d527c9885", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "dd688ceb-8db8-42c3-98f8-cf4d527c9885", + "x-ms-routing-request-id": "WESTUS:20210330T180604Z:dd688ceb-8db8-42c3-98f8-cf4d527c9885" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-b2e161e86918fe46906892fef5412309-9b40f1d602d3ff48-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-d24b7cb765f604418ccdb3b544593ee4-4b1a72a72baf6645-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": "77198d81c27c504e969518aea57dc7b4", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:56 GMT", + "Date": "Tue, 30 Mar 2021 18:06:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7eb9a99f-c9b7-45c2-8741-5d3f42b15cdc", - "x-ms-ratelimit-remaining-subscription-writes": "1169", - "x-ms-request-id": "7eb9a99f-c9b7-45c2-8741-5d3f42b15cdc", - "x-ms-routing-request-id": "WESTUS2:20210310T041456Z:7eb9a99f-c9b7-45c2-8741-5d3f42b15cdc" + "x-ms-correlation-request-id": "cacdb63c-6a2d-450a-993b-6211dad798b6", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "cacdb63c-6a2d-450a-993b-6211dad798b6", + "x-ms-routing-request-id": "WESTUS:20210330T180606Z:cacdb63c-6a2d-450a-993b-6211dad798b6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8422", @@ -93,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-41af02729495eb48881e17c00058f689-539997b22243694b-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-ffc138a19631cf43a2ab3ba0624571d1-77b0f960e51cc949-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": "aa107969ee899ba2d227c4b7f338dbeb", "x-ms-return-client-request-id": "true" }, @@ -108,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:56 GMT", + "Date": "Tue, 30 Mar 2021 18:06:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08c1fe90-172b-4e04-82a9-ebb209cbf9db", - "x-ms-ratelimit-remaining-subscription-writes": "1168", - "x-ms-request-id": "08c1fe90-172b-4e04-82a9-ebb209cbf9db", - "x-ms-routing-request-id": "WESTUS2:20210310T041456Z:08c1fe90-172b-4e04-82a9-ebb209cbf9db" + "x-ms-correlation-request-id": "2b3e89ac-35de-4a81-9ade-9107c6341154", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "2b3e89ac-35de-4a81-9ade-9107c6341154", + "x-ms-routing-request-id": "WESTUS:20210330T180606Z:2b3e89ac-35de-4a81-9ade-9107c6341154" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8422", @@ -139,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-e5ebab2b2f3cf9418f1829d1d00b379f-076e0656db77914f-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-758e3b0abfc10f43a3dbe42c601d256c-d83a870ae9617740-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": "be23300b5fbadabca057cf74d9791e71", "x-ms-return-client-request-id": "true" }, @@ -155,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:56 GMT", + "Date": "Tue, 30 Mar 2021 18:06:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd1ae8ff-c999-4309-9f13-22a7a9cbba28", - "x-ms-ratelimit-remaining-subscription-writes": "1167", - "x-ms-request-id": "fd1ae8ff-c999-4309-9f13-22a7a9cbba28", - "x-ms-routing-request-id": "WESTUS2:20210310T041457Z:fd1ae8ff-c999-4309-9f13-22a7a9cbba28" + "x-ms-correlation-request-id": "c34ab1dd-d911-4a2f-a422-ca5dcc0a43b4", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-request-id": "c34ab1dd-d911-4a2f-a422-ca5dcc0a43b4", + "x-ms-routing-request-id": "WESTUS:20210330T180607Z:c34ab1dd-d911-4a2f-a422-ca5dcc0a43b4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8422", @@ -187,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-76954eb0ab459a4cb69e783796a07e48-c476fd0d3ba7b74b-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-c21bcf63896b34419afef3d232047b79-abf2765056012245-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": "af7af383d463937eea7da554fd965c5d", "x-ms-return-client-request-id": "true" }, @@ -202,15 +217,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:57 GMT", + "Date": "Tue, 30 Mar 2021 18:06:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29e65679-9a38-4c93-b97e-f60951835f57", - "x-ms-ratelimit-remaining-subscription-writes": "1166", - "x-ms-request-id": "29e65679-9a38-4c93-b97e-f60951835f57", - "x-ms-routing-request-id": "WESTUS2:20210310T041457Z:29e65679-9a38-4c93-b97e-f60951835f57" + "x-ms-correlation-request-id": "6b53f8c5-adbf-4027-918d-a6d89986a9fa", + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-request-id": "6b53f8c5-adbf-4027-918d-a6d89986a9fa", + "x-ms-routing-request-id": "WESTUS:20210330T180607Z:6b53f8c5-adbf-4027-918d-a6d89986a9fa" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8422", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json index eb88152878c06..08c490d4eabaf 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartRemoveTag(%key2%,System.Collections.Generic.Dictionary`2[System.String,System.String])Async.json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|14937660-4e7065a7c404cc0d.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-43e90b437f627545a58d082a31de5676-73aafa0000ba2c49-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": "f45ee950dce0505d8019e58ca09fa48f", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:55 GMT", + "Date": "Tue, 30 Mar 2021 18:06:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21cd9319-a3ff-43a1-806f-55798a22c16d", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "21cd9319-a3ff-43a1-806f-55798a22c16d", - "x-ms-routing-request-id": "WESTUS2:20210310T041456Z:21cd9319-a3ff-43a1-806f-55798a22c16d" + "x-ms-correlation-request-id": "007fc9f1-e010-4e04-9ab1-0e2c1b45f81d", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "007fc9f1-e010-4e04-9ab1-0e2c1b45f81d", + "x-ms-routing-request-id": "WESTUS:20210330T180605Z:007fc9f1-e010-4e04-9ab1-0e2c1b45f81d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-3ff6746082d6504c9f4dd6695227ed5b-441bc2d3409e3549-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-e57236fb6a9bd146ba72aac8886b9649-19d1fa8d82915242-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": "b0a07267a7100a936287d9f150678f75", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:56 GMT", + "Date": "Tue, 30 Mar 2021 18:06:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1957e6dd-ed96-4d3c-9290-ec09d7c2e154", - "x-ms-ratelimit-remaining-subscription-writes": "1168", - "x-ms-request-id": "1957e6dd-ed96-4d3c-9290-ec09d7c2e154", - "x-ms-routing-request-id": "WESTUS2:20210310T041457Z:1957e6dd-ed96-4d3c-9290-ec09d7c2e154" + "x-ms-correlation-request-id": "a05c9b7a-b774-4f59-a59d-5b24ccb9c92c", + "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-request-id": "a05c9b7a-b774-4f59-a59d-5b24ccb9c92c", + "x-ms-routing-request-id": "WESTUS:20210330T180606Z:a05c9b7a-b774-4f59-a59d-5b24ccb9c92c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg3944", @@ -93,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-ad324a4ebf8205438d2d5623eb46d8c9-507802228b00e34a-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-d81017fc54a0664ea8a2503692c8d601-4f71025d02a0e645-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": "666aabd6c0153e5cb0d444e38a4df26e", "x-ms-return-client-request-id": "true" }, @@ -108,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:56 GMT", + "Date": "Tue, 30 Mar 2021 18:06:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94f6e4c8-2ff0-4fbd-9067-c6cbd04a4859", - "x-ms-ratelimit-remaining-subscription-writes": "1167", - "x-ms-request-id": "94f6e4c8-2ff0-4fbd-9067-c6cbd04a4859", - "x-ms-routing-request-id": "WESTUS2:20210310T041457Z:94f6e4c8-2ff0-4fbd-9067-c6cbd04a4859" + "x-ms-correlation-request-id": "5b1001a8-1f98-4f66-b799-a5bd23312604", + "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-request-id": "5b1001a8-1f98-4f66-b799-a5bd23312604", + "x-ms-routing-request-id": "WESTUS:20210330T180606Z:5b1001a8-1f98-4f66-b799-a5bd23312604" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg3944", @@ -139,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-fb88d43da793c04f85217fa1c2f0b32b-e1ed7e661b4d3d4f-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-3122d3211b451a4d8a9c14e459275d24-9e28f372d7c6dd41-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": "f4207cf95f54423fcbea7d55835f30b1", "x-ms-return-client-request-id": "true" }, @@ -155,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:57 GMT", + "Date": "Tue, 30 Mar 2021 18:06:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03517359-10b8-47a5-bf7b-e1df44aa272c", - "x-ms-ratelimit-remaining-subscription-writes": "1166", - "x-ms-request-id": "03517359-10b8-47a5-bf7b-e1df44aa272c", - "x-ms-routing-request-id": "WESTUS2:20210310T041457Z:03517359-10b8-47a5-bf7b-e1df44aa272c" + "x-ms-correlation-request-id": "9987455d-56bf-409b-ae08-687d0f5da345", + "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-request-id": "9987455d-56bf-409b-ae08-687d0f5da345", + "x-ms-routing-request-id": "WESTUS:20210330T180607Z:9987455d-56bf-409b-ae08-687d0f5da345" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg3944", @@ -187,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-de4482d9ee6287479f40a1f76846f8f0-af2ecbf29a967344-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-f4b521d20f410241bc3987d938eb0e08-040edb1380b91d46-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": "f3ca17562839a7971661ff3c63b07f15", "x-ms-return-client-request-id": "true" }, @@ -202,15 +217,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:58 GMT", + "Date": "Tue, 30 Mar 2021 18:06:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "458662fc-5a1f-44b6-ac34-eff37315b30c", - "x-ms-ratelimit-remaining-subscription-writes": "1165", - "x-ms-request-id": "458662fc-5a1f-44b6-ac34-eff37315b30c", - "x-ms-routing-request-id": "WESTUS2:20210310T041458Z:458662fc-5a1f-44b6-ac34-eff37315b30c" + "x-ms-correlation-request-id": "6e5d9afa-04c6-4f43-8365-1330d50798f4", + "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-request-id": "6e5d9afa-04c6-4f43-8365-1330d50798f4", + "x-ms-routing-request-id": "WESTUS:20210330T180607Z:6e5d9afa-04c6-4f43-8365-1330d50798f4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg3944", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTags.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTags.json index ad3171e9d2a2f..9fdd33bcb22f9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTags.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTags.json @@ -6,7 +6,11 @@ "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-076e6a795681c44682f53586bf50d9aa-311ed20e03a4a044-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": "028ff19e6834c553adcf48afb032cc05", "x-ms-return-client-request-id": "true" }, @@ -16,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:44 GMT", + "Date": "Tue, 30 Mar 2021 18:05:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce53ec23-f092-4e2c-8509-7bff600f7b3b", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "ce53ec23-f092-4e2c-8509-7bff600f7b3b", - "x-ms-routing-request-id": "WESTUS2:20210310T041444Z:ce53ec23-f092-4e2c-8509-7bff600f7b3b" + "x-ms-correlation-request-id": "4c6410a7-f95d-42ce-a1fa-612ddd510264", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "4c6410a7-f95d-42ce-a1fa-612ddd510264", + "x-ms-routing-request-id": "WESTUS:20210330T180548Z:4c6410a7-f95d-42ce-a1fa-612ddd510264" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -49,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-54ce8e6450b203418897b21aaef12e9f-00e0058183399443-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-56534613576a3541a8536241201a3867-bc0448de88b67845-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": "51c21b86ece8396d1f01fc99482002ac", "x-ms-return-client-request-id": "true" }, @@ -63,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:44 GMT", + "Date": "Tue, 30 Mar 2021 18:05:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26fea46a-645f-4411-9a87-d9f6ca6ac7e9", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "26fea46a-645f-4411-9a87-d9f6ca6ac7e9", - "x-ms-routing-request-id": "WESTUS2:20210310T041444Z:26fea46a-645f-4411-9a87-d9f6ca6ac7e9" + "x-ms-correlation-request-id": "497cb51c-77a6-45fb-a3e8-271b37675a2b", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "497cb51c-77a6-45fb-a3e8-271b37675a2b", + "x-ms-routing-request-id": "WESTUS:20210330T180549Z:497cb51c-77a6-45fb-a3e8-271b37675a2b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2945", @@ -92,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-328969ed0455184a91a10c2d386f78b6-5728046a93c0384c-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-b1844f8e370d1545a7c4fc96d589b638-fe85b82e26edf547-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": "9f0ac8a4fbde6a57d02769206fa3e9ad", "x-ms-return-client-request-id": "true" }, @@ -107,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:44 GMT", + "Date": "Tue, 30 Mar 2021 18:05:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ed1cb2f-20f7-4d89-9cfa-1c340162ea5e", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "6ed1cb2f-20f7-4d89-9cfa-1c340162ea5e", - "x-ms-routing-request-id": "WESTUS2:20210310T041444Z:6ed1cb2f-20f7-4d89-9cfa-1c340162ea5e" + "x-ms-correlation-request-id": "72e1b6cb-b397-4651-841f-cc61ab21dd33", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "72e1b6cb-b397-4651-841f-cc61ab21dd33", + "x-ms-routing-request-id": "WESTUS:20210330T180549Z:72e1b6cb-b397-4651-841f-cc61ab21dd33" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2945", @@ -138,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-803e9e3f4a867b4ba4944edbd0e20522-c1c8e3fb98fe9e40-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-33482db25a60d54ab42aa9b54151d6a3-12611d5803f34d43-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": "6aa30fff743104b521c91466572b64ae", "x-ms-return-client-request-id": "true" }, @@ -154,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:45 GMT", + "Date": "Tue, 30 Mar 2021 18:05:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4427b5e6-de69-46d4-acc6-a52e28fc17d9", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "4427b5e6-de69-46d4-acc6-a52e28fc17d9", - "x-ms-routing-request-id": "WESTUS2:20210310T041445Z:4427b5e6-de69-46d4-acc6-a52e28fc17d9" + "x-ms-correlation-request-id": "7eceb5b1-35af-4a5e-a3ca-33a2fe5377b9", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "7eceb5b1-35af-4a5e-a3ca-33a2fe5377b9", + "x-ms-routing-request-id": "WESTUS:20210330T180550Z:7eceb5b1-35af-4a5e-a3ca-33a2fe5377b9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2945", @@ -186,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-643cfca360a06d40afb9be6f8e6bd1f0-05838771dc85374e-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-8463d4a5311f694e81cd9f40d76b13b6-9f52b33767574a4a-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": "690c034665c28b3bc45880c1824dca7c", "x-ms-return-client-request-id": "true" }, @@ -202,15 +218,15 @@ "Cache-Control": "no-cache", "Content-Length": "275", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:45 GMT", + "Date": "Tue, 30 Mar 2021 18:05:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26522faf-2c1e-4d33-a077-af3a6baadd8f", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "26522faf-2c1e-4d33-a077-af3a6baadd8f", - "x-ms-routing-request-id": "WESTUS2:20210310T041445Z:26522faf-2c1e-4d33-a077-af3a6baadd8f" + "x-ms-correlation-request-id": "c38e4e5d-fac2-43d3-918e-2d9b3631a4d3", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "c38e4e5d-fac2-43d3-918e-2d9b3631a4d3", + "x-ms-routing-request-id": "WESTUS:20210330T180550Z:c38e4e5d-fac2-43d3-918e-2d9b3631a4d3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg2945", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTagsAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTagsAsync.json index 1debf7e7d3260..cce51ec1aef45 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTagsAsync.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/TaggableResourceTests/TestStartSetTagsAsync.json @@ -6,8 +6,11 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|1493765c-4e7065a7c404cc0d.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c18ad509dc80514bb5affae34731739a-156ce50e11ba1c4e-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": "a7f4b134f6509b0c07126ff257bede52", "x-ms-return-client-request-id": "true" }, @@ -17,15 +20,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:43 GMT", + "Date": "Tue, 30 Mar 2021 18:05:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ed90724-543c-45b8-9c70-2a0448dd4e60", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "8ed90724-543c-45b8-9c70-2a0448dd4e60", - "x-ms-routing-request-id": "WESTUS2:20210310T041444Z:8ed90724-543c-45b8-9c70-2a0448dd4e60" + "x-ms-correlation-request-id": "21780f9f-ce21-4674-aa2a-1891bbc91b85", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "21780f9f-ce21-4674-aa2a-1891bbc91b85", + "x-ms-routing-request-id": "WESTUS:20210330T180549Z:21780f9f-ce21-4674-aa2a-1891bbc91b85" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -50,8 +53,11 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-6f8d75b94ecabc409b797ffdaeb63554-8bb36712dd8e2a4a-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-4bdfc1362bf26c4183a307c932def026-b4f4cb649e3d8b46-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": "ffc6d5eab6bcfb6f574117900f44a4ab", "x-ms-return-client-request-id": "true" }, @@ -64,15 +70,15 @@ "Cache-Control": "no-cache", "Content-Length": "220", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:44 GMT", + "Date": "Tue, 30 Mar 2021 18:05:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4b1bdb4-11f4-4a62-a16e-36cc17917476", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "b4b1bdb4-11f4-4a62-a16e-36cc17917476", - "x-ms-routing-request-id": "WESTUS2:20210310T041444Z:b4b1bdb4-11f4-4a62-a16e-36cc17917476" + "x-ms-correlation-request-id": "6dc38222-1add-4b2c-a3f6-7f0f46e32098", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "6dc38222-1add-4b2c-a3f6-7f0f46e32098", + "x-ms-routing-request-id": "WESTUS:20210330T180549Z:6dc38222-1add-4b2c-a3f6-7f0f46e32098" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8020", @@ -93,8 +99,11 @@ "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-fc7366336eda0c429ac28e472f4c1397-31c4db4a2f97fe45-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-6128ba57214e414796289b596d325fda-f2ed3e402caa394f-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": "28791bc5351ca362c91b6a00d5899afb", "x-ms-return-client-request-id": "true" }, @@ -108,15 +117,15 @@ "Cache-Control": "no-cache", "Content-Length": "235", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:44 GMT", + "Date": "Tue, 30 Mar 2021 18:05:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f46fe60-1e6e-45e5-b5fe-480dc7fce392", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "2f46fe60-1e6e-45e5-b5fe-480dc7fce392", - "x-ms-routing-request-id": "WESTUS2:20210310T041445Z:2f46fe60-1e6e-45e5-b5fe-480dc7fce392" + "x-ms-correlation-request-id": "b7b7aa81-d927-48ba-98f7-369d36f900d4", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "b7b7aa81-d927-48ba-98f7-369d36f900d4", + "x-ms-routing-request-id": "WESTUS:20210330T180550Z:b7b7aa81-d927-48ba-98f7-369d36f900d4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8020", @@ -139,8 +148,11 @@ "Authorization": "Sanitized", "Content-Length": "42", "Content-Type": "application/json", - "traceparent": "00-c0de0d34abfc9946a0317ee3e9d0f5d7-244bd8114fa3af4a-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-00d8b826b2fcba4297e8cf087648ebd7-774cddfdf9ee3b46-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": "0f06d885e08afb7785acf8b4f50bf8ce", "x-ms-return-client-request-id": "true" }, @@ -155,15 +167,15 @@ "Cache-Control": "no-cache", "Content-Length": "251", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:44 GMT", + "Date": "Tue, 30 Mar 2021 18:05:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3beb77b-04ba-4c86-9dd8-0459934404f3", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-request-id": "b3beb77b-04ba-4c86-9dd8-0459934404f3", - "x-ms-routing-request-id": "WESTUS2:20210310T041445Z:b3beb77b-04ba-4c86-9dd8-0459934404f3" + "x-ms-correlation-request-id": "cb5277ad-96c4-49b7-8c05-7aeea0e335f4", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "cb5277ad-96c4-49b7-8c05-7aeea0e335f4", + "x-ms-routing-request-id": "WESTUS:20210330T180550Z:cb5277ad-96c4-49b7-8c05-7aeea0e335f4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8020", @@ -187,8 +199,11 @@ "Authorization": "Sanitized", "Content-Length": "66", "Content-Type": "application/json", - "traceparent": "00-2a71d75394a9524091de8bdebb39cd54-fcac251bf399cf48-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-bc5db7c34d99974089cd61e24bc91b82-19735e4322b4c94f-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": "a29147ca2965b517722335a14c6e26ce", "x-ms-return-client-request-id": "true" }, @@ -203,15 +218,15 @@ "Cache-Control": "no-cache", "Content-Length": "275", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 10 Mar 2021 04:14:45 GMT", + "Date": "Tue, 30 Mar 2021 18:05:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a120c397-117a-4718-9371-c8302a2fdcc3", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-request-id": "a120c397-117a-4718-9371-c8302a2fdcc3", - "x-ms-routing-request-id": "WESTUS2:20210310T041445Z:a120c397-117a-4718-9371-c8302a2fdcc3" + "x-ms-correlation-request-id": "896aad6e-8fe5-4359-b694-e69c542068eb", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "896aad6e-8fe5-4359-b694-e69c542068eb", + "x-ms-routing-request-id": "WESTUS:20210330T180551Z:896aad6e-8fe5-4359-b694-e69c542068eb" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/rg8020", diff --git a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs index 5896761a24d94..859272060d737 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs @@ -42,7 +42,6 @@ public static Pageable ListVirtualMachines(this SubscriptionOper s => new VirtualMachine(subscription, new VirtualMachineData(s))); } ); - subscription.Id.SubscriptionId, } /// diff --git a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs index 9eae56acfa653..1fef2e0db422f 100644 --- a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs @@ -19,7 +19,7 @@ public static class SubscriptionExtensions private static NetworkManagementClient GetNetworkClient(Uri baseUri, string subscriptionGuid, TokenCredential credential, AzureResourceManagerClientOptions clientOptions) { return new NetworkManagementClient( - subscription.Id.SubscriptionId, + subscriptionGuid, baseUri, credential, clientOptions.Convert()); From daa3681a908f3e8e31fa49e4e7fa5d7a859e68b7 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Tue, 30 Mar 2021 12:42:46 -0700 Subject: [PATCH 25/35] fix ci --- common/ManagementCoreShared/ClientContext.cs | 4 ++-- .../src/ManagementInterceptor.cs | 3 +-- .../src/ContainerBase.cs | 16 ++++++++++++---- .../src/SubscriptionOperations.cs | 4 ++-- .../src/TenantOperations.cs | 2 +- .../tests/Scenario/ClientContextTests.cs | 6 +++--- 6 files changed, 21 insertions(+), 14 deletions(-) diff --git a/common/ManagementCoreShared/ClientContext.cs b/common/ManagementCoreShared/ClientContext.cs index 9d67ee2a11a43..3d155cc977543 100644 --- a/common/ManagementCoreShared/ClientContext.cs +++ b/common/ManagementCoreShared/ClientContext.cs @@ -14,7 +14,7 @@ internal class ClientContext /// /// client options /// - public AzureResourceManagerClientOptions ClientOptions { get; set; } + public ArmClientOptions ClientOptions { get; set; } /// /// credential @@ -32,7 +32,7 @@ internal class ClientContext /// /// /// - internal ClientContext(AzureResourceManagerClientOptions clientOptions, TokenCredential credential, Uri uri) + internal ClientContext(ArmClientOptions clientOptions, TokenCredential credential, Uri uri) { ClientOptions = clientOptions; Credential = credential; diff --git a/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs index 15ab1eba2cae6..7a1a1312dfa1b 100644 --- a/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs +++ b/sdk/core/Azure.Core.TestFramework/src/ManagementInterceptor.cs @@ -29,7 +29,7 @@ public void Intercept(IInvocation invocation) } var type = result.GetType(); - if (type.Name.StartsWith("Task")) //have to add case for container proxy + if (type.Name.StartsWith("Task")) { var taskResultType = type.GetGenericArguments()[0]; if (taskResultType.Name.StartsWith("ArmResponse") || taskResultType.Name.StartsWith("ArmOperation")) @@ -59,7 +59,6 @@ public void Intercept(IInvocation invocation) invocation.ReturnValue = _testBase.InstrumentClient(type, result, new IInterceptor[] { new ManagementInterceptor(_testBase) }); } else if (type.BaseType.Name.StartsWith("AsyncPageable")) - //else if (type.BaseType.Name.StartsWith("AsyncPageable") || type.BaseType.Name.StartsWith("Value")) { invocation.ReturnValue = s_proxyGenerator.CreateClassProxyWithTarget(type, result, new IInterceptor[] { new ManagementInterceptor(_testBase) }); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs index fa788582d0b56..b8bc5b006b2ee 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs @@ -56,15 +56,19 @@ protected ContainerBase(ResourceOperationsBase parent) /// Whether or not the resource existed. public virtual TOperations TryGet(string resourceName) { + using var scope = Diagnostics.CreateScope("ContainerBase.TryGet"); + scope.Start(); + var op = GetOperation(resourceName); try { return op.Get().Value; } - catch (RequestFailedException e) when (e.Status == 404) + catch (Exception e) { - return null; + scope.Failed(e); + throw; } } @@ -77,15 +81,19 @@ public virtual TOperations TryGet(string resourceName) /// Whether or not the resource existed. public async virtual Task TryGetAsync(string resourceName, CancellationToken cancellationToken = default) { + using var scope = Diagnostics.CreateScope("ContainerBase.TryGetAsync"); + scope.Start(); + var op = GetOperation(resourceName); try { return (await op.GetAsync(cancellationToken).ConfigureAwait(false)).Value; } - catch + catch (Exception e) { - return null; + scope.Failed(e); + throw; } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs index 79e79e3bcff47..dc11e141e2d13 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/SubscriptionOperations.cs @@ -52,7 +52,7 @@ protected SubscriptionOperations(SubscriptionOperations subscription, Subscripti /// /// /// - public virtual T ListResources(Func func) + public virtual T ListResources(Func func) { return func(BaseUri, Credential, ClientOptions); } @@ -63,7 +63,7 @@ public virtual T ListResources(Func /// /// - public virtual AsyncPageable ListResourcesAsync(Func> func) + public virtual AsyncPageable ListResourcesAsync(Func> func) { return func(BaseUri, Credential, ClientOptions); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs index 663ed94d3d9fe..f09fcd714f4d3 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/TenantOperations.cs @@ -42,7 +42,7 @@ internal TenantOperations(ArmClientOptions options, TokenCredential credential, /// /// /// - public virtual T ListResources(Func func) + public virtual T ListResources(Func func) { return func(BaseUri, Credential, ClientOptions); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs index 2099c258cfd94..cc5e59571a7fa 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs @@ -20,21 +20,21 @@ public ClientContextTests(bool isAsync) [RecordedTest] public async Task TestClientContextPolicy() { - AzureResourceManagerClientOptions options1 = new AzureResourceManagerClientOptions(); + ArmClientOptions options1 = new ArmClientOptions(); var dummyPolicy1 = new dummyPolicy(); var dummyPolicy2 = new dummyPolicy2(); options1.AddPolicy(dummyPolicy1, HttpPipelinePosition.PerCall); var client1 = GetArmClient(options1); Console.WriteLine("-----Client 1-----"); - await foreach (var sub in client1.GetSubscriptionContainer().ListAsync()) + await foreach (var sub in client1.GetSubscriptions().ListAsync()) { Console.WriteLine($"Check 1: Found {sub.Data.DisplayName}"); } Assert.AreEqual(2, dummyPolicy1.numMsgGot); options1.AddPolicy(dummyPolicy2, HttpPipelinePosition.PerCall); - await foreach (var sub in client1.GetSubscriptionContainer().ListAsync()) + await foreach (var sub in client1.GetSubscriptions().ListAsync()) { Console.WriteLine($"Check 2: Found {sub.Data.DisplayName}"); } From d80c1dce7e1be7b11cd1b0b383b2dc68a21d960b Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Tue, 30 Mar 2021 12:44:53 -0700 Subject: [PATCH 26/35] Update Program.cs --- sdk/resourcemanager/Proto.Client/src/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/resourcemanager/Proto.Client/src/Program.cs b/sdk/resourcemanager/Proto.Client/src/Program.cs index de1c63d4ed5c1..a0a56c5a56e76 100644 --- a/sdk/resourcemanager/Proto.Client/src/Program.cs +++ b/sdk/resourcemanager/Proto.Client/src/Program.cs @@ -11,7 +11,7 @@ static void Main(string[] args) Scenario scenario = null; try { - scenario = ScenarioFactory.GetScenario(Scenarios.CreateSingleVmExample); + scenario = ScenarioFactory.GetScenario(Scenarios.GenericResourceOperationsExample); scenario.Execute(); } finally From d7e8be66584013864df92757af6454ffcfb18e7a Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Tue, 30 Mar 2021 12:50:36 -0700 Subject: [PATCH 27/35] update proto --- .../Proto.Client/compute/Extensions/SubscriptionExtensions.cs | 2 +- .../Proto.Client/network/Extensions/SubscriptionExtensions.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs index 859272060d737..8503f79e2b141 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/compute/Extensions/SubscriptionExtensions.cs @@ -14,7 +14,7 @@ namespace Proto.Compute /// public static class SubscriptionExtensions { - private static ComputeManagementClient GetComputeClient(Uri baseUri, string subscriptionGuid, TokenCredential credential, AzureResourceManagerClientOptions clientOptions) + private static ComputeManagementClient GetComputeClient(Uri baseUri, string subscriptionGuid, TokenCredential credential, ArmClientOptions clientOptions) { return new ComputeManagementClient( baseUri, diff --git a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs index 1fef2e0db422f..ef06733a28dd9 100644 --- a/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs +++ b/sdk/resourcemanager/Proto.Client/network/Extensions/SubscriptionExtensions.cs @@ -16,7 +16,7 @@ public static class SubscriptionExtensions { #region Virtual Network Operations - private static NetworkManagementClient GetNetworkClient(Uri baseUri, string subscriptionGuid, TokenCredential credential, AzureResourceManagerClientOptions clientOptions) + private static NetworkManagementClient GetNetworkClient(Uri baseUri, string subscriptionGuid, TokenCredential credential, ArmClientOptions clientOptions) { return new NetworkManagementClient( subscriptionGuid, From bef867e5a0f567e99f0113f146d5758e12e0907e Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Tue, 30 Mar 2021 14:42:23 -0700 Subject: [PATCH 28/35] fix test --- .../src/ContainerBase.cs | 18 +- .../Azure.ResourceManager.Core.Tests.csproj | 1 + .../tests/Scenario/ContainerTryGetTest.cs | 17 +- .../ContainerTryGetTest/DoesExistTest().json | 67 +++--- .../DoesExistTest()Async.json | 204 ------------------ .../TryGetAsyncTest().json | 203 ----------------- .../TryGetAsyncTest()Async.json | 203 ----------------- .../ContainerTryGetTest/TryGetTest().json | 80 +++---- .../TryGetTest()Async.json | 80 +++---- 9 files changed, 132 insertions(+), 741 deletions(-) delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest()Async.json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest().json delete mode 100644 sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs index b8bc5b006b2ee..a8ddabe2ca6ad 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ContainerBase.cs @@ -53,17 +53,23 @@ protected ContainerBase(ResourceOperationsBase parent) /// Returns the resource from Azure if it exists. /// /// The name of the resource you want to get. + /// A token to allow the caller to cancel the call to the service. + /// The default value is . /// Whether or not the resource existed. - public virtual TOperations TryGet(string resourceName) + public virtual TOperations TryGet(string resourceName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("ContainerBase.TryGet"); + using var scope = Diagnostics.CreateScope("ContainerBase`2.TryGet"); scope.Start(); var op = GetOperation(resourceName); try { - return op.Get().Value; + return op.Get(cancellationToken).Value; + } + catch (RequestFailedException e) when (e.Status == 404) + { + return null; } catch (Exception e) { @@ -81,7 +87,7 @@ public virtual TOperations TryGet(string resourceName) /// Whether or not the resource existed. public async virtual Task TryGetAsync(string resourceName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("ContainerBase.TryGetAsync"); + using var scope = Diagnostics.CreateScope("ContainerBase`2.TryGet"); scope.Start(); var op = GetOperation(resourceName); @@ -90,6 +96,10 @@ public async virtual Task TryGetAsync(string resourceName, Cancella { return (await op.GetAsync(cancellationToken).ConfigureAwait(false)).Value; } + catch (RequestFailedException e) when (e.Status == 404) + { + return null; + } catch (Exception e) { scope.Failed(e); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Azure.ResourceManager.Core.Tests.csproj b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Azure.ResourceManager.Core.Tests.csproj index 5e1d3898ff051..8a49f03995154 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Azure.ResourceManager.Core.Tests.csproj +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Azure.ResourceManager.Core.Tests.csproj @@ -28,6 +28,7 @@ + diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ContainerTryGetTest.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ContainerTryGetTest.cs index 4ce4e908d901a..aa30cede470fe 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ContainerTryGetTest.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ContainerTryGetTest.cs @@ -16,7 +16,7 @@ public class ContainerTryGetTest : ResourceManagerTestBase private string _rgName; public ContainerTryGetTest(bool isAsync) - : base(isAsync)//, RecordedTestMode.Record) + : base(isAsync) //, RecordedTestMode.Record) { } @@ -31,18 +31,7 @@ public async Task SetUp() [TestCase] [RecordedTest] - public void TryGetTest() - { - ResourceGroup result = _container.TryGet(_rgName); - Assert.NotNull(result); - Assert.IsTrue(result.Data.Name == _rgName); - result = _container.TryGet("FakeName"); - Assert.IsNull(result); - } - - [TestCase] - [RecordedTest] - public async Task TryGetAsyncTest() + public async Task TryGetTest() { ResourceGroup result = await _container.TryGetAsync(_rgName); Assert.NotNull(result); @@ -52,6 +41,8 @@ public async Task TryGetAsyncTest() } [TestCase] + [RecordedTest] + [SyncOnly] public void DoesExistTest() { Assert.IsTrue(_container.DoesExist(_rgName)); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json index c7ed060a27039..d04fcaa5c0b3c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest().json @@ -7,7 +7,7 @@ "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 )", - "x-ms-client-request-id": "74f748eb21e4d6b11f5efcc9cee7ca44", + "x-ms-client-request-id": "4e85c4375365fed0a708ce546ed5b6de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:42 GMT", + "Date": "Tue, 30 Mar 2021 21:31:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce7b163f-e83e-47e3-a6ae-0de66ab8933e", + "x-ms-correlation-request-id": "90b1046b-4fca-4588-9c12-67ccff17c491", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "ce7b163f-e83e-47e3-a6ae-0de66ab8933e", - "x-ms-routing-request-id": "WESTUS:20210330T185643Z:ce7b163f-e83e-47e3-a6ae-0de66ab8933e" + "x-ms-request-id": "90b1046b-4fca-4588-9c12-67ccff17c491", + "x-ms-routing-request-id": "WESTUS:20210330T213139Z:90b1046b-4fca-4588-9c12-67ccff17c491" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -48,7 +48,7 @@ "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 )", - "x-ms-client-request-id": "19c2bf17089d38649f10b0584c32c669", + "x-ms-client-request-id": "a5f9034c240d32217b6c56554e2d48fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -57,15 +57,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:43 GMT", + "Date": "Tue, 30 Mar 2021 21:31:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5bc89a6f-5ca4-49b6-ab07-ab08ca063a46", + "x-ms-correlation-request-id": "fa457cde-8d8f-485e-b634-2f786992b5ad", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "5bc89a6f-5ca4-49b6-ab07-ab08ca063a46", - "x-ms-routing-request-id": "WESTUS:20210330T185643Z:5bc89a6f-5ca4-49b6-ab07-ab08ca063a46" + "x-ms-request-id": "fa457cde-8d8f-485e-b634-2f786992b5ad", + "x-ms-routing-request-id": "WESTUS:20210330T213139Z:fa457cde-8d8f-485e-b634-2f786992b5ad" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -83,16 +83,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg5658?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg5347?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-7e4a3066ad505b41a3ffa4d1be2091ee-5dfa538a37af2f46-00", + "traceparent": "00-e305c3caa260ca4ea212fcef006653fc-35b4e6043982f647-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "2f02d6d8e3d8fd54fe196873a757e858", + "x-ms-client-request-id": "f10c9e1b00cfac3ad6d545a842aa42c2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -104,19 +104,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:44 GMT", + "Date": "Tue, 30 Mar 2021 21:31:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3889230d-0792-4857-9c07-0848f6e268db", + "x-ms-correlation-request-id": "f3343c28-b9ff-4cee-8811-f4d6620f331f", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "3889230d-0792-4857-9c07-0848f6e268db", - "x-ms-routing-request-id": "WESTUS:20210330T185644Z:3889230d-0792-4857-9c07-0848f6e268db" + "x-ms-request-id": "f3343c28-b9ff-4cee-8811-f4d6620f331f", + "x-ms-routing-request-id": "WESTUS:20210330T213141Z:f3343c28-b9ff-4cee-8811-f4d6620f331f" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg5658", - "name": "CoreRg5658", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg5347", + "name": "CoreRg5347", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -126,14 +126,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg5658?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg5347?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4b38391ea9e8fc44bbb62655780fa5e0-12e4d9709aaf394d-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "ccbe1c59735c3f4d933c4510017ed32c", + "x-ms-client-request-id": "c0593dbaa28a9f2a631ceae679a958db", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -142,19 +141,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:44 GMT", + "Date": "Tue, 30 Mar 2021 21:31:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2f5a3be-33c4-44ed-b44f-f549fff810a7", + "x-ms-correlation-request-id": "ebceb702-ab88-43b9-a207-228e115592c9", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "a2f5a3be-33c4-44ed-b44f-f549fff810a7", - "x-ms-routing-request-id": "WESTUS:20210330T185645Z:a2f5a3be-33c4-44ed-b44f-f549fff810a7" + "x-ms-request-id": "ebceb702-ab88-43b9-a207-228e115592c9", + "x-ms-routing-request-id": "WESTUS:20210330T213141Z:ebceb702-ab88-43b9-a207-228e115592c9" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg5658", - "name": "CoreRg5658", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg5347", + "name": "CoreRg5347", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -170,7 +169,7 @@ "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 )", - "x-ms-client-request-id": "11f6603514c7342d6bc41b84a0f19148", + "x-ms-client-request-id": "37525585ecaa4b7ec94dcf37df78efd0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -179,16 +178,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:44 GMT", + "Date": "Tue, 30 Mar 2021 21:31:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07cce4d9-35b0-473c-a73a-ca9a75280673", + "x-ms-correlation-request-id": "3a0dd19f-ee97-49cd-a2a5-b10ebe29a50d", "x-ms-failure-cause": "gateway", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "07cce4d9-35b0-473c-a73a-ca9a75280673", - "x-ms-routing-request-id": "WESTUS:20210330T185645Z:07cce4d9-35b0-473c-a73a-ca9a75280673" + "x-ms-request-id": "3a0dd19f-ee97-49cd-a2a5-b10ebe29a50d", + "x-ms-routing-request-id": "WESTUS:20210330T213141Z:3a0dd19f-ee97-49cd-a2a5-b10ebe29a50d" }, "ResponseBody": { "error": { @@ -199,7 +198,7 @@ } ], "Variables": { - "RandomSeed": "718120926", + "RandomSeed": "1360956521", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest()Async.json deleted file mode 100644 index 8732c2461bb32..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/DoesExistTest()Async.json +++ /dev/null @@ -1,204 +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.19042 )", - "x-ms-client-request-id": "be578ec0750fe5f918dcdd8a5df490b8", - "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": "Tue, 30 Mar 2021 18:56:42 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc0d096d-c3cd-4af1-8dab-80066e7cc905", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "dc0d096d-c3cd-4af1-8dab-80066e7cc905", - "x-ms-routing-request-id": "WESTUS:20210330T185643Z:dc0d096d-c3cd-4af1-8dab-80066e7cc905" - }, - "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?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.19042 )", - "x-ms-client-request-id": "70352749c0857f2987693d9368751c51", - "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": "Tue, 30 Mar 2021 18:56:43 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0df457a7-7c54-4fd1-9a42-5ffe41147bd6", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "0df457a7-7c54-4fd1-9a42-5ffe41147bd6", - "x-ms-routing-request-id": "WESTUS:20210330T185643Z:0df457a7-7c54-4fd1-9a42-5ffe41147bd6" - }, - "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/CoreRg4338?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "traceparent": "00-33f2b9acabd8ce429ec8419e67934598-60feb02fd3b89f45-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "adb38169ab78bf4921c73827e08c45e8", - "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": "Tue, 30 Mar 2021 18:56:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d14c039-7f8a-47f7-b7ea-3a14c4cb75ae", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "5d14c039-7f8a-47f7-b7ea-3a14c4cb75ae", - "x-ms-routing-request-id": "WESTUS:20210330T185645Z:5d14c039-7f8a-47f7-b7ea-3a14c4cb75ae" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg4338", - "name": "CoreRg4338", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg4338?api-version=2019-10-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.19042 )", - "x-ms-client-request-id": "54e300809f2ccd3a2d3f870bbc52af66", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9259c6e5-3971-467b-ab6d-ac835a442b01", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "9259c6e5-3971-467b-ab6d-ac835a442b01", - "x-ms-routing-request-id": "WESTUS:20210330T185645Z:9259c6e5-3971-467b-ab6d-ac835a442b01" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg4338", - "name": "CoreRg4338", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/FakeName?api-version=2019-10-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.19042 )", - "x-ms-client-request-id": "73f438c10adc9ed2de754ebd87029efb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "100", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a44cd06-958b-4265-a563-1efe80d151de", - "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "9a44cd06-958b-4265-a563-1efe80d151de", - "x-ms-routing-request-id": "WESTUS:20210330T185645Z:9a44cd06-958b-4265-a563-1efe80d151de" - }, - "ResponseBody": { - "error": { - "code": "ResourceGroupNotFound", - "message": "Resource group \u0027FakeName\u0027 could not be found." - } - } - } - ], - "Variables": { - "RandomSeed": "1615539813", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest().json deleted file mode 100644 index 17c416199c870..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest().json +++ /dev/null @@ -1,203 +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.19042 )", - "x-ms-client-request-id": "8d6ad085b2d66727ecd973dad31c57db", - "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": "Tue, 16 Mar 2021 00:50:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "805aab7a-5c6a-4be8-9377-c2bba6991d5e", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "805aab7a-5c6a-4be8-9377-c2bba6991d5e", - "x-ms-routing-request-id": "WESTUS2:20210316T005059Z:805aab7a-5c6a-4be8-9377-c2bba6991d5e" - }, - "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?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.19042 )", - "x-ms-client-request-id": "d8da6527efc33cf0c724b8c7c04f6f87", - "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": "Tue, 16 Mar 2021 00:50:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "328c7eaa-27b6-43f0-85c5-2b9059e9e144", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "328c7eaa-27b6-43f0-85c5-2b9059e9e144", - "x-ms-routing-request-id": "WESTUS2:20210316T005059Z:328c7eaa-27b6-43f0-85c5-2b9059e9e144" - }, - "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/CoreRg1793?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "62ed47aa747f3a9d042d8a7e1c4be7ea", - "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": "Tue, 16 Mar 2021 00:50:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a86156c1-9086-4b4b-bbd7-b917e18bd4f4", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "a86156c1-9086-4b4b-bbd7-b917e18bd4f4", - "x-ms-routing-request-id": "WESTUS2:20210316T005100Z:a86156c1-9086-4b4b-bbd7-b917e18bd4f4" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg1793", - "name": "CoreRg1793", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg1793?api-version=2019-10-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.19042 )", - "x-ms-client-request-id": "e9b37889c698e0c179500e8e6ea02c8a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:50:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2920b57-ece3-410e-bc3e-47bbdd24071f", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "b2920b57-ece3-410e-bc3e-47bbdd24071f", - "x-ms-routing-request-id": "WESTUS2:20210316T005100Z:b2920b57-ece3-410e-bc3e-47bbdd24071f" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg1793", - "name": "CoreRg1793", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/FakeName?api-version=2019-10-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.19042 )", - "x-ms-client-request-id": "d52852037969b236c8a0d3966572207b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "100", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:50:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43c5090e-03d9-4bc3-8c8b-d71e4239a854", - "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "43c5090e-03d9-4bc3-8c8b-d71e4239a854", - "x-ms-routing-request-id": "WESTUS2:20210316T005100Z:43c5090e-03d9-4bc3-8c8b-d71e4239a854" - }, - "ResponseBody": { - "error": { - "code": "ResourceGroupNotFound", - "message": "Resource group \u0027FakeName\u0027 could not be found." - } - } - } - ], - "Variables": { - "RandomSeed": "2022059398", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest()Async.json deleted file mode 100644 index dd2da538ec0de..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetAsyncTest()Async.json +++ /dev/null @@ -1,203 +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.19042 )", - "x-ms-client-request-id": "eaea601333f755c3988d80352c9d7a1c", - "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": "Tue, 16 Mar 2021 00:51:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45bf4925-2d8e-42e9-8dc2-45958b563a86", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "45bf4925-2d8e-42e9-8dc2-45958b563a86", - "x-ms-routing-request-id": "WESTUS2:20210316T005127Z:45bf4925-2d8e-42e9-8dc2-45958b563a86" - }, - "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?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.19042 )", - "x-ms-client-request-id": "c8587753375eb275534db8cc8768f10f", - "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": "Tue, 16 Mar 2021 00:51:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5542e100-a1d3-4c35-8e3f-fa86fa431bd2", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "5542e100-a1d3-4c35-8e3f-fa86fa431bd2", - "x-ms-routing-request-id": "WESTUS2:20210316T005127Z:5542e100-a1d3-4c35-8e3f-fa86fa431bd2" - }, - "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/CoreRg1093?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "34", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "96ec58e62e621f1609f5dd93533fe038", - "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": "Tue, 16 Mar 2021 00:51:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea4310af-fba1-47fa-b5c8-83f667b6ce3a", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "ea4310af-fba1-47fa-b5c8-83f667b6ce3a", - "x-ms-routing-request-id": "WESTUS2:20210316T005128Z:ea4310af-fba1-47fa-b5c8-83f667b6ce3a" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg1093", - "name": "CoreRg1093", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg1093?api-version=2019-10-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.19042 )", - "x-ms-client-request-id": "1d2cd91c8b8528b57438a3e60a891025", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29b9eae8-fa0e-4a63-b9a3-23693ea6e031", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "29b9eae8-fa0e-4a63-b9a3-23693ea6e031", - "x-ms-routing-request-id": "WESTUS2:20210316T005128Z:29b9eae8-fa0e-4a63-b9a3-23693ea6e031" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg1093", - "name": "CoreRg1093", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/FakeName?api-version=2019-10-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.19042 )", - "x-ms-client-request-id": "4445268f858e240c6038be6859e25e13", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "100", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 16 Mar 2021 00:51:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55735a4c-e41e-4f56-89df-b425ccbd407f", - "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "55735a4c-e41e-4f56-89df-b425ccbd407f", - "x-ms-routing-request-id": "WESTUS2:20210316T005128Z:55735a4c-e41e-4f56-89df-b425ccbd407f" - }, - "ResponseBody": { - "error": { - "code": "ResourceGroupNotFound", - "message": "Resource group \u0027FakeName\u0027 could not be found." - } - } - } - ], - "Variables": { - "RandomSeed": "1161888214", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest().json index 2c187c830f582..381aadbab482a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest().json @@ -7,7 +7,7 @@ "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 )", - "x-ms-client-request-id": "298d91fa4abf217c9ce3841a8d26025e", + "x-ms-client-request-id": "d1fcedaa809246fd32a685d39d7623d1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:48 GMT", + "Date": "Tue, 30 Mar 2021 21:31:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43de037e-2418-4832-ae11-695fcac86919", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "43de037e-2418-4832-ae11-695fcac86919", - "x-ms-routing-request-id": "WESTUS:20210330T185649Z:43de037e-2418-4832-ae11-695fcac86919" + "x-ms-correlation-request-id": "30de1571-0114-46cb-84ad-31b03440ae50", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "30de1571-0114-46cb-84ad-31b03440ae50", + "x-ms-routing-request-id": "WESTUS:20210330T213142Z:30de1571-0114-46cb-84ad-31b03440ae50" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -48,7 +48,7 @@ "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 )", - "x-ms-client-request-id": "e8934346dc3ec3265a3d1d3b4581c6bb", + "x-ms-client-request-id": "a098f57e782a56b2d7aa01f8e6164c80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -57,15 +57,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:48 GMT", + "Date": "Tue, 30 Mar 2021 21:31:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a28e37db-3fd9-463d-817d-7e89a2dad24a", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "a28e37db-3fd9-463d-817d-7e89a2dad24a", - "x-ms-routing-request-id": "WESTUS:20210330T185649Z:a28e37db-3fd9-463d-817d-7e89a2dad24a" + "x-ms-correlation-request-id": "01646cb5-309e-40fa-9458-d131dceaadf5", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "01646cb5-309e-40fa-9458-d131dceaadf5", + "x-ms-routing-request-id": "WESTUS:20210330T213142Z:01646cb5-309e-40fa-9458-d131dceaadf5" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -83,16 +83,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg7386?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg8559?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-2b46bbd2733b514ea1bc5d1653a91a9a-45f472aa6cad484d-00", + "traceparent": "00-61c2e99c2858a241ad0530d7b040f9da-94b43054665a0543-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "c4c34c1fe8db5ae289cd72ccc48f3ddb", + "x-ms-client-request-id": "df59a977bf4bcd36a74581c60f217d3a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -104,19 +104,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:49 GMT", + "Date": "Tue, 30 Mar 2021 21:31:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "557cba14-a1b7-4bf2-a359-6ea5e75d74ed", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "557cba14-a1b7-4bf2-a359-6ea5e75d74ed", - "x-ms-routing-request-id": "WESTUS:20210330T185650Z:557cba14-a1b7-4bf2-a359-6ea5e75d74ed" + "x-ms-correlation-request-id": "578bb301-0dd6-4866-b700-6feab382215d", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "578bb301-0dd6-4866-b700-6feab382215d", + "x-ms-routing-request-id": "WESTUS:20210330T213143Z:578bb301-0dd6-4866-b700-6feab382215d" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg7386", - "name": "CoreRg7386", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg8559", + "name": "CoreRg8559", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -126,14 +126,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg7386?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg8559?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d719432ee1ae3d4bacc7938ca9a2d226-56136fe13ab3a147-00", + "traceparent": "00-dfafa5b5f2c5bc4a9855ffcfe48bdeb7-c75b3e143fa7e148-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "6573ff6ff659b5bc6765650c5fe55762", + "x-ms-client-request-id": "7460c1ff0995747f4a7abad5fc4e4c8f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -142,19 +142,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:49 GMT", + "Date": "Tue, 30 Mar 2021 21:31:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a71cf4e-e0e6-4757-91ee-2ebaef01f575", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "7a71cf4e-e0e6-4757-91ee-2ebaef01f575", - "x-ms-routing-request-id": "WESTUS:20210330T185650Z:7a71cf4e-e0e6-4757-91ee-2ebaef01f575" + "x-ms-correlation-request-id": "7751bef3-ded2-4ebe-a8a3-779fb5fc0382", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "7751bef3-ded2-4ebe-a8a3-779fb5fc0382", + "x-ms-routing-request-id": "WESTUS:20210330T213143Z:7751bef3-ded2-4ebe-a8a3-779fb5fc0382" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg7386", - "name": "CoreRg7386", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg8559", + "name": "CoreRg8559", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -169,9 +169,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-55e9a27053c8e3488eab6325b18b9da8-fb65a251b1de614a-00", + "traceparent": "00-7277ad8044203c44b6c25711442f81dc-f7d6a0a5d5e37c43-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "d96e5ebe993f5d7861385f706a5affca", + "x-ms-client-request-id": "cd265339f2c9be5cbecaf8e5f7eb47b6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -180,16 +180,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:49 GMT", + "Date": "Tue, 30 Mar 2021 21:31:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b4eb4b0-5966-41ce-aea9-77ad50e01eb9", + "x-ms-correlation-request-id": "2b7e3fec-7d47-48e0-98c8-d5918ffef76f", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "2b4eb4b0-5966-41ce-aea9-77ad50e01eb9", - "x-ms-routing-request-id": "WESTUS:20210330T185650Z:2b4eb4b0-5966-41ce-aea9-77ad50e01eb9" + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "2b7e3fec-7d47-48e0-98c8-d5918ffef76f", + "x-ms-routing-request-id": "WESTUS:20210330T213143Z:2b7e3fec-7d47-48e0-98c8-d5918ffef76f" }, "ResponseBody": { "error": { @@ -200,7 +200,7 @@ } ], "Variables": { - "RandomSeed": "357280712", + "RandomSeed": "873925777", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest()Async.json index ef1eda2926593..c24e8e9d68cde 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ContainerTryGetTest/TryGetTest()Async.json @@ -6,9 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|c3b9f1b9-450f9dd9985eea58.", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "e327fc4517bb78bac63c96daaf951470", + "x-ms-client-request-id": "4e85c4375365fed0a708ce546ed5b6de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:48 GMT", + "Date": "Tue, 30 Mar 2021 21:31:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1519c215-c246-495a-ac4a-aefc4de29b8a", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "1519c215-c246-495a-ac4a-aefc4de29b8a", - "x-ms-routing-request-id": "WESTUS:20210330T185649Z:1519c215-c246-495a-ac4a-aefc4de29b8a" + "x-ms-correlation-request-id": "bc431797-8f43-4156-8bb9-6a19cb86651c", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "bc431797-8f43-4156-8bb9-6a19cb86651c", + "x-ms-routing-request-id": "WESTUS:20210330T213139Z:bc431797-8f43-4156-8bb9-6a19cb86651c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -48,9 +47,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f4570ab7516e9f40b5792dcc376952ff-43e2828a1dc01645-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "eb748011e5124bc6ca16570b21b9ba36", + "x-ms-client-request-id": "a5f9034c240d32217b6c56554e2d48fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -59,15 +57,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:48 GMT", + "Date": "Tue, 30 Mar 2021 21:31:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ef05a93-da3c-46ad-953f-276ae96f2019", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "3ef05a93-da3c-46ad-953f-276ae96f2019", - "x-ms-routing-request-id": "WESTUS:20210330T185649Z:3ef05a93-da3c-46ad-953f-276ae96f2019" + "x-ms-correlation-request-id": "0fab4a41-6fcd-4181-9c03-f1af5249d2bf", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "0fab4a41-6fcd-4181-9c03-f1af5249d2bf", + "x-ms-routing-request-id": "WESTUS:20210330T213139Z:0fab4a41-6fcd-4181-9c03-f1af5249d2bf" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -85,16 +83,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg3672?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg5347?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-f6241270e8ba3442906753cfebac6400-2df95efa66823d4e-00", + "traceparent": "00-99ea0db1f759ec40ab988a1a8c0eef97-95f9224288067341-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "f3e34ec6763156a7bab6bf06b080a975", + "x-ms-client-request-id": "f10c9e1b00cfac3ad6d545a842aa42c2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -106,19 +104,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:49 GMT", + "Date": "Tue, 30 Mar 2021 21:31:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d99066b4-e164-49f9-bc7d-bfeffaea1555", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "d99066b4-e164-49f9-bc7d-bfeffaea1555", - "x-ms-routing-request-id": "WESTUS:20210330T185650Z:d99066b4-e164-49f9-bc7d-bfeffaea1555" + "x-ms-correlation-request-id": "0a641e97-cb93-4512-affd-82944369edb6", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "0a641e97-cb93-4512-affd-82944369edb6", + "x-ms-routing-request-id": "WESTUS:20210330T213141Z:0a641e97-cb93-4512-affd-82944369edb6" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg3672", - "name": "CoreRg3672", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg5347", + "name": "CoreRg5347", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -128,13 +126,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg3672?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/CoreRg5347?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-0865a417aa113c4db1999f06a584e932-2ad597b696df0742-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "b4037b2d729116336198f001626ca483", + "x-ms-client-request-id": "c0593dbaa28a9f2a631ceae679a958db", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -143,19 +142,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:49 GMT", + "Date": "Tue, 30 Mar 2021 21:31:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08f1162d-233b-416b-a04a-b34bd823ede3", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "08f1162d-233b-416b-a04a-b34bd823ede3", - "x-ms-routing-request-id": "WESTUS:20210330T185650Z:08f1162d-233b-416b-a04a-b34bd823ede3" + "x-ms-correlation-request-id": "22ff523f-9de2-4dad-8076-b9dfdf142ecb", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "22ff523f-9de2-4dad-8076-b9dfdf142ecb", + "x-ms-routing-request-id": "WESTUS:20210330T213141Z:22ff523f-9de2-4dad-8076-b9dfdf142ecb" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg3672", - "name": "CoreRg3672", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/CoreRg5347", + "name": "CoreRg5347", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -170,8 +169,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-3a3b564dec7b044096835027bd353890-9566830f66c8ac4f-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "46e8a4db7c319a5ed81e305b25c09a4a", + "x-ms-client-request-id": "37525585ecaa4b7ec94dcf37df78efd0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -180,16 +180,16 @@ "Cache-Control": "no-cache", "Content-Length": "100", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 30 Mar 2021 18:56:49 GMT", + "Date": "Tue, 30 Mar 2021 21:31:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da70de9b-3503-4773-a961-300eb7a202d2", + "x-ms-correlation-request-id": "1af40676-9184-4b66-9981-45d97d4fa625", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "da70de9b-3503-4773-a961-300eb7a202d2", - "x-ms-routing-request-id": "WESTUS:20210330T185650Z:da70de9b-3503-4773-a961-300eb7a202d2" + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "1af40676-9184-4b66-9981-45d97d4fa625", + "x-ms-routing-request-id": "WESTUS:20210330T213141Z:1af40676-9184-4b66-9981-45d97d4fa625" }, "ResponseBody": { "error": { @@ -200,7 +200,7 @@ } ], "Variables": { - "RandomSeed": "10635373", + "RandomSeed": "1360956521", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file From cb57efe48dd63f91acbfcc1b4b4ac984b98fc7d0 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Tue, 30 Mar 2021 16:27:14 -0700 Subject: [PATCH 29/35] Update ClientContextTests.cs --- .../tests/Scenario/ClientContextTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs index cc5e59571a7fa..c9ba3617138c1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ClientContextTests.cs @@ -12,7 +12,7 @@ namespace Azure.ResourceManager.Core.Tests public class ClientContextTests : ResourceManagerTestBase { public ClientContextTests(bool isAsync) - : base(isAsync, RecordedTestMode.Record) + : base(isAsync) //, RecordedTestMode.Record) { } From 9db76493122a5cfef438bf5568f0a5322953e467 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Wed, 31 Mar 2021 13:41:29 -0700 Subject: [PATCH 30/35] update proto --- .../Azure.ResourceManager.Authorization.csproj | 4 ++++ .../Azure.ResourceManager.Billing.csproj | 6 +++++- .../Generated/Operations.cs | 12 ++++++------ 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj b/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj index 70b0114148558..4e8f690fd6f98 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj +++ b/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj @@ -12,4 +12,8 @@ $(NoWarn);AZC0001 + + + + diff --git a/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj b/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj index 8dce5d1aca3c0..a960d6a8a5dee 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj +++ b/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj @@ -10,6 +10,10 @@ - $(NoWarn);AZC0001 + $(NoWarn);AZC0001;AZC0005 + + + + diff --git a/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Generated/Operations.cs b/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Generated/Operations.cs index da1a9d5a785a5..e8a9905182eeb 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Generated/Operations.cs +++ b/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Generated/Operations.cs @@ -40,9 +40,9 @@ internal Operations(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, /// Lists the available billing REST API operations. /// The cancellation token to use. - public virtual AsyncPageable ListAsync(CancellationToken cancellationToken = default) + public virtual AsyncPageable ListAsync(CancellationToken cancellationToken = default) { - async Task> FirstPageFunc(int? pageSizeHint) + async Task> FirstPageFunc(int? pageSizeHint) { using var scope = _clientDiagnostics.CreateScope("Operations.List"); scope.Start(); @@ -57,7 +57,7 @@ async Task> FirstPageFunc(int? pageSizeHint) throw; } } - async Task> NextPageFunc(string nextLink, int? pageSizeHint) + async Task> NextPageFunc(string nextLink, int? pageSizeHint) { using var scope = _clientDiagnostics.CreateScope("Operations.List"); scope.Start(); @@ -77,9 +77,9 @@ async Task> NextPageFunc(string nextLink, int? pageSizeHint) /// Lists the available billing REST API operations. /// The cancellation token to use. - public virtual Pageable List(CancellationToken cancellationToken = default) + public virtual Pageable List(CancellationToken cancellationToken = default) { - Page FirstPageFunc(int? pageSizeHint) + Page FirstPageFunc(int? pageSizeHint) { using var scope = _clientDiagnostics.CreateScope("Operations.List"); scope.Start(); @@ -94,7 +94,7 @@ Page FirstPageFunc(int? pageSizeHint) throw; } } - Page NextPageFunc(string nextLink, int? pageSizeHint) + Page NextPageFunc(string nextLink, int? pageSizeHint) { using var scope = _clientDiagnostics.CreateScope("Operations.List"); scope.Start(); From 2fbf2563b10116ccf0995dcfc3966895e7487c5a Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Wed, 31 Mar 2021 14:40:37 -0700 Subject: [PATCH 31/35] Update Azure.ResourceManager.Billing.csproj --- .../Azure.ResourceManager.Billing.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj b/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj index a960d6a8a5dee..b1d0a0badd69a 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj +++ b/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj @@ -1,6 +1,6 @@  - 1.0.0-preview.1 + 1.0.0-beta.1 Azure.ResourceManager.Billing Azure Resource Manager client SDK for Azure resource provider Microsoft.Billing azure;management;arm;resource manager;billing From 6444198785eb3c429bd07488484890b53fb6a639 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Wed, 31 Mar 2021 15:24:28 -0700 Subject: [PATCH 32/35] update version --- .../Proto.Client/authorization/Proto.Authorization.csproj | 1 + sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj | 1 + sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj | 1 + sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj | 1 + sdk/resourcemanager/Proto.Client/src/Proto.Client.csproj | 1 + 5 files changed, 5 insertions(+) diff --git a/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj b/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj index a635694084083..c2bec5f9841d8 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj +++ b/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj @@ -1,6 +1,7 @@  + 1.0.0-beta.1 netstandard2.0 Proto.Authorization latest diff --git a/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj b/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj index 202c35604f63d..47fe3c5a70af2 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj +++ b/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj @@ -1,6 +1,7 @@  + 1.0.0-beta.1 netstandard2.0 Proto.Billing latest diff --git a/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj b/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj index c0592e2e8b519..35cdb07400ae8 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj +++ b/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj @@ -1,6 +1,7 @@  + 1.0.0-beta.1 netstandard2.0 Proto.Compute latest diff --git a/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj b/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj index 5ce191977795c..64f6c17a803bd 100644 --- a/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj +++ b/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj @@ -1,6 +1,7 @@  + 1.0.0-beta.1 netstandard2.0 Proto.Network latest diff --git a/sdk/resourcemanager/Proto.Client/src/Proto.Client.csproj b/sdk/resourcemanager/Proto.Client/src/Proto.Client.csproj index 8b324d0776ad1..ffe0d86156146 100644 --- a/sdk/resourcemanager/Proto.Client/src/Proto.Client.csproj +++ b/sdk/resourcemanager/Proto.Client/src/Proto.Client.csproj @@ -1,6 +1,7 @@ + 1.0.0-beta.1 Exe netcoreapp3.1 From 3fb4117237ef6a172cd19141441f535b8dcab8e1 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Wed, 31 Mar 2021 16:31:13 -0700 Subject: [PATCH 33/35] update ci --- sdk/resourcemanager/Proto.Client/billing/CHANGELOG.md | 2 +- sdk/resourcemanager/Proto.Client/compute/CHANGELOG.md | 5 +++++ sdk/resourcemanager/Proto.Client/network/CHANGELOG.md | 5 +++++ .../Proto.Client/network/NetworkInterfaceContainer.cs | 3 +++ .../Proto.Client/network/NetworkSecurityGroupContainer.cs | 3 +++ sdk/resourcemanager/Proto.Client/src/CHANGELOG.md | 5 +++++ 6 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 sdk/resourcemanager/Proto.Client/compute/CHANGELOG.md create mode 100644 sdk/resourcemanager/Proto.Client/network/CHANGELOG.md create mode 100644 sdk/resourcemanager/Proto.Client/src/CHANGELOG.md diff --git a/sdk/resourcemanager/Proto.Client/billing/CHANGELOG.md b/sdk/resourcemanager/Proto.Client/billing/CHANGELOG.md index cce962a43fceb..5c312e4ea9bea 100644 --- a/sdk/resourcemanager/Proto.Client/billing/CHANGELOG.md +++ b/sdk/resourcemanager/Proto.Client/billing/CHANGELOG.md @@ -1,5 +1,5 @@ # Release History -## 1.0.0-preview.1 (Unreleased) +## 1.0.0-beta.1 (Unreleased) -Initial checkin diff --git a/sdk/resourcemanager/Proto.Client/compute/CHANGELOG.md b/sdk/resourcemanager/Proto.Client/compute/CHANGELOG.md new file mode 100644 index 0000000000000..5c312e4ea9bea --- /dev/null +++ b/sdk/resourcemanager/Proto.Client/compute/CHANGELOG.md @@ -0,0 +1,5 @@ +# Release History + +## 1.0.0-beta.1 (Unreleased) + +-Initial checkin diff --git a/sdk/resourcemanager/Proto.Client/network/CHANGELOG.md b/sdk/resourcemanager/Proto.Client/network/CHANGELOG.md new file mode 100644 index 0000000000000..5c312e4ea9bea --- /dev/null +++ b/sdk/resourcemanager/Proto.Client/network/CHANGELOG.md @@ -0,0 +1,5 @@ +# Release History + +## 1.0.0-beta.1 (Unreleased) + +-Initial checkin diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs index 8ca3a7a84a541..f7ad35f7fb390 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkInterfaceContainer.cs @@ -35,6 +35,9 @@ internal NetworkInterfaceContainer(ResourceGroupOperations resourceGroup) /// public new ResourceGroupResourceIdentifier Id => base.Id as ResourceGroupResourceIdentifier; + /// + /// ResourceType for the container. + /// protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; /// diff --git a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs index 3d6b63e4bfd87..952b40e8f9018 100644 --- a/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs +++ b/sdk/resourcemanager/Proto.Client/network/NetworkSecurityGroupContainer.cs @@ -43,6 +43,9 @@ internal NetworkSecurityGroupContainer(ResourceGroupOperations resourceGroup) /// public new ResourceGroupResourceIdentifier Id => base.Id as ResourceGroupResourceIdentifier; + /// + /// ResourceType for the container. + /// protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; private NetworkSecurityGroupsOperations Operations => new NetworkManagementClient( diff --git a/sdk/resourcemanager/Proto.Client/src/CHANGELOG.md b/sdk/resourcemanager/Proto.Client/src/CHANGELOG.md new file mode 100644 index 0000000000000..5c312e4ea9bea --- /dev/null +++ b/sdk/resourcemanager/Proto.Client/src/CHANGELOG.md @@ -0,0 +1,5 @@ +# Release History + +## 1.0.0-beta.1 (Unreleased) + +-Initial checkin From 6df9f7f0ad041a700af462374e4bac1a3f6c6039 Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Wed, 31 Mar 2021 18:21:06 -0700 Subject: [PATCH 34/35] Update Azure.ResourceManager.EventHubs.csproj --- .../src/Azure.ResourceManager.EventHubs.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/eventhub/Azure.ResourceManager.EventHubs/src/Azure.ResourceManager.EventHubs.csproj b/sdk/eventhub/Azure.ResourceManager.EventHubs/src/Azure.ResourceManager.EventHubs.csproj index c1214d5f3cca5..48c36e430b674 100644 --- a/sdk/eventhub/Azure.ResourceManager.EventHubs/src/Azure.ResourceManager.EventHubs.csproj +++ b/sdk/eventhub/Azure.ResourceManager.EventHubs/src/Azure.ResourceManager.EventHubs.csproj @@ -8,6 +8,7 @@ azure;management;eventhub $(NoWarn);AZC0001;AZC0008 + true From a912bc98b30db0bea2d4b787b65f654fa65f6eaf Mon Sep 17 00:00:00 2001 From: nisha-bhatia Date: Wed, 31 Mar 2021 18:41:24 -0700 Subject: [PATCH 35/35] add packable --- .../Azure.ResourceManager.Authorization.csproj | 1 + .../Proto.Client/authorization/Proto.Authorization.csproj | 1 + .../Azure.ResourceManager.Billing.csproj | 1 + sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj | 1 + sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj | 1 + sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj | 2 +- sdk/resourcemanager/Proto.Client/src/Proto.Client.csproj | 3 ++- 7 files changed, 8 insertions(+), 2 deletions(-) diff --git a/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj b/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj index 4e8f690fd6f98..8e8a312454b15 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj +++ b/sdk/resourcemanager/Proto.Client/authorization/Azure.ResourceManager.Authorization/Azure.ResourceManager.Authorization.csproj @@ -6,6 +6,7 @@ azure;management;arm;resource manager;authorization true true + false diff --git a/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj b/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj index c2bec5f9841d8..098d4055cf8fe 100644 --- a/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj +++ b/sdk/resourcemanager/Proto.Client/authorization/Proto.Authorization.csproj @@ -5,6 +5,7 @@ netstandard2.0 Proto.Authorization latest + false diff --git a/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj b/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj index b1d0a0badd69a..42be3f0770404 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj +++ b/sdk/resourcemanager/Proto.Client/billing/Azure.ResourceManager.Billing/Azure.ResourceManager.Billing.csproj @@ -6,6 +6,7 @@ azure;management;arm;resource manager;billing true true + false diff --git a/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj b/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj index 47fe3c5a70af2..f3037c85f139b 100644 --- a/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj +++ b/sdk/resourcemanager/Proto.Client/billing/Proto.Billing.csproj @@ -6,6 +6,7 @@ Proto.Billing latest false + false diff --git a/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj b/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj index 35cdb07400ae8..a7a569056c391 100644 --- a/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj +++ b/sdk/resourcemanager/Proto.Client/compute/Proto.Compute.csproj @@ -5,6 +5,7 @@ netstandard2.0 Proto.Compute latest + false diff --git a/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj b/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj index 64f6c17a803bd..ac7953e94d77c 100644 --- a/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj +++ b/sdk/resourcemanager/Proto.Client/network/Proto.Network.csproj @@ -5,7 +5,7 @@ netstandard2.0 Proto.Network latest - false + false diff --git a/sdk/resourcemanager/Proto.Client/src/Proto.Client.csproj b/sdk/resourcemanager/Proto.Client/src/Proto.Client.csproj index ffe0d86156146..ad98c5b409b56 100644 --- a/sdk/resourcemanager/Proto.Client/src/Proto.Client.csproj +++ b/sdk/resourcemanager/Proto.Client/src/Proto.Client.csproj @@ -1,9 +1,10 @@ - + 1.0.0-beta.1 Exe netcoreapp3.1 + false