diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/README.md b/sdk/resourcemanager/Azure.ResourceManager.Core/README.md index 03caa6691824..05b694a37b8f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/README.md +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/README.md @@ -147,10 +147,10 @@ AvailabilitySetOperations availabilitySetOperations = armClient.GetAvailabilityS AvailabilitySet availabilitySet = await availabilitySetOperations.GetAsync(); ``` -### `tryGet` and `doesExists` convenience methods -If you are not sure if a resource you want to get exists, or you just want to check if it exists, you can use `tryGet()` or `doesExists()` methods, which can be invoque from any [Resource]Container class. +### `tryGet` and `CheckIfExistss` convenience methods +If you are not sure if a resource you want to get exists, or you just want to check if it exists, you can use `tryGet()` or `CheckIfExistss()` methods, which can be invoque from any [Resource]Container class. -`tryGet()` and `tryGetAsync()` are going to return a null object if the specified resource name or id does not exists. On the other hand, `doesExists()` and `doesExistsAsync()` is going to return a boolean, depending if the specified resource exists. +`tryGet()` and `tryGetAsync()` are going to return a null object if the specified resource name or id does not exists. On the other hand, `CheckIfExistss()` and `CheckIfExistssAsync()` is going to return a boolean, depending if the specified resource exists. You can find an example for these methods [below](#check-if-resource-group-exists). @@ -205,12 +205,12 @@ await resourceGroup.DeleteAsync(); ``` ### Check if Resource Group exists -```C# Snippet:Readme_DoesExistsRG +```C# Snippet:Readme_CheckIfExistssRG var armClient = new ArmClient(new DefaultAzureCredential()); Subscription subscription = armClient.DefaultSubscription; string rgName = "myRgName"; -var exists = await subscription.GetResourceGroups().DoesExistAsync(rgName); +var exists = await subscription.GetResourceGroups().CheckIfExistsAsync(rgName); if (exists) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/api/Azure.ResourceManager.Core.netstandard2.0.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/api/Azure.ResourceManager.Core.netstandard2.0.cs index 5d4d2af375b6..867c676c1eb4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/api/Azure.ResourceManager.Core.netstandard2.0.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/api/Azure.ResourceManager.Core.netstandard2.0.cs @@ -61,7 +61,8 @@ protected ApiVersionsBase(string value) { } public partial class ArmClient { protected ArmClient() { } - public ArmClient(Azure.Core.TokenCredential credential, Azure.ResourceManager.Core.ArmClientOptions options = null) { } + public ArmClient(Azure.Core.TokenCredential credential) { } + public ArmClient(Azure.Core.TokenCredential credential, Azure.ResourceManager.Core.ArmClientOptions options) { } public ArmClient(string defaultSubscriptionId, Azure.Core.TokenCredential credential, Azure.ResourceManager.Core.ArmClientOptions options = null) { } public ArmClient(string defaultSubscriptionId, System.Uri baseUri, Azure.Core.TokenCredential credential, Azure.ResourceManager.Core.ArmClientOptions options = null) { } public ArmClient(System.Uri baseUri, Azure.Core.TokenCredential credential, Azure.ResourceManager.Core.ArmClientOptions options = null) { } @@ -70,20 +71,21 @@ public ArmClient(System.Uri baseUri, Azure.Core.TokenCredential credential, Azur protected virtual Azure.Core.TokenCredential Credential { get { throw null; } } public virtual Azure.ResourceManager.Core.Subscription DefaultSubscription { get { throw null; } } protected virtual Azure.Core.Pipeline.HttpPipeline Pipeline { get { throw null; } } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public T GetContainer(System.Func func) { throw null; } - public virtual System.Collections.Generic.IList GetGenericResourceOperations(System.Collections.Generic.IEnumerable ids) { throw null; } + public virtual System.Collections.Generic.IReadOnlyList GetGenericResourceOperations(System.Collections.Generic.IEnumerable ids) { throw null; } public virtual Azure.ResourceManager.Core.GenericResourceOperations GetGenericResourceOperations(string id) { throw null; } + public virtual System.Collections.Generic.IReadOnlyList GetGenericResourceOperations(params string[] ids) { throw null; } public virtual Azure.ResourceManager.Core.ManagementGroupOperations GetManagementGroupOperations(string id) { throw null; } public virtual Azure.ResourceManager.Core.ManagementGroupContainer GetManagementGroups() { throw null; } public virtual Azure.Response GetProvider(string resourceProviderNamespace, string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetProviderAsync(string resourceProviderNamespace, string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.ResourceManager.Core.ResourceGroupOperations GetResourceGroupOperations(Azure.ResourceManager.Core.ResourceGroupResourceIdentifier id) { throw null; } - public virtual Azure.ResourceManager.Core.RestApiContainer GetRestApis(string nameSpace) { throw null; } + public virtual Azure.ResourceManager.Core.RestApiContainer GetRestApis(string azureNamespace) { throw null; } public virtual Azure.ResourceManager.Core.SubscriptionContainer GetSubscriptions() { throw null; } public virtual Azure.ResourceManager.Core.TenantContainer GetTenants() { throw null; } public virtual Azure.Pageable ListProviders(int? top = default(int?), string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.AsyncPageable ListProvidersAsync(int? top = default(int?), string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public virtual T UseClientContext(System.Func func) { throw null; } } public sealed partial class ArmClientOptions : Azure.Core.ClientOptions { @@ -193,8 +195,8 @@ protected FeatureContainer() { } public new Azure.ResourceManager.Core.SubscriptionProviderIdentifier Id { get { throw null; } } protected new Azure.ResourceManager.Core.ProviderOperations Parent { get { throw null; } } protected override Azure.ResourceManager.Core.ResourceType ValidResourceType { get { throw null; } } - public virtual bool DoesExist(string featureName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DoesExistAsync(string featureName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual bool CheckIfExists(string featureName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task CheckIfExistsAsync(string featureName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response Get(string featureName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetAsync(string featureName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Pageable List(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -219,7 +221,7 @@ protected FeatureOperations(Azure.ResourceManager.Core.ResourceOperationsBase op public virtual System.Threading.Tasks.Task> RegisterAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response Unregister(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> UnregisterAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - protected override void Validate(Azure.ResourceManager.Core.ResourceIdentifier identifier) { } + protected override void ValidateResourceType(Azure.ResourceManager.Core.ResourceIdentifier identifier) { } } public partial class FeatureProperties { @@ -235,10 +237,10 @@ public partial class GenericResourceContainer : Azure.ResourceManager.Core.Resou { protected GenericResourceContainer() { } protected override Azure.ResourceManager.Core.ResourceType ValidResourceType { get { throw null; } } + public virtual bool CheckIfExists(string resourceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task CheckIfExistsAsync(string resourceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response CreateOrUpdate(string resourceId, Azure.ResourceManager.Core.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> CreateOrUpdateAsync(string resourceId, Azure.ResourceManager.Core.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual bool DoesExist(string resourceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DoesExistAsync(string resourceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public Azure.Response Get(string resourceId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetAsync(string resourceId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Pageable List(string filter = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -249,7 +251,7 @@ protected GenericResourceContainer() { } public virtual System.Threading.Tasks.Task StartCreateOrUpdateAsync(string resourceId, Azure.ResourceManager.Core.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.ResourceManager.Core.GenericResource TryGet(string resourceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task TryGetAsync(string resourceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - protected override void Validate(Azure.ResourceManager.Core.ResourceIdentifier identifier) { } + protected override void ValidateResourceType(Azure.ResourceManager.Core.ResourceIdentifier identifier) { } } public partial class GenericResourceData : Azure.ResourceManager.Core.TrackedResource { @@ -299,7 +301,7 @@ protected GenericResourceOperations() { } public virtual System.Threading.Tasks.Task StartUpdateAsync(Azure.ResourceManager.Core.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response Update(Azure.ResourceManager.Core.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> UpdateAsync(Azure.ResourceManager.Core.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - protected override void Validate(Azure.ResourceManager.Core.ResourceIdentifier identifier) { } + protected override void ValidateResourceType(Azure.ResourceManager.Core.ResourceIdentifier identifier) { } } [System.AttributeUsageAttribute(System.AttributeTargets.Constructor)] public partial class InitializationConstructorAttribute : System.Attribute @@ -436,12 +438,12 @@ public partial class ManagementGroupContainer : Azure.ResourceManager.Core.Resou protected ManagementGroupContainer() { } protected new Azure.ResourceManager.Core.TenantOperations Parent { get { throw null; } } protected override Azure.ResourceManager.Core.ResourceType ValidResourceType { get { throw null; } } + public virtual bool CheckIfExists(string groupId, Azure.ResourceManager.Core.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Core.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task CheckIfExistsAsync(string groupId, Azure.ResourceManager.Core.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Core.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response CheckNameAvailability(Azure.ResourceManager.Core.CheckNameAvailabilityRequest checkNameAvailabilityRequest, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> CheckNameAvailabilityAsync(Azure.ResourceManager.Core.CheckNameAvailabilityRequest checkNameAvailabilityRequest, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response CreateOrUpdate(string groupId, Azure.ResourceManager.Core.CreateManagementGroupRequest createManagementGroupRequest, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> CreateOrUpdateAsync(string groupId, Azure.ResourceManager.Core.CreateManagementGroupRequest createManagementGroupRequest, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual bool DoesExist(string groupId, Azure.ResourceManager.Core.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Core.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DoesExistAsync(string groupId, Azure.ResourceManager.Core.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Core.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response Get(string groupId, Azure.ResourceManager.Core.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Core.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetAsync(string groupId, Azure.ResourceManager.Core.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Core.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Pageable List(string cacheControl = null, string skiptoken = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -570,9 +572,9 @@ protected OperationsBase(Azure.ResourceManager.Core.OperationsBase parentOperati protected internal virtual Azure.Core.Pipeline.HttpPipeline Pipeline { get { throw null; } } protected internal Azure.ResourceManager.Core.TagResourceContainer TagContainer { get { throw null; } } protected internal Azure.ResourceManager.Core.TagResourceOperations TagResourceOperations { get { throw null; } } - public Azure.ResourceManager.Core.TenantOperations Tenant { get { throw null; } } + public virtual Azure.ResourceManager.Core.TenantOperations Tenant { get { throw null; } } protected abstract Azure.ResourceManager.Core.ResourceType ValidResourceType { get; } - protected virtual void Validate(Azure.ResourceManager.Core.ResourceIdentifier identifier) { } + protected virtual void ValidateResourceType(Azure.ResourceManager.Core.ResourceIdentifier identifier) { } } public partial class PairedRegion { @@ -613,51 +615,51 @@ public Plan() { } public static bool operator <(Azure.ResourceManager.Core.Plan left, Azure.ResourceManager.Core.Plan right) { throw null; } public static bool operator <=(Azure.ResourceManager.Core.Plan left, Azure.ResourceManager.Core.Plan right) { throw null; } } - public partial class PreDefinedTag : Azure.ResourceManager.Core.PreDefinedTagOperations + public partial class PredefinedTag : Azure.ResourceManager.Core.PredefinedTagOperations { - protected PreDefinedTag() { } - public virtual Azure.ResourceManager.Core.PreDefinedTagData Data { get { throw null; } } + protected PredefinedTag() { } + public virtual Azure.ResourceManager.Core.PredefinedTagData Data { get { throw null; } } } - public partial class PreDefinedTagContainer : Azure.ResourceManager.Core.ContainerBase + public partial class PredefinedTagContainer : Azure.ResourceManager.Core.ContainerBase { - protected PreDefinedTagContainer() { } + protected PredefinedTagContainer() { } protected override Azure.ResourceManager.Core.ResourceType ValidResourceType { get { throw null; } } - public virtual Azure.Response CreateOrUpdate(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> CreateOrUpdateAsync(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Pageable List(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.AsyncPageable ListAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public Azure.ResourceManager.Core.PreDefinedTagCreateOrUpdateOperation StartCreateOrUpdate(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task StartCreateOrUpdateAsync(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response CreateOrUpdate(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> CreateOrUpdateAsync(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Pageable List(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable ListAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public Azure.ResourceManager.Core.PredefinedTagCreateOrUpdateOperation StartCreateOrUpdate(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartCreateOrUpdateAsync(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } - public partial class PreDefinedTagCount + public partial class PredefinedTagCount { - internal PreDefinedTagCount() { } + internal PredefinedTagCount() { } public string Type { get { throw null; } } public int? Value { get { throw null; } } } - public partial class PreDefinedTagCreateOrUpdateOperation : Azure.Operation + public partial class PredefinedTagCreateOrUpdateOperation : Azure.Operation { - protected PreDefinedTagCreateOrUpdateOperation() { } + protected PredefinedTagCreateOrUpdateOperation() { } public override bool HasCompleted { get { throw null; } } public override bool HasValue { get { throw null; } } public override string Id { get { throw null; } } - public override Azure.ResourceManager.Core.PreDefinedTag Value { get { throw null; } } + public override Azure.ResourceManager.Core.PredefinedTag Value { get { throw null; } } public override Azure.Response GetRawResponse() { throw null; } public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } - public partial class PreDefinedTagData : Azure.ResourceManager.Core.SubResource + public partial class PredefinedTagData : Azure.ResourceManager.Core.SubResource { - internal PreDefinedTagData() { } - public Azure.ResourceManager.Core.PreDefinedTagCount Count { get { throw null; } } + internal PredefinedTagData() { } + public Azure.ResourceManager.Core.PredefinedTagCount Count { get { throw null; } } public string TagName { get { throw null; } } - public System.Collections.Generic.IReadOnlyList Values { get { throw null; } } + public System.Collections.Generic.IReadOnlyList Values { get { throw null; } } } - public partial class PreDefinedTagDeleteOperation : Azure.Operation + public partial class PredefinedTagDeleteOperation : Azure.Operation { - protected PreDefinedTagDeleteOperation() { } + protected PredefinedTagDeleteOperation() { } public override bool HasCompleted { get { throw null; } } public override string Id { get { throw null; } } public override Azure.Response GetRawResponse() { throw null; } @@ -666,25 +668,25 @@ protected PreDefinedTagDeleteOperation() { } public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } - public partial class PreDefinedTagOperations : Azure.ResourceManager.Core.ResourceOperationsBase + public partial class PredefinedTagOperations : Azure.ResourceManager.Core.ResourceOperationsBase { public static readonly Azure.ResourceManager.Core.ResourceType ResourceType; - protected PreDefinedTagOperations() { } + protected PredefinedTagOperations() { } protected override Azure.ResourceManager.Core.ResourceType ValidResourceType { get { throw null; } } - public virtual Azure.Response CreateOrUpdateValue(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> CreateOrUpdateValueAsync(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response CreateOrUpdateValue(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> CreateOrUpdateValueAsync(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response Delete(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task DeleteAsync(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response DeleteValue(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task DeleteValueAsync(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.ResourceManager.Core.PreDefinedTagDeleteOperation StartDelete(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task StartDeleteAsync(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - protected override void Validate(Azure.ResourceManager.Core.ResourceIdentifier identifier) { } + public virtual Azure.ResourceManager.Core.PredefinedTagDeleteOperation StartDelete(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartDeleteAsync(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + protected override void ValidateResourceType(Azure.ResourceManager.Core.ResourceIdentifier identifier) { } } - public partial class PreDefinedTagValue + public partial class PredefinedTagValue { - internal PreDefinedTagValue() { } - public Azure.ResourceManager.Core.PreDefinedTagCount Count { get { throw null; } } + internal PredefinedTagValue() { } + public Azure.ResourceManager.Core.PredefinedTagCount Count { get { throw null; } } public string Id { get { throw null; } } public string TagValueValue { get { throw null; } } } @@ -800,7 +802,7 @@ public abstract partial class ResourceContainerBase() where TParent : TParentOperations where TParentId : Azure.ResourceManager.Core.ResourceIdentifier where TParentOperations : Azure.ResourceManager.Core.ResourceOperationsBase { throw null; } - protected override void Validate(Azure.ResourceManager.Core.ResourceIdentifier identifier) { } + protected override void ValidateResourceType(Azure.ResourceManager.Core.ResourceIdentifier identifier) { } } public sealed partial class ResourceFilterCollection { @@ -836,11 +838,11 @@ public partial class ResourceGroupContainer : Azure.ResourceManager.Core.Resourc protected ResourceGroupContainer() { } protected new Azure.ResourceManager.Core.SubscriptionOperations Parent { get { throw null; } } protected override Azure.ResourceManager.Core.ResourceType ValidResourceType { get { throw null; } } + public virtual bool CheckIfExists(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task CheckIfExistsAsync(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public Azure.ResourceManager.Core.ResourceGroupBuilder Construct(Azure.ResourceManager.Core.Location location, System.Collections.Generic.IDictionary tags = null, string managedBy = null) { throw null; } public Azure.Response CreateOrUpdate(string name, Azure.ResourceManager.Core.ResourceGroupData resourceDetails, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> CreateOrUpdateAsync(string name, Azure.ResourceManager.Core.ResourceGroupData resourceDetails, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual bool DoesExist(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DoesExistAsync(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public Azure.Response Get(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetAsync(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Pageable List(string filter = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -1284,8 +1286,8 @@ public partial class SubscriptionContainer : Azure.ResourceManager.Core.Resource protected SubscriptionContainer() { } protected new Azure.ResourceManager.Core.TenantOperations Parent { get { throw null; } } protected override Azure.ResourceManager.Core.ResourceType ValidResourceType { get { throw null; } } - public virtual bool DoesExist(string subscriptionGuid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DoesExistAsync(string subscriptionGuid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual bool CheckIfExists(string subscriptionGuid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task CheckIfExistsAsync(string subscriptionGuid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public Azure.Response Get(string subscriptionGuid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetAsync(string subscriptionGuid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Pageable List(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -1313,8 +1315,8 @@ protected SubscriptionOperations() { } public override Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.ResourceManager.Core.GenericResourceContainer GetGenericResources() { throw null; } - public virtual Azure.ResourceManager.Core.PreDefinedTagOperations GetPreDefinedTagOperations() { throw null; } - public virtual Azure.ResourceManager.Core.PreDefinedTagContainer GetPredefinedTags() { throw null; } + public virtual Azure.ResourceManager.Core.PredefinedTagOperations GetPreDefinedTagOperations() { throw null; } + public virtual Azure.ResourceManager.Core.PredefinedTagContainer GetPredefinedTags() { throw null; } public virtual Azure.ResourceManager.Core.ProviderContainer GetProviders() { throw null; } public virtual Azure.ResourceManager.Core.ResourceGroupContainer GetResourceGroups() { throw null; } public virtual Azure.Pageable ListFeatures(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -1485,9 +1487,7 @@ protected TenantOperations() { } public virtual Azure.Pageable ListProviders(int? top = default(int?), string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.AsyncPageable ListProvidersAsync(int? top = default(int?), string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public virtual Azure.AsyncPageable ListResourcesAsync(System.Func> func) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public virtual Azure.Pageable ListResources(System.Func> func) { throw null; } + public virtual T UseClientContext(System.Func func) { throw null; } } public partial class TenantProviderIdentifier : Azure.ResourceManager.Core.TenantResourceIdentifier { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs index 52f3951d956e..8821f50bfb3f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ArmClient.cs @@ -30,13 +30,23 @@ protected ArmClient() { } + /// + /// Initializes a new instance of the class. + /// + /// A credential used to authenticate to an Azure Service. + /// If is null. + public ArmClient(TokenCredential credential) + : this(null, new Uri(DefaultUri), credential, null) + { + } + /// /// Initializes a new instance of the class. /// /// A credential used to authenticate to an Azure Service. /// The client parameters to use in these operations. /// If is null. - public ArmClient(TokenCredential credential, ArmClientOptions options = default) + public ArmClient(TokenCredential credential, ArmClientOptions options) : this(null, new Uri(DefaultUri), credential, options) { } @@ -158,15 +168,16 @@ private Subscription GetDefaultSubscription() } /// - /// Creates a container using the lambda expression passed in. + /// Provides a way to reuse the protected client context. /// - /// The type of container to construct. - /// The lambda expression to execute. - /// The container type requested. + /// The actual type returned by the delegate. + /// The method to pass the internal properties to. + /// Whatever the delegate returns. [EditorBrowsable(EditorBrowsableState.Never)] - public T GetContainer(Func func) + [ForwardsClientCalls] + public virtual T UseClientContext(Func func) { - return func(ClientOptions, Credential, BaseUri, Pipeline); + return func(BaseUri, Credential, ClientOptions, Pipeline); } /// @@ -174,14 +185,29 @@ public T GetContainer(Func /// A list of the IDs of the resources to retrieve. /// The list of operations that can be performed over the GenericResources. - public virtual IList GetGenericResourceOperations(IEnumerable ids) + public virtual IReadOnlyList GetGenericResourceOperations(params string[] ids) + { + return GetGenericResourceOperationsInternal(ids); + } + + /// + /// Get the operations for a list of specific resources. + /// + /// A list of the IDs of the resources to retrieve. + /// The list of operations that can be performed over the GenericResources. + public virtual IReadOnlyList GetGenericResourceOperations(IEnumerable ids) + { + return GetGenericResourceOperationsInternal(ids); + } + + private IReadOnlyList GetGenericResourceOperationsInternal(IEnumerable ids) { if (ids == null) { throw new ArgumentNullException(nameof(ids)); } - IList genericRespirceOperations = new List(); + var genericRespirceOperations = new ChangeTrackingList(); foreach (string id in ids) { genericRespirceOperations.Add(new GenericResourceOperations(DefaultSubscription, id)); @@ -207,11 +233,11 @@ public virtual GenericResourceOperations GetGenericResourceOperations(string id) /// /// Gets the RestApi definition for a given Azure namespace. /// - /// The namespace to get the rest API for. + /// The namespace to get the rest API for. /// A container representing the rest apis for the namespace. - public virtual RestApiContainer GetRestApis(string nameSpace) + public virtual RestApiContainer GetRestApis(string azureNamespace) { - return new RestApiContainer(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), nameSpace); + return new RestApiContainer(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), azureNamespace); } /// Gets all resource providers for a subscription. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagCount.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagCount.Serialization.cs similarity index 85% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagCount.Serialization.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagCount.Serialization.cs index 4a8ca331fc3a..8a2cffb5e6a5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagCount.Serialization.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagCount.Serialization.cs @@ -6,9 +6,9 @@ namespace Azure.ResourceManager.Core { - public partial class PreDefinedTagCount + public partial class PredefinedTagCount { - internal static PreDefinedTagCount DeserializeTagCount(JsonElement element) + internal static PredefinedTagCount DeserializeTagCount(JsonElement element) { Optional type = default; Optional value = default; @@ -30,7 +30,7 @@ internal static PreDefinedTagCount DeserializeTagCount(JsonElement element) continue; } } - return new PreDefinedTagCount(type.Value, Optional.ToNullable(value)); + return new PredefinedTagCount(type.Value, Optional.ToNullable(value)); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagCount.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagCount.cs similarity index 83% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagCount.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagCount.cs index 31d85cf0e796..7a2021223c2a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagCount.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagCount.cs @@ -4,17 +4,17 @@ namespace Azure.ResourceManager.Core { /// Tag count. - public partial class PreDefinedTagCount + public partial class PredefinedTagCount { /// Initializes a new instance of TagCount. - internal PreDefinedTagCount() + internal PredefinedTagCount() { } /// Initializes a new instance of TagCount. /// Type of count. /// Value of count. - internal PreDefinedTagCount(string type, int? value) + internal PredefinedTagCount(string type, int? value) { Type = type; Value = value; diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagData.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagData.Serialization.cs similarity index 77% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagData.Serialization.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagData.Serialization.cs index caf2756ccbc3..f596baaa1673 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagData.Serialization.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagData.Serialization.cs @@ -7,14 +7,14 @@ namespace Azure.ResourceManager.Core { - public partial class PreDefinedTagData + public partial class PredefinedTagData { - internal static PreDefinedTagData DeserializeTagDetails(JsonElement element) + internal static PredefinedTagData DeserializeTagDetails(JsonElement element) { Optional id = default; Optional tagName = default; - Optional count = default; - Optional> values = default; + Optional count = default; + Optional> values = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("id")) @@ -34,7 +34,7 @@ internal static PreDefinedTagData DeserializeTagDetails(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - count = PreDefinedTagCount.DeserializeTagCount(property.Value); + count = PredefinedTagCount.DeserializeTagCount(property.Value); continue; } if (property.NameEquals("values")) @@ -44,16 +44,16 @@ internal static PreDefinedTagData DeserializeTagDetails(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); + List array = new List(); foreach (var item in property.Value.EnumerateArray()) { - array.Add(PreDefinedTagValue.DeserializeTagValue(item)); + array.Add(PredefinedTagValue.DeserializeTagValue(item)); } values = array; continue; } } - return new PreDefinedTagData(id.Value, tagName.Value, count.Value, Optional.ToList(values)); + return new PredefinedTagData(id.Value, tagName.Value, count.Value, Optional.ToList(values)); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagData.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagData.cs similarity index 75% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagData.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagData.cs index d76596ce7d76..f8a4a1a45421 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagData.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagData.cs @@ -7,12 +7,12 @@ namespace Azure.ResourceManager.Core { /// Tag details. - public partial class PreDefinedTagData : SubResource + public partial class PredefinedTagData : SubResource { /// Initializes a new instance of TagDetails. - internal PreDefinedTagData() + internal PredefinedTagData() { - Values = new ChangeTrackingList(); + Values = new ChangeTrackingList(); } /// Initializes a new instance of TagDetails. @@ -20,7 +20,7 @@ internal PreDefinedTagData() /// The tag name. /// The total number of resources that use the resource tag. When a tag is initially created and has no associated resources, the value is 0. /// The list of tag values. - internal PreDefinedTagData(string id, string tagName, PreDefinedTagCount count, IReadOnlyList values) : base(id) + internal PredefinedTagData(string id, string tagName, PredefinedTagCount count, IReadOnlyList values) : base(id) { TagName = tagName; Count = count; @@ -30,8 +30,8 @@ internal PreDefinedTagData(string id, string tagName, PreDefinedTagCount count, /// The tag name. public string TagName { get; } /// The total number of resources that use the resource tag. When a tag is initially created and has no associated resources, the value is 0. - public PreDefinedTagCount Count { get; } + public PredefinedTagCount Count { get; } /// The list of tag values. - public IReadOnlyList Values { get; } + public IReadOnlyList Values { get; } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagValue.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagValue.Serialization.cs similarity index 79% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagValue.Serialization.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagValue.Serialization.cs index 7236515ca9a6..44a727bf991f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagValue.Serialization.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagValue.Serialization.cs @@ -6,13 +6,13 @@ namespace Azure.ResourceManager.Core { - public partial class PreDefinedTagValue + public partial class PredefinedTagValue { - internal static PreDefinedTagValue DeserializeTagValue(JsonElement element) + internal static PredefinedTagValue DeserializeTagValue(JsonElement element) { Optional id = default; Optional tagValue = default; - Optional count = default; + Optional count = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("id")) @@ -32,11 +32,11 @@ internal static PreDefinedTagValue DeserializeTagValue(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - count = PreDefinedTagCount.DeserializeTagCount(property.Value); + count = PredefinedTagCount.DeserializeTagCount(property.Value); continue; } } - return new PreDefinedTagValue(id.Value, tagValue.Value, count.Value); + return new PredefinedTagValue(id.Value, tagValue.Value, count.Value); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagValue.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagValue.cs similarity index 79% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagValue.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagValue.cs index c7ee06388f2f..30f4118c1756 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagValue.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagValue.cs @@ -4,10 +4,10 @@ namespace Azure.ResourceManager.Core { /// Tag information. - public partial class PreDefinedTagValue + public partial class PredefinedTagValue { /// Initializes a new instance of TagValue. - internal PreDefinedTagValue() + internal PredefinedTagValue() { } @@ -15,7 +15,7 @@ internal PreDefinedTagValue() /// The tag value ID. /// The tag value. /// The tag value count. - internal PreDefinedTagValue(string id, string tagValueValue, PreDefinedTagCount count) + internal PredefinedTagValue(string id, string tagValueValue, PredefinedTagCount count) { Id = id; TagValueValue = tagValueValue; @@ -27,6 +27,6 @@ internal PreDefinedTagValue(string id, string tagValueValue, PreDefinedTagCount /// The tag value. public string TagValueValue { get; } /// The tag value count. - public PreDefinedTagCount Count { get; } + public PredefinedTagCount Count { get; } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagsListResult.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagsListResult.Serialization.cs similarity index 74% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagsListResult.Serialization.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagsListResult.Serialization.cs index f0e8f6d6e203..b5ab2d5339b5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagsListResult.Serialization.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagsListResult.Serialization.cs @@ -7,11 +7,11 @@ namespace Azure.ResourceManager.Core { - internal partial class PreDefinedTagsListResult + internal partial class PredefinedTagsListResult { - internal static PreDefinedTagsListResult DeserializeTagsListResult(JsonElement element) + internal static PredefinedTagsListResult DeserializeTagsListResult(JsonElement element) { - Optional> value = default; + Optional> value = default; Optional nextLink = default; foreach (var property in element.EnumerateObject()) { @@ -22,10 +22,10 @@ internal static PreDefinedTagsListResult DeserializeTagsListResult(JsonElement e property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); + List array = new List(); foreach (var item in property.Value.EnumerateArray()) { - array.Add(PreDefinedTagData.DeserializeTagDetails(item)); + array.Add(PredefinedTagData.DeserializeTagDetails(item)); } value = array; continue; @@ -36,7 +36,7 @@ internal static PreDefinedTagsListResult DeserializeTagsListResult(JsonElement e continue; } } - return new PreDefinedTagsListResult(Optional.ToList(value), nextLink.Value); + return new PredefinedTagsListResult(Optional.ToList(value), nextLink.Value); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagsListResult.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagsListResult.cs similarity index 75% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagsListResult.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagsListResult.cs index d606926b8b89..bf51ad0e5fe3 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/Models/PreDefinedTagsListResult.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/Models/PredefinedTagsListResult.cs @@ -7,25 +7,25 @@ namespace Azure.ResourceManager.Core { /// List of subscription tags. - internal partial class PreDefinedTagsListResult + internal partial class PredefinedTagsListResult { /// Initializes a new instance of TagsListResult. - internal PreDefinedTagsListResult() + internal PredefinedTagsListResult() { - Value = new ChangeTrackingList(); + Value = new ChangeTrackingList(); } /// Initializes a new instance of TagsListResult. /// An array of tags. /// The URL to use for getting the next set of results. - internal PreDefinedTagsListResult(IReadOnlyList value, string nextLink) + internal PredefinedTagsListResult(IReadOnlyList value, string nextLink) { Value = value; NextLink = nextLink; } /// An array of tags. - public IReadOnlyList Value { get; } + public IReadOnlyList Value { get; } /// The URL to use for getting the next set of results. public string NextLink { get; } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTag.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTag.cs similarity index 73% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTag.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTag.cs index ce4d68ac779a..edec6d7f024f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTag.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTag.cs @@ -6,21 +6,21 @@ namespace Azure.ResourceManager.Core /// /// A class representing a Tags along with the instance operations that can be performed on it. /// - public class PreDefinedTag : PreDefinedTagOperations + public class PredefinedTag : PredefinedTagOperations { /// - /// Initializes a new instance of the class for mocking. + /// Initializes a new instance of the class for mocking. /// - protected PreDefinedTag() + protected PredefinedTag() { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// The operations object to copy the client parameters from. /// The data model representing the generic azure resource. - internal PreDefinedTag(OperationsBase operations, PreDefinedTagData data) + internal PredefinedTag(OperationsBase operations, PredefinedTagData data) : base(new ClientContext(operations.ClientOptions,operations.Credential, operations.BaseUri, operations.Pipeline), operations.Id) { Data = data; @@ -29,6 +29,6 @@ internal PreDefinedTag(OperationsBase operations, PreDefinedTagData data) /// /// Gets the Tags data model. /// - public virtual PreDefinedTagData Data { get; } + public virtual PredefinedTagData Data { get; } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTagContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTagContainer.cs similarity index 84% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTagContainer.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTagContainer.cs index 46dd920e61b3..0089385a477f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTagContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTagContainer.cs @@ -12,21 +12,21 @@ namespace Azure.ResourceManager.Core /// /// A class representing collection of Tag and its operations. /// - public class PreDefinedTagContainer : ContainerBase + public class PredefinedTagContainer : ContainerBase { /// - /// Initializes a new instance of the class for mocking. + /// Initializes a new instance of the class for mocking. /// - protected PreDefinedTagContainer() + protected PredefinedTagContainer() { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// Current client context. /// The parent subscription. - internal PreDefinedTagContainer(ClientContext clientContext, SubscriptionResourceIdentifier subscription) + internal PredefinedTagContainer(ClientContext clientContext, SubscriptionResourceIdentifier subscription) : base(clientContext, new SubscriptionResourceIdentifier(subscription)) { RestClient = new TagRestOperations(Diagnostics, Pipeline, subscription.SubscriptionId, BaseUri); @@ -45,9 +45,9 @@ internal PreDefinedTagContainer(ClientContext clientContext, SubscriptionResourc /// This operation allows adding a name to the list of predefined tag names for the given subscription. A tag name can have a maximum of 512 characters and is case-insensitive. Tag names cannot have the following prefixes which are reserved for Azure use: 'microsoft', 'azure', 'windows'. /// The name of the tag to create. /// The cancellation token to use. - public virtual async Task> CreateOrUpdateAsync(string tagName, CancellationToken cancellationToken = default) + public virtual async Task> CreateOrUpdateAsync(string tagName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("PreDefinedTagContainer.CreateOrUpdate"); + using var scope = Diagnostics.CreateScope("PredefinedTagContainer.CreateOrUpdate"); scope.Start(); try { @@ -64,9 +64,9 @@ public virtual async Task> CreateOrUpdateAsync(string ta /// This operation allows adding a name to the list of predefined tag names for the given subscription. A tag name can have a maximum of 512 characters and is case-insensitive. Tag names cannot have the following prefixes which are reserved for Azure use: 'microsoft', 'azure', 'windows'. /// The name of the tag to create. /// The cancellation token to use. - public virtual Response CreateOrUpdate(string tagName, CancellationToken cancellationToken = default) + public virtual Response CreateOrUpdate(string tagName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("PreDefinedTagContainer.CreateOrUpdate"); + using var scope = Diagnostics.CreateScope("PredefinedTagContainer.CreateOrUpdate"); scope.Start(); try { @@ -89,18 +89,18 @@ public virtual Response CreateOrUpdate(string tagName, Cancellati /// /// Name of the resource group cannot be null or a whitespace. /// resourceDetails cannot be null. - public PreDefinedTagCreateOrUpdateOperation StartCreateOrUpdate(string tagName, CancellationToken cancellationToken = default) + public PredefinedTagCreateOrUpdateOperation StartCreateOrUpdate(string tagName, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(tagName)) throw new ArgumentException("tagName cannot be null or a whitespace.", nameof(tagName)); - using var scope = Diagnostics.CreateScope("PreDefinedTagContainer.StartCreateOrUpdate"); + using var scope = Diagnostics.CreateScope("PredefinedTagContainer.StartCreateOrUpdate"); scope.Start(); try { var originalResponse = RestClient.CreateOrUpdate(tagName, cancellationToken); - return new PreDefinedTagCreateOrUpdateOperation(this, originalResponse); + return new PredefinedTagCreateOrUpdateOperation(this, originalResponse); } catch (Exception e) { @@ -120,18 +120,18 @@ public PreDefinedTagCreateOrUpdateOperation StartCreateOrUpdate(string tagName, /// /// Name of the resource group cannot be null or a whitespace. /// resourceDetails cannot be null. - public virtual async Task StartCreateOrUpdateAsync(string tagName, CancellationToken cancellationToken = default) + public virtual async Task StartCreateOrUpdateAsync(string tagName, CancellationToken cancellationToken = default) { if (string.IsNullOrWhiteSpace(tagName)) throw new ArgumentException("name cannot be null or a whitespace.", nameof(tagName)); - using var scope = Diagnostics.CreateScope("PreDefinedTagContainer.StartCreateOrUpdate"); + using var scope = Diagnostics.CreateScope("PredefinedTagContainer.StartCreateOrUpdate"); scope.Start(); try { var originalResponse = await RestClient.CreateOrUpdateAsync(tagName, cancellationToken).ConfigureAwait(false); - return new PreDefinedTagCreateOrUpdateOperation(this, originalResponse); + return new PredefinedTagCreateOrUpdateOperation(this, originalResponse); } catch (Exception e) { @@ -142,16 +142,16 @@ public virtual async Task StartCreateOrUpd /// This operation performs a union of predefined tags, resource tags, resource group tags and subscription tags, and returns a summary of usage for each tag name and value under the given subscription. In case of a large number of tags, this operation may return a previously cached result. /// 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 scope0 = Diagnostics.CreateScope("PreDefinedTagContainer.List"); + using var scope0 = Diagnostics.CreateScope("PredefinedTagContainer.List"); scope0.Start(); try { var response = await RestClient.ListAsync(cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value.Select(data => new PreDefinedTag(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); + return Page.FromValues(response.Value.Value.Select(data => new PredefinedTag(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -159,14 +159,14 @@ async Task> FirstPageFunc(int? pageSizeHint) throw; } } - async Task> NextPageFunc(string nextLink, int? pageSizeHint) + async Task> NextPageFunc(string nextLink, int? pageSizeHint) { - using var scope0 = Diagnostics.CreateScope("PreDefinedTagContainer.List"); + using var scope0 = Diagnostics.CreateScope("PredefinedTagContainer.List"); scope0.Start(); try { var response = await RestClient.ListNextPageAsync(nextLink, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value.Select(data => new PreDefinedTag(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); + return Page.FromValues(response.Value.Value.Select(data => new PredefinedTag(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -179,16 +179,16 @@ async Task> NextPageFunc(string nextLink, int? pageSizeHint) /// This operation performs a union of predefined tags, resource tags, resource group tags and subscription tags, and returns a summary of usage for each tag name and value under the given subscription. In case of a large number of tags, this operation may return a previously cached result. /// 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 scope0 = Diagnostics.CreateScope("PreDefinedTagContainer.List"); + using var scope0 = Diagnostics.CreateScope("PredefinedTagContainer.List"); scope0.Start(); try { var response = RestClient.List(cancellationToken); - return Page.FromValues(response.Value.Value.Select(data => new PreDefinedTag(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); + return Page.FromValues(response.Value.Value.Select(data => new PredefinedTag(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -196,14 +196,14 @@ Page FirstPageFunc(int? pageSizeHint) throw; } } - Page NextPageFunc(string nextLink, int? pageSizeHint) + Page NextPageFunc(string nextLink, int? pageSizeHint) { - using var scope0 = Diagnostics.CreateScope("PreDefinedTagContainer.List"); + using var scope0 = Diagnostics.CreateScope("PredefinedTagContainer.List"); scope0.Start(); try { var response = RestClient.ListNextPage(nextLink, cancellationToken); - return Page.FromValues(response.Value.Value.Select(data => new PreDefinedTag(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); + return Page.FromValues(response.Value.Value.Select(data => new PredefinedTag(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTagCreateOrUpdateOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTagCreateOrUpdateOperation.cs similarity index 72% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTagCreateOrUpdateOperation.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTagCreateOrUpdateOperation.cs index d94874d07ff7..ac51411eb7b9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTagCreateOrUpdateOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTagCreateOrUpdateOperation.cs @@ -14,25 +14,25 @@ namespace Azure.ResourceManager.Core { /// The operation type for the create or update API. - public partial class PreDefinedTagCreateOrUpdateOperation : Operation + public partial class PredefinedTagCreateOrUpdateOperation : Operation { - private readonly OperationOrResponseInternals _operation; + private readonly OperationOrResponseInternals _operation; /// Initializes a new instance of PreDefinedTagCreateOrUpdateOperation for mocking. - protected PreDefinedTagCreateOrUpdateOperation() + protected PredefinedTagCreateOrUpdateOperation() { } - internal PreDefinedTagCreateOrUpdateOperation(OperationsBase parentOperation, Response response) + internal PredefinedTagCreateOrUpdateOperation(OperationsBase parentOperation, Response response) { - _operation = new OperationOrResponseInternals(Response.FromValue(new PreDefinedTag(parentOperation, response.Value), response.GetRawResponse())); + _operation = new OperationOrResponseInternals(Response.FromValue(new PredefinedTag(parentOperation, response.Value), response.GetRawResponse())); } /// public override string Id => ""; /// - public override PreDefinedTag Value => _operation.Value; + public override PredefinedTag Value => _operation.Value; /// public override bool HasCompleted => _operation.HasCompleted; @@ -50,9 +50,9 @@ internal PreDefinedTagCreateOrUpdateOperation(OperationsBase parentOperation, Re public override ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => _operation.UpdateStatusAsync(cancellationToken); /// - public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(cancellationToken); /// - public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => _operation.WaitForCompletionAsync(pollingInterval, cancellationToken); } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTagDeleteOperation.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTagDeleteOperation.cs similarity index 91% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTagDeleteOperation.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTagDeleteOperation.cs index 57361422a933..ec6570efec3b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTagDeleteOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTagDeleteOperation.cs @@ -14,16 +14,16 @@ namespace Azure.ResourceManager.Core { /// The operation type for the delete API. - public partial class PreDefinedTagDeleteOperation : Operation + public partial class PredefinedTagDeleteOperation : Operation { private readonly OperationOrResponseInternals _operation; /// Initializes a new instance of PreDefinedTagDeleteOperation for mocking. - protected PreDefinedTagDeleteOperation() + protected PredefinedTagDeleteOperation() { } - internal PreDefinedTagDeleteOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + internal PredefinedTagDeleteOperation(ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) { _operation = new OperationOrResponseInternals(clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "PreDefinedTagDeleteOperation"); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTagOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTagOperations.cs similarity index 87% rename from sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTagOperations.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTagOperations.cs index 0a2433774a5b..3765b7cc83fe 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/PreDefinedTagOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Custom/Resources/PredefinedTagOperations.cs @@ -9,7 +9,7 @@ namespace Azure.ResourceManager.Core { /// The predefined tag client. - public class PreDefinedTagOperations : ResourceOperationsBase + public class PredefinedTagOperations : ResourceOperationsBase { /// /// The resource type for predefined tag. @@ -17,18 +17,18 @@ public class PreDefinedTagOperations : ResourceOperationsBase public static readonly ResourceType ResourceType = "Microsoft.Resources/tagNames"; /// - /// Initializes a new instance of the class for mocking. + /// Initializes a new instance of the class for mocking. /// - protected PreDefinedTagOperations() + protected PredefinedTagOperations() { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// /// The Guid of the subscription. - internal PreDefinedTagOperations(ClientContext clientContext, string subscriptionGuid) + internal PredefinedTagOperations(ClientContext clientContext, string subscriptionGuid) : base(clientContext, new SubscriptionResourceIdentifier(subscriptionGuid)) { } @@ -46,7 +46,7 @@ internal PreDefinedTagOperations(ClientContext clientContext, string subscriptio /// The cancellation token to use. public virtual async Task DeleteValueAsync(string tagName, string tagValue, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("PreDefinedTagOperations.DeleteValue"); + using var scope = Diagnostics.CreateScope("PredefinedTagOperations.DeleteValue"); scope.Start(); try { @@ -65,7 +65,7 @@ public virtual async Task DeleteValueAsync(string tagName, string tagV /// The cancellation token to use. public virtual Response DeleteValue(string tagName, string tagValue, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("PreDefinedTagOperations.DeleteValue"); + using var scope = Diagnostics.CreateScope("PredefinedTagOperations.DeleteValue"); scope.Start(); try { @@ -82,9 +82,9 @@ public virtual Response DeleteValue(string tagName, string tagValue, Cancellatio /// The name of the tag. /// The value of the tag to create. /// The cancellation token to use. - public virtual async Task> CreateOrUpdateValueAsync(string tagName, string tagValue, CancellationToken cancellationToken = default) + public virtual async Task> CreateOrUpdateValueAsync(string tagName, string tagValue, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("PreDefinedTagOperations.CreateOrUpdateValue"); + using var scope = Diagnostics.CreateScope("PredefinedTagOperations.CreateOrUpdateValue"); scope.Start(); try { @@ -101,9 +101,9 @@ public virtual async Task> CreateOrUpdateValueAsync /// The name of the tag. /// The value of the tag to create. /// The cancellation token to use. - public virtual Response CreateOrUpdateValue(string tagName, string tagValue, CancellationToken cancellationToken = default) + public virtual Response CreateOrUpdateValue(string tagName, string tagValue, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("PreDefinedTagOperations.CreateOrUpdateValue"); + using var scope = Diagnostics.CreateScope("PredefinedTagOperations.CreateOrUpdateValue"); scope.Start(); try { @@ -121,7 +121,7 @@ public virtual Response CreateOrUpdateValue(string tagName, /// The cancellation token to use. public virtual async Task DeleteAsync(string tagName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("PreDefinedTagOperations.Delete"); + using var scope = Diagnostics.CreateScope("PredefinedTagOperations.Delete"); scope.Start(); try { @@ -140,7 +140,7 @@ public virtual async Task DeleteAsync(string tagName, CancellationToke /// The cancellation token to use. public virtual Response Delete(string tagName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("PreDefinedTagOperations.Delete"); + using var scope = Diagnostics.CreateScope("PredefinedTagOperations.Delete"); scope.Start(); try { @@ -157,14 +157,14 @@ public virtual Response Delete(string tagName, CancellationToken cancellationTok /// This operation allows deleting a name from the list of predefined tag names for the given subscription. The name being deleted must not be in use as a tag name for any resource. All predefined values for the given name must have already been deleted. /// The name of the tag. /// The cancellation token to use. - public virtual async Task StartDeleteAsync(string tagName, CancellationToken cancellationToken = default) + public virtual async Task StartDeleteAsync(string tagName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("PreDefinedTagOperations.StartDelete"); + using var scope = Diagnostics.CreateScope("PredefinedTagOperations.StartDelete"); scope.Start(); try { var response = await RestClient.DeleteAsync(tagName, cancellationToken).ConfigureAwait(false); - return new PreDefinedTagDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, response); + return new PredefinedTagDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, response); } catch (Exception e) { @@ -176,14 +176,14 @@ public virtual async Task StartDeleteAsync(string /// This operation allows deleting a name from the list of predefined tag names for the given subscription. The name being deleted must not be in use as a tag name for any resource. All predefined values for the given name must have already been deleted. /// The name of the tag. /// The cancellation token to use. - public virtual PreDefinedTagDeleteOperation StartDelete(string tagName, CancellationToken cancellationToken = default) + public virtual PredefinedTagDeleteOperation StartDelete(string tagName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("PreDefinedTagOperations.StartDelete"); + using var scope = Diagnostics.CreateScope("PredefinedTagOperations.StartDelete"); scope.Start(); try { var response = RestClient.Delete(tagName, cancellationToken); - return new PreDefinedTagDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, response); + return new PredefinedTagDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, response); } catch (Exception e) { @@ -193,7 +193,7 @@ public virtual PreDefinedTagDeleteOperation StartDelete(string tagName, Cancella } /// - protected override void Validate(ResourceIdentifier identifier) + protected override void ValidateResourceType(ResourceIdentifier identifier) { if (identifier is null) throw new ArgumentException("Invalid resource type for TagsOperation", nameof(identifier)); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ManagementGroup/ManagementGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ManagementGroup/ManagementGroupContainer.cs index fda384bc1988..970f06e26157 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ManagementGroup/ManagementGroupContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/ManagementGroup/ManagementGroupContainer.cs @@ -256,9 +256,9 @@ public async virtual Task TryGetAsync(string groupId, Managemen /// A filter which allows the exclusion of subscriptions from results (i.e. '$filter=children.childType ne Subscription'). /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. /// The cancellation token to use. - public virtual bool DoesExist(string groupId, ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) + public virtual bool CheckIfExists(string groupId, ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.DoesExist"); + using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.CheckIfExists"); scope.Start(); try { @@ -281,9 +281,9 @@ public virtual bool DoesExist(string groupId, ManagementGroupExpandType? expand /// A filter which allows the exclusion of subscriptions from results (i.e. '$filter=children.childType ne Subscription'). /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. /// The cancellation token to use. - public async virtual Task DoesExistAsync(string groupId, ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) + public async virtual Task CheckIfExistsAsync(string groupId, ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.DoesExist"); + using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.CheckIfExists"); scope.Start(); try { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/FeatureContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/FeatureContainer.cs index 55524eb9d14b..72ae2dd3c0b0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/FeatureContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/FeatureContainer.cs @@ -222,9 +222,9 @@ public virtual async Task TryGetAsync(string featureName, CancellationT /// 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 bool DoesExist(string featureName, CancellationToken cancellationToken = default) + public virtual bool CheckIfExists(string featureName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("FeatureContainer.DoesExist"); + using var scope = Diagnostics.CreateScope("FeatureContainer.CheckIfExists"); scope.Start(); return TryGet(featureName, cancellationToken) != null; } @@ -236,9 +236,9 @@ public virtual bool DoesExist(string featureName, CancellationToken cancellation /// 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 async Task DoesExistAsync(string featureName, CancellationToken cancellationToken = default) + public virtual async Task CheckIfExistsAsync(string featureName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("FeatureContainer.DoesExist"); + using var scope = Diagnostics.CreateScope("FeatureContainer.CheckIfExists"); scope.Start(); return await TryGetAsync(featureName, cancellationToken).ConfigureAwait(false) != null; } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/FeatureOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/FeatureOperations.cs index 2e5fe64b4bea..7a02aa6fa06d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/FeatureOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/FeatureOperations.cs @@ -56,7 +56,7 @@ internal FeatureOperations(string featureName, ProviderOperations options) protected override ResourceType ValidResourceType => ResourceType; /// - protected override void Validate(ResourceIdentifier identifier) + protected override void ValidateResourceType(ResourceIdentifier identifier) { if (identifier.ResourceType != $"{Id.ResourceType.Namespace}/features") { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/GenericResourceContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/GenericResourceContainer.cs index 67bdfdac9552..b5b2fd082457 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/GenericResourceContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/GenericResourceContainer.cs @@ -35,7 +35,7 @@ internal GenericResourceContainer(ClientContext clientContext, SubscriptionResou protected override ResourceType ValidResourceType => ResourceIdentifier.RootResourceIdentifier.ResourceType; /// - protected override void Validate(ResourceIdentifier identifier) + protected override void ValidateResourceType(ResourceIdentifier identifier) { } @@ -482,9 +482,9 @@ public virtual async Task TryGetAsync(string resourceName, Canc /// 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 bool DoesExist(string resourceName, CancellationToken cancellationToken = default) + public virtual bool CheckIfExists(string resourceName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("GenericResourceContainer.DoesExist"); + using var scope = Diagnostics.CreateScope("GenericResourceContainer.CheckIfExists"); scope.Start(); return TryGet(resourceName, cancellationToken) != null; } @@ -496,9 +496,9 @@ public virtual bool DoesExist(string resourceName, CancellationToken cancellatio /// 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 async Task DoesExistAsync(string resourceName, CancellationToken cancellationToken = default) + public virtual async Task CheckIfExistsAsync(string resourceName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("GenericResourceContainer.DoesExist"); + using var scope = Diagnostics.CreateScope("GenericResourceContainer.CheckIfExists"); scope.Start(); return await TryGetAsync(resourceName, cancellationToken).ConfigureAwait(false) != null; } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/GenericResourceOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/GenericResourceOperations.cs index aed9c2fb8ab0..e17c3017301a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/GenericResourceOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/GenericResourceOperations.cs @@ -239,7 +239,7 @@ public override async Task> GetAsync(CancellationToken } /// - protected override void Validate(ResourceIdentifier identifier) + protected override void ValidateResourceType(ResourceIdentifier identifier) { if (identifier is null) throw new ArgumentNullException(nameof(identifier)); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/ResourceGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/ResourceGroupContainer.cs index 82641cd5c307..c98446ab2497 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/ResourceGroupContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/ResourceGroupContainer.cs @@ -111,9 +111,9 @@ public virtual async Task TryGetAsync(string resourceGroupName, C /// 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 bool DoesExist(string resourceGroupName, CancellationToken cancellationToken = default) + public virtual bool CheckIfExists(string resourceGroupName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("ResourceGroupContainer.DoesExist"); + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.CheckIfExists"); scope.Start(); try { @@ -133,9 +133,9 @@ public virtual bool DoesExist(string resourceGroupName, CancellationToken cancel /// 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 async Task DoesExistAsync(string resourceGroupName, CancellationToken cancellationToken = default) + public virtual async Task CheckIfExistsAsync(string resourceGroupName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("ResourceGroupContainer.DoesExist"); + using var scope = Diagnostics.CreateScope("ResourceGroupContainer.CheckIfExists"); scope.Start(); try { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/SubscriptionContainer.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/SubscriptionContainer.cs index 59baae3a13f4..297f648935e4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/SubscriptionContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/SubscriptionContainer.cs @@ -237,9 +237,9 @@ public virtual async Task TryGetAsync(string subscriptionGuid, Can /// 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 bool DoesExist(string subscriptionGuid, CancellationToken cancellationToken = default) + public virtual bool CheckIfExists(string subscriptionGuid, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("SubscriptionContainer.DoesExist"); + using var scope = Diagnostics.CreateScope("SubscriptionContainer.CheckIfExists"); scope.Start(); return TryGet(subscriptionGuid, cancellationToken) != null; } @@ -251,9 +251,9 @@ public virtual bool DoesExist(string subscriptionGuid, CancellationToken cancell /// 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 async Task DoesExistAsync(string subscriptionGuid, CancellationToken cancellationToken = default) + public virtual async Task CheckIfExistsAsync(string subscriptionGuid, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("SubscriptionContainer.DoesExist"); + using var scope = Diagnostics.CreateScope("SubscriptionContainer.CheckIfExists"); scope.Start(); return await TryGetAsync(subscriptionGuid, cancellationToken).ConfigureAwait(false) != null; } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/SubscriptionOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/SubscriptionOperations.cs index 3e2cfd2ab078..1e18555dd36f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/SubscriptionOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/SubscriptionOperations.cs @@ -83,9 +83,9 @@ public virtual ResourceGroupContainer GetResourceGroups() /// Gets the predefined tag container under this subscription. /// /// The tags container. - public virtual PreDefinedTagContainer GetPredefinedTags() + public virtual PredefinedTagContainer GetPredefinedTags() { - return new PreDefinedTagContainer(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), Id); + return new PredefinedTagContainer(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), Id); } /// @@ -188,9 +188,9 @@ public virtual GenericResourceContainer GetGenericResources() /// Gets the predefined tag operations under this subscription. /// /// The predefined tags operations. - public virtual PreDefinedTagOperations GetPreDefinedTagOperations() + public virtual PredefinedTagOperations GetPreDefinedTagOperations() { - return new PreDefinedTagOperations(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), Id); + return new PredefinedTagOperations(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), Id); } /// Gets all the preview features that are available through AFEC for the subscription. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/TagRestOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/TagRestOperations.cs index d57358b30b9d..3a5b2ae5e484 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/TagRestOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/TagRestOperations.cs @@ -136,7 +136,7 @@ internal Azure.Core.HttpMessage CreateCreateOrUpdateValueRequest(string tagName, /// The value of the tag to create. /// The cancellation token to use. /// or is null. - public async Task> CreateOrUpdateValueAsync(string tagName, string tagValue, CancellationToken cancellationToken = default) + public async Task> CreateOrUpdateValueAsync(string tagName, string tagValue, CancellationToken cancellationToken = default) { if (tagName == null) { @@ -154,9 +154,9 @@ public async Task> CreateOrUpdateValueAsync(string case 200: case 201: { - PreDefinedTagValue value = default; + PredefinedTagValue value = default; using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); - value = PreDefinedTagValue.DeserializeTagValue(document.RootElement); + value = PredefinedTagValue.DeserializeTagValue(document.RootElement); return Response.FromValue(value, message.Response); } default: @@ -169,7 +169,7 @@ public async Task> CreateOrUpdateValueAsync(string /// The value of the tag to create. /// The cancellation token to use. /// or is null. - public Response CreateOrUpdateValue(string tagName, string tagValue, CancellationToken cancellationToken = default) + public Response CreateOrUpdateValue(string tagName, string tagValue, CancellationToken cancellationToken = default) { if (tagName == null) { @@ -187,9 +187,9 @@ public Response CreateOrUpdateValue(string tagName, string t case 200: case 201: { - PreDefinedTagValue value = default; + PredefinedTagValue value = default; using var document = JsonDocument.Parse(message.Response.ContentStream); - value = PreDefinedTagValue.DeserializeTagValue(document.RootElement); + value = PredefinedTagValue.DeserializeTagValue(document.RootElement); return Response.FromValue(value, message.Response); } default: @@ -218,7 +218,7 @@ internal Azure.Core.HttpMessage CreateCreateOrUpdateRequest(string tagName) /// The name of the tag to create. /// The cancellation token to use. /// is null. - public async Task> CreateOrUpdateAsync(string tagName, CancellationToken cancellationToken = default) + public async Task> CreateOrUpdateAsync(string tagName, CancellationToken cancellationToken = default) { if (tagName == null) { @@ -232,9 +232,9 @@ public async Task> CreateOrUpdateAsync(string tagNam case 200: case 201: { - PreDefinedTagData value = default; + PredefinedTagData value = default; using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); - value = PreDefinedTagData.DeserializeTagDetails(document.RootElement); + value = PredefinedTagData.DeserializeTagDetails(document.RootElement); return Response.FromValue(value, message.Response); } default: @@ -246,7 +246,7 @@ public async Task> CreateOrUpdateAsync(string tagNam /// The name of the tag to create. /// The cancellation token to use. /// is null. - public Response CreateOrUpdate(string tagName, CancellationToken cancellationToken = default) + public Response CreateOrUpdate(string tagName, CancellationToken cancellationToken = default) { if (tagName == null) { @@ -260,9 +260,9 @@ public Response CreateOrUpdate(string tagName, CancellationTo case 200: case 201: { - PreDefinedTagData value = default; + PredefinedTagData value = default; using var document = JsonDocument.Parse(message.Response.ContentStream); - value = PreDefinedTagData.DeserializeTagDetails(document.RootElement); + value = PredefinedTagData.DeserializeTagDetails(document.RootElement); return Response.FromValue(value, message.Response); } default: @@ -351,7 +351,7 @@ internal Azure.Core.HttpMessage CreateListRequest() /// This operation performs a union of predefined tags, resource tags, resource group tags and subscription tags, and returns a summary of usage for each tag name and value under the given subscription. In case of a large number of tags, this operation may return a previously cached result. /// The cancellation token to use. - public async Task> ListAsync(CancellationToken cancellationToken = default) + public async Task> ListAsync(CancellationToken cancellationToken = default) { using var message = CreateListRequest(); await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); @@ -359,9 +359,9 @@ public async Task> ListAsync(CancellationToke { case 200: { - PreDefinedTagsListResult value = default; + PredefinedTagsListResult value = default; using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); - value = PreDefinedTagsListResult.DeserializeTagsListResult(document.RootElement); + value = PredefinedTagsListResult.DeserializeTagsListResult(document.RootElement); return Response.FromValue(value, message.Response); } default: @@ -371,7 +371,7 @@ public async Task> ListAsync(CancellationToke /// This operation performs a union of predefined tags, resource tags, resource group tags and subscription tags, and returns a summary of usage for each tag name and value under the given subscription. In case of a large number of tags, this operation may return a previously cached result. /// The cancellation token to use. - public Response List(CancellationToken cancellationToken = default) + public Response List(CancellationToken cancellationToken = default) { using var message = CreateListRequest(); _pipeline.Send(message, cancellationToken); @@ -379,9 +379,9 @@ public Response List(CancellationToken cancellationTok { case 200: { - PreDefinedTagsListResult value = default; + PredefinedTagsListResult value = default; using var document = JsonDocument.Parse(message.Response.ContentStream); - value = PreDefinedTagsListResult.DeserializeTagsListResult(document.RootElement); + value = PredefinedTagsListResult.DeserializeTagsListResult(document.RootElement); return Response.FromValue(value, message.Response); } default: @@ -406,7 +406,7 @@ internal Azure.Core.HttpMessage CreateListNextPageRequest(string nextLink) /// The URL to the next page of results. /// The cancellation token to use. /// is null. - public async Task> ListNextPageAsync(string nextLink, CancellationToken cancellationToken = default) + public async Task> ListNextPageAsync(string nextLink, CancellationToken cancellationToken = default) { if (nextLink == null) { @@ -419,9 +419,9 @@ public async Task> ListNextPageAsync(string n { case 200: { - PreDefinedTagsListResult value = default; + PredefinedTagsListResult value = default; using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); - value = PreDefinedTagsListResult.DeserializeTagsListResult(document.RootElement); + value = PredefinedTagsListResult.DeserializeTagsListResult(document.RootElement); return Response.FromValue(value, message.Response); } default: @@ -433,7 +433,7 @@ public async Task> ListNextPageAsync(string n /// The URL to the next page of results. /// The cancellation token to use. /// is null. - public Response ListNextPage(string nextLink, CancellationToken cancellationToken = default) + public Response ListNextPage(string nextLink, CancellationToken cancellationToken = default) { if (nextLink == null) { @@ -446,9 +446,9 @@ public Response ListNextPage(string nextLink, Cancella { case 200: { - PreDefinedTagsListResult value = default; + PredefinedTagsListResult value = default; using var document = JsonDocument.Parse(message.Response.ContentStream); - value = PreDefinedTagsListResult.DeserializeTagsListResult(document.RootElement); + value = PredefinedTagsListResult.DeserializeTagsListResult(document.RootElement); return Response.FromValue(value, message.Response); } default: diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/TenantOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/TenantOperations.cs index 6a8414206219..e9c46e1657da 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/TenantOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/Resources/TenantOperations.cs @@ -48,27 +48,14 @@ internal TenantOperations(ArmClientOptions options, TokenCredential credential, protected override ResourceType ValidResourceType => ResourceType; /// - /// ListResources of type T. + /// Provides a way to reuse the protected client context. /// - /// The type of resource being returned in the list. + /// The actual type returned by the delegate. /// The method to pass the internal properties to. - /// A collection of resources. + /// Whatever the delegate returns. [EditorBrowsable(EditorBrowsableState.Never)] [ForwardsClientCalls] - public virtual Pageable ListResources(Func> func) - { - return func(BaseUri, Credential, ClientOptions, Pipeline); - } - - /// - /// ListResources of type T. - /// - /// The type of resource being returned in the list. - /// The method to pass the internal properties to. - /// A collection of resources. - [EditorBrowsable(EditorBrowsableState.Never)] - [ForwardsClientCalls] - public virtual AsyncPageable ListResourcesAsync(Func> func) + public virtual T UseClientContext(Func func) { return func(BaseUri, Credential, ClientOptions, Pipeline); } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs index cc64d088daa3..7d0d705bcb7e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/OperationsBase.cs @@ -47,13 +47,13 @@ internal OperationsBase(ClientContext clientContext, ResourceIdentifier id) Pipeline = clientContext.Pipeline; Diagnostics = new ClientDiagnostics(ClientOptions); - Validate(id); + ValidateResourceType(id); } /// /// Get the tenant operations class. /// - public TenantOperations Tenant => _tenant ??= new TenantOperations(ClientOptions, Credential, BaseUri, Pipeline); + public virtual TenantOperations Tenant => _tenant ??= new TenantOperations(ClientOptions, Credential, BaseUri, Pipeline); internal ClientDiagnostics Diagnostics { get; } @@ -103,7 +103,7 @@ internal OperationsBase(ClientContext clientContext, ResourceIdentifier id) /// Validate the resource identifier against current operations. /// /// The resource identifier. - protected virtual void Validate(ResourceIdentifier identifier) + protected virtual void ValidateResourceType(ResourceIdentifier identifier) { if (identifier?.ResourceType != ValidResourceType) throw new ArgumentException($"Invalid resource type {identifier?.ResourceType} expected {ValidResourceType}"); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs index d98446118dcc..c0967d1f3e6e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/ResourceContainerBase.cs @@ -53,7 +53,7 @@ protected ResourceContainerBase(OperationsBase parent) /// /// The input resource Id to check. /// Resource identifier is not a valid type for this container. - protected override void Validate(ResourceIdentifier identifier) + protected override void ValidateResourceType(ResourceIdentifier identifier) { if (identifier.ResourceType != ValidResourceType) throw new InvalidOperationException($"{identifier.ResourceType} is not a valid container for {Id.ResourceType}"); diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Samples/Readme.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Samples/Readme.cs index 85a7567daff9..6ffea570df5b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Samples/Readme.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Samples/Readme.cs @@ -59,12 +59,12 @@ public void CastingToBaseResourceIdentifier() [Ignore("Only verifying that the sample builds")] public async Task CheckIfResourceGroupExists() { - #region Snippet:Readme_DoesExistsRG + #region Snippet:Readme_CheckIfExistssRG var armClient = new ArmClient(new DefaultAzureCredential()); Subscription subscription = armClient.DefaultSubscription; string rgName = "myRgName"; - var exists = await subscription.GetResourceGroups().DoesExistAsync(rgName); + var exists = await subscription.GetResourceGroups().CheckIfExistsAsync(rgName); if (exists) { @@ -77,7 +77,7 @@ public async Task CheckIfResourceGroupExists() { Console.WriteLine($"Resource Group {rgName} does not exist."); } - #endregion Snippet:Readme_DoesExistsRG + #endregion Snippet:Readme_CheckIfExistssRG } [Test] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ArmClientTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ArmClientTests.cs index c2cc852554b9..3afae7614283 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ArmClientTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ArmClientTests.cs @@ -54,10 +54,20 @@ public void GetGenericOperationsTests() var genericResourceOperationsList = Client.GetGenericResourceOperations(ids); + int index = 0; foreach (GenericResourceOperations operations in genericResourceOperationsList) { - Assert.AreEqual(ids[0], operations.Id.StringValue); - ids.RemoveAt(0); + Assert.AreEqual(ids[index], operations.Id.StringValue); + index++; + } + + genericResourceOperationsList = Client.GetGenericResourceOperations(ids[0], ids[1], ids[2], ids[3]); + + index = 0; + foreach (GenericResourceOperations operations in genericResourceOperationsList) + { + Assert.AreEqual(ids[index], operations.Id.StringValue); + index++; } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/FeatureContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/FeatureContainerTests.cs index 681b541bb7a3..669a1d3f58f9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/FeatureContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/FeatureContainerTests.cs @@ -57,10 +57,10 @@ public async Task TryGet() } [RecordedTest] - public async Task DoesExist() + public async Task CheckIfExists() { Provider provider = await Client.DefaultSubscription.GetProviders().GetAsync("Microsoft.Compute"); - Assert.IsTrue(await provider.GetFeatures().DoesExistAsync("AHUB")); + Assert.IsTrue(await provider.GetFeatures().CheckIfExistsAsync("AHUB")); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceContainerTests.cs index f20c7be5b1d0..abdaa437d52c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceContainerTests.cs @@ -66,13 +66,13 @@ public async Task ListByResourceGroup() [TestCase] [RecordedTest] - public async Task DoesExist() + public async Task CheckIfExists() { ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); var aset = await CreateGenericAvailabilitySetAsync(rg.Id); - Assert.IsTrue(await Client.DefaultSubscription.GetGenericResources().DoesExistAsync(aset.Data.Id)); - Assert.IsFalse(await Client.DefaultSubscription.GetGenericResources().DoesExistAsync(aset.Data.Id + "1")); + Assert.IsTrue(await Client.DefaultSubscription.GetGenericResources().CheckIfExistsAsync(aset.Data.Id)); + Assert.IsFalse(await Client.DefaultSubscription.GetGenericResources().CheckIfExistsAsync(aset.Data.Id + "1")); } [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ManagementGroupContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ManagementGroupContainerTests.cs index 155bf9b2b765..d29a8fe274e2 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ManagementGroupContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ManagementGroupContainerTests.cs @@ -56,10 +56,10 @@ public async Task TryGet() } [RecordedTest] - public async Task DoesExist() + public async Task CheckIfExists() { - Assert.IsTrue(await Client.GetManagementGroups().DoesExistAsync(_mgmtGroup.Data.Name, cacheControl: "no-cache")); - var ex = Assert.ThrowsAsync(async () => await Client.GetManagementGroups().DoesExistAsync(_mgmtGroup.Data.Name + "x", cacheControl: "no-cache")); + Assert.IsTrue(await Client.GetManagementGroups().CheckIfExistsAsync(_mgmtGroup.Data.Name, cacheControl: "no-cache")); + var ex = Assert.ThrowsAsync(async () => await Client.GetManagementGroups().CheckIfExistsAsync(_mgmtGroup.Data.Name + "x", cacheControl: "no-cache")); Assert.AreEqual(403, ex.Status); //you get forbidden vs not found here for some reason by the service } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/PreDefinedTagContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/PreDefinedTagContainerTests.cs index 891ec58db5cd..8b81458d31a1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/PreDefinedTagContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/PreDefinedTagContainerTests.cs @@ -11,9 +11,9 @@ namespace Azure.ResourceManager.Core.Tests { - public class PreDefinedTagContainerTests : ResourceManagerTestBase + public class PredefinedTagContainerTests : ResourceManagerTestBase { - public PreDefinedTagContainerTests(bool isAsync) + public PredefinedTagContainerTests(bool isAsync) : base(isAsync)//, RecordedTestMode.Record) { } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/PreDefinedTagOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/PreDefinedTagOperationsTests.cs index 48050111e881..aa586c62fbdd 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/PreDefinedTagOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/PreDefinedTagOperationsTests.cs @@ -9,9 +9,9 @@ namespace Azure.ResourceManager.Core.Tests { - public class PreDefinedTagOperationsTests : ResourceManagerTestBase + public class PredefinedTagOperationsTests : ResourceManagerTestBase { - public PreDefinedTagOperationsTests(bool isAsync) + public PredefinedTagOperationsTests(bool isAsync) : base(isAsync)//, RecordedTestMode.Record) { } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs index 3b3f6c5301ac..ecbb76e7da4a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupContainerTests.cs @@ -108,14 +108,14 @@ public async Task Get() [TestCase] [RecordedTest] - public async Task DoesExist() + public async Task CheckIfExists() { var rgName = Recording.GenerateAssetName("testRg-"); ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(rgName); - Assert.IsTrue(await Client.DefaultSubscription.GetResourceGroups().DoesExistAsync(rgName)); - Assert.IsFalse(await Client.DefaultSubscription.GetResourceGroups().DoesExistAsync(rgName + "1")); + Assert.IsTrue(await Client.DefaultSubscription.GetResourceGroups().CheckIfExistsAsync(rgName)); + Assert.IsFalse(await Client.DefaultSubscription.GetResourceGroups().CheckIfExistsAsync(rgName + "1")); - Assert.ThrowsAsync(async () => _ = await Client.DefaultSubscription.GetResourceGroups().DoesExistAsync(null)); + Assert.ThrowsAsync(async () => _ = await Client.DefaultSubscription.GetResourceGroups().CheckIfExistsAsync(null)); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionContainerTests.cs index 890c82302723..8b4bfcb6e761 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/SubscriptionContainerTests.cs @@ -49,12 +49,12 @@ public async Task Get() [TestCase] [RecordedTest] - public async Task DoesExist() + public async Task CheckIfExists() { - var expectFalse = await Client.GetSubscriptions().DoesExistAsync(new Guid().ToString()).ConfigureAwait(false); + var expectFalse = await Client.GetSubscriptions().CheckIfExistsAsync(new Guid().ToString()).ConfigureAwait(false); Assert.IsFalse(expectFalse); string subscriptionId = Client.DefaultSubscription.Id.SubscriptionId; - var expectTrue = await Client.GetSubscriptions().DoesExistAsync(subscriptionId).ConfigureAwait(false); + var expectTrue = await Client.GetSubscriptions().CheckIfExistsAsync(subscriptionId).ConfigureAwait(false); Assert.IsTrue(expectTrue); } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/ArmClientTests(False).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/ArmClientTests(False).json index 7d88f039955b..9610dd3513f3 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/ArmClientTests(False).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/ArmClientTests(False).json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a471502cc785e70e671623a1a452721", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:42:54 GMT", + "Date": "Wed, 21 Jul 2021 17:20:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd3b5502-a7bb-42c7-a6a3-7227be641a8e", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "cd3b5502-a7bb-42c7-a6a3-7227be641a8e", - "x-ms-routing-request-id": "WESTUS2:20210712T224255Z:cd3b5502-a7bb-42c7-a6a3-7227be641a8e" + "x-ms-correlation-request-id": "f9272029-351f-46ee-a702-537a55be49db", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "f9272029-351f-46ee-a702-537a55be49db", + "x-ms-routing-request-id": "WESTUS2:20210721T172045Z:f9272029-351f-46ee-a702-537a55be49db" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,8 +51,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-65a2c36a9ac5fa4bb35afba73f67c321-c574c74008d6ae4c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-1b5ab7d024a528459e4a94fbafcb3667-4be2c04fa41c6444-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f043350e1a08916b2e6d331bf887312", "x-ms-return-client-request-id": "true" }, @@ -62,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:42:54 GMT", + "Date": "Wed, 21 Jul 2021 17:20:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a111ddd9-db22-48a9-b996-54874f82c0dc", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "a111ddd9-db22-48a9-b996-54874f82c0dc", - "x-ms-routing-request-id": "WESTUS2:20210712T224255Z:a111ddd9-db22-48a9-b996-54874f82c0dc" + "x-ms-correlation-request-id": "3cde28eb-27b0-472f-b7a4-cd2678bf445c", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "3cde28eb-27b0-472f-b7a4-cd2678bf445c", + "x-ms-routing-request-id": "WESTUS2:20210721T172045Z:3cde28eb-27b0-472f-b7a4-cd2678bf445c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -99,8 +99,7 @@ "Authorization": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "traceparent": "00-52bc19996f13f84eacb2d2b20b7d2aa7-d5d3aeb55a177242-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1de8ca6ff16afc375aa8a238b9711bfb", "x-ms-return-client-request-id": "true" }, @@ -108,20 +107,20 @@ "location": "southcentralus", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:42:55 GMT", + "Date": "Wed, 21 Jul 2021 17:20:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a69c69f7-8793-4183-9158-5d865aecdf85", + "x-ms-correlation-request-id": "45da4f43-e972-4a16-ba15-e0b742bc1ca8", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "a69c69f7-8793-4183-9158-5d865aecdf85", - "x-ms-routing-request-id": "WESTUS2:20210712T224256Z:a69c69f7-8793-4183-9158-5d865aecdf85" + "x-ms-request-id": "45da4f43-e972-4a16-ba15-e0b742bc1ca8", + "x-ms-routing-request-id": "WESTUS2:20210721T172046Z:45da4f43-e972-4a16-ba15-e0b742bc1ca8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9828", @@ -137,6 +136,7 @@ ], "Variables": { "RandomSeed": "1122079985", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/ArmClientTests(True)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/ArmClientTests(True)Async.json index 03556e00442b..2257bdc57272 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/ArmClientTests(True)Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/ArmClientTests(True)Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a471502cc785e70e671623a1a452721", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:42:54 GMT", + "Date": "Wed, 21 Jul 2021 17:21:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0e8e44a-285c-4df4-b48e-7f43756b2df8", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "a0e8e44a-285c-4df4-b48e-7f43756b2df8", - "x-ms-routing-request-id": "WESTUS2:20210712T224255Z:a0e8e44a-285c-4df4-b48e-7f43756b2df8" + "x-ms-correlation-request-id": "ccf1ac23-43a7-4e7f-98a5-a41a2190ef06", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "ccf1ac23-43a7-4e7f-98a5-a41a2190ef06", + "x-ms-routing-request-id": "WESTUS2:20210721T172128Z:ccf1ac23-43a7-4e7f-98a5-a41a2190ef06" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,8 +51,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0c90053aa7257e419f429e719c3640f8-758ff32f4aa83549-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c74be2f53a55104c9de58414bbcf1582-3d8bd8227c2b714b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f043350e1a08916b2e6d331bf887312", "x-ms-return-client-request-id": "true" }, @@ -62,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:42:54 GMT", + "Date": "Wed, 21 Jul 2021 17:21:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c1a88e3-2702-43c9-a1ed-0dfeaae2cc97", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "7c1a88e3-2702-43c9-a1ed-0dfeaae2cc97", - "x-ms-routing-request-id": "WESTUS2:20210712T224255Z:7c1a88e3-2702-43c9-a1ed-0dfeaae2cc97" + "x-ms-correlation-request-id": "077fe9e6-9893-479b-b873-a052ba4f69f8", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "077fe9e6-9893-479b-b873-a052ba4f69f8", + "x-ms-routing-request-id": "WESTUS2:20210721T172128Z:077fe9e6-9893-479b-b873-a052ba4f69f8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -99,7 +99,7 @@ "Authorization": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1de8ca6ff16afc375aa8a238b9711bfb", "x-ms-return-client-request-id": "true" }, @@ -112,15 +112,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:42:56 GMT", + "Date": "Wed, 21 Jul 2021 17:21:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9edc15e-1476-43cd-afd2-9a021ba2eb50", + "x-ms-correlation-request-id": "0c0a2c2a-e27e-47f0-bd3e-48dfb6f2239a", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "f9edc15e-1476-43cd-afd2-9a021ba2eb50", - "x-ms-routing-request-id": "WESTUS2:20210712T224256Z:f9edc15e-1476-43cd-afd2-9a021ba2eb50" + "x-ms-request-id": "0c0a2c2a-e27e-47f0-bd3e-48dfb6f2239a", + "x-ms-routing-request-id": "WESTUS2:20210721T172129Z:0c0a2c2a-e27e-47f0-bd3e-48dfb6f2239a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9828", @@ -136,6 +136,7 @@ ], "Variables": { "RandomSeed": "1122079985", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json index 2047a12302d4..2e10ce134bb8 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0eb3d93b133c8a58c719ba989fc8bd8f", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:42:55 GMT", + "Date": "Wed, 21 Jul 2021 17:20:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61a69074-d8fc-4eb9-b2e7-5ff3da9ec401", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "61a69074-d8fc-4eb9-b2e7-5ff3da9ec401", - "x-ms-routing-request-id": "WESTUS2:20210712T224256Z:61a69074-d8fc-4eb9-b2e7-5ff3da9ec401" + "x-ms-correlation-request-id": "90748175-a256-4b59-935e-0ef942fefe0d", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "90748175-a256-4b59-935e-0ef942fefe0d", + "x-ms-routing-request-id": "WESTUS2:20210721T172046Z:90748175-a256-4b59-935e-0ef942fefe0d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -48,6 +48,7 @@ ], "Variables": { "RandomSeed": "173774393", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests()Async.json index 157d3b2c9815..e8c9f2b72a95 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed82218f3b5be08677d154bfc82678b3", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:42:56 GMT", + "Date": "Wed, 21 Jul 2021 17:21:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee697f4d-62d7-45a7-b880-4798f404387f", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "ee697f4d-62d7-45a7-b880-4798f404387f", - "x-ms-routing-request-id": "WESTUS2:20210712T224256Z:ee697f4d-62d7-45a7-b880-4798f404387f" + "x-ms-correlation-request-id": "d81dddf3-220e-4a5c-b4d5-afd2e3dfcb9f", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "d81dddf3-220e-4a5c-b4d5-afd2e3dfcb9f", + "x-ms-routing-request-id": "WESTUS2:20210721T172129Z:d81dddf3-220e-4a5c-b4d5-afd2e3dfcb9f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -48,6 +48,7 @@ ], "Variables": { "RandomSeed": "525146284", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/DoesExist.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/CheckIfExists.json similarity index 98% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/DoesExist.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/CheckIfExists.json index a703f8c01aec..706a90cad540 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/DoesExist.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/CheckIfExists.json @@ -6,26 +6,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-545ede224a08e34aa246f51c914fd9c3-5c96e9ecdb3ed547-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c8933659897982c2ea991301ca52e97e", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1138a100f6a520d172c86672b3720e90", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "450", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Jul 2021 17:34:12 GMT", + "Date": "Wed, 21 Jul 2021 17:21:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "144c490f-bedf-45e0-867e-be322313b1f3", + "x-ms-correlation-request-id": "6b3ddf8e-a1f8-48e0-8da4-6b1a5b543132", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "144c490f-bedf-45e0-867e-be322313b1f3", - "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:144c490f-bedf-45e0-867e-be322313b1f3" + "x-ms-request-id": "6b3ddf8e-a1f8-48e0-8da4-6b1a5b543132", + "x-ms-routing-request-id": "WESTUS2:20210721T172156Z:6b3ddf8e-a1f8-48e0-8da4-6b1a5b543132" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -37,7 +36,7 @@ }, "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -52,26 +51,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-778aef48d1083844813bc3defb29de12-b24f07a631740642-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "631d4a47691075ea4c39da1524961a71", + "traceparent": "00-5cab3a4eb26408499347118ba9634725-7c48957da62e484f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7f042101dee4402688008b84078fefcc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "54667", + "Content-Length": "54732", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Jul 2021 17:34:12 GMT", + "Date": "Wed, 21 Jul 2021 17:21:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fafd42c9-7bfd-4f74-93c4-de8183f977de", + "x-ms-correlation-request-id": "3c0ee5ff-0237-45b1-a9d5-03ac6494016a", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "fafd42c9-7bfd-4f74-93c4-de8183f977de", - "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:fafd42c9-7bfd-4f74-93c4-de8183f977de" + "x-ms-request-id": "3c0ee5ff-0237-45b1-a9d5-03ac6494016a", + "x-ms-routing-request-id": "WESTUS2:20210721T172156Z:3c0ee5ff-0237-45b1-a9d5-03ac6494016a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -2410,6 +2409,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2460,6 +2460,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2510,6 +2511,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2560,6 +2562,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2610,6 +2613,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -4185,31 +4189,31 @@ "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "traceparent": "00-ca46480b3ca2304a9b28003cecbae446-3c7db44a8bed114b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f605540c8adc4e197ca37adcbac9895b", + "traceparent": "00-0ba9897c114e7c4c9bb6444081513842-ad6fefa24ae4574c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4bb42e9a4bb4e28884d3944682cff9aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "249", + "Content-Length": "248", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Jul 2021 17:34:12 GMT", + "Date": "Wed, 21 Jul 2021 17:21:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc3e390d-eb27-4ca7-9f2d-486b9c7e0952", + "x-ms-correlation-request-id": "40f55b1b-83ee-41bc-9aa0-1c07c41b1089", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "westus2:b8820fac-502d-4965-8b61-afec77b659db", - "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:fc3e390d-eb27-4ca7-9f2d-486b9c7e0952" + "x-ms-request-id": "westus2:3d4b3242-1c20-4857-805b-468b0d6093c5", + "x-ms-routing-request-id": "WESTUS2:20210721T172156Z:40f55b1b-83ee-41bc-9aa0-1c07c41b1089" }, "ResponseBody": { "properties": { - "state": "NotRegistered" + "state": "Unregistered" }, "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB", "type": "Microsoft.Features/providers/features", @@ -4218,7 +4222,8 @@ } ], "Variables": { - "RandomSeed": "234965413", + "RandomSeed": "1437321464", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/DoesExistAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/CheckIfExistsAsync.json similarity index 98% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/DoesExistAsync.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/CheckIfExistsAsync.json index 124b2e4ede85..291407e66df2 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/DoesExistAsync.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/FeatureContainerTests/CheckIfExistsAsync.json @@ -6,26 +6,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4053d371e0e94c4ba2291cb7dd936db8-bd73e25b8338bb47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c8933659897982c2ea991301ca52e97e", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9c33625a0671efa164a9c4b11291c855", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "450", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Jul 2021 17:34:13 GMT", + "Date": "Wed, 21 Jul 2021 17:21:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7307240f-c534-4822-8ce4-5f620b445101", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "7307240f-c534-4822-8ce4-5f620b445101", - "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:7307240f-c534-4822-8ce4-5f620b445101" + "x-ms-correlation-request-id": "8506ed49-0cf7-4a8b-ab77-c8c9fbd2d448", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "8506ed49-0cf7-4a8b-ab77-c8c9fbd2d448", + "x-ms-routing-request-id": "WESTUS2:20210721T172156Z:8506ed49-0cf7-4a8b-ab77-c8c9fbd2d448" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -37,7 +36,7 @@ }, "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -52,26 +51,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-011a84e59de9514284fa286ee263e89e-11a7d47dcd8baf4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "631d4a47691075ea4c39da1524961a71", + "traceparent": "00-b4d13ffe45082f47a2e2da9d2f1c7eb3-e3fa097665f92747-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e649b3ba01661f8c34e8831f188797fd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "54667", + "Content-Length": "54732", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Jul 2021 17:34:13 GMT", + "Date": "Wed, 21 Jul 2021 17:21:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99db128c-85ea-4c00-aafe-35401489deec", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "99db128c-85ea-4c00-aafe-35401489deec", - "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:99db128c-85ea-4c00-aafe-35401489deec" + "x-ms-correlation-request-id": "3ea9f5d0-c5cf-4799-8499-5577e1b37de9", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "3ea9f5d0-c5cf-4799-8499-5577e1b37de9", + "x-ms-routing-request-id": "WESTUS2:20210721T172157Z:3ea9f5d0-c5cf-4799-8499-5577e1b37de9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -2410,6 +2409,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2460,6 +2460,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2510,6 +2511,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2560,6 +2562,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2610,6 +2613,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -4185,31 +4189,31 @@ "RequestHeaders": { "Accept": "application/json, text/json", "Authorization": "Sanitized", - "traceparent": "00-3a42642e176d644d9e0acf7ae341ba89-8aeab751dfe31044-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210709.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f605540c8adc4e197ca37adcbac9895b", + "traceparent": "00-6a95bfe96f63004384298671bf25f080-02d44f593a4fa64c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5d7b540858f10c69ecb9362ec1907843", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "249", + "Content-Length": "248", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Jul 2021 17:34:13 GMT", + "Date": "Wed, 21 Jul 2021 17:21:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8da8aea-4474-4ff5-93c4-1f40a87a69ce", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "westus2:bacd4067-3834-432d-9400-3965ea394d45", - "x-ms-routing-request-id": "WESTUS2:20210709T173413Z:d8da8aea-4474-4ff5-93c4-1f40a87a69ce" + "x-ms-correlation-request-id": "8fc4d86a-274f-4a85-a1b1-806e69267d87", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "westus2:14053731-301c-4250-bcb9-fed0b8dddb02", + "x-ms-routing-request-id": "WESTUS2:20210721T172157Z:8fc4d86a-274f-4a85-a1b1-806e69267d87" }, "ResponseBody": { "properties": { - "state": "NotRegistered" + "state": "Unregistered" }, "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB", "type": "Microsoft.Features/providers/features", @@ -4218,7 +4222,8 @@ } ], "Variables": { - "RandomSeed": "234965413", + "RandomSeed": "697224199", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceContainerTests/DoesExist()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceContainerTests/CheckIfExists().json similarity index 96% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceContainerTests/DoesExist()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceContainerTests/CheckIfExists().json index 746840c0a153..4f3873025bd9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceContainerTests/DoesExist()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceContainerTests/CheckIfExists().json @@ -6,9 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-288e72d35e71374795f82206fe3704ad-b0a8030c5b55b44e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f8cb9788c5cf55b72aecbdff4da5a23d", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e6b4b25c627b6aceb5f0563db46ef863", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:59 GMT", + "Date": "Wed, 21 Jul 2021 17:21:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e89cf7a-b596-4f7c-8633-ed64806d51d3", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "0e89cf7a-b596-4f7c-8633-ed64806d51d3", - "x-ms-routing-request-id": "WESTUS:20210712T223459Z:0e89cf7a-b596-4f7c-8633-ed64806d51d3" + "x-ms-correlation-request-id": "fd3e53d9-71ba-4d75-b7c7-876b8cb17683", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "fd3e53d9-71ba-4d75-b7c7-876b8cb17683", + "x-ms-routing-request-id": "WESTUS2:20210721T172157Z:fd3e53d9-71ba-4d75-b7c7-876b8cb17683" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,40 +46,40 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5542?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4546?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "32", "Content-Type": "application/json", - "traceparent": "00-278a5ec28b5d9b419bb34dfbe53d7da9-de9e9da356f83840-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "30eb2c65cd94f81acbf3a226ffd0c407", + "traceparent": "00-e8cb3bc9f962654bbb84ee4ddc24e02f-010aa1dfe3303f49-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "894eefe417375d5d2cb9b846f23371c7", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "westus2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:00 GMT", + "Date": "Wed, 21 Jul 2021 17:21:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c3affd0-1b76-440b-b96e-df220f2c7170", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "1c3affd0-1b76-440b-b96e-df220f2c7170", - "x-ms-routing-request-id": "WESTUS:20210712T223501Z:1c3affd0-1b76-440b-b96e-df220f2c7170" + "x-ms-correlation-request-id": "33e60f8f-2d9f-4272-8743-306f24d3686b", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "33e60f8f-2d9f-4272-8743-306f24d3686b", + "x-ms-routing-request-id": "WESTUS2:20210721T172157Z:33e60f8f-2d9f-4272-8743-306f24d3686b" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542", - "name": "testrg5542", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4546", + "name": "testrg4546", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,26 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2db8dafc14c72a45aaf2d0645b6f3717-a169dea3ea168c4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "61a1bb83b0d0319f043be651ffaf6a49", + "traceparent": "00-81cd4bf488af784b931e7162a6b4e6ca-b53c726cae06d744-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b114dd95d93cf50d095d5c46a6d80bd5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "54667", + "Content-Length": "54732", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:01 GMT", + "Date": "Wed, 21 Jul 2021 17:21:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca56b5d6-6cd4-4259-92a0-8490bd242ce0", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "ca56b5d6-6cd4-4259-92a0-8490bd242ce0", - "x-ms-routing-request-id": "WESTUS:20210712T223501Z:ca56b5d6-6cd4-4259-92a0-8490bd242ce0" + "x-ms-correlation-request-id": "f3b8ef02-2516-44b2-9d3f-6db1d6f463d1", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "f3b8ef02-2516-44b2-9d3f-6db1d6f463d1", + "x-ms-routing-request-id": "WESTUS2:20210721T172158Z:f3b8ef02-2516-44b2-9d3f-6db1d6f463d1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -2453,6 +2452,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2503,6 +2503,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2553,6 +2554,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2603,6 +2605,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2653,6 +2656,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -4223,16 +4227,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623?api-version=2021-07-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4546/providers/Microsoft.Compute/availabilitySets/test-aset2722?api-version=2021-07-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "131", "Content-Type": "application/json", - "traceparent": "00-2db8dafc14c72a45aaf2d0645b6f3717-d46086a201ff8c4b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6aebf999f38db1c9ff04d2152e2a1bf9", + "traceparent": "00-81cd4bf488af784b931e7162a6b4e6ca-212ab2bb1e3c554d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "88f16ca225c9569a894fa91623c2bce4", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4249,9 +4253,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "406", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:02 GMT", + "Date": "Wed, 21 Jul 2021 17:21:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4260,17 +4264,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6aebf999f38db1c9ff04d2152e2a1bf9", - "x-ms-correlation-request-id": "258c8147-3220-4b8e-8353-24d8422dcb06", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;227,Microsoft.Compute/PutVM30Min;1187", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "58bca8f5-548f-48f0-800a-f6cfa2afab2c", - "x-ms-routing-request-id": "WESTUS:20210712T223502Z:258c8147-3220-4b8e-8353-24d8422dcb06" + "x-ms-client-request-id": "88f16ca225c9569a894fa91623c2bce4", + "x-ms-correlation-request-id": "999d7bcd-f462-4d72-b9da-abfe2f1ea51a", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "c4cbe334-f623-4ea5-84c9-bd88d81cf0df", + "x-ms-routing-request-id": "WESTUS2:20210721T172158Z:999d7bcd-f462-4d72-b9da-abfe2f1ea51a" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset623\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset2722\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4546/providers/Microsoft.Compute/availabilitySets/test-aset2722\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4285,23 +4289,23 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623?api-version=2021-07-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4546/providers/Microsoft.Compute/availabilitySets/test-aset2722?api-version=2021-07-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-58b3d30720b81c4bbcb8d2260adef27e-40741617e5fc844e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d765dd379dd98f21f1f061ccde8a02d9", + "traceparent": "00-fe2fced158c5fc4892180941e1657b6c-fb5c6d867d96a340-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c75071ad3f80708542bd27ec30f7d146", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "434", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:02 GMT", + "Date": "Wed, 21 Jul 2021 17:21:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4310,17 +4314,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d765dd379dd98f21f1f061ccde8a02d9", - "x-ms-correlation-request-id": "7a3e3999-bbb1-4e68-a6bc-1ead76f94a50", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31994", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "1681cde3-8aa7-4376-a714-801637b13754", - "x-ms-routing-request-id": "WESTUS:20210712T223502Z:7a3e3999-bbb1-4e68-a6bc-1ead76f94a50" + "x-ms-client-request-id": "c75071ad3f80708542bd27ec30f7d146", + "x-ms-correlation-request-id": "e36de7ce-ca2c-405b-a316-02c757fcd557", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31999", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "e60aa974-d671-443d-aeda-6d17ccd4dad4", + "x-ms-routing-request-id": "WESTUS2:20210721T172158Z:e36de7ce-ca2c-405b-a316-02c757fcd557" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset623\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset2722\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4546/providers/Microsoft.Compute/availabilitySets/test-aset2722\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4336,42 +4340,43 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset6231?api-version=2021-07-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4546/providers/Microsoft.Compute/availabilitySets/test-aset27221?api-version=2021-07-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-859a7d0649957b42afc7814c46b73090-0cf496d2d02ee84b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6059ec1f828dc3ac646f1d8e63377c57", + "traceparent": "00-e6761cea471cb148b4d9e527128831b4-ba1518e56fb58949-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "42d078a1f0001787c3db4835f8e15673", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "230", + "Content-Length": "231", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:02 GMT", + "Date": "Wed, 21 Jul 2021 17:21:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47bc9582-d1e3-4ad1-80a9-ace5b8a8ff3b", + "x-ms-correlation-request-id": "a850cca7-8c3c-4a80-a2fd-243e52cdf0ce", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "47bc9582-d1e3-4ad1-80a9-ace5b8a8ff3b", - "x-ms-routing-request-id": "WESTUS:20210712T223503Z:47bc9582-d1e3-4ad1-80a9-ace5b8a8ff3b" + "x-ms-request-id": "a850cca7-8c3c-4a80-a2fd-243e52cdf0ce", + "x-ms-routing-request-id": "WESTUS2:20210721T172158Z:a850cca7-8c3c-4a80-a2fd-243e52cdf0ce" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.Compute/availabilitySets/test-aset6231\u0027 under resource group \u0027testrg5542\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The Resource \u0027Microsoft.Compute/availabilitySets/test-aset27221\u0027 under resource group \u0027testrg4546\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } } ], "Variables": { - "RandomSeed": "134995050", + "RandomSeed": "659870716", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceContainerTests/DoesExist().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceContainerTests/CheckIfExists()Async.json similarity index 96% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceContainerTests/DoesExist().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceContainerTests/CheckIfExists()Async.json index 1698b52aefe1..8995376af2be 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceContainerTests/DoesExist().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceContainerTests/CheckIfExists()Async.json @@ -6,9 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c0b6f53a8bca604995331353d6995d1f-ab23955a819e8842-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f8cb9788c5cf55b72aecbdff4da5a23d", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3249bb18126db88d41ca32ab43c52600", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:59 GMT", + "Date": "Wed, 21 Jul 2021 17:21:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a9f02fb-9beb-4b19-8f14-bca40eae3edf", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "8a9f02fb-9beb-4b19-8f14-bca40eae3edf", - "x-ms-routing-request-id": "WESTUS:20210712T223459Z:8a9f02fb-9beb-4b19-8f14-bca40eae3edf" + "x-ms-correlation-request-id": "83ac0e94-fbc5-4877-874d-272a5c190127", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "83ac0e94-fbc5-4877-874d-272a5c190127", + "x-ms-routing-request-id": "WESTUS2:20210721T172159Z:83ac0e94-fbc5-4877-874d-272a5c190127" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5542?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3189?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "32", "Content-Type": "application/json", - "traceparent": "00-5de06d6840e4d84fa1edc035b05fe1f7-79a9769df28f254d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "30eb2c65cd94f81acbf3a226ffd0c407", + "traceparent": "00-443602a42dcd54428a2d52eb44969815-85b76fcd09db634a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "98444211201d35b1e489042a0979a685", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -68,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:00 GMT", + "Date": "Wed, 21 Jul 2021 17:21:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "088d6336-6c38-4a98-834c-b029d2296e07", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "088d6336-6c38-4a98-834c-b029d2296e07", - "x-ms-routing-request-id": "WESTUS:20210712T223500Z:088d6336-6c38-4a98-834c-b029d2296e07" + "x-ms-correlation-request-id": "16af94a5-48f6-4e4b-8b80-cc237c43165f", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "16af94a5-48f6-4e4b-8b80-cc237c43165f", + "x-ms-routing-request-id": "WESTUS2:20210721T172159Z:16af94a5-48f6-4e4b-8b80-cc237c43165f" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542", - "name": "testrg5542", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3189", + "name": "testrg3189", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,26 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b144f88656161340a957ff0b927a3278-5b1fde6217ea5149-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "61a1bb83b0d0319f043be651ffaf6a49", + "traceparent": "00-10380f3c62fa7843b758356d9798c5b2-321435ade63d314d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "34725625eab84c1298f9ae228dd43dad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "54667", + "Content-Length": "54732", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:00 GMT", + "Date": "Wed, 21 Jul 2021 17:21:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf2c52a6-2d59-4bbe-9f2a-3f1e8610353c", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "bf2c52a6-2d59-4bbe-9f2a-3f1e8610353c", - "x-ms-routing-request-id": "WESTUS:20210712T223500Z:bf2c52a6-2d59-4bbe-9f2a-3f1e8610353c" + "x-ms-correlation-request-id": "5f3679d4-5b43-40a3-be2b-822f270b35c5", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "5f3679d4-5b43-40a3-be2b-822f270b35c5", + "x-ms-routing-request-id": "WESTUS2:20210721T172159Z:5f3679d4-5b43-40a3-be2b-822f270b35c5" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -2453,6 +2452,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2503,6 +2503,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2553,6 +2554,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2603,6 +2605,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2653,6 +2656,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -4223,16 +4227,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623?api-version=2021-07-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3189/providers/Microsoft.Compute/availabilitySets/test-aset9122?api-version=2021-07-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "131", "Content-Type": "application/json", - "traceparent": "00-b144f88656161340a957ff0b927a3278-e569f93a9fcf8b4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6aebf999f38db1c9ff04d2152e2a1bf9", + "traceparent": "00-10380f3c62fa7843b758356d9798c5b2-6da1b44f5f412a43-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fc066906fade979bfd8988898d38508b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4249,9 +4253,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "406", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:02 GMT", + "Date": "Wed, 21 Jul 2021 17:21:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4260,17 +4264,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6aebf999f38db1c9ff04d2152e2a1bf9", - "x-ms-correlation-request-id": "6375c5bd-5b19-406a-afeb-8be8bd85e712", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;229,Microsoft.Compute/PutVM30Min;1189", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "7bf6c5e5-64bc-4ff9-9466-3d70cce1fdf3", - "x-ms-routing-request-id": "WESTUS:20210712T223502Z:6375c5bd-5b19-406a-afeb-8be8bd85e712" + "x-ms-client-request-id": "fc066906fade979bfd8988898d38508b", + "x-ms-correlation-request-id": "c5aafe8b-2c2a-498b-9cd5-8f424cfc6863", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "ebb985dc-ab11-4311-9c26-1ec4772d3ae3", + "x-ms-routing-request-id": "WESTUS2:20210721T172159Z:c5aafe8b-2c2a-498b-9cd5-8f424cfc6863" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset623\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9122\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3189/providers/Microsoft.Compute/availabilitySets/test-aset9122\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4285,23 +4289,23 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623?api-version=2021-07-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3189/providers/Microsoft.Compute/availabilitySets/test-aset9122?api-version=2021-07-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0f44cdbb94743e478d1a94ed282e21ce-1cecf886b358aa44-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d765dd379dd98f21f1f061ccde8a02d9", + "traceparent": "00-d404921da791414da96dfc800c2869e2-949ff688238e1a42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "10037dc689a02a45bbdb372e6189be60", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "434", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:01 GMT", + "Date": "Wed, 21 Jul 2021 17:21:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4310,17 +4314,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d765dd379dd98f21f1f061ccde8a02d9", - "x-ms-correlation-request-id": "96816b97-cfda-4742-827e-7eb6eadebb77", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "37dd6956-e08b-43d7-a181-a62c562534fe", - "x-ms-routing-request-id": "WESTUS:20210712T223502Z:96816b97-cfda-4742-827e-7eb6eadebb77" + "x-ms-client-request-id": "10037dc689a02a45bbdb372e6189be60", + "x-ms-correlation-request-id": "86938070-72fe-476b-b395-9dff2cf47f0a", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "edfdfd5a-487d-43de-b8ca-fcd86b86d54a", + "x-ms-routing-request-id": "WESTUS2:20210721T172159Z:86938070-72fe-476b-b395-9dff2cf47f0a" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset623\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9122\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3189/providers/Microsoft.Compute/availabilitySets/test-aset9122\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4336,42 +4340,43 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset6231?api-version=2021-07-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3189/providers/Microsoft.Compute/availabilitySets/test-aset91221?api-version=2021-07-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7841eae35764464ab01c5e2405dd6644-21f4bee80e4a3142-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6059ec1f828dc3ac646f1d8e63377c57", + "traceparent": "00-e533a08a2357714ab71c89881a191b2d-ea7c869cc5c9ba40-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6efc22a86e34811f10aecb92757493ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "230", + "Content-Length": "231", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:02 GMT", + "Date": "Wed, 21 Jul 2021 17:21:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50cd6874-de46-4412-b5cc-09863017312b", + "x-ms-correlation-request-id": "d98e9963-9b80-495e-99e4-c258f75b78fd", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "50cd6874-de46-4412-b5cc-09863017312b", - "x-ms-routing-request-id": "WESTUS:20210712T223502Z:50cd6874-de46-4412-b5cc-09863017312b" + "x-ms-request-id": "d98e9963-9b80-495e-99e4-c258f75b78fd", + "x-ms-routing-request-id": "WESTUS2:20210721T172159Z:d98e9963-9b80-495e-99e4-c258f75b78fd" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.Compute/availabilitySets/test-aset6231\u0027 under resource group \u0027testrg5542\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The Resource \u0027Microsoft.Compute/availabilitySets/test-aset91221\u0027 under resource group \u0027testrg3189\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } } ], "Variables": { - "RandomSeed": "134995050", + "RandomSeed": "69691722", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/DoesExist.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/CheckIfExists.json similarity index 69% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/DoesExist.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/CheckIfExists.json index 2aa9038a2b6b..6381fe53c164 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/DoesExist.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/CheckIfExists.json @@ -6,25 +6,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210711.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8fd5419518aafaa02488caa8c8deda0c", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2acc24a147ed3c43a9dff4aa42f1f2fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "450", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 02:12:32 GMT", + "Date": "Wed, 21 Jul 2021 17:26:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "308085c2-c2e2-41e3-a2c3-6d1939877ed0", + "x-ms-correlation-request-id": "07c9b45c-18ae-495f-aaf9-d676256a4b69", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "308085c2-c2e2-41e3-a2c3-6d1939877ed0", - "x-ms-routing-request-id": "WESTUS2:20210712T021233Z:308085c2-c2e2-41e3-a2c3-6d1939877ed0" + "x-ms-request-id": "07c9b45c-18ae-495f-aaf9-d676256a4b69", + "x-ms-routing-request-id": "WESTUS:20210721T172631Z:07c9b45c-18ae-495f-aaf9-d676256a4b69" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -36,7 +36,7 @@ }, "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -52,30 +52,30 @@ "Accept": "application/json", "Authorization": "Sanitized", "Cache-Control": "no-cache", - "traceparent": "00-88dbb2b2b9896642ba10cbaa6f815b95-8f86abda11ca7440-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210711.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8ec5b6fa05613f0330bdfc319ae0cf97", + "traceparent": "00-6ea6adf82ab3e946b16f83c00625ff0f-de9a2083920c9e41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "83b1382785f197ccb26caaad92cc7019", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "e2b31e6a-9d42-4da1-b2d5-5f546a5e2197", - "Content-Length": "562", + "client-request-id": "ee4b5588-a970-4409-818a-7dba107fab2e", + "Content-Length": "563", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 02:12:32 GMT", + "Date": "Wed, 21 Jul 2021 17:26:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "request-id": "e2b31e6a-9d42-4da1-b2d5-5f546a5e2197", + "request-id": "ee4b5588-a970-4409-818a-7dba107fab2e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2b31e6a-9d42-4da1-b2d5-5f546a5e2197", - "x-ms-ratelimit-remaining-tenant-reads": "11977", - "x-ms-request-id": "westus2:e2b31e6a-9d42-4da1-b2d5-5f546a5e2197", - "x-ms-routing-request-id": "WESTUS2:20210712T021233Z:e2b31e6a-9d42-4da1-b2d5-5f546a5e2197" + "x-ms-correlation-request-id": "ee4b5588-a970-4409-818a-7dba107fab2e", + "x-ms-ratelimit-remaining-tenant-reads": "11972", + "x-ms-request-id": "westus:ee4b5588-a970-4409-818a-7dba107fab2e", + "x-ms-routing-request-id": "WESTUS:20210721T172631Z:ee4b5588-a970-4409-818a-7dba107fab2e" }, "ResponseBody": { "id": "/providers/Microsoft.Management/managementGroups/mgmt-group-827", @@ -85,8 +85,8 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "displayName": "mgmt-group-827", "details": { - "version": 7, - "updatedTime": "2021-07-12T02:12:17.0110949Z", + "version": 14, + "updatedTime": "2021-07-21T17:26:10.7669679Z", "updatedBy": "3b10dae3-28cf-49a7-a8df-8fbae3e77f27", "parent": { "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", @@ -104,9 +104,9 @@ "Accept": "application/json", "Authorization": "Sanitized", "Cache-Control": "no-cache", - "traceparent": "00-4fad87e88352464cb2c0eab5c3cc4961-4c37dc144f791548-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210711.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "edf908d30bb1bc452e47f81454108323", + "traceparent": "00-e682fae1cddbe44c9425e5ae15459fad-01144cca6488034d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1f24c82dde30c24ac94a0123d1c673a1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -116,15 +116,15 @@ "Connection": "close", "Content-Length": "415", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 02:12:32 GMT", + "Date": "Wed, 21 Jul 2021 17:26:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "615ff006-29e5-4c19-a733-7197f49af8ce", + "x-ms-correlation-request-id": "78e9c9cd-e135-4b4b-ad10-3f883e6888f0", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "615ff006-29e5-4c19-a733-7197f49af8ce", - "x-ms-routing-request-id": "WESTUS2:20210712T021233Z:615ff006-29e5-4c19-a733-7197f49af8ce" + "x-ms-request-id": "78e9c9cd-e135-4b4b-ad10-3f883e6888f0", + "x-ms-routing-request-id": "WESTUS:20210721T172631Z:78e9c9cd-e135-4b4b-ad10-3f883e6888f0" }, "ResponseBody": { "error": { @@ -135,7 +135,8 @@ } ], "Variables": { - "RandomSeed": "999687268", + "RandomSeed": "89873871", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/DoesExistAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/CheckIfExistsAsync.json similarity index 69% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/DoesExistAsync.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/CheckIfExistsAsync.json index f3cba8adcdff..c44870bc4e1a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/DoesExistAsync.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/CheckIfExistsAsync.json @@ -6,25 +6,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210711.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7e75a5d49435d430d8bcaeefd25cbf19", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fa6a1ea0e784240855203c2fd601dde1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "450", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 02:25:37 GMT", + "Date": "Wed, 21 Jul 2021 17:26:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35488971-3065-4bba-93d4-ced2cb0b2248", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "35488971-3065-4bba-93d4-ced2cb0b2248", - "x-ms-routing-request-id": "WESTUS2:20210712T022538Z:35488971-3065-4bba-93d4-ced2cb0b2248" + "x-ms-correlation-request-id": "88d56fc6-6764-43ae-a543-64f9633d2185", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "88d56fc6-6764-43ae-a543-64f9633d2185", + "x-ms-routing-request-id": "WESTUS:20210721T172657Z:88d56fc6-6764-43ae-a543-64f9633d2185" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -36,7 +36,7 @@ }, "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -52,30 +52,30 @@ "Accept": "application/json", "Authorization": "Sanitized", "Cache-Control": "no-cache", - "traceparent": "00-38c11b7a3d5e784081fc2faa29e1ad15-ce5b0657509bfe42-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210711.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e7b1785bcc493a9e327476b72e47dca9", + "traceparent": "00-7e1dc34232e4274990773ff381402641-879084f1cf79bd41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a3cd10af9ab5e681605ed081621944a5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "60329435-3e36-48ff-80e5-202112023a0f", + "client-request-id": "e52d546b-06f3-46ca-bc5f-c4319376d26d", "Content-Length": "565", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 02:25:38 GMT", + "Date": "Wed, 21 Jul 2021 17:26:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "request-id": "60329435-3e36-48ff-80e5-202112023a0f", + "request-id": "e52d546b-06f3-46ca-bc5f-c4319376d26d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60329435-3e36-48ff-80e5-202112023a0f", - "x-ms-ratelimit-remaining-tenant-reads": "11945", - "x-ms-request-id": "westus2:60329435-3e36-48ff-80e5-202112023a0f", - "x-ms-routing-request-id": "WESTUS2:20210712T022538Z:60329435-3e36-48ff-80e5-202112023a0f" + "x-ms-correlation-request-id": "e52d546b-06f3-46ca-bc5f-c4319376d26d", + "x-ms-ratelimit-remaining-tenant-reads": "11975", + "x-ms-request-id": "westus:e52d546b-06f3-46ca-bc5f-c4319376d26d", + "x-ms-routing-request-id": "WESTUS:20210721T172657Z:e52d546b-06f3-46ca-bc5f-c4319376d26d" }, "ResponseBody": { "id": "/providers/Microsoft.Management/managementGroups/mgmt-group-7077", @@ -85,8 +85,8 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "displayName": "mgmt-group-7077", "details": { - "version": 1, - "updatedTime": "2021-07-12T02:24:46.5942156Z", + "version": 4, + "updatedTime": "2021-07-21T17:26:39.4872427Z", "updatedBy": "3b10dae3-28cf-49a7-a8df-8fbae3e77f27", "parent": { "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", @@ -104,9 +104,9 @@ "Accept": "application/json", "Authorization": "Sanitized", "Cache-Control": "no-cache", - "traceparent": "00-8b041741573dfa458c0a3ffa47edca93-8eb56573ef9df545-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210711.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f8a719f22e2dd670c1d08257023acae1", + "traceparent": "00-9c67d1c24bc619488bab65ba2b8e6eec-7d6ed8effbfd7442-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "81f4f1200e88eaa7d04ae0f2b0862749", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -116,15 +116,15 @@ "Connection": "close", "Content-Length": "416", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 02:25:38 GMT", + "Date": "Wed, 21 Jul 2021 17:26:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86fef0a8-85d5-4e94-af7e-bdb31c8b351d", + "x-ms-correlation-request-id": "5840adb5-887e-4577-8ac7-8cbe9eaaa81d", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "86fef0a8-85d5-4e94-af7e-bdb31c8b351d", - "x-ms-routing-request-id": "WESTUS2:20210712T022538Z:86fef0a8-85d5-4e94-af7e-bdb31c8b351d" + "x-ms-request-id": "5840adb5-887e-4577-8ac7-8cbe9eaaa81d", + "x-ms-routing-request-id": "WESTUS:20210721T172657Z:5840adb5-887e-4577-8ac7-8cbe9eaaa81d" }, "ResponseBody": { "error": { @@ -135,7 +135,8 @@ } ], "Variables": { - "RandomSeed": "5208514", + "RandomSeed": "1779018143", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/ManagementGroupContainerTests(False).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/ManagementGroupContainerTests(False).json index ea6a3602f39a..18ea2c61d246 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/ManagementGroupContainerTests(False).json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/ManagementGroupContainerTests(False).json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c3e11f6b550c9e107ce92b426a2fec90", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:53:59 GMT", + "Date": "Wed, 21 Jul 2021 17:26:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82e19c85-dcce-4f75-880b-f6ec82c33b92", + "x-ms-correlation-request-id": "9f817244-d4a4-4b2b-95c2-36e265d7cb8d", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "82e19c85-dcce-4f75-880b-f6ec82c33b92", - "x-ms-routing-request-id": "WESTUS2:20210712T215359Z:82e19c85-dcce-4f75-880b-f6ec82c33b92" + "x-ms-request-id": "9f817244-d4a4-4b2b-95c2-36e265d7cb8d", + "x-ms-routing-request-id": "WESTUS:20210721T172602Z:9f817244-d4a4-4b2b-95c2-36e265d7cb8d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-89a76ee21bd82c4c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-4112b2ff3471424f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "859b6229c1944506f0d4de51d82e796f", "x-ms-return-client-request-id": "true" }, @@ -65,23 +65,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "62ec3bfe-ca32-43de-9149-2900f3cd80db", + "client-request-id": "b4bb53eb-a3eb-408f-9232-64dde4baca4f", "Content-Length": "165", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:00 GMT", + "Date": "Wed, 21 Jul 2021 17:26:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "62ec3bfe-ca32-43de-9149-2900f3cd80db", + "request-id": "b4bb53eb-a3eb-408f-9232-64dde4baca4f", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62ec3bfe-ca32-43de-9149-2900f3cd80db", + "x-ms-correlation-request-id": "b4bb53eb-a3eb-408f-9232-64dde4baca4f", "x-ms-ratelimit-remaining-managementgroups-requests": "59", "x-ms-ratelimit-remaining-tenant-writes": "1199", - "x-ms-request-id": "westus2:62ec3bfe-ca32-43de-9149-2900f3cd80db", - "x-ms-routing-request-id": "WESTUS2:20210712T215400Z:62ec3bfe-ca32-43de-9149-2900f3cd80db" + "x-ms-request-id": "westus:b4bb53eb-a3eb-408f-9232-64dde4baca4f", + "x-ms-routing-request-id": "WESTUS:20210721T172603Z:b4bb53eb-a3eb-408f-9232-64dde4baca4f" }, "ResponseBody": { "id": "/providers/Microsoft.Management/managementGroups/mgmt-group-827", @@ -95,8 +95,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-4e8ce6950a78b24a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-7aacf5f04ab57545-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80ab90b924185dd7da7d1b81314da3bb", "x-ms-return-client-request-id": "true" }, @@ -105,23 +105,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "e54c96f1-02b5-47f0-907d-fcf8e1263c16", + "client-request-id": "06b9cfbd-40a3-4ef0-94a4-cd81975a5cf0", "Content-Length": "164", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:00 GMT", + "Date": "Wed, 21 Jul 2021 17:26:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "e54c96f1-02b5-47f0-907d-fcf8e1263c16", + "request-id": "06b9cfbd-40a3-4ef0-94a4-cd81975a5cf0", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e54c96f1-02b5-47f0-907d-fcf8e1263c16", + "x-ms-correlation-request-id": "06b9cfbd-40a3-4ef0-94a4-cd81975a5cf0", "x-ms-ratelimit-remaining-tenant-reads": "11999", - "x-ms-request-id": "westus2:e54c96f1-02b5-47f0-907d-fcf8e1263c16", - "x-ms-routing-request-id": "WESTUS2:20210712T215400Z:e54c96f1-02b5-47f0-907d-fcf8e1263c16" + "x-ms-request-id": "westus:06b9cfbd-40a3-4ef0-94a4-cd81975a5cf0", + "x-ms-routing-request-id": "WESTUS:20210721T172603Z:06b9cfbd-40a3-4ef0-94a4-cd81975a5cf0" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -134,8 +134,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-0f26c4c24aa2554e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-6bd0017d0d4f074c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c1f0d3b1760a0b718ae1c6624cd73cc6", "x-ms-return-client-request-id": "true" }, @@ -144,23 +144,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "25a90122-1cab-4745-b2b9-09f4f34c6e1f", + "client-request-id": "4607cbf7-9cf0-43b8-870f-af279326aa41", "Content-Length": "164", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:01 GMT", + "Date": "Wed, 21 Jul 2021 17:26:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "25a90122-1cab-4745-b2b9-09f4f34c6e1f", + "request-id": "4607cbf7-9cf0-43b8-870f-af279326aa41", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25a90122-1cab-4745-b2b9-09f4f34c6e1f", + "x-ms-correlation-request-id": "4607cbf7-9cf0-43b8-870f-af279326aa41", "x-ms-ratelimit-remaining-tenant-reads": "11998", - "x-ms-request-id": "westus2:25a90122-1cab-4745-b2b9-09f4f34c6e1f", - "x-ms-routing-request-id": "WESTUS2:20210712T215401Z:25a90122-1cab-4745-b2b9-09f4f34c6e1f" + "x-ms-request-id": "westus:4607cbf7-9cf0-43b8-870f-af279326aa41", + "x-ms-routing-request-id": "WESTUS:20210721T172604Z:4607cbf7-9cf0-43b8-870f-af279326aa41" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -173,8 +173,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-eae746a8a220b944-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-3d9321402f15f147-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "48973c74f982545796843fe702568872", "x-ms-return-client-request-id": "true" }, @@ -183,23 +183,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "7852e06e-1328-42f6-811c-828083eaceb0", + "client-request-id": "a1474532-fbb4-4167-9424-2296ba54da91", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:02 GMT", + "Date": "Wed, 21 Jul 2021 17:26:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "7852e06e-1328-42f6-811c-828083eaceb0", + "request-id": "a1474532-fbb4-4167-9424-2296ba54da91", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7852e06e-1328-42f6-811c-828083eaceb0", + "x-ms-correlation-request-id": "a1474532-fbb4-4167-9424-2296ba54da91", "x-ms-ratelimit-remaining-tenant-reads": "11997", - "x-ms-request-id": "westus2:7852e06e-1328-42f6-811c-828083eaceb0", - "x-ms-routing-request-id": "WESTUS2:20210712T215403Z:7852e06e-1328-42f6-811c-828083eaceb0" + "x-ms-request-id": "westus:a1474532-fbb4-4167-9424-2296ba54da91", + "x-ms-routing-request-id": "WESTUS:20210721T172605Z:a1474532-fbb4-4167-9424-2296ba54da91" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -212,8 +212,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-8de802f9f3b3f54f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-6dfb2cde3b41e14f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "357eb98e9e3843971e9ff6365e751003", "x-ms-return-client-request-id": "true" }, @@ -222,23 +222,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "2195dd1a-d32b-458f-b518-2042d49f39da", + "client-request-id": "49f89ff4-c20e-4985-91a1-2843acdb31c8", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:03 GMT", + "Date": "Wed, 21 Jul 2021 17:26:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "2195dd1a-d32b-458f-b518-2042d49f39da", + "request-id": "49f89ff4-c20e-4985-91a1-2843acdb31c8", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2195dd1a-d32b-458f-b518-2042d49f39da", + "x-ms-correlation-request-id": "49f89ff4-c20e-4985-91a1-2843acdb31c8", "x-ms-ratelimit-remaining-tenant-reads": "11996", - "x-ms-request-id": "westus2:2195dd1a-d32b-458f-b518-2042d49f39da", - "x-ms-routing-request-id": "WESTUS2:20210712T215404Z:2195dd1a-d32b-458f-b518-2042d49f39da" + "x-ms-request-id": "westus:49f89ff4-c20e-4985-91a1-2843acdb31c8", + "x-ms-routing-request-id": "WESTUS:20210721T172606Z:49f89ff4-c20e-4985-91a1-2843acdb31c8" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -251,8 +251,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-72cab6a56ff5bc47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-6744a780a709304f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f50c55405bb5b8387c9b2b8536890933", "x-ms-return-client-request-id": "true" }, @@ -261,23 +261,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "c5f85d24-b3a8-482c-bb15-da11332265d3", + "client-request-id": "c0069c01-5691-45d5-8ef6-9d8244328187", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:04 GMT", + "Date": "Wed, 21 Jul 2021 17:26:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "c5f85d24-b3a8-482c-bb15-da11332265d3", + "request-id": "c0069c01-5691-45d5-8ef6-9d8244328187", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c5f85d24-b3a8-482c-bb15-da11332265d3", + "x-ms-correlation-request-id": "c0069c01-5691-45d5-8ef6-9d8244328187", "x-ms-ratelimit-remaining-tenant-reads": "11995", - "x-ms-request-id": "westus2:c5f85d24-b3a8-482c-bb15-da11332265d3", - "x-ms-routing-request-id": "WESTUS2:20210712T215405Z:c5f85d24-b3a8-482c-bb15-da11332265d3" + "x-ms-request-id": "westus:c0069c01-5691-45d5-8ef6-9d8244328187", + "x-ms-routing-request-id": "WESTUS:20210721T172608Z:c0069c01-5691-45d5-8ef6-9d8244328187" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -290,8 +290,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-aa24e41cdd591f4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-903508c5fa640149-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "93d354590758d58da45429e30220f621", "x-ms-return-client-request-id": "true" }, @@ -300,23 +300,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "96af93cc-0759-46ce-9e94-a406d72eb848", + "client-request-id": "fac061f6-bb30-4aed-b9ec-8ff838f94888", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:06 GMT", + "Date": "Wed, 21 Jul 2021 17:26:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "96af93cc-0759-46ce-9e94-a406d72eb848", + "request-id": "fac061f6-bb30-4aed-b9ec-8ff838f94888", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96af93cc-0759-46ce-9e94-a406d72eb848", + "x-ms-correlation-request-id": "fac061f6-bb30-4aed-b9ec-8ff838f94888", "x-ms-ratelimit-remaining-tenant-reads": "11994", - "x-ms-request-id": "westus2:96af93cc-0759-46ce-9e94-a406d72eb848", - "x-ms-routing-request-id": "WESTUS2:20210712T215406Z:96af93cc-0759-46ce-9e94-a406d72eb848" + "x-ms-request-id": "westus:fac061f6-bb30-4aed-b9ec-8ff838f94888", + "x-ms-routing-request-id": "WESTUS:20210721T172609Z:fac061f6-bb30-4aed-b9ec-8ff838f94888" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -329,8 +329,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-04ec4845c6b55142-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-acc294fc7885a84e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aca63b73934a32bc80c5b89c73120c94", "x-ms-return-client-request-id": "true" }, @@ -339,23 +339,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "0723484f-0b28-49a8-ba45-e032fb0167b9", + "client-request-id": "592e0eaf-5d13-4f48-ab94-704621b6081c", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:07 GMT", + "Date": "Wed, 21 Jul 2021 17:26:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "0723484f-0b28-49a8-ba45-e032fb0167b9", + "request-id": "592e0eaf-5d13-4f48-ab94-704621b6081c", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0723484f-0b28-49a8-ba45-e032fb0167b9", + "x-ms-correlation-request-id": "592e0eaf-5d13-4f48-ab94-704621b6081c", "x-ms-ratelimit-remaining-tenant-reads": "11993", - "x-ms-request-id": "westus2:0723484f-0b28-49a8-ba45-e032fb0167b9", - "x-ms-routing-request-id": "WESTUS2:20210712T215407Z:0723484f-0b28-49a8-ba45-e032fb0167b9" + "x-ms-request-id": "westus:592e0eaf-5d13-4f48-ab94-704621b6081c", + "x-ms-routing-request-id": "WESTUS:20210721T172610Z:592e0eaf-5d13-4f48-ab94-704621b6081c" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -368,8 +368,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-60123aec9a78d049-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-ca9cd68455c0bd48-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0adcc2967da139aac73650613255b55b", "x-ms-return-client-request-id": "true" }, @@ -378,23 +378,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "8f315285-9faf-44ad-b092-6be3845e1e95", + "client-request-id": "910fb26d-07ac-4690-b715-f04cb4ef3e5b", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:08 GMT", + "Date": "Wed, 21 Jul 2021 17:26:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "8f315285-9faf-44ad-b092-6be3845e1e95", + "request-id": "910fb26d-07ac-4690-b715-f04cb4ef3e5b", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f315285-9faf-44ad-b092-6be3845e1e95", + "x-ms-correlation-request-id": "910fb26d-07ac-4690-b715-f04cb4ef3e5b", "x-ms-ratelimit-remaining-tenant-reads": "11992", - "x-ms-request-id": "westus2:8f315285-9faf-44ad-b092-6be3845e1e95", - "x-ms-routing-request-id": "WESTUS2:20210712T215408Z:8f315285-9faf-44ad-b092-6be3845e1e95" + "x-ms-request-id": "westus:910fb26d-07ac-4690-b715-f04cb4ef3e5b", + "x-ms-routing-request-id": "WESTUS:20210721T172611Z:910fb26d-07ac-4690-b715-f04cb4ef3e5b" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -407,8 +407,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-078923f937374a43-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-343455c7515c394f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fb110aa55ce3c6e997a113934ef06292", "x-ms-return-client-request-id": "true" }, @@ -417,23 +417,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "c964ef6b-abbe-48fc-952c-d983e74bf6aa", + "client-request-id": "d3fa2a7a-d6a4-4a38-8dae-cffe7f0eabe5", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:09 GMT", + "Date": "Wed, 21 Jul 2021 17:26:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "c964ef6b-abbe-48fc-952c-d983e74bf6aa", + "request-id": "d3fa2a7a-d6a4-4a38-8dae-cffe7f0eabe5", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c964ef6b-abbe-48fc-952c-d983e74bf6aa", + "x-ms-correlation-request-id": "d3fa2a7a-d6a4-4a38-8dae-cffe7f0eabe5", "x-ms-ratelimit-remaining-tenant-reads": "11991", - "x-ms-request-id": "westus2:c964ef6b-abbe-48fc-952c-d983e74bf6aa", - "x-ms-routing-request-id": "WESTUS2:20210712T215410Z:c964ef6b-abbe-48fc-952c-d983e74bf6aa" + "x-ms-request-id": "westus:d3fa2a7a-d6a4-4a38-8dae-cffe7f0eabe5", + "x-ms-routing-request-id": "WESTUS:20210721T172612Z:d3fa2a7a-d6a4-4a38-8dae-cffe7f0eabe5" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -446,8 +446,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-91695a0102e3a642-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-7058466cc7b2e64c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3f4c9447ec43f67f906de513425b002b", "x-ms-return-client-request-id": "true" }, @@ -456,23 +456,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "da23bc78-c4e1-484a-b437-fa132948bb2b", + "client-request-id": "5aafec00-11d6-44b8-9b1f-83db617a1be7", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:10 GMT", + "Date": "Wed, 21 Jul 2021 17:26:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "da23bc78-c4e1-484a-b437-fa132948bb2b", + "request-id": "5aafec00-11d6-44b8-9b1f-83db617a1be7", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da23bc78-c4e1-484a-b437-fa132948bb2b", + "x-ms-correlation-request-id": "5aafec00-11d6-44b8-9b1f-83db617a1be7", "x-ms-ratelimit-remaining-tenant-reads": "11990", - "x-ms-request-id": "westus2:da23bc78-c4e1-484a-b437-fa132948bb2b", - "x-ms-routing-request-id": "WESTUS2:20210712T215411Z:da23bc78-c4e1-484a-b437-fa132948bb2b" + "x-ms-request-id": "westus:5aafec00-11d6-44b8-9b1f-83db617a1be7", + "x-ms-routing-request-id": "WESTUS:20210721T172613Z:5aafec00-11d6-44b8-9b1f-83db617a1be7" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -485,8 +485,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-dddcaf709b208047-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-ea5c6ab6539d7742-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "68f75c0f110039b1d91672006a17ead6", "x-ms-return-client-request-id": "true" }, @@ -495,23 +495,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "b642435f-6051-4bd1-aa6b-dd3cd11910ef", + "client-request-id": "d26a0b96-8e08-4e9e-a4e7-7e8eabdb0654", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:11 GMT", + "Date": "Wed, 21 Jul 2021 17:26:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "b642435f-6051-4bd1-aa6b-dd3cd11910ef", + "request-id": "d26a0b96-8e08-4e9e-a4e7-7e8eabdb0654", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b642435f-6051-4bd1-aa6b-dd3cd11910ef", + "x-ms-correlation-request-id": "d26a0b96-8e08-4e9e-a4e7-7e8eabdb0654", "x-ms-ratelimit-remaining-tenant-reads": "11989", - "x-ms-request-id": "westus2:b642435f-6051-4bd1-aa6b-dd3cd11910ef", - "x-ms-routing-request-id": "WESTUS2:20210712T215412Z:b642435f-6051-4bd1-aa6b-dd3cd11910ef" + "x-ms-request-id": "westus:d26a0b96-8e08-4e9e-a4e7-7e8eabdb0654", + "x-ms-routing-request-id": "WESTUS:20210721T172614Z:d26a0b96-8e08-4e9e-a4e7-7e8eabdb0654" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -524,8 +524,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-bcd19215c892c546-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-66a7fffe8de9e241-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d1abed37608b8178a1b6a7577d6833c", "x-ms-return-client-request-id": "true" }, @@ -534,23 +534,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "c3ca7f28-c89b-404b-96cf-ca1c1dae6771", + "client-request-id": "0c357e09-1693-42ec-8771-e9cd7f0a0331", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:12 GMT", + "Date": "Wed, 21 Jul 2021 17:26:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "c3ca7f28-c89b-404b-96cf-ca1c1dae6771", + "request-id": "0c357e09-1693-42ec-8771-e9cd7f0a0331", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3ca7f28-c89b-404b-96cf-ca1c1dae6771", + "x-ms-correlation-request-id": "0c357e09-1693-42ec-8771-e9cd7f0a0331", "x-ms-ratelimit-remaining-tenant-reads": "11988", - "x-ms-request-id": "westus2:c3ca7f28-c89b-404b-96cf-ca1c1dae6771", - "x-ms-routing-request-id": "WESTUS2:20210712T215413Z:c3ca7f28-c89b-404b-96cf-ca1c1dae6771" + "x-ms-request-id": "westus:0c357e09-1693-42ec-8771-e9cd7f0a0331", + "x-ms-routing-request-id": "WESTUS:20210721T172615Z:0c357e09-1693-42ec-8771-e9cd7f0a0331" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -563,8 +563,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-eb869dae50148b42-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-14cd973acc007f46-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f183e7a0f9f93592e313662d797f8c79", "x-ms-return-client-request-id": "true" }, @@ -573,23 +573,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "d01d6037-d003-469f-b29a-72886df427e3", + "client-request-id": "e04b1c4b-f0f4-41ba-8377-b4a69e262b86", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:13 GMT", + "Date": "Wed, 21 Jul 2021 17:26:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "d01d6037-d003-469f-b29a-72886df427e3", + "request-id": "e04b1c4b-f0f4-41ba-8377-b4a69e262b86", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d01d6037-d003-469f-b29a-72886df427e3", + "x-ms-correlation-request-id": "e04b1c4b-f0f4-41ba-8377-b4a69e262b86", "x-ms-ratelimit-remaining-tenant-reads": "11987", - "x-ms-request-id": "westus2:d01d6037-d003-469f-b29a-72886df427e3", - "x-ms-routing-request-id": "WESTUS2:20210712T215414Z:d01d6037-d003-469f-b29a-72886df427e3" + "x-ms-request-id": "westus:e04b1c4b-f0f4-41ba-8377-b4a69e262b86", + "x-ms-routing-request-id": "WESTUS:20210721T172617Z:e04b1c4b-f0f4-41ba-8377-b4a69e262b86" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -602,8 +602,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-b5755d05cac1044f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-7c0e3bf61bf17143-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "843f0e8262419922443edee4a63bc202", "x-ms-return-client-request-id": "true" }, @@ -612,23 +612,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "fa5c68a8-24d1-4096-bf6a-696b8e3eb9ba", + "client-request-id": "cf4d9098-5e66-42b7-a7bb-c655e9fce5de", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:14 GMT", + "Date": "Wed, 21 Jul 2021 17:26:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "fa5c68a8-24d1-4096-bf6a-696b8e3eb9ba", + "request-id": "cf4d9098-5e66-42b7-a7bb-c655e9fce5de", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa5c68a8-24d1-4096-bf6a-696b8e3eb9ba", + "x-ms-correlation-request-id": "cf4d9098-5e66-42b7-a7bb-c655e9fce5de", "x-ms-ratelimit-remaining-tenant-reads": "11986", - "x-ms-request-id": "westus2:fa5c68a8-24d1-4096-bf6a-696b8e3eb9ba", - "x-ms-routing-request-id": "WESTUS2:20210712T215415Z:fa5c68a8-24d1-4096-bf6a-696b8e3eb9ba" + "x-ms-request-id": "westus:cf4d9098-5e66-42b7-a7bb-c655e9fce5de", + "x-ms-routing-request-id": "WESTUS:20210721T172618Z:cf4d9098-5e66-42b7-a7bb-c655e9fce5de" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -641,8 +641,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-19f8b4ffdcfd8c47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-8af3fd825a7df048-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "825f3692f893dadd2ce4baf50fea3e0b", "x-ms-return-client-request-id": "true" }, @@ -651,23 +651,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "504e2ffe-142f-4d44-8678-8f0fd2c0a1ec", + "client-request-id": "6d8be962-9b78-48fd-b1ec-e7a299e90e7c", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:16 GMT", + "Date": "Wed, 21 Jul 2021 17:26:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "504e2ffe-142f-4d44-8678-8f0fd2c0a1ec", + "request-id": "6d8be962-9b78-48fd-b1ec-e7a299e90e7c", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "504e2ffe-142f-4d44-8678-8f0fd2c0a1ec", + "x-ms-correlation-request-id": "6d8be962-9b78-48fd-b1ec-e7a299e90e7c", "x-ms-ratelimit-remaining-tenant-reads": "11985", - "x-ms-request-id": "westus2:504e2ffe-142f-4d44-8678-8f0fd2c0a1ec", - "x-ms-routing-request-id": "WESTUS2:20210712T215416Z:504e2ffe-142f-4d44-8678-8f0fd2c0a1ec" + "x-ms-request-id": "westus:6d8be962-9b78-48fd-b1ec-e7a299e90e7c", + "x-ms-routing-request-id": "WESTUS:20210721T172619Z:6d8be962-9b78-48fd-b1ec-e7a299e90e7c" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -680,8 +680,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-8560ec68f419d442-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-cbda92ae6625784c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "68f3f18eff973efbc5eaacba1bad8ea7", "x-ms-return-client-request-id": "true" }, @@ -690,23 +690,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "3479a062-2ee8-426e-b754-f4bd783ab872", + "client-request-id": "4f580753-a069-42cc-a3bb-cbde32eea8d6", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:17 GMT", + "Date": "Wed, 21 Jul 2021 17:26:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "3479a062-2ee8-426e-b754-f4bd783ab872", + "request-id": "4f580753-a069-42cc-a3bb-cbde32eea8d6", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3479a062-2ee8-426e-b754-f4bd783ab872", + "x-ms-correlation-request-id": "4f580753-a069-42cc-a3bb-cbde32eea8d6", "x-ms-ratelimit-remaining-tenant-reads": "11984", - "x-ms-request-id": "westus2:3479a062-2ee8-426e-b754-f4bd783ab872", - "x-ms-routing-request-id": "WESTUS2:20210712T215418Z:3479a062-2ee8-426e-b754-f4bd783ab872" + "x-ms-request-id": "westus:4f580753-a069-42cc-a3bb-cbde32eea8d6", + "x-ms-routing-request-id": "WESTUS:20210721T172620Z:4f580753-a069-42cc-a3bb-cbde32eea8d6" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -719,8 +719,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-67322a18ad9b4c4d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-7029da5af1502045-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "439a63510a1f89e53165585ca82d895a", "x-ms-return-client-request-id": "true" }, @@ -729,23 +729,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "34287a73-232f-4c4c-a0db-aa2d635433c5", + "client-request-id": "d9b13c2e-14a6-4b8a-887c-108eebc4cf4b", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:18 GMT", + "Date": "Wed, 21 Jul 2021 17:26:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "34287a73-232f-4c4c-a0db-aa2d635433c5", + "request-id": "d9b13c2e-14a6-4b8a-887c-108eebc4cf4b", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34287a73-232f-4c4c-a0db-aa2d635433c5", + "x-ms-correlation-request-id": "d9b13c2e-14a6-4b8a-887c-108eebc4cf4b", "x-ms-ratelimit-remaining-tenant-reads": "11983", - "x-ms-request-id": "westus2:34287a73-232f-4c4c-a0db-aa2d635433c5", - "x-ms-routing-request-id": "WESTUS2:20210712T215419Z:34287a73-232f-4c4c-a0db-aa2d635433c5" + "x-ms-request-id": "westus:d9b13c2e-14a6-4b8a-887c-108eebc4cf4b", + "x-ms-routing-request-id": "WESTUS:20210721T172621Z:d9b13c2e-14a6-4b8a-887c-108eebc4cf4b" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -758,8 +758,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-21a32baeb864534b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-c8d8ea50ceb30241-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b556d3ff5948936b3a20bda84c22be7f", "x-ms-return-client-request-id": "true" }, @@ -768,23 +768,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "f7219b1e-7785-466d-8a70-0601a395ac2f", + "client-request-id": "2620d67d-c2b2-4a5f-92a7-e23ec88e635f", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:19 GMT", + "Date": "Wed, 21 Jul 2021 17:26:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "f7219b1e-7785-466d-8a70-0601a395ac2f", + "request-id": "2620d67d-c2b2-4a5f-92a7-e23ec88e635f", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7219b1e-7785-466d-8a70-0601a395ac2f", + "x-ms-correlation-request-id": "2620d67d-c2b2-4a5f-92a7-e23ec88e635f", "x-ms-ratelimit-remaining-tenant-reads": "11982", - "x-ms-request-id": "westus2:f7219b1e-7785-466d-8a70-0601a395ac2f", - "x-ms-routing-request-id": "WESTUS2:20210712T215420Z:f7219b1e-7785-466d-8a70-0601a395ac2f" + "x-ms-request-id": "westus:2620d67d-c2b2-4a5f-92a7-e23ec88e635f", + "x-ms-routing-request-id": "WESTUS:20210721T172622Z:2620d67d-c2b2-4a5f-92a7-e23ec88e635f" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -797,8 +797,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-abf9cff5155fb549-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-40b06f0f1cf17a44-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aca31255fa4f84eb0b693731a79e9697", "x-ms-return-client-request-id": "true" }, @@ -807,23 +807,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "6e83b99c-cc2e-412a-b612-6620c8fa86a6", + "client-request-id": "fd809eb7-7069-48c8-bb6b-b56c9385900b", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:20 GMT", + "Date": "Wed, 21 Jul 2021 17:26:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "6e83b99c-cc2e-412a-b612-6620c8fa86a6", + "request-id": "fd809eb7-7069-48c8-bb6b-b56c9385900b", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e83b99c-cc2e-412a-b612-6620c8fa86a6", + "x-ms-correlation-request-id": "fd809eb7-7069-48c8-bb6b-b56c9385900b", "x-ms-ratelimit-remaining-tenant-reads": "11981", - "x-ms-request-id": "westus2:6e83b99c-cc2e-412a-b612-6620c8fa86a6", - "x-ms-routing-request-id": "WESTUS2:20210712T215421Z:6e83b99c-cc2e-412a-b612-6620c8fa86a6" + "x-ms-request-id": "westus:fd809eb7-7069-48c8-bb6b-b56c9385900b", + "x-ms-routing-request-id": "WESTUS:20210721T172623Z:fd809eb7-7069-48c8-bb6b-b56c9385900b" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -836,8 +836,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-21ab150c4c67a042-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-0004824002b05447-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "47ba5261d957f85ff70608ff4d3c3d0e", "x-ms-return-client-request-id": "true" }, @@ -846,23 +846,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "91762829-a61b-4f11-8d8e-f7b81f1294e7", + "client-request-id": "4e636f40-089f-4568-948f-fe1bceb5ed26", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:21 GMT", + "Date": "Wed, 21 Jul 2021 17:26:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "91762829-a61b-4f11-8d8e-f7b81f1294e7", + "request-id": "4e636f40-089f-4568-948f-fe1bceb5ed26", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91762829-a61b-4f11-8d8e-f7b81f1294e7", + "x-ms-correlation-request-id": "4e636f40-089f-4568-948f-fe1bceb5ed26", "x-ms-ratelimit-remaining-tenant-reads": "11980", - "x-ms-request-id": "westus2:91762829-a61b-4f11-8d8e-f7b81f1294e7", - "x-ms-routing-request-id": "WESTUS2:20210712T215422Z:91762829-a61b-4f11-8d8e-f7b81f1294e7" + "x-ms-request-id": "westus:4e636f40-089f-4568-948f-fe1bceb5ed26", + "x-ms-routing-request-id": "WESTUS:20210721T172624Z:4e636f40-089f-4568-948f-fe1bceb5ed26" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -875,8 +875,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-06f2ab4ac4ede142-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-656a4525713f7143-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9507d9a6dd89040ae8d1a9df2139ec9c", "x-ms-return-client-request-id": "true" }, @@ -885,23 +885,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "b07312b9-4460-4249-931b-5e0f18e36aa6", + "client-request-id": "96a38715-a5eb-4d3f-94f7-893fc8e0670c", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:23 GMT", + "Date": "Wed, 21 Jul 2021 17:26:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "b07312b9-4460-4249-931b-5e0f18e36aa6", + "request-id": "96a38715-a5eb-4d3f-94f7-893fc8e0670c", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b07312b9-4460-4249-931b-5e0f18e36aa6", + "x-ms-correlation-request-id": "96a38715-a5eb-4d3f-94f7-893fc8e0670c", "x-ms-ratelimit-remaining-tenant-reads": "11979", - "x-ms-request-id": "westus2:b07312b9-4460-4249-931b-5e0f18e36aa6", - "x-ms-routing-request-id": "WESTUS2:20210712T215423Z:b07312b9-4460-4249-931b-5e0f18e36aa6" + "x-ms-request-id": "westus:96a38715-a5eb-4d3f-94f7-893fc8e0670c", + "x-ms-routing-request-id": "WESTUS:20210721T172626Z:96a38715-a5eb-4d3f-94f7-893fc8e0670c" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -914,8 +914,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-484d8a3877678741-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-cce91fcfdae21945-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f947258a76677b27b3abb448f2eb37cf", "x-ms-return-client-request-id": "true" }, @@ -924,23 +924,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "b58da0f9-53c0-410c-8316-6a09ff860415", + "client-request-id": "5e43184c-2b4e-4a27-bc0e-ea4c19f99092", "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:24 GMT", + "Date": "Wed, 21 Jul 2021 17:26:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "b58da0f9-53c0-410c-8316-6a09ff860415", + "request-id": "5e43184c-2b4e-4a27-bc0e-ea4c19f99092", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b58da0f9-53c0-410c-8316-6a09ff860415", + "x-ms-correlation-request-id": "5e43184c-2b4e-4a27-bc0e-ea4c19f99092", "x-ms-ratelimit-remaining-tenant-reads": "11978", - "x-ms-request-id": "westus2:b58da0f9-53c0-410c-8316-6a09ff860415", - "x-ms-routing-request-id": "WESTUS2:20210712T215425Z:b58da0f9-53c0-410c-8316-6a09ff860415" + "x-ms-request-id": "westus:5e43184c-2b4e-4a27-bc0e-ea4c19f99092", + "x-ms-routing-request-id": "WESTUS:20210721T172627Z:5e43184c-2b4e-4a27-bc0e-ea4c19f99092" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -953,30 +953,108 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-ebfbd2787b9c0940-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-3b8c23d2e4d64d43-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ce8b282b0196830d47b55f85307fd6bd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "0bfcc9e4-7781-4099-b713-edf5cca9ffcc", - "Content-Length": "380", + "client-request-id": "75e74c7b-c7a0-4ff2-9945-17e96d8959f9", + "Content-Length": "161", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:25 GMT", + "Date": "Wed, 21 Jul 2021 17:26:27 GMT", "Expires": "-1", + "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "0bfcc9e4-7781-4099-b713-edf5cca9ffcc", + "request-id": "75e74c7b-c7a0-4ff2-9945-17e96d8959f9", + "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0bfcc9e4-7781-4099-b713-edf5cca9ffcc", + "x-ms-correlation-request-id": "75e74c7b-c7a0-4ff2-9945-17e96d8959f9", "x-ms-ratelimit-remaining-tenant-reads": "11977", - "x-ms-request-id": "westus2:0bfcc9e4-7781-4099-b713-edf5cca9ffcc", - "x-ms-routing-request-id": "WESTUS2:20210712T215426Z:0bfcc9e4-7781-4099-b713-edf5cca9ffcc" + "x-ms-request-id": "westus:75e74c7b-c7a0-4ff2-9945-17e96d8959f9", + "x-ms-routing-request-id": "WESTUS:20210721T172628Z:75e74c7b-c7a0-4ff2-9945-17e96d8959f9" + }, + "ResponseBody": { + "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", + "name": "mgmt-group-827", + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-7f0aac1ded29464f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "27746c1a43f42fa7b18ce1de28c112fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", + "Cache-Control": "no-cache", + "client-request-id": "6d25241d-308e-426f-8d75-1aac8ae5f475", + "Content-Length": "161", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 21 Jul 2021 17:26:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-827?api-version=2021-04-01", + "Pragma": "no-cache", + "request-id": "6d25241d-308e-426f-8d75-1aac8ae5f475", + "Retry-After": "10", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "x-ba-restapi": "1.0.3.1628", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6d25241d-308e-426f-8d75-1aac8ae5f475", + "x-ms-ratelimit-remaining-tenant-reads": "11976", + "x-ms-request-id": "westus:6d25241d-308e-426f-8d75-1aac8ae5f475", + "x-ms-routing-request-id": "WESTUS:20210721T172629Z:6d25241d-308e-426f-8d75-1aac8ae5f475" + }, + "ResponseBody": { + "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", + "name": "mgmt-group-827", + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-e080fdf49a5bb649-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f9b4da9a1eae890618c4b2b117a24b34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "client-request-id": "52677861-d827-49a2-b10a-24e1ed08fda9", + "Content-Length": "380", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 21 Jul 2021 17:26:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-id": "52677861-d827-49a2-b10a-24e1ed08fda9", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "x-ba-restapi": "1.0.3.1628", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "52677861-d827-49a2-b10a-24e1ed08fda9", + "x-ms-ratelimit-remaining-tenant-reads": "11975", + "x-ms-request-id": "westus:52677861-d827-49a2-b10a-24e1ed08fda9", + "x-ms-routing-request-id": "WESTUS:20210721T172630Z:52677861-d827-49a2-b10a-24e1ed08fda9" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-827", @@ -986,8 +1064,8 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "displayName": "mgmt-group-827", "details": { - "version": 13, - "updatedTime": "2021-07-12T21:54:09.0851566Z", + "version": 14, + "updatedTime": "2021-07-21T17:26:10.7669679Z", "updatedBy": "3b10dae3-28cf-49a7-a8df-8fbae3e77f27" } } @@ -998,30 +1076,30 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7ced0d9aad8fec47bc680e8ae6f9cc31-cd279e05b230e445-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "27746c1a43f42fa7b18ce1de28c112fc", + "traceparent": "00-d64f1494ea7b1a40b96ffd5da4d718a5-c023e71a88aba347-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "862ef7d51077e7da815c1d0a1f2f5b85", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "2ccfa28d-26a4-4a1d-93bb-60990fdcb2e0", + "client-request-id": "4978f2ae-34cb-4b5d-abb6-c3d8b3113050", "Content-Length": "563", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:25 GMT", + "Date": "Wed, 21 Jul 2021 17:26:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "request-id": "2ccfa28d-26a4-4a1d-93bb-60990fdcb2e0", + "request-id": "4978f2ae-34cb-4b5d-abb6-c3d8b3113050", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ccfa28d-26a4-4a1d-93bb-60990fdcb2e0", - "x-ms-ratelimit-remaining-tenant-reads": "11976", - "x-ms-request-id": "westus2:2ccfa28d-26a4-4a1d-93bb-60990fdcb2e0", - "x-ms-routing-request-id": "WESTUS2:20210712T215426Z:2ccfa28d-26a4-4a1d-93bb-60990fdcb2e0" + "x-ms-correlation-request-id": "4978f2ae-34cb-4b5d-abb6-c3d8b3113050", + "x-ms-ratelimit-remaining-tenant-reads": "11974", + "x-ms-request-id": "westus:4978f2ae-34cb-4b5d-abb6-c3d8b3113050", + "x-ms-routing-request-id": "WESTUS:20210721T172630Z:4978f2ae-34cb-4b5d-abb6-c3d8b3113050" }, "ResponseBody": { "id": "/providers/Microsoft.Management/managementGroups/mgmt-group-827", @@ -1031,8 +1109,8 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "displayName": "mgmt-group-827", "details": { - "version": 13, - "updatedTime": "2021-07-12T21:54:09.0851566Z", + "version": 14, + "updatedTime": "2021-07-21T17:26:10.7669679Z", "updatedBy": "3b10dae3-28cf-49a7-a8df-8fbae3e77f27", "parent": { "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", @@ -1049,30 +1127,30 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7c2609f9dc863b438c022395696e3f19-72f35c1142c13f4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f9b4da9a1eae890618c4b2b117a24b34", + "traceparent": "00-177b259542ee1f4c8a170e345fb68ab0-495d11bb307c9c42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "55eb62a2ddcbfc0f65eb0f3091f5170e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "5c9cf95e-75bb-4bc1-9394-be29030d468a", + "client-request-id": "b12870c7-165b-4083-aea1-b6f1305d77be", "Content-Length": "563", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:25 GMT", + "Date": "Wed, 21 Jul 2021 17:26:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "request-id": "5c9cf95e-75bb-4bc1-9394-be29030d468a", + "request-id": "b12870c7-165b-4083-aea1-b6f1305d77be", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c9cf95e-75bb-4bc1-9394-be29030d468a", - "x-ms-ratelimit-remaining-tenant-reads": "11975", - "x-ms-request-id": "westus2:5c9cf95e-75bb-4bc1-9394-be29030d468a", - "x-ms-routing-request-id": "WESTUS2:20210712T215426Z:5c9cf95e-75bb-4bc1-9394-be29030d468a" + "x-ms-correlation-request-id": "b12870c7-165b-4083-aea1-b6f1305d77be", + "x-ms-ratelimit-remaining-tenant-reads": "11973", + "x-ms-request-id": "westus:b12870c7-165b-4083-aea1-b6f1305d77be", + "x-ms-routing-request-id": "WESTUS:20210721T172631Z:b12870c7-165b-4083-aea1-b6f1305d77be" }, "ResponseBody": { "id": "/providers/Microsoft.Management/managementGroups/mgmt-group-827", @@ -1082,8 +1160,8 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "displayName": "mgmt-group-827", "details": { - "version": 13, - "updatedTime": "2021-07-12T21:54:09.0851566Z", + "version": 14, + "updatedTime": "2021-07-21T17:26:10.7669679Z", "updatedBy": "3b10dae3-28cf-49a7-a8df-8fbae3e77f27", "parent": { "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", @@ -1097,6 +1175,7 @@ ], "Variables": { "RandomSeed": "418237894", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/ManagementGroupContainerTests(True)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/ManagementGroupContainerTests(True)Async.json index ed8838d6a247..f80585ec2a1c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/ManagementGroupContainerTests(True)Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ManagementGroupContainerTests/ManagementGroupContainerTests(True)Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b6d469f11bdaaf1dba903647d61c65db", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:43 GMT", + "Date": "Wed, 21 Jul 2021 17:26:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d56117ec-03b9-4a1c-9686-bb611c0be605", + "x-ms-correlation-request-id": "11d7a1a3-a9ce-4f5c-b4ca-21dd915d106e", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "d56117ec-03b9-4a1c-9686-bb611c0be605", - "x-ms-routing-request-id": "WESTUS2:20210712T215444Z:d56117ec-03b9-4a1c-9686-bb611c0be605" + "x-ms-request-id": "11d7a1a3-a9ce-4f5c-b4ca-21dd915d106e", + "x-ms-routing-request-id": "WESTUS:20210721T172632Z:11d7a1a3-a9ce-4f5c-b4ca-21dd915d106e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -53,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "17", "Content-Type": "application/json", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-862a80010f508e46-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-9f2c9ee8952acd4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cac2c81daf6ab1916efff6a25d5c1843", "x-ms-return-client-request-id": "true" }, @@ -65,23 +65,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "1aef2ea1-ec33-4f01-a113-b99c31ba2294", + "client-request-id": "2e5b804f-4cec-47b4-9bb8-1e93c880678d", "Content-Length": "167", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:45 GMT", + "Date": "Wed, 21 Jul 2021 17:26:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "1aef2ea1-ec33-4f01-a113-b99c31ba2294", + "request-id": "2e5b804f-4cec-47b4-9bb8-1e93c880678d", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1aef2ea1-ec33-4f01-a113-b99c31ba2294", + "x-ms-correlation-request-id": "2e5b804f-4cec-47b4-9bb8-1e93c880678d", "x-ms-ratelimit-remaining-managementgroups-requests": "59", "x-ms-ratelimit-remaining-tenant-writes": "1199", - "x-ms-request-id": "westus2:1aef2ea1-ec33-4f01-a113-b99c31ba2294", - "x-ms-routing-request-id": "WESTUS2:20210712T215445Z:1aef2ea1-ec33-4f01-a113-b99c31ba2294" + "x-ms-request-id": "westus:2e5b804f-4cec-47b4-9bb8-1e93c880678d", + "x-ms-routing-request-id": "WESTUS:20210721T172632Z:2e5b804f-4cec-47b4-9bb8-1e93c880678d" }, "ResponseBody": { "id": "/providers/Microsoft.Management/managementGroups/mgmt-group-7077", @@ -95,8 +95,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-1cf4c7bdcc6f424b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-499df11443780344-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c84796b8b131b98642046b1c260c5c34", "x-ms-return-client-request-id": "true" }, @@ -105,23 +105,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "1982c8ec-fe3e-40bc-9755-d652f61de23c", + "client-request-id": "69f1cf00-467f-4a52-8371-f52ff38a1014", "Content-Length": "166", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:46 GMT", + "Date": "Wed, 21 Jul 2021 17:26:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "1982c8ec-fe3e-40bc-9755-d652f61de23c", + "request-id": "69f1cf00-467f-4a52-8371-f52ff38a1014", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1982c8ec-fe3e-40bc-9755-d652f61de23c", + "x-ms-correlation-request-id": "69f1cf00-467f-4a52-8371-f52ff38a1014", "x-ms-ratelimit-remaining-tenant-reads": "11999", - "x-ms-request-id": "westus2:1982c8ec-fe3e-40bc-9755-d652f61de23c", - "x-ms-routing-request-id": "WESTUS2:20210712T215446Z:1982c8ec-fe3e-40bc-9755-d652f61de23c" + "x-ms-request-id": "westus:69f1cf00-467f-4a52-8371-f52ff38a1014", + "x-ms-routing-request-id": "WESTUS:20210721T172632Z:69f1cf00-467f-4a52-8371-f52ff38a1014" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -134,8 +134,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-ddaa4360e3430245-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-d30afd8b6e187d47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6026041e5210512bbb14b468d7063aa9", "x-ms-return-client-request-id": "true" }, @@ -144,28 +144,28 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "1c6a4246-7267-4e98-9fd2-052e4e393e98", - "Content-Length": "166", + "client-request-id": "3affc664-f285-42cd-957c-80d3f51dd388", + "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:47 GMT", + "Date": "Wed, 21 Jul 2021 17:26:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "1c6a4246-7267-4e98-9fd2-052e4e393e98", + "request-id": "3affc664-f285-42cd-957c-80d3f51dd388", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c6a4246-7267-4e98-9fd2-052e4e393e98", + "x-ms-correlation-request-id": "3affc664-f285-42cd-957c-80d3f51dd388", "x-ms-ratelimit-remaining-tenant-reads": "11998", - "x-ms-request-id": "westus2:1c6a4246-7267-4e98-9fd2-052e4e393e98", - "x-ms-routing-request-id": "WESTUS2:20210712T215447Z:1c6a4246-7267-4e98-9fd2-052e4e393e98" + "x-ms-request-id": "westus:3affc664-f285-42cd-957c-80d3f51dd388", + "x-ms-routing-request-id": "WESTUS:20210721T172634Z:3affc664-f285-42cd-957c-80d3f51dd388" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", "name": "mgmt-group-7077", - "status": "NotStarted" + "status": "Running" } }, { @@ -173,8 +173,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-1d9b16762e797342-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-b93342fb9061584c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c7ea4e444f15fe12369b45c661f18808", "x-ms-return-client-request-id": "true" }, @@ -183,23 +183,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "48a6fe78-38e6-495b-b9cb-a6c1e440a72e", + "client-request-id": "b1a910f2-6be5-447f-bb79-927182580734", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:48 GMT", + "Date": "Wed, 21 Jul 2021 17:26:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "48a6fe78-38e6-495b-b9cb-a6c1e440a72e", + "request-id": "b1a910f2-6be5-447f-bb79-927182580734", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48a6fe78-38e6-495b-b9cb-a6c1e440a72e", + "x-ms-correlation-request-id": "b1a910f2-6be5-447f-bb79-927182580734", "x-ms-ratelimit-remaining-tenant-reads": "11997", - "x-ms-request-id": "westus2:48a6fe78-38e6-495b-b9cb-a6c1e440a72e", - "x-ms-routing-request-id": "WESTUS2:20210712T215448Z:48a6fe78-38e6-495b-b9cb-a6c1e440a72e" + "x-ms-request-id": "westus:b1a910f2-6be5-447f-bb79-927182580734", + "x-ms-routing-request-id": "WESTUS:20210721T172635Z:b1a910f2-6be5-447f-bb79-927182580734" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -212,8 +212,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-9a332321da56814f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-0c31f4078fc6d847-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "736da3a5599f65986af60c1cfc1de23c", "x-ms-return-client-request-id": "true" }, @@ -222,23 +222,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "94c3d700-952f-486b-9311-7af9efcac448", + "client-request-id": "9282e606-a2b2-4ee7-989d-ec75c1b379ed", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:49 GMT", + "Date": "Wed, 21 Jul 2021 17:26:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "94c3d700-952f-486b-9311-7af9efcac448", + "request-id": "9282e606-a2b2-4ee7-989d-ec75c1b379ed", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94c3d700-952f-486b-9311-7af9efcac448", + "x-ms-correlation-request-id": "9282e606-a2b2-4ee7-989d-ec75c1b379ed", "x-ms-ratelimit-remaining-tenant-reads": "11996", - "x-ms-request-id": "westus2:94c3d700-952f-486b-9311-7af9efcac448", - "x-ms-routing-request-id": "WESTUS2:20210712T215449Z:94c3d700-952f-486b-9311-7af9efcac448" + "x-ms-request-id": "westus:9282e606-a2b2-4ee7-989d-ec75c1b379ed", + "x-ms-routing-request-id": "WESTUS:20210721T172636Z:9282e606-a2b2-4ee7-989d-ec75c1b379ed" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -251,8 +251,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-fef28436fdbf9f41-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-85d9af63a35bd44e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d7d7c1ca9422ce1ff1272a740d65efca", "x-ms-return-client-request-id": "true" }, @@ -261,23 +261,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "daefb3d9-0757-4a99-acc1-2d486009dfdc", + "client-request-id": "03f4158c-caa1-4dc8-acb2-84a4dbb0eaf4", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:50 GMT", + "Date": "Wed, 21 Jul 2021 17:26:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "daefb3d9-0757-4a99-acc1-2d486009dfdc", + "request-id": "03f4158c-caa1-4dc8-acb2-84a4dbb0eaf4", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "daefb3d9-0757-4a99-acc1-2d486009dfdc", + "x-ms-correlation-request-id": "03f4158c-caa1-4dc8-acb2-84a4dbb0eaf4", "x-ms-ratelimit-remaining-tenant-reads": "11995", - "x-ms-request-id": "westus2:daefb3d9-0757-4a99-acc1-2d486009dfdc", - "x-ms-routing-request-id": "WESTUS2:20210712T215450Z:daefb3d9-0757-4a99-acc1-2d486009dfdc" + "x-ms-request-id": "westus:03f4158c-caa1-4dc8-acb2-84a4dbb0eaf4", + "x-ms-routing-request-id": "WESTUS:20210721T172637Z:03f4158c-caa1-4dc8-acb2-84a4dbb0eaf4" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -290,8 +290,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-0952987dd9424243-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-05e6af332e28c944-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "34c3ab8cc798eb09b6855c1f42f50118", "x-ms-return-client-request-id": "true" }, @@ -300,23 +300,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "5873aad4-3421-4db3-852c-61e6f7f04ffc", + "client-request-id": "1599e379-d743-4c38-8c87-58337fd425ef", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:51 GMT", + "Date": "Wed, 21 Jul 2021 17:26:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "5873aad4-3421-4db3-852c-61e6f7f04ffc", + "request-id": "1599e379-d743-4c38-8c87-58337fd425ef", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5873aad4-3421-4db3-852c-61e6f7f04ffc", + "x-ms-correlation-request-id": "1599e379-d743-4c38-8c87-58337fd425ef", "x-ms-ratelimit-remaining-tenant-reads": "11994", - "x-ms-request-id": "westus2:5873aad4-3421-4db3-852c-61e6f7f04ffc", - "x-ms-routing-request-id": "WESTUS2:20210712T215451Z:5873aad4-3421-4db3-852c-61e6f7f04ffc" + "x-ms-request-id": "westus:1599e379-d743-4c38-8c87-58337fd425ef", + "x-ms-routing-request-id": "WESTUS:20210721T172638Z:1599e379-d743-4c38-8c87-58337fd425ef" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -329,8 +329,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-70765b5e66dbff4e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-51f3a20efc81e944-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ffb09b9b01910e6849e81772f235704", "x-ms-return-client-request-id": "true" }, @@ -339,23 +339,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "97988cb8-6e82-45de-8ec3-5f3bf7f22fa6", + "client-request-id": "a378f403-b112-42fe-a38a-880bcc0be852", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:52 GMT", + "Date": "Wed, 21 Jul 2021 17:26:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "97988cb8-6e82-45de-8ec3-5f3bf7f22fa6", + "request-id": "a378f403-b112-42fe-a38a-880bcc0be852", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97988cb8-6e82-45de-8ec3-5f3bf7f22fa6", + "x-ms-correlation-request-id": "a378f403-b112-42fe-a38a-880bcc0be852", "x-ms-ratelimit-remaining-tenant-reads": "11993", - "x-ms-request-id": "westus2:97988cb8-6e82-45de-8ec3-5f3bf7f22fa6", - "x-ms-routing-request-id": "WESTUS2:20210712T215452Z:97988cb8-6e82-45de-8ec3-5f3bf7f22fa6" + "x-ms-request-id": "westus:a378f403-b112-42fe-a38a-880bcc0be852", + "x-ms-routing-request-id": "WESTUS:20210721T172639Z:a378f403-b112-42fe-a38a-880bcc0be852" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -368,8 +368,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-65487ad7dc8df64a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-cf87e709715b6f41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "50904206ae5a03a3b7ec219d37ff8bfc", "x-ms-return-client-request-id": "true" }, @@ -378,23 +378,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "9b6aee7f-54a0-4720-a0ef-bb8e6deea4d8", + "client-request-id": "7f927921-4996-46e3-92a7-597d40c07def", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:53 GMT", + "Date": "Wed, 21 Jul 2021 17:26:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "9b6aee7f-54a0-4720-a0ef-bb8e6deea4d8", + "request-id": "7f927921-4996-46e3-92a7-597d40c07def", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b6aee7f-54a0-4720-a0ef-bb8e6deea4d8", + "x-ms-correlation-request-id": "7f927921-4996-46e3-92a7-597d40c07def", "x-ms-ratelimit-remaining-tenant-reads": "11992", - "x-ms-request-id": "westus2:9b6aee7f-54a0-4720-a0ef-bb8e6deea4d8", - "x-ms-routing-request-id": "WESTUS2:20210712T215453Z:9b6aee7f-54a0-4720-a0ef-bb8e6deea4d8" + "x-ms-request-id": "westus:7f927921-4996-46e3-92a7-597d40c07def", + "x-ms-routing-request-id": "WESTUS:20210721T172640Z:7f927921-4996-46e3-92a7-597d40c07def" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -407,8 +407,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-2c755fb3b971ab48-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-a860c92418ab574a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04bb11264f6adbb0c5b2affa4692bb93", "x-ms-return-client-request-id": "true" }, @@ -417,23 +417,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "ad36b47b-130e-4501-8b72-08d62d36df6d", + "client-request-id": "4ca28397-e750-4d81-aeb5-c6ec73937f9d", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:55 GMT", + "Date": "Wed, 21 Jul 2021 17:26:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "ad36b47b-130e-4501-8b72-08d62d36df6d", + "request-id": "4ca28397-e750-4d81-aeb5-c6ec73937f9d", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad36b47b-130e-4501-8b72-08d62d36df6d", + "x-ms-correlation-request-id": "4ca28397-e750-4d81-aeb5-c6ec73937f9d", "x-ms-ratelimit-remaining-tenant-reads": "11991", - "x-ms-request-id": "westus2:ad36b47b-130e-4501-8b72-08d62d36df6d", - "x-ms-routing-request-id": "WESTUS2:20210712T215455Z:ad36b47b-130e-4501-8b72-08d62d36df6d" + "x-ms-request-id": "westus:4ca28397-e750-4d81-aeb5-c6ec73937f9d", + "x-ms-routing-request-id": "WESTUS:20210721T172642Z:4ca28397-e750-4d81-aeb5-c6ec73937f9d" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -446,8 +446,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-5fdd4a65bfb13948-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-f3f3f83cc696d34f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0018582db0640bbe65f8e72d8f48d884", "x-ms-return-client-request-id": "true" }, @@ -456,23 +456,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "26c80366-d334-45d8-ae1d-d37ff369a10d", + "client-request-id": "46a7b649-f7f3-4897-a306-c9777b7f2824", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:56 GMT", + "Date": "Wed, 21 Jul 2021 17:26:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "26c80366-d334-45d8-ae1d-d37ff369a10d", + "request-id": "46a7b649-f7f3-4897-a306-c9777b7f2824", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26c80366-d334-45d8-ae1d-d37ff369a10d", + "x-ms-correlation-request-id": "46a7b649-f7f3-4897-a306-c9777b7f2824", "x-ms-ratelimit-remaining-tenant-reads": "11990", - "x-ms-request-id": "westus2:26c80366-d334-45d8-ae1d-d37ff369a10d", - "x-ms-routing-request-id": "WESTUS2:20210712T215456Z:26c80366-d334-45d8-ae1d-d37ff369a10d" + "x-ms-request-id": "westus:46a7b649-f7f3-4897-a306-c9777b7f2824", + "x-ms-routing-request-id": "WESTUS:20210721T172643Z:46a7b649-f7f3-4897-a306-c9777b7f2824" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -485,8 +485,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-2f1b0a3accd2a04d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-e50c2a0e6a66ee46-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e5085135367b69a91b48aa8fea9bc25", "x-ms-return-client-request-id": "true" }, @@ -495,23 +495,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "0af4f6e0-345f-4b72-91ce-0567d7b422bf", + "client-request-id": "8cf7a519-829e-4656-80d8-fc2c5ae0a43f", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:57 GMT", + "Date": "Wed, 21 Jul 2021 17:26:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "0af4f6e0-345f-4b72-91ce-0567d7b422bf", + "request-id": "8cf7a519-829e-4656-80d8-fc2c5ae0a43f", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0af4f6e0-345f-4b72-91ce-0567d7b422bf", + "x-ms-correlation-request-id": "8cf7a519-829e-4656-80d8-fc2c5ae0a43f", "x-ms-ratelimit-remaining-tenant-reads": "11989", - "x-ms-request-id": "westus2:0af4f6e0-345f-4b72-91ce-0567d7b422bf", - "x-ms-routing-request-id": "WESTUS2:20210712T215457Z:0af4f6e0-345f-4b72-91ce-0567d7b422bf" + "x-ms-request-id": "westus:8cf7a519-829e-4656-80d8-fc2c5ae0a43f", + "x-ms-routing-request-id": "WESTUS:20210721T172644Z:8cf7a519-829e-4656-80d8-fc2c5ae0a43f" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -524,8 +524,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-b08c786bbf884346-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-0c4573f1c8e7c54f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df708d308ae7759752b09e7168834c7d", "x-ms-return-client-request-id": "true" }, @@ -534,23 +534,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "d596f84e-59a9-411f-91e1-c586bd3ecd0b", + "client-request-id": "17904464-b674-454a-87e5-9de49abfa5ea", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:58 GMT", + "Date": "Wed, 21 Jul 2021 17:26:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "d596f84e-59a9-411f-91e1-c586bd3ecd0b", + "request-id": "17904464-b674-454a-87e5-9de49abfa5ea", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d596f84e-59a9-411f-91e1-c586bd3ecd0b", + "x-ms-correlation-request-id": "17904464-b674-454a-87e5-9de49abfa5ea", "x-ms-ratelimit-remaining-tenant-reads": "11988", - "x-ms-request-id": "westus2:d596f84e-59a9-411f-91e1-c586bd3ecd0b", - "x-ms-routing-request-id": "WESTUS2:20210712T215458Z:d596f84e-59a9-411f-91e1-c586bd3ecd0b" + "x-ms-request-id": "westus:17904464-b674-454a-87e5-9de49abfa5ea", + "x-ms-routing-request-id": "WESTUS:20210721T172645Z:17904464-b674-454a-87e5-9de49abfa5ea" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -563,8 +563,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-82a0baa8d795f241-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-5e1828ecb9cd5049-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c1e72bd99d41d92bbd616fb025160cbb", "x-ms-return-client-request-id": "true" }, @@ -573,23 +573,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "1552b4ce-c9ff-4486-bad2-915bc8a6c1d8", + "client-request-id": "005658c7-5286-43fe-8dad-0482ba9cb909", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:54:59 GMT", + "Date": "Wed, 21 Jul 2021 17:26:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "1552b4ce-c9ff-4486-bad2-915bc8a6c1d8", + "request-id": "005658c7-5286-43fe-8dad-0482ba9cb909", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1552b4ce-c9ff-4486-bad2-915bc8a6c1d8", + "x-ms-correlation-request-id": "005658c7-5286-43fe-8dad-0482ba9cb909", "x-ms-ratelimit-remaining-tenant-reads": "11987", - "x-ms-request-id": "westus2:1552b4ce-c9ff-4486-bad2-915bc8a6c1d8", - "x-ms-routing-request-id": "WESTUS2:20210712T215459Z:1552b4ce-c9ff-4486-bad2-915bc8a6c1d8" + "x-ms-request-id": "westus:005658c7-5286-43fe-8dad-0482ba9cb909", + "x-ms-routing-request-id": "WESTUS:20210721T172646Z:005658c7-5286-43fe-8dad-0482ba9cb909" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -602,8 +602,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-44e0408a8d10734d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-88659c0df25a3a49-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "01fdc23bf9d8889deddbcbb6b5284e0e", "x-ms-return-client-request-id": "true" }, @@ -612,23 +612,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "72c40b2b-6a41-4433-b06a-6a5596dc3563", + "client-request-id": "f81a9840-9b2b-4aaf-9a07-38c14f386423", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:55:00 GMT", + "Date": "Wed, 21 Jul 2021 17:26:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "72c40b2b-6a41-4433-b06a-6a5596dc3563", + "request-id": "f81a9840-9b2b-4aaf-9a07-38c14f386423", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72c40b2b-6a41-4433-b06a-6a5596dc3563", + "x-ms-correlation-request-id": "f81a9840-9b2b-4aaf-9a07-38c14f386423", "x-ms-ratelimit-remaining-tenant-reads": "11986", - "x-ms-request-id": "westus2:72c40b2b-6a41-4433-b06a-6a5596dc3563", - "x-ms-routing-request-id": "WESTUS2:20210712T215500Z:72c40b2b-6a41-4433-b06a-6a5596dc3563" + "x-ms-request-id": "westus:f81a9840-9b2b-4aaf-9a07-38c14f386423", + "x-ms-routing-request-id": "WESTUS:20210721T172647Z:f81a9840-9b2b-4aaf-9a07-38c14f386423" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -641,8 +641,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-c168f3dba8bae24d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-c865f9736a0b3b44-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d3ce0d68fbc293e3629622851be74f3c", "x-ms-return-client-request-id": "true" }, @@ -651,23 +651,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "eac1b54d-7927-400e-99cb-c1e6e8620306", + "client-request-id": "9d8931d6-f916-403d-b68a-fda0951a2f76", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:55:01 GMT", + "Date": "Wed, 21 Jul 2021 17:26:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "eac1b54d-7927-400e-99cb-c1e6e8620306", + "request-id": "9d8931d6-f916-403d-b68a-fda0951a2f76", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eac1b54d-7927-400e-99cb-c1e6e8620306", + "x-ms-correlation-request-id": "9d8931d6-f916-403d-b68a-fda0951a2f76", "x-ms-ratelimit-remaining-tenant-reads": "11985", - "x-ms-request-id": "westus2:eac1b54d-7927-400e-99cb-c1e6e8620306", - "x-ms-routing-request-id": "WESTUS2:20210712T215501Z:eac1b54d-7927-400e-99cb-c1e6e8620306" + "x-ms-request-id": "westus:9d8931d6-f916-403d-b68a-fda0951a2f76", + "x-ms-routing-request-id": "WESTUS:20210721T172648Z:9d8931d6-f916-403d-b68a-fda0951a2f76" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -680,8 +680,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-2da009a5ba8deb4b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-70da4a77281d834f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a636e2a34a85e0a48e5fd366d2742494", "x-ms-return-client-request-id": "true" }, @@ -690,23 +690,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "1688e1e5-d3a7-4d8e-b6eb-eb7dfdc8556e", + "client-request-id": "b2340596-01b9-4610-9349-51744a7a6c32", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:55:02 GMT", + "Date": "Wed, 21 Jul 2021 17:26:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "1688e1e5-d3a7-4d8e-b6eb-eb7dfdc8556e", + "request-id": "b2340596-01b9-4610-9349-51744a7a6c32", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1688e1e5-d3a7-4d8e-b6eb-eb7dfdc8556e", + "x-ms-correlation-request-id": "b2340596-01b9-4610-9349-51744a7a6c32", "x-ms-ratelimit-remaining-tenant-reads": "11984", - "x-ms-request-id": "westus2:1688e1e5-d3a7-4d8e-b6eb-eb7dfdc8556e", - "x-ms-routing-request-id": "WESTUS2:20210712T215502Z:1688e1e5-d3a7-4d8e-b6eb-eb7dfdc8556e" + "x-ms-request-id": "westus:b2340596-01b9-4610-9349-51744a7a6c32", + "x-ms-routing-request-id": "WESTUS:20210721T172649Z:b2340596-01b9-4610-9349-51744a7a6c32" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -719,8 +719,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-121c66209bd70742-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-c4810fedf154b64e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1847601339473ff9de6a9f41d6176c06", "x-ms-return-client-request-id": "true" }, @@ -729,23 +729,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "63d27ed6-68ed-4c80-a9c3-18fa73504e2e", + "client-request-id": "04876515-2c3f-4bd2-983b-275ec8e5318f", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:55:03 GMT", + "Date": "Wed, 21 Jul 2021 17:26:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "63d27ed6-68ed-4c80-a9c3-18fa73504e2e", + "request-id": "04876515-2c3f-4bd2-983b-275ec8e5318f", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63d27ed6-68ed-4c80-a9c3-18fa73504e2e", + "x-ms-correlation-request-id": "04876515-2c3f-4bd2-983b-275ec8e5318f", "x-ms-ratelimit-remaining-tenant-reads": "11983", - "x-ms-request-id": "westus2:63d27ed6-68ed-4c80-a9c3-18fa73504e2e", - "x-ms-routing-request-id": "WESTUS2:20210712T215504Z:63d27ed6-68ed-4c80-a9c3-18fa73504e2e" + "x-ms-request-id": "westus:04876515-2c3f-4bd2-983b-275ec8e5318f", + "x-ms-routing-request-id": "WESTUS:20210721T172651Z:04876515-2c3f-4bd2-983b-275ec8e5318f" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -758,8 +758,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-0a830d83d0ca514e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-e0a1caf660aa4949-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2138e8ba8f21e8868ee4563287dc0ed", "x-ms-return-client-request-id": "true" }, @@ -768,23 +768,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "5111001e-43c2-4e5f-bfd1-670f753b117f", + "client-request-id": "fb8b7965-5d96-4387-a80c-1ccb0492d989", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:55:05 GMT", + "Date": "Wed, 21 Jul 2021 17:26:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "5111001e-43c2-4e5f-bfd1-670f753b117f", + "request-id": "fb8b7965-5d96-4387-a80c-1ccb0492d989", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5111001e-43c2-4e5f-bfd1-670f753b117f", + "x-ms-correlation-request-id": "fb8b7965-5d96-4387-a80c-1ccb0492d989", "x-ms-ratelimit-remaining-tenant-reads": "11982", - "x-ms-request-id": "westus2:5111001e-43c2-4e5f-bfd1-670f753b117f", - "x-ms-routing-request-id": "WESTUS2:20210712T215505Z:5111001e-43c2-4e5f-bfd1-670f753b117f" + "x-ms-request-id": "westus:fb8b7965-5d96-4387-a80c-1ccb0492d989", + "x-ms-routing-request-id": "WESTUS:20210721T172652Z:fb8b7965-5d96-4387-a80c-1ccb0492d989" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -797,8 +797,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-bce55e0cc8edf743-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-2790cc22afbfe84a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ba728e72379f6af5e9f6c71baa630977", "x-ms-return-client-request-id": "true" }, @@ -807,23 +807,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "db9cfccd-ff08-4ae4-ab15-35c44da5455d", + "client-request-id": "f1d878f4-c070-4a8a-aa5e-597ccdeab080", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:55:06 GMT", + "Date": "Wed, 21 Jul 2021 17:26:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "db9cfccd-ff08-4ae4-ab15-35c44da5455d", + "request-id": "f1d878f4-c070-4a8a-aa5e-597ccdeab080", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db9cfccd-ff08-4ae4-ab15-35c44da5455d", + "x-ms-correlation-request-id": "f1d878f4-c070-4a8a-aa5e-597ccdeab080", "x-ms-ratelimit-remaining-tenant-reads": "11981", - "x-ms-request-id": "westus2:db9cfccd-ff08-4ae4-ab15-35c44da5455d", - "x-ms-routing-request-id": "WESTUS2:20210712T215506Z:db9cfccd-ff08-4ae4-ab15-35c44da5455d" + "x-ms-request-id": "westus:f1d878f4-c070-4a8a-aa5e-597ccdeab080", + "x-ms-routing-request-id": "WESTUS:20210721T172653Z:f1d878f4-c070-4a8a-aa5e-597ccdeab080" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -836,8 +836,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-1d575347b9921b4b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-ce6317d4c5144b46-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "43daccf252616aa1d828af58f4961761", "x-ms-return-client-request-id": "true" }, @@ -846,23 +846,23 @@ "ResponseHeaders": { "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "f7d0f086-6f0f-4c74-8bbd-7026dc22d0dc", + "client-request-id": "70a056dd-c0a1-4fe4-8292-cd9d376ed347", "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:55:07 GMT", + "Date": "Wed, 21 Jul 2021 17:26:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "f7d0f086-6f0f-4c74-8bbd-7026dc22d0dc", + "request-id": "70a056dd-c0a1-4fe4-8292-cd9d376ed347", "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7d0f086-6f0f-4c74-8bbd-7026dc22d0dc", + "x-ms-correlation-request-id": "70a056dd-c0a1-4fe4-8292-cd9d376ed347", "x-ms-ratelimit-remaining-tenant-reads": "11980", - "x-ms-request-id": "westus2:f7d0f086-6f0f-4c74-8bbd-7026dc22d0dc", - "x-ms-routing-request-id": "WESTUS2:20210712T215507Z:f7d0f086-6f0f-4c74-8bbd-7026dc22d0dc" + "x-ms-request-id": "westus:70a056dd-c0a1-4fe4-8292-cd9d376ed347", + "x-ms-routing-request-id": "WESTUS:20210721T172654Z:70a056dd-c0a1-4fe4-8292-cd9d376ed347" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -875,30 +875,69 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-2c3e8ac7e0887248-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-e08571dc1ac4b64f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "48cfb2a9b1a4536699a8e8fbe16c7305", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Cache-Control": "no-cache", - "client-request-id": "84e60f72-c163-4af7-a865-2b5bc214696d", - "Content-Length": "382", + "client-request-id": "127e0949-2f24-444a-b380-3dae345e1131", + "Content-Length": "163", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:55:08 GMT", + "Date": "Wed, 21 Jul 2021 17:26:55 GMT", "Expires": "-1", + "Location": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/mgmt-group-7077?api-version=2021-04-01", "Pragma": "no-cache", - "request-id": "84e60f72-c163-4af7-a865-2b5bc214696d", + "request-id": "127e0949-2f24-444a-b380-3dae345e1131", + "Retry-After": "10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84e60f72-c163-4af7-a865-2b5bc214696d", + "x-ms-correlation-request-id": "127e0949-2f24-444a-b380-3dae345e1131", "x-ms-ratelimit-remaining-tenant-reads": "11979", - "x-ms-request-id": "westus2:84e60f72-c163-4af7-a865-2b5bc214696d", - "x-ms-routing-request-id": "WESTUS2:20210712T215508Z:84e60f72-c163-4af7-a865-2b5bc214696d" + "x-ms-request-id": "westus:127e0949-2f24-444a-b380-3dae345e1131", + "x-ms-routing-request-id": "WESTUS:20210721T172655Z:127e0949-2f24-444a-b380-3dae345e1131" + }, + "ResponseBody": { + "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", + "name": "mgmt-group-7077", + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-12ab1c4e6e9b2643-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5b70cee57da21f8bec08e277889c7552", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "client-request-id": "0edbbe78-31e5-4e7c-988e-2e8761ba6cde", + "Content-Length": "382", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 21 Jul 2021 17:26:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-id": "0edbbe78-31e5-4e7c-988e-2e8761ba6cde", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "x-ba-restapi": "1.0.3.1628", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0edbbe78-31e5-4e7c-988e-2e8761ba6cde", + "x-ms-ratelimit-remaining-tenant-reads": "11978", + "x-ms-request-id": "westus:0edbbe78-31e5-4e7c-988e-2e8761ba6cde", + "x-ms-routing-request-id": "WESTUS:20210721T172656Z:0edbbe78-31e5-4e7c-988e-2e8761ba6cde" }, "ResponseBody": { "id": "/providers/Microsoft.Management/operationResults/create/asyncOperation/status/managementGroups/mgmt-group-7077", @@ -908,8 +947,8 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "displayName": "mgmt-group-7077", "details": { - "version": 3, - "updatedTime": "2021-07-12T21:54:52.9694307Z", + "version": 4, + "updatedTime": "2021-07-21T17:26:39.4872427Z", "updatedBy": "3b10dae3-28cf-49a7-a8df-8fbae3e77f27" } } @@ -920,30 +959,30 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17b2a62abf4a3b439134f9a1b5d937bb-d4358a639be4d748-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5b70cee57da21f8bec08e277889c7552", + "traceparent": "00-f57413b32a1d7c4ab7c88a646ce0ea7f-42d227dc941cb842-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f87266dfc09341d26687aab969a6896b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "153a8b2e-2833-48c8-a418-a79f001fea62", + "client-request-id": "384502db-636a-4056-95dc-2f5197f283c1", "Content-Length": "565", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:55:08 GMT", + "Date": "Wed, 21 Jul 2021 17:26:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "request-id": "153a8b2e-2833-48c8-a418-a79f001fea62", + "request-id": "384502db-636a-4056-95dc-2f5197f283c1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "153a8b2e-2833-48c8-a418-a79f001fea62", - "x-ms-ratelimit-remaining-tenant-reads": "11978", - "x-ms-request-id": "westus2:153a8b2e-2833-48c8-a418-a79f001fea62", - "x-ms-routing-request-id": "WESTUS2:20210712T215508Z:153a8b2e-2833-48c8-a418-a79f001fea62" + "x-ms-correlation-request-id": "384502db-636a-4056-95dc-2f5197f283c1", + "x-ms-ratelimit-remaining-tenant-reads": "11977", + "x-ms-request-id": "westus:384502db-636a-4056-95dc-2f5197f283c1", + "x-ms-routing-request-id": "WESTUS:20210721T172656Z:384502db-636a-4056-95dc-2f5197f283c1" }, "ResponseBody": { "id": "/providers/Microsoft.Management/managementGroups/mgmt-group-7077", @@ -953,8 +992,8 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "displayName": "mgmt-group-7077", "details": { - "version": 3, - "updatedTime": "2021-07-12T21:54:52.9694307Z", + "version": 4, + "updatedTime": "2021-07-21T17:26:39.4872427Z", "updatedBy": "3b10dae3-28cf-49a7-a8df-8fbae3e77f27", "parent": { "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", @@ -971,30 +1010,30 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3464c22358153f428758fcaea0cfad6b-3047fa47b4f96242-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f87266dfc09341d26687aab969a6896b", + "traceparent": "00-6bcc63a6b926bf4080cb44e26858ce78-3bca185c73d66d4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2673a9b5bb262bbe26af5c9ccfefcafd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "client-request-id": "253b9c14-9900-4a6e-a2a3-a40fce0db682", + "client-request-id": "58d6a5b4-7c61-443a-b902-9e0b38c475c6", "Content-Length": "565", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 21:55:08 GMT", + "Date": "Wed, 21 Jul 2021 17:26:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "request-id": "253b9c14-9900-4a6e-a2a3-a40fce0db682", + "request-id": "58d6a5b4-7c61-443a-b902-9e0b38c475c6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-ba-restapi": "1.0.3.1627", + "x-ba-restapi": "1.0.3.1628", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "253b9c14-9900-4a6e-a2a3-a40fce0db682", - "x-ms-ratelimit-remaining-tenant-reads": "11977", - "x-ms-request-id": "westus2:253b9c14-9900-4a6e-a2a3-a40fce0db682", - "x-ms-routing-request-id": "WESTUS2:20210712T215509Z:253b9c14-9900-4a6e-a2a3-a40fce0db682" + "x-ms-correlation-request-id": "58d6a5b4-7c61-443a-b902-9e0b38c475c6", + "x-ms-ratelimit-remaining-tenant-reads": "11976", + "x-ms-request-id": "westus:58d6a5b4-7c61-443a-b902-9e0b38c475c6", + "x-ms-routing-request-id": "WESTUS:20210721T172657Z:58d6a5b4-7c61-443a-b902-9e0b38c475c6" }, "ResponseBody": { "id": "/providers/Microsoft.Management/managementGroups/mgmt-group-7077", @@ -1004,8 +1043,8 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "displayName": "mgmt-group-7077", "details": { - "version": 3, - "updatedTime": "2021-07-12T21:54:52.9694307Z", + "version": 4, + "updatedTime": "2021-07-21T17:26:39.4872427Z", "updatedBy": "3b10dae3-28cf-49a7-a8df-8fbae3e77f27", "parent": { "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", @@ -1019,6 +1058,7 @@ ], "Variables": { "RandomSeed": "2078233070", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/Create.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/Create.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/Create.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/Create.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/CreateAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/CreateAsync.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/CreateAsync.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/CreateAsync.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/List().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/List().json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/List().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/List().json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/List()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/List()Async.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/List()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/List()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/List.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/List.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/List.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/List.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/ListAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/ListAsync.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/ListAsync.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/ListAsync.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/StartCreate.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/StartCreate.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/StartCreate.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/StartCreate.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/StartCreateAsync.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/StartCreateAsync.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagContainerTests/StartCreateAsync.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagContainerTests/StartCreateAsync.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/CRUDTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/CRUDTest().json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/CRUDTest().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/CRUDTest().json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/CRUDTests().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/CRUDTests().json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/CRUDTests().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/CRUDTests().json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/CRUDTests()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/CRUDTests()Async.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/CRUDTests()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/CRUDTests()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/DeleteTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/DeleteTag().json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/DeleteTag().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/DeleteTag().json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/DeleteTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/DeleteTag()Async.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/DeleteTag()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/DeleteTag()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/GetTagsOperation().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/GetTagsOperation().json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/GetTagsOperation().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/GetTagsOperation().json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/GetTagsOperation()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/GetTagsOperation()Async.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/GetTagsOperation()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/GetTagsOperation()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/OtherTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/OtherTest().json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/OtherTest().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/OtherTest().json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/ScopeTests().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/ScopeTests().json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/ScopeTests().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/ScopeTests().json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/ScopeTests()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/ScopeTests()Async.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/ScopeTests()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/ScopeTests()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/StartDelete().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/StartDelete().json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/StartDelete().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/StartDelete().json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/StartDelete()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/StartDelete()Async.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/StartDelete()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/StartDelete()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/ValueTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/ValueTest().json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/ValueTest().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/ValueTest().json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/ValueTest()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/ValueTest()Async.json similarity index 100% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PreDefinedTagOperationsTests/ValueTest()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/PredefinedTagOperationsTests/ValueTest()Async.json diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/DoesExist().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/CheckIfExists().json similarity index 60% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/DoesExist().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/CheckIfExists().json index 4ad662c3d2c6..7311c642fa22 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/DoesExist().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/CheckIfExists().json @@ -6,9 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b4413557104b1d40805fb7f019d94c50-24bf2321b67ada4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cf9bd5dd80499daf4a0cab98827f134b", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d0d9b8558c8219667b41186ef7834775", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:02 GMT", + "Date": "Wed, 21 Jul 2021 17:22:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68367c7d-9a97-4230-8865-e3f9128328e4", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "68367c7d-9a97-4230-8865-e3f9128328e4", - "x-ms-routing-request-id": "WESTUS:20210712T223502Z:68367c7d-9a97-4230-8865-e3f9128328e4" + "x-ms-correlation-request-id": "37a05d8e-9623-42a1-aba0-d3c993b7cbab", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "37a05d8e-9623-42a1-aba0-d3c993b7cbab", + "x-ms-routing-request-id": "WESTUS2:20210721T172202Z:37a05d8e-9623-42a1-aba0-d3c993b7cbab" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-718?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-9605?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "32", "Content-Type": "application/json", - "traceparent": "00-ec8e900f0cd6064fbd70253b4459b740-eebdbf8a420b5b4f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c08f1e4d8a63c357732510b998ceb605", + "traceparent": "00-9fa945369616e740b2dabb052f1b3d9e-7e651b0e8a1db64b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8eb8ed4ca6c6fe6113b5ac2520658b62", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -66,21 +65,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "228", + "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:03 GMT", + "Date": "Wed, 21 Jul 2021 17:22:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1cf984c3-4005-4e09-84dd-55debe061cb1", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "1cf984c3-4005-4e09-84dd-55debe061cb1", - "x-ms-routing-request-id": "WESTUS:20210712T223503Z:1cf984c3-4005-4e09-84dd-55debe061cb1" + "x-ms-correlation-request-id": "7382dbe4-8709-4495-a033-a677514e25d6", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "7382dbe4-8709-4495-a033-a677514e25d6", + "x-ms-routing-request-id": "WESTUS2:20210721T172202Z:7382dbe4-8709-4495-a033-a677514e25d6" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-718", - "name": "testRg-718", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9605", + "name": "testRg-9605", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,14 +89,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-718?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-9605?api-version=2019-10-01", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-77cdadf03e685e4094a2adf8e28b4bf7-12afa1c18d33574e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "02df012aa5689f153532768c0b9a8cd1", + "traceparent": "00-c9b6ed679b698943bfe2315c23760a58-90cfd9f3690c1743-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7de7e1ac8aa7c355b10ed94bf64945b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -105,51 +104,52 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 12 Jul 2021 22:35:03 GMT", + "Date": "Wed, 21 Jul 2021 17:22:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "778cd63c-178e-45e4-a33a-7d5eec98f4bd", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "778cd63c-178e-45e4-a33a-7d5eec98f4bd", - "x-ms-routing-request-id": "WESTUS:20210712T223503Z:778cd63c-178e-45e4-a33a-7d5eec98f4bd" + "x-ms-correlation-request-id": "d53be63b-e411-4b0c-8f5b-7fdc3aa9bf50", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "d53be63b-e411-4b0c-8f5b-7fdc3aa9bf50", + "x-ms-routing-request-id": "WESTUS2:20210721T172202Z:d53be63b-e411-4b0c-8f5b-7fdc3aa9bf50" }, "ResponseBody": [] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-7181?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-96051?api-version=2019-10-01", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b981a3d9ae8a5a4e8f264f6694a1a8a0-0602172bc8eab642-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bd65965352a14b7a430bd65a9fe4b13d", + "traceparent": "00-daf0a637e5373c449d3a1cd9bf798095-ec76e11d8d938b48-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4e5bf6085819118f77d16fd6baf35adb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "103", + "Content-Length": "104", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:03 GMT", + "Date": "Wed, 21 Jul 2021 17:22:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa5d3558-0f21-4be1-bc18-a0e6eae394e8", + "x-ms-correlation-request-id": "ab1c2bd4-d721-4626-a9db-db5c05b48cbd", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "fa5d3558-0f21-4be1-bc18-a0e6eae394e8", - "x-ms-routing-request-id": "WESTUS:20210712T223503Z:fa5d3558-0f21-4be1-bc18-a0e6eae394e8" + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "ab1c2bd4-d721-4626-a9db-db5c05b48cbd", + "x-ms-routing-request-id": "WESTUS2:20210721T172202Z:ab1c2bd4-d721-4626-a9db-db5c05b48cbd" }, "ResponseBody": [] } ], "Variables": { - "RandomSeed": "1776805903", + "RandomSeed": "48755149", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/DoesExist()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/CheckIfExists()Async.json similarity index 62% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/DoesExist()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/CheckIfExists()Async.json index 19d07bc80746..8625071b5d2d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/DoesExist()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupContainerTests/CheckIfExists()Async.json @@ -6,9 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d0016ccade91c34bae81953f55828aa3-3bbbabb771c7ac4e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cf9bd5dd80499daf4a0cab98827f134b", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f7d698b046e179c4ff281bcf5d0950ba", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:02 GMT", + "Date": "Wed, 21 Jul 2021 17:22:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f6773dc-402c-497a-add6-2e6389e55400", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "7f6773dc-402c-497a-add6-2e6389e55400", - "x-ms-routing-request-id": "WESTUS:20210712T223502Z:7f6773dc-402c-497a-add6-2e6389e55400" + "x-ms-correlation-request-id": "5c3c9ddc-2675-41ee-a8fa-836889bca697", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "5c3c9ddc-2675-41ee-a8fa-836889bca697", + "x-ms-routing-request-id": "WESTUS2:20210721T172203Z:5c3c9ddc-2675-41ee-a8fa-836889bca697" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-718?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-2469?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "32", "Content-Type": "application/json", - "traceparent": "00-89fe5e68aa505e41ae3b61ad6afbf470-614aac4658df3848-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c08f1e4d8a63c357732510b998ceb605", + "traceparent": "00-faa1ad8fa7af314488b026b2f040a28c-2b7647b784c4ff4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e4e4fbb188d2131676ff78300bdacf6e", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -66,21 +65,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "228", + "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:03 GMT", + "Date": "Wed, 21 Jul 2021 17:22:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1492aa3b-e79e-47f4-8b73-cc56994b1013", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "1492aa3b-e79e-47f4-8b73-cc56994b1013", - "x-ms-routing-request-id": "WESTUS:20210712T223503Z:1492aa3b-e79e-47f4-8b73-cc56994b1013" + "x-ms-correlation-request-id": "be371082-d593-43cb-819a-d54d66dcc522", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "be371082-d593-43cb-819a-d54d66dcc522", + "x-ms-routing-request-id": "WESTUS2:20210721T172203Z:be371082-d593-43cb-819a-d54d66dcc522" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-718", - "name": "testRg-718", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-2469", + "name": "testRg-2469", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,14 +89,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-718?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-2469?api-version=2019-10-01", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5f737ac4dca5584b9940e558371bdd0d-58a9bf0c569d3340-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "02df012aa5689f153532768c0b9a8cd1", + "traceparent": "00-3158ccac466f0146a4e6c76eaab18a6d-0cfbb81fd197ec49-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1af7d2c8222862111bb75e2af923393e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -105,51 +104,52 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 12 Jul 2021 22:35:03 GMT", + "Date": "Wed, 21 Jul 2021 17:22:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee0e9612-119c-4d0e-817d-3e9d74840b10", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "ee0e9612-119c-4d0e-817d-3e9d74840b10", - "x-ms-routing-request-id": "WESTUS:20210712T223503Z:ee0e9612-119c-4d0e-817d-3e9d74840b10" + "x-ms-correlation-request-id": "c8321689-865f-428d-8a4c-43935bef94d2", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "c8321689-865f-428d-8a4c-43935bef94d2", + "x-ms-routing-request-id": "WESTUS2:20210721T172203Z:c8321689-865f-428d-8a4c-43935bef94d2" }, "ResponseBody": [] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-7181?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-24691?api-version=2019-10-01", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d706d831da46c64287565da78ef3f508-820e88975bfcc147-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bd65965352a14b7a430bd65a9fe4b13d", + "traceparent": "00-453e23fb842cb04196b0bc8d1ab84a69-9abb6a1083dcaf47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7847bc4d86ea10debfe36b464c48f44e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "103", + "Content-Length": "104", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:03 GMT", + "Date": "Wed, 21 Jul 2021 17:22:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a64cc46d-f0fe-48cd-9c1e-56043cebef3b", + "x-ms-correlation-request-id": "011788c2-ea83-4d41-b0bb-f04a125ddf7a", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "a64cc46d-f0fe-48cd-9c1e-56043cebef3b", - "x-ms-routing-request-id": "WESTUS:20210712T223504Z:a64cc46d-f0fe-48cd-9c1e-56043cebef3b" + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "011788c2-ea83-4d41-b0bb-f04a125ddf7a", + "x-ms-routing-request-id": "WESTUS2:20210721T172203Z:011788c2-ea83-4d41-b0bb-f04a125ddf7a" }, "ResponseBody": [] } ], "Variables": { - "RandomSeed": "1776805903", + "RandomSeed": "1388357385", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionContainerTests/DoesExist().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists().json similarity index 52% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionContainerTests/DoesExist().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists().json index f58db0f07e63..c28fa3abf048 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionContainerTests/DoesExist().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists().json @@ -1,41 +1,42 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", + "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.Core/1.0.0-alpha.20210517.1", - "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "954da0f85ddc5ae1bcc1678755774e2d", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "276fbbe0798c4f2b72096af8059fed8d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "403", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 08:56:01 GMT", + "Date": "Wed, 21 Jul 2021 17:22:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efdaab89-1aff-4a26-838b-8bbc868b1c27", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "efdaab89-1aff-4a26-838b-8bbc868b1c27", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210517T085602Z:efdaab89-1aff-4a26-838b-8bbc868b1c27" + "x-ms-correlation-request-id": "ac16e260-cb68-4f24-bd61-378085eca005", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "ac16e260-cb68-4f24-bd61-378085eca005", + "x-ms-routing-request-id": "WESTUS2:20210721T172208Z:ac16e260-cb68-4f24-bd61-378085eca005" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -50,12 +51,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2b1a917e14180b419886b5f95016da47-0d01fc0eed9f3e4a-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210517.1", - "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "a91890e152474b8fe320118c804c404b", + "traceparent": "00-8f6957a7dddbcb43a9cb4d5188f78e28-42a1b992b151864e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cc630670efd277e717ef8e413c75ea35", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -64,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "129", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 08:56:01 GMT", + "Date": "Wed, 21 Jul 2021 17:22:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43994261-553b-472a-a42e-107efa2c0769", + "x-ms-correlation-request-id": "fe96da2a-1081-466d-b12f-5759fc921dfd", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "43994261-553b-472a-a42e-107efa2c0769", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210517T085602Z:43994261-553b-472a-a42e-107efa2c0769" + "x-ms-request-id": "fe96da2a-1081-466d-b12f-5759fc921dfd", + "x-ms-routing-request-id": "WESTUS2:20210721T172208Z:fe96da2a-1081-466d-b12f-5759fc921dfd" }, "ResponseBody": { "error": { @@ -82,42 +80,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", + "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-6c24b4917f4dfc4e853bd6cbdda4fa42-7f26ee9d67083e47-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210517.1", - "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "b3da44e501409210956d011334e3a30b", + "traceparent": "00-1e4224b99f1daa4abd4523b8014c8c7d-40cc645cc871e346-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "89ec8bc3873e721f91d9fab6256fb885", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "403", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 08:56:01 GMT", + "Date": "Wed, 21 Jul 2021 17:22:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "492d6c44-e39c-447e-8425-7c04d8a87e8c", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "492d6c44-e39c-447e-8425-7c04d8a87e8c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210517T085602Z:492d6c44-e39c-447e-8425-7c04d8a87e8c" + "x-ms-correlation-request-id": "38ad480e-581e-4bde-88cd-b8883728f48c", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "38ad480e-581e-4bde-88cd-b8883728f48c", + "x-ms-routing-request-id": "WESTUS2:20210721T172208Z:38ad480e-581e-4bde-88cd-b8883728f48c" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -128,7 +127,8 @@ } ], "Variables": { - "RandomSeed": "615415797", - "SUBSCRIPTION_ID": "0accec26-d6de-4757-8e74-d080f38eaaab" + "RandomSeed": "702366739", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionContainerTests/DoesExist()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists()Async.json similarity index 52% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionContainerTests/DoesExist()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists()Async.json index 2c94e3559018..74bb58560c57 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionContainerTests/DoesExist()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists()Async.json @@ -1,41 +1,42 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", + "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.Core/1.0.0-alpha.20210517.1", - "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "6d4d06e07879edd54803f4f7c30212b5", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7e0577636c638b7c9318cc0499ffecdd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "403", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 08:56:39 GMT", + "Date": "Wed, 21 Jul 2021 17:22:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca062cdf-cf15-4404-99c3-aabb615c1596", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "ca062cdf-cf15-4404-99c3-aabb615c1596", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210517T085640Z:ca062cdf-cf15-4404-99c3-aabb615c1596" + "x-ms-correlation-request-id": "f124406f-67df-4541-9ae2-dfdd76aa3712", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "f124406f-67df-4541-9ae2-dfdd76aa3712", + "x-ms-routing-request-id": "WESTUS2:20210721T172208Z:f124406f-67df-4541-9ae2-dfdd76aa3712" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -50,12 +51,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-53c24e295893f14498a19838b7dad36c-b6e96189acb29042-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210517.1", - "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "967edcb9df34ccc76c84a3cf54e20e27", + "traceparent": "00-6b917d30c975214687676f0ecd66650f-212ff00fd7383046-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b56de7d6fbab1311ce4c014fbed781bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -64,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "129", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 08:56:39 GMT", + "Date": "Wed, 21 Jul 2021 17:22:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "858f343c-5137-46c3-b6ba-bb65ac6f6c0a", + "x-ms-correlation-request-id": "30c72044-f68b-4cd1-a50c-8063aad5d330", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "858f343c-5137-46c3-b6ba-bb65ac6f6c0a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210517T085640Z:858f343c-5137-46c3-b6ba-bb65ac6f6c0a" + "x-ms-request-id": "30c72044-f68b-4cd1-a50c-8063aad5d330", + "x-ms-routing-request-id": "WESTUS2:20210721T172208Z:30c72044-f68b-4cd1-a50c-8063aad5d330" }, "ResponseBody": { "error": { @@ -82,42 +80,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", + "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-4971231a259f0f44be175f01c612ebd1-9da1f2c1a9eace45-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210517.1", - "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "e7dce1e0e7a6229c64685e8517e432f3", + "traceparent": "00-4e20701c05a98e47accd3f34bf06ec22-8bdcfe2c1215c74e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f6bcf4a6bb2961d220767ee06d13d64f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "403", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 08:56:39 GMT", + "Date": "Wed, 21 Jul 2021 17:22:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ecf58bba-9a69-4ebb-87b6-e61dfb38b13b", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "ecf58bba-9a69-4ebb-87b6-e61dfb38b13b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210517T085640Z:ecf58bba-9a69-4ebb-87b6-e61dfb38b13b" + "x-ms-correlation-request-id": "dd8e285a-efbc-4899-ac0c-0057daf9a3e2", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "dd8e285a-efbc-4899-ac0c-0057daf9a3e2", + "x-ms-routing-request-id": "WESTUS2:20210721T172208Z:dd8e285a-efbc-4899-ac0c-0057daf9a3e2" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -128,7 +127,8 @@ } ], "Variables": { - "RandomSeed": "2103169327", - "SUBSCRIPTION_ID": "0accec26-d6de-4757-8e74-d080f38eaaab" + "RandomSeed": "156632161", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file