diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/api/Azure.ResourceManager.TrafficManager.netstandard2.0.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/api/Azure.ResourceManager.TrafficManager.netstandard2.0.cs index 3d82776ad768..fa041fe17447 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/api/Azure.ResourceManager.TrafficManager.netstandard2.0.cs +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/api/Azure.ResourceManager.TrafficManager.netstandard2.0.cs @@ -18,6 +18,7 @@ protected TrafficManagerEndpointCollection() { } public partial class TrafficManagerEndpointData : Azure.ResourceManager.TrafficManager.Models.TrafficManagerProxyResourceData { public TrafficManagerEndpointData() { } + public Azure.ResourceManager.TrafficManager.Models.AlwaysServe? AlwaysServe { get { throw null; } set { } } public System.Collections.Generic.IList CustomHeaders { get { throw null; } } public string EndpointLocation { get { throw null; } set { } } public Azure.ResourceManager.TrafficManager.Models.TrafficManagerEndpointMonitorStatus? EndpointMonitorStatus { get { throw null; } set { } } @@ -199,6 +200,24 @@ namespace Azure.ResourceManager.TrafficManager.Models public static bool operator !=(Azure.ResourceManager.TrafficManager.Models.AllowedEndpointRecordType left, Azure.ResourceManager.TrafficManager.Models.AllowedEndpointRecordType right) { throw null; } public override string ToString() { throw null; } } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct AlwaysServe : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public AlwaysServe(string value) { throw null; } + public static Azure.ResourceManager.TrafficManager.Models.AlwaysServe Disabled { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.AlwaysServe Enabled { get { throw null; } } + public bool Equals(Azure.ResourceManager.TrafficManager.Models.AlwaysServe other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.ResourceManager.TrafficManager.Models.AlwaysServe left, Azure.ResourceManager.TrafficManager.Models.AlwaysServe right) { throw null; } + public static implicit operator Azure.ResourceManager.TrafficManager.Models.AlwaysServe (string value) { throw null; } + public static bool operator !=(Azure.ResourceManager.TrafficManager.Models.AlwaysServe left, Azure.ResourceManager.TrafficManager.Models.AlwaysServe right) { throw null; } + public override string ToString() { throw null; } + } public partial class ExpectedStatusCodeRangeInfo { public ExpectedStatusCodeRangeInfo() { } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/Models/AlwaysServe.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/Models/AlwaysServe.cs new file mode 100644 index 000000000000..5355a3c18866 --- /dev/null +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/Models/AlwaysServe.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.ComponentModel; + +namespace Azure.ResourceManager.TrafficManager.Models +{ + /// If Always Serve is enabled, probing for endpoint health will be disabled and endpoints will be included in the traffic routing method. + public readonly partial struct AlwaysServe : IEquatable + { + private readonly string _value; + + /// Initializes a new instance of . + /// is null. + public AlwaysServe(string value) + { + _value = value ?? throw new ArgumentNullException(nameof(value)); + } + + private const string EnabledValue = "Enabled"; + private const string DisabledValue = "Disabled"; + + /// Enabled. + public static AlwaysServe Enabled { get; } = new AlwaysServe(EnabledValue); + /// Disabled. + public static AlwaysServe Disabled { get; } = new AlwaysServe(DisabledValue); + /// Determines if two values are the same. + public static bool operator ==(AlwaysServe left, AlwaysServe right) => left.Equals(right); + /// Determines if two values are not the same. + public static bool operator !=(AlwaysServe left, AlwaysServe right) => !left.Equals(right); + /// Converts a string to a . + public static implicit operator AlwaysServe(string value) => new AlwaysServe(value); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is AlwaysServe other && Equals(other); + /// + public bool Equals(AlwaysServe other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value?.GetHashCode() ?? 0; + /// + public override string ToString() => _value; + } +} diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/Models/TrafficManagerEndpointData.Serialization.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/Models/TrafficManagerEndpointData.Serialization.cs index 239569ac78cf..e558ad5cb921 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/Models/TrafficManagerEndpointData.Serialization.cs +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/Models/TrafficManagerEndpointData.Serialization.cs @@ -135,6 +135,11 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) } writer.WriteEndArray(); } + if (Optional.IsDefined(AlwaysServe)) + { + writer.WritePropertyName("alwaysServe"); + writer.WriteStringValue(AlwaysServe.Value.ToString()); + } writer.WriteEndObject(); writer.WriteEndObject(); } @@ -157,6 +162,7 @@ internal static TrafficManagerEndpointData DeserializeTrafficManagerEndpointData Optional> geoMapping = default; Optional> subnets = default; Optional> customHeaders = default; + Optional alwaysServe = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("id")) @@ -328,11 +334,21 @@ internal static TrafficManagerEndpointData DeserializeTrafficManagerEndpointData customHeaders = array; continue; } + if (property0.NameEquals("alwaysServe")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + alwaysServe = new AlwaysServe(property0.Value.GetString()); + continue; + } } continue; } } - return new TrafficManagerEndpointData(id.Value, name.Value, Optional.ToNullable(type), targetResourceId.Value, target.Value, Optional.ToNullable(endpointStatus), Optional.ToNullable(weight), Optional.ToNullable(priority), endpointLocation.Value, Optional.ToNullable(endpointMonitorStatus), Optional.ToNullable(minChildEndpoints), Optional.ToNullable(minChildEndpointsIPv4), Optional.ToNullable(minChildEndpointsIPv6), Optional.ToList(geoMapping), Optional.ToList(subnets), Optional.ToList(customHeaders)); + return new TrafficManagerEndpointData(id.Value, name.Value, Optional.ToNullable(type), targetResourceId.Value, target.Value, Optional.ToNullable(endpointStatus), Optional.ToNullable(weight), Optional.ToNullable(priority), endpointLocation.Value, Optional.ToNullable(endpointMonitorStatus), Optional.ToNullable(minChildEndpoints), Optional.ToNullable(minChildEndpointsIPv4), Optional.ToNullable(minChildEndpointsIPv6), Optional.ToList(geoMapping), Optional.ToList(subnets), Optional.ToList(customHeaders), Optional.ToNullable(alwaysServe)); } } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/EndpointsRestOperations.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/EndpointsRestOperations.cs index 1b2d6f230857..0dc982dde27b 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/EndpointsRestOperations.cs +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/EndpointsRestOperations.cs @@ -32,7 +32,7 @@ public EndpointsRestOperations(HttpPipeline pipeline, string applicationId, Uri { _pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); _endpoint = endpoint ?? new Uri("https://management.azure.com"); - _apiVersion = apiVersion ?? "2018-08-01"; + _apiVersion = apiVersion ?? "2022-04-01-preview"; _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } @@ -65,10 +65,10 @@ internal HttpMessage CreateUpdateRequest(string subscriptionId, string resourceG } /// Update a Traffic Manager endpoint. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager endpoint to be updated. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. - /// The type of the Traffic Manager endpoint to be updated. + /// The type of the Traffic Manager endpoint to be updated. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint to be updated. /// The Traffic Manager endpoint parameters supplied to the Update operation. /// The cancellation token to use. @@ -100,10 +100,10 @@ public async Task> UpdateAsync(string subsc } /// Update a Traffic Manager endpoint. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager endpoint to be updated. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. - /// The type of the Traffic Manager endpoint to be updated. + /// The type of the Traffic Manager endpoint to be updated. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint to be updated. /// The Traffic Manager endpoint parameters supplied to the Update operation. /// The cancellation token to use. @@ -159,10 +159,10 @@ internal HttpMessage CreateGetRequest(string subscriptionId, string resourceGrou } /// Gets a Traffic Manager endpoint. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager endpoint. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. - /// The type of the Traffic Manager endpoint. + /// The type of the Traffic Manager endpoint. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint. /// The cancellation token to use. /// , , , or is null. @@ -194,10 +194,10 @@ public async Task> GetAsync(string subscrip } /// Gets a Traffic Manager endpoint. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager endpoint. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. - /// The type of the Traffic Manager endpoint. + /// The type of the Traffic Manager endpoint. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint. /// The cancellation token to use. /// , , , or is null. @@ -257,10 +257,10 @@ internal HttpMessage CreateCreateOrUpdateRequest(string subscriptionId, string r } /// Create or update a Traffic Manager endpoint. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager endpoint to be created or updated. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. - /// The type of the Traffic Manager endpoint to be created or updated. + /// The type of the Traffic Manager endpoint to be created or updated. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint to be created or updated. /// The Traffic Manager endpoint parameters supplied to the CreateOrUpdate operation. /// The cancellation token to use. @@ -293,10 +293,10 @@ public async Task> CreateOrUpdateAsync(stri } /// Create or update a Traffic Manager endpoint. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager endpoint to be created or updated. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. - /// The type of the Traffic Manager endpoint to be created or updated. + /// The type of the Traffic Manager endpoint to be created or updated. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint to be created or updated. /// The Traffic Manager endpoint parameters supplied to the CreateOrUpdate operation. /// The cancellation token to use. @@ -353,10 +353,10 @@ internal HttpMessage CreateDeleteRequest(string subscriptionId, string resourceG } /// Deletes a Traffic Manager endpoint. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager endpoint to be deleted. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. - /// The type of the Traffic Manager endpoint to be deleted. + /// The type of the Traffic Manager endpoint to be deleted. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint to be deleted. /// The cancellation token to use. /// , , , or is null. @@ -382,10 +382,10 @@ public async Task DeleteAsync(string subscriptionId, string resourceGr } /// Deletes a Traffic Manager endpoint. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager endpoint to be deleted. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. - /// The type of the Traffic Manager endpoint to be deleted. + /// The type of the Traffic Manager endpoint to be deleted. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint to be deleted. /// The cancellation token to use. /// , , , or is null. diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/GeographicHierarchiesRestOperations.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/GeographicHierarchiesRestOperations.cs index 6346d30a0d59..06bb1c95fdcf 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/GeographicHierarchiesRestOperations.cs +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/GeographicHierarchiesRestOperations.cs @@ -32,7 +32,7 @@ public GeographicHierarchiesRestOperations(HttpPipeline pipeline, string applica { _pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); _endpoint = endpoint ?? new Uri("https://management.azure.com"); - _apiVersion = apiVersion ?? "2018-08-01"; + _apiVersion = apiVersion ?? "2022-04-01-preview"; _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/HeatMapRestOperations.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/HeatMapRestOperations.cs index 61b3ace7a5bb..1dbc4e5ed1af 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/HeatMapRestOperations.cs +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/HeatMapRestOperations.cs @@ -34,7 +34,7 @@ public HeatMapRestOperations(HttpPipeline pipeline, string applicationId, Uri en { _pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); _endpoint = endpoint ?? new Uri("https://management.azure.com"); - _apiVersion = apiVersion ?? "2018-08-01"; + _apiVersion = apiVersion ?? "2022-04-01-preview"; _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } @@ -69,8 +69,8 @@ internal HttpMessage CreateGetRequest(string subscriptionId, string resourceGrou } /// Gets latest heatmap for Traffic Manager profile. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager endpoint. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. /// The type of HeatMap for the Traffic Manager profile. /// The top left latitude,longitude pair of the rectangular viewport to query for. @@ -103,8 +103,8 @@ public async Task> GetAsync(string subscript } /// Gets latest heatmap for Traffic Manager profile. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager endpoint. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. /// The type of HeatMap for the Traffic Manager profile. /// The top left latitude,longitude pair of the rectangular viewport to query for. diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/ProfilesRestOperations.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/ProfilesRestOperations.cs index cc1b0c3bad89..954d7f0ca5e9 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/ProfilesRestOperations.cs +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/ProfilesRestOperations.cs @@ -33,7 +33,7 @@ public ProfilesRestOperations(HttpPipeline pipeline, string applicationId, Uri e { _pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); _endpoint = endpoint ?? new Uri("https://management.azure.com"); - _apiVersion = apiVersion ?? "2018-08-01"; + _apiVersion = apiVersion ?? "2022-04-01-preview"; _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } @@ -124,8 +124,8 @@ internal HttpMessage CreateListByResourceGroupRequest(string subscriptionId, str } /// Lists all Traffic Manager profiles within a resource group. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager profiles to be listed. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The cancellation token to use. /// or is null. /// or is an empty string, and was expected to be non-empty. @@ -151,8 +151,8 @@ public async Task> ListByResourceGroup } /// Lists all Traffic Manager profiles within a resource group. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager profiles to be listed. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The cancellation token to use. /// or is null. /// or is an empty string, and was expected to be non-empty. @@ -195,7 +195,7 @@ internal HttpMessage CreateListBySubscriptionRequest(string subscriptionId) } /// Lists all Traffic Manager profiles within a subscription. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + /// The ID of the target subscription. /// The cancellation token to use. /// is null. /// is an empty string, and was expected to be non-empty. @@ -220,7 +220,7 @@ public async Task> ListBySubscriptionA } /// Lists all Traffic Manager profiles within a subscription. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + /// The ID of the target subscription. /// The cancellation token to use. /// is null. /// is an empty string, and was expected to be non-empty. @@ -265,8 +265,8 @@ internal HttpMessage CreateGetRequest(string subscriptionId, string resourceGrou } /// Gets a Traffic Manager profile. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager profile. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. /// The cancellation token to use. /// , or is null. @@ -296,8 +296,8 @@ public async Task> GetAsync(string subscript } /// Gets a Traffic Manager profile. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager profile. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. /// The cancellation token to use. /// , or is null. @@ -351,8 +351,8 @@ internal HttpMessage CreateCreateOrUpdateRequest(string subscriptionId, string r } /// Create or update a Traffic Manager profile. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager profile. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. /// The Traffic Manager profile parameters supplied to the CreateOrUpdate operation. /// The cancellation token to use. @@ -383,8 +383,8 @@ public async Task> CreateOrUpdateAsync(strin } /// Create or update a Traffic Manager profile. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager profile. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. /// The Traffic Manager profile parameters supplied to the CreateOrUpdate operation. /// The cancellation token to use. @@ -435,8 +435,8 @@ internal HttpMessage CreateDeleteRequest(string subscriptionId, string resourceG } /// Deletes a Traffic Manager profile. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager profile to be deleted. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile to be deleted. /// The cancellation token to use. /// , or is null. @@ -460,8 +460,8 @@ public async Task DeleteAsync(string subscriptionId, string resourceGr } /// Deletes a Traffic Manager profile. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager profile to be deleted. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile to be deleted. /// The cancellation token to use. /// , or is null. @@ -509,8 +509,8 @@ internal HttpMessage CreateUpdateRequest(string subscriptionId, string resourceG } /// Update a Traffic Manager profile. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager profile. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. /// The Traffic Manager profile parameters supplied to the Update operation. /// The cancellation token to use. @@ -540,8 +540,8 @@ public async Task> UpdateAsync(string subscr } /// Update a Traffic Manager profile. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - /// The name of the resource group containing the Traffic Manager profile. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. /// The name of the Traffic Manager profile. /// The Traffic Manager profile parameters supplied to the Update operation. /// The cancellation token to use. diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/TrafficManagerUserMetricsKeysRestOperations.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/TrafficManagerUserMetricsKeysRestOperations.cs index 0fc8ec194ea2..03811ed370ed 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/TrafficManagerUserMetricsKeysRestOperations.cs +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/RestOperations/TrafficManagerUserMetricsKeysRestOperations.cs @@ -32,12 +32,12 @@ public TrafficManagerUserMetricsKeysRestOperations(HttpPipeline pipeline, string { _pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); _endpoint = endpoint ?? new Uri("https://management.azure.com"); - _apiVersion = apiVersion ?? "2018-08-01"; + _apiVersion = apiVersion ?? "2022-04-01-preview"; _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } /// Get the subscription-level key used for Real User Metrics collection. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + /// The ID of the target subscription. /// The cancellation token to use. /// is null. /// is an empty string, and was expected to be non-empty. @@ -64,7 +64,7 @@ public async Task> GetAsync(string subscr } /// Get the subscription-level key used for Real User Metrics collection. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + /// The ID of the target subscription. /// The cancellation token to use. /// is null. /// is an empty string, and was expected to be non-empty. @@ -91,7 +91,7 @@ public Response Get(string subscriptionId, Cancell } /// Create or update a subscription-level key used for Real User Metrics collection. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + /// The ID of the target subscription. /// The cancellation token to use. /// is null. /// is an empty string, and was expected to be non-empty. @@ -116,7 +116,7 @@ public async Task> CreateOrUpdateAsync(st } /// Create or update a subscription-level key used for Real User Metrics collection. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + /// The ID of the target subscription. /// The cancellation token to use. /// is null. /// is an empty string, and was expected to be non-empty. @@ -141,7 +141,7 @@ public Response CreateOrUpdate(string subscription } /// Delete a subscription-level key used for Real User Metrics collection. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + /// The ID of the target subscription. /// The cancellation token to use. /// is null. /// is an empty string, and was expected to be non-empty. @@ -161,7 +161,7 @@ public async Task DeleteAsync(string subscriptionId, CancellationToken } /// Delete a subscription-level key used for Real User Metrics collection. - /// Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + /// The ID of the target subscription. /// The cancellation token to use. /// is null. /// is an empty string, and was expected to be non-empty. diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/TrafficManagerEndpointCollection.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/TrafficManagerEndpointCollection.cs index 525cf1885fc3..00dffe08cee4 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/TrafficManagerEndpointCollection.cs +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/TrafficManagerEndpointCollection.cs @@ -56,7 +56,7 @@ internal static void ValidateResourceId(ResourceIdentifier id) /// Operation Id: Endpoints_CreateOrUpdate /// /// if the method should wait to return until the long-running operation has completed on the service; if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples. - /// The type of the Traffic Manager endpoint to be created or updated. + /// The type of the Traffic Manager endpoint to be created or updated. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint to be created or updated. /// The Traffic Manager endpoint parameters supplied to the CreateOrUpdate operation. /// The cancellation token to use. @@ -91,7 +91,7 @@ public virtual async Task> CreateOr /// Operation Id: Endpoints_CreateOrUpdate /// /// if the method should wait to return until the long-running operation has completed on the service; if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples. - /// The type of the Traffic Manager endpoint to be created or updated. + /// The type of the Traffic Manager endpoint to be created or updated. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint to be created or updated. /// The Traffic Manager endpoint parameters supplied to the CreateOrUpdate operation. /// The cancellation token to use. @@ -125,7 +125,7 @@ public virtual ArmOperation CreateOrUpdate(WaitU /// Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles/{profileName}/{endpointType}/{endpointName} /// Operation Id: Endpoints_Get /// - /// The type of the Traffic Manager endpoint. + /// The type of the Traffic Manager endpoint. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint. /// The cancellation token to use. /// or is an empty string, and was expected to be non-empty. @@ -156,7 +156,7 @@ public virtual async Task> GetAsync(str /// Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles/{profileName}/{endpointType}/{endpointName} /// Operation Id: Endpoints_Get /// - /// The type of the Traffic Manager endpoint. + /// The type of the Traffic Manager endpoint. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint. /// The cancellation token to use. /// or is an empty string, and was expected to be non-empty. @@ -187,7 +187,7 @@ public virtual Response Get(string endpointType, /// Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles/{profileName}/{endpointType}/{endpointName} /// Operation Id: Endpoints_Get /// - /// The type of the Traffic Manager endpoint. + /// The type of the Traffic Manager endpoint. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint. /// The cancellation token to use. /// or is an empty string, and was expected to be non-empty. @@ -216,7 +216,7 @@ public virtual async Task> ExistsAsync(string endpointType, strin /// Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles/{profileName}/{endpointType}/{endpointName} /// Operation Id: Endpoints_Get /// - /// The type of the Traffic Manager endpoint. + /// The type of the Traffic Manager endpoint. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint. /// The cancellation token to use. /// or is an empty string, and was expected to be non-empty. diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/TrafficManagerEndpointData.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/TrafficManagerEndpointData.cs index 33da919d1900..211832bf45e8 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/TrafficManagerEndpointData.cs +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/TrafficManagerEndpointData.cs @@ -39,7 +39,8 @@ public TrafficManagerEndpointData() /// The list of countries/regions mapped to this endpoint when using the 'Geographic' traffic routing method. Please consult Traffic Manager Geographic documentation for a full list of accepted values. /// The list of subnets, IP addresses, and/or address ranges mapped to this endpoint when using the 'Subnet' traffic routing method. An empty list will match all ranges not covered by other endpoints. /// List of custom headers. - internal TrafficManagerEndpointData(ResourceIdentifier id, string name, ResourceType? resourceType, ResourceIdentifier targetResourceId, string target, TrafficManagerEndpointStatus? endpointStatus, long? weight, long? priority, string endpointLocation, TrafficManagerEndpointMonitorStatus? endpointMonitorStatus, long? minChildEndpoints, long? minChildEndpointsIPv4, long? minChildEndpointsIPv6, IList geoMapping, IList subnets, IList customHeaders) : base(id, name, resourceType) + /// If Always Serve is enabled, probing for endpoint health will be disabled and endpoints will be included in the traffic routing method. + internal TrafficManagerEndpointData(ResourceIdentifier id, string name, ResourceType? resourceType, ResourceIdentifier targetResourceId, string target, TrafficManagerEndpointStatus? endpointStatus, long? weight, long? priority, string endpointLocation, TrafficManagerEndpointMonitorStatus? endpointMonitorStatus, long? minChildEndpoints, long? minChildEndpointsIPv4, long? minChildEndpointsIPv6, IList geoMapping, IList subnets, IList customHeaders, AlwaysServe? alwaysServe) : base(id, name, resourceType) { TargetResourceId = targetResourceId; Target = target; @@ -54,6 +55,7 @@ internal TrafficManagerEndpointData(ResourceIdentifier id, string name, Resource GeoMapping = geoMapping; Subnets = subnets; CustomHeaders = customHeaders; + AlwaysServe = alwaysServe; } /// The Azure Resource URI of the of the endpoint. Not applicable to endpoints of type 'ExternalEndpoints'. @@ -82,5 +84,7 @@ internal TrafficManagerEndpointData(ResourceIdentifier id, string name, Resource public IList Subnets { get; } /// List of custom headers. public IList CustomHeaders { get; } + /// If Always Serve is enabled, probing for endpoint health will be disabled and endpoints will be included in the traffic routing method. + public AlwaysServe? AlwaysServe { get; set; } } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/TrafficManagerProfileResource.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/TrafficManagerProfileResource.cs index ac672d8c1faf..c3da8d6bb42f 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/TrafficManagerProfileResource.cs +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/TrafficManagerProfileResource.cs @@ -101,7 +101,7 @@ public virtual TrafficManagerEndpointCollection GetTrafficManagerEndpoints() /// Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles/{profileName}/{endpointType}/{endpointName} /// Operation Id: Endpoints_Get /// - /// The type of the Traffic Manager endpoint. + /// The type of the Traffic Manager endpoint. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint. /// The cancellation token to use. /// or is an empty string, and was expected to be non-empty. @@ -117,7 +117,7 @@ public virtual async Task> GetTrafficMa /// Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles/{profileName}/{endpointType}/{endpointName} /// Operation Id: Endpoints_Get /// - /// The type of the Traffic Manager endpoint. + /// The type of the Traffic Manager endpoint. Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here. /// The name of the Traffic Manager endpoint. /// The cancellation token to use. /// or is an empty string, and was expected to be non-empty. diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/autorest.md b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/autorest.md index d6bc7e648ea4..16c9bdb44264 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/autorest.md +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/autorest.md @@ -8,7 +8,7 @@ azure-arm: true csharp: true library-name: TrafficManager namespace: Azure.ResourceManager.TrafficManager -require: https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/trafficmanager/resource-manager/readme.md +require: https://github.com/Azure/azure-rest-api-specs/blob/5fc05d0f0b15cbf16de942cadce464b495c66a58/specification/trafficmanager/resource-manager/readme.md output-folder: $(this-folder)/Generated clear-output-folder: true skip-csproj: true @@ -98,6 +98,13 @@ directive: where: $.paths..delete.responses["200"] transform: > delete $["schema"] + - from: trafficmanager.json + where: $.paths["/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles/{profileName}/{endpointType}/{endpointName}"]..parameters[2] + transform: + delete $["enum"]; + delete $["x-ms-enum"]; + $["description"] = $["description"] + " Only AzureEndpoints, ExternalEndpoints and NestedEndpoints are allowed here." + reason: The path parameter endpointType is defined as string in stable version, we can't change it to an enumeration. #TODO: excluding since the following REST endpoints do not have GetAll method. #TODO: e.g. The EndpointCollection (RequestPath: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles/{profileName}/{endpointType}/{endpointName}) does not have a GetAll method diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/CreateTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/CreateTest.json index 91d5f6acd4dc..8a758f6db8d9 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/CreateTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/CreateTest.json @@ -1,48 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Connection": "keep-alive", - "traceparent": "00-343166a2764d604d8fdb4204c808b245-7a49162a50f46140-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8d2af364c4a78da6eebb176001ab0f8d", + "traceparent": "00-36767d2647a3455e0634f52bfdc8f5b3-3eeecb92bbd0bf05-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3b023510b934c59ae4fe7a97a5e2f0fb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:01 GMT", + "Date": "Tue, 15 Nov 2022 12:14:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf25eaab-c739-4657-9e77-7d292e206d42", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "bf25eaab-c739-4657-9e77-7d292e206d42", - "x-ms-routing-request-id": "WESTUS2:20220803T044801Z:bf25eaab-c739-4657-9e77-7d292e206d42" + "x-ms-correlation-request-id": "81a6561e-9e46-4eac-8dc6-838b458bf454", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "81a6561e-9e46-4eac-8dc6-838b458bf454", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121407Z:81a6561e-9e46-4eac-8dc6-838b458bf454" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -52,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName445?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName578?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-3fb2a4ca4f2e364fa546404ca7a48cee-3c5ea42d697a9443-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f2bfe90d7a979a294525c15246a70b18", + "traceparent": "00-3e295371923acac83cd7444b9cd1d74a-b2c305f951b8b407-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f012a137fdb302a28a4b060832606829", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -72,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:02 GMT", + "Date": "Tue, 15 Nov 2022 12:14:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a52c6aa7-94b0-4b2d-8f4c-2944d32276aa", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "a52c6aa7-94b0-4b2d-8f4c-2944d32276aa", - "x-ms-routing-request-id": "WESTUS2:20220803T044802Z:a52c6aa7-94b0-4b2d-8f4c-2944d32276aa" + "x-ms-correlation-request-id": "ea8a68cd-3f76-42fd-b1b7-38ee7b4b5274", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "ea8a68cd-3f76-42fd-b1b7-38ee7b4b5274", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121410Z:ea8a68cd-3f76-42fd-b1b7-38ee7b4b5274" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName445", - "name": "resourceGroupName445", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName578", + "name": "resourceGroupName578", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -93,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName445/providers/Microsoft.Network/trafficmanagerprofiles/profileName9919?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName578/providers/Microsoft.Network/trafficmanagerprofiles/profileName5405?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-be95ebc014ce5c4d894768438f60bc01-4d40422166eee648-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "423d3f5323ecbbca04d7ac3b7dcd6055", + "traceparent": "00-1c46e5d8d53c61ac07022ca807f773c3-99c57dce05dd9ea4-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "42e35c4315d443a5d654ba5485b1597f", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName9919", + "name": "profileName5405", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName9919" + "relativeName": "profileName5405" }, "monitorConfig": { "protocol": "HTTP", @@ -141,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1870", + "Content-Length": "1920", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:04 GMT", + "Date": "Tue, 15 Nov 2022 12:14:14 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07d5b15e-a4db-4400-a46e-65e188043d26", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "423d3f53-23ec-bbca-04d7-ac3b7dcd6055", - "x-ms-routing-request-id": "WESTUS2:20220803T044805Z:07d5b15e-a4db-4400-a46e-65e188043d26", + "x-ms-correlation-request-id": "1ff69e20-f6b0-4395-9072-7ecf742a25d5", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4499", + "x-ms-request-id": "42e35c43-15d4-43a5-d654-ba5485b1597f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121415Z:1ff69e20-f6b0-4395-9072-7ecf742a25d5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname445/providers/Microsoft.Network/trafficManagerProfiles/profileName9919", - "name": "profileName9919", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname578/providers/Microsoft.Network/trafficManagerProfiles/profileName5405", + "name": "profileName5405", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9919", - "fqdn": "profilename9919.trafficmanager.net", + "relativeName": "profilename5405", + "fqdn": "profilename5405.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -178,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname445/providers/Microsoft.Network/trafficManagerProfiles/profileName9919/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname578/providers/Microsoft.Network/trafficManagerProfiles/profileName5405/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -191,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname445/providers/Microsoft.Network/trafficManagerProfiles/profileName9919/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname578/providers/Microsoft.Network/trafficManagerProfiles/profileName5405/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -208,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -218,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName445/providers/Microsoft.Network/trafficmanagerprofiles/profileName9919?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName578/providers/Microsoft.Network/trafficmanagerprofiles/profileName5405?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fe78d107badd404f9bde21b5c0b90964-5f2b7b232268724c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0e3d3cbafb5778cd00f3629fe53aa713", + "traceparent": "00-1594bb05cea7fa8d2b11e9f5e6d84f25-7e523e2012be1bbf-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6e7f8337c029385d6039a96d93bdb19d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1880", + "Content-Length": "1930", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:05 GMT", + "Date": "Tue, 15 Nov 2022 12:14:15 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c12d2302-22dc-424a-91e4-f72054e254b8", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "0e3d3cba-fb57-78cd-00f3-629fe53aa713", - "x-ms-routing-request-id": "WESTUS2:20220803T044805Z:c12d2302-22dc-424a-91e4-f72054e254b8", + "x-ms-correlation-request-id": "480b2c4a-f9e7-4782-8f36-c7a22b47a117", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1999", + "x-ms-request-id": "6e7f8337-c029-385d-6039-a96d93bdb19d", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121415Z:480b2c4a-f9e7-4782-8f36-c7a22b47a117", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname445/providers/Microsoft.Network/trafficManagerProfiles/profileName9919", - "name": "profileName9919", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname578/providers/Microsoft.Network/trafficManagerProfiles/profileName5405", + "name": "profileName5405", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -255,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9919", - "fqdn": "profilename9919.trafficmanager.net", + "relativeName": "profilename5405", + "fqdn": "profilename5405.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -270,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname445/providers/Microsoft.Network/trafficManagerProfiles/profileName9919/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname578/providers/Microsoft.Network/trafficManagerProfiles/profileName5405/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -283,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname445/providers/Microsoft.Network/trafficManagerProfiles/profileName9919/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname578/providers/Microsoft.Network/trafficManagerProfiles/profileName5405/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -300,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -310,16 +305,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname445/providers/Microsoft.Network/trafficmanagerprofiles/profileName9919/externalEndpoints/anotherEndpoint?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname578/providers/Microsoft.Network/trafficmanagerprofiles/profileName5405/externalEndpoints/anotherEndpoint?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "174", "Content-Type": "application/json", - "traceparent": "00-a7c071de017ce54586203357170e29df-f9ef7072d4fe2546-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6bad480c4bd2e9551e03edc0ceee1c78", + "traceparent": "00-8923147a6a896fa21e352f116380092a-3b947a77a7cc9a0c-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "86616d12b90c2227fbce1a5e424d7cd9", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -333,21 +328,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "596", + "Content-Length": "621", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:05 GMT", + "Date": "Tue, 15 Nov 2022 12:14:16 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "373f4feb-98a5-4eb9-be64-bbd3d69da198", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "6bad480c-4bd2-e955-1e03-edc0ceee1c78", - "x-ms-routing-request-id": "WESTUS2:20220803T044805Z:373f4feb-98a5-4eb9-be64-bbd3d69da198", + "x-ms-correlation-request-id": "5140ced0-d76a-4b85-8e64-4d6cd909fa7d", + "x-ms-ratelimit-remaining-subscription-resource-requests": "249", + "x-ms-request-id": "86616d12-b90c-2227-fbce-1a5e424d7cd9", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121417Z:5140ced0-d76a-4b85-8e64-4d6cd909fa7d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname445/providers/Microsoft.Network/trafficManagerProfiles/profileName9919/externalEndpoints/anotherEndpoint", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname578/providers/Microsoft.Network/trafficManagerProfiles/profileName5405/externalEndpoints/anotherEndpoint", "name": "anotherEndpoint", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -360,40 +355,41 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname445/providers/Microsoft.Network/trafficmanagerprofiles/profileName9919/externalEndpoints/anotherEndpoint?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname578/providers/Microsoft.Network/trafficmanagerprofiles/profileName5405/externalEndpoints/anotherEndpoint?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1f17c9ac2c969449b0603b50d9089df0-60dddf32a7824a44-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0a986bc4fd6a57c171c442f9c12bd6c9", + "traceparent": "00-79e26d5ce7173ea46e8e871d6048aa72-0c316afd9a39cf64-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "afd187f1f9e18300ffabe19a6c38b019", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "596", + "Content-Length": "621", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:05 GMT", + "Date": "Tue, 15 Nov 2022 12:14:17 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01426c28-a0a9-4869-82c9-e5ee8ce64e9d", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "0a986bc4-fd6a-57c1-71c4-42f9c12bd6c9", - "x-ms-routing-request-id": "WESTUS2:20220803T044805Z:01426c28-a0a9-4869-82c9-e5ee8ce64e9d", + "x-ms-correlation-request-id": "1fc5bfe6-12b2-4ae6-90bf-dd273855e459", + "x-ms-ratelimit-remaining-subscription-resource-requests": "249", + "x-ms-request-id": "afd187f1-f9e1-8300-ffab-e19a6c38b019", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121417Z:1fc5bfe6-12b2-4ae6-90bf-dd273855e459", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname445/providers/Microsoft.Network/trafficManagerProfiles/profileName9919/externalEndpoints/anotherEndpoint", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname578/providers/Microsoft.Network/trafficManagerProfiles/profileName5405/externalEndpoints/anotherEndpoint", "name": "anotherEndpoint", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -406,18 +402,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName445/providers/Microsoft.Network/trafficmanagerprofiles/profileName9919?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName578/providers/Microsoft.Network/trafficmanagerprofiles/profileName5405?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "352e992ff51f6e83e653ef530d0daa11", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "17421ca2d34f7e725b5c735ba5fef513", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -425,28 +422,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:48:08 GMT", + "Date": "Tue, 15 Nov 2022 12:14:24 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d21ac4d0-7fe9-4163-bdc5-712a6edf9fdc", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "352e992f-f51f-6e83-e653-ef530d0daa11", - "x-ms-routing-request-id": "WESTUS2:20220803T044808Z:d21ac4d0-7fe9-4163-bdc5-712a6edf9fdc", + "x-ms-correlation-request-id": "3164363c-2d74-44fa-a91b-7793fa8da4b2", + "x-ms-ratelimit-remaining-subscription-resource-requests": "499", + "x-ms-request-id": "17421ca2-d34f-7e72-5b5c-735ba5fef513", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121424Z:3164363c-2d74-44fa-a91b-7793fa8da4b2", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName445?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName578?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f7c4d739183d024fbfc1faceb394bfcc-0e18db7006ec8247-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "79dbe9d69da10fa98656fa0d095b28f3", + "traceparent": "00-4edd1827e3716c232f099c3fc0e00976-39220f76238d7c3c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0c7ccfbc02ec18bb6dde8761d78cb6c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:14:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "316d2540-a891-4faf-945f-28d623440551", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "316d2540-a891-4faf-945f-28d623440551", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121428Z:316d2540-a891-4faf-945f-28d623440551" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4edd1827e3716c232f099c3fc0e00976-3872338c7978c6d7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9cdeceb5a3bba02c6029aa714c10a6ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:14:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a303da7f-705d-4051-86b2-7f5813b7546f", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "a303da7f-705d-4051-86b2-7f5813b7546f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121429Z:a303da7f-705d-4051-86b2-7f5813b7546f" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4edd1827e3716c232f099c3fc0e00976-898ed508b9685162-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a43cafa6cf425807465ef899ad3792c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:14:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fd96eec0-43b4-4292-b7d7-7acef3f6fb24", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "fd96eec0-43b4-4292-b7d7-7acef3f6fb24", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121444Z:fd96eec0-43b4-4292-b7d7-7acef3f6fb24" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4edd1827e3716c232f099c3fc0e00976-7548e0fc220928b1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "09ac860019ae7a07d41bc5e1b917d103", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:14:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0a015a72-4388-4cf9-be80-57309c862134", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "0a015a72-4388-4cf9-be80-57309c862134", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121500Z:0a015a72-4388-4cf9-be80-57309c862134" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-4edd1827e3716c232f099c3fc0e00976-99a8519ab53109f5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d6de85ac3868e6bec686565dab93f229", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -454,28 +567,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:48:09 GMT", + "Date": "Tue, 15 Nov 2022 12:15:15 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e0294f8-51b4-43fa-befc-6173634a09af", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "7e0294f8-51b4-43fa-befc-6173634a09af", - "x-ms-routing-request-id": "WESTUS2:20220803T044809Z:7e0294f8-51b4-43fa-befc-6173634a09af" + "x-ms-correlation-request-id": "64d63848-a9f7-406c-86de-3027f264dd5e", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "64d63848-a9f7-406c-86de-3027f264dd5e", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121515Z:64d63848-a9f7-406c-86de-3027f264dd5e" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7c4d739183d024fbfc1faceb394bfcc-0e2c21de6b81f34e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d723301a5d4f9127f01faec8fa75648b", + "traceparent": "00-4edd1827e3716c232f099c3fc0e00976-b810fcd51e1de809-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c670e3979d648c20a7c2cf2609269e2e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -483,28 +596,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:48:09 GMT", + "Date": "Tue, 15 Nov 2022 12:15:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d67e1439-2804-42b3-a77f-3cee8e6c078e", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "d67e1439-2804-42b3-a77f-3cee8e6c078e", - "x-ms-routing-request-id": "WESTUS2:20220803T044809Z:d67e1439-2804-42b3-a77f-3cee8e6c078e" + "x-ms-correlation-request-id": "c89d8424-d370-4f45-83d7-9b09ad13333a", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "c89d8424-d370-4f45-83d7-9b09ad13333a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121531Z:c89d8424-d370-4f45-83d7-9b09ad13333a" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3OC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f7c4d739183d024fbfc1faceb394bfcc-cfac49a46ca08e41-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e925fb2a757cee52900c90777a920118", + "traceparent": "00-4edd1827e3716c232f099c3fc0e00976-31a0363ef8d8ad75-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "28ecf48cbb58c75fc7c64228c3aacf40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -512,23 +625,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:48:24 GMT", + "Date": "Tue, 15 Nov 2022 12:15:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6602efe-c210-47c4-9a03-b714432e986f", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "d6602efe-c210-47c4-9a03-b714432e986f", - "x-ms-routing-request-id": "WESTUS2:20220803T044824Z:d6602efe-c210-47c4-9a03-b714432e986f" + "x-ms-correlation-request-id": "c18557cf-5cf9-4a2a-a0b9-1bf1caf05f5b", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "c18557cf-5cf9-4a2a-a0b9-1bf1caf05f5b", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121546Z:c18557cf-5cf9-4a2a-a0b9-1bf1caf05f5b" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1283447827", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1133371448", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/CreateTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/CreateTestAsync.json index be8945f251a7..5ab61790799a 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/CreateTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/CreateTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5bedaa9900b99a40a9d03224bf685085-fb52b857b03b2d44-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "542d045cffd861dd50dc96e0e401e403", + "traceparent": "00-2cb579a643211b8d7bba6d8b43147eb3-cb1ce90bf2531dc5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9ca0da81ca67369233d74f0fd76ca2de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:33 GMT", + "Date": "Tue, 15 Nov 2022 12:25:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "923e30a4-32c4-42c6-94c7-21a7e74a5d80", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "923e30a4-32c4-42c6-94c7-21a7e74a5d80", - "x-ms-routing-request-id": "WESTUS2:20220803T045034Z:923e30a4-32c4-42c6-94c7-21a7e74a5d80" + "x-ms-correlation-request-id": "c3faa15d-7eba-4f48-9f77-183957705151", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "c3faa15d-7eba-4f48-9f77-183957705151", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122509Z:c3faa15d-7eba-4f48-9f77-183957705151" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName5099?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6723?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-94d53232af5aa9489652f48ef2c85c8e-0f6b8efd8a6db043-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d123b75347b067e1fb6cf061f99e8176", + "traceparent": "00-bc8c4392cd683152960132da5162a4f4-c1cffdb77fbbe347-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2fd70905e1b57e8ac446b47eb504033d", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:34 GMT", + "Date": "Tue, 15 Nov 2022 12:25:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "058ddcf1-b88b-4fde-9290-75bad46c0b9d", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "058ddcf1-b88b-4fde-9290-75bad46c0b9d", - "x-ms-routing-request-id": "WESTUS2:20220803T045034Z:058ddcf1-b88b-4fde-9290-75bad46c0b9d" + "x-ms-correlation-request-id": "e999c3f6-81ae-4c64-80ec-52ec3bcb8129", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "e999c3f6-81ae-4c64-80ec-52ec3bcb8129", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122510Z:e999c3f6-81ae-4c64-80ec-52ec3bcb8129" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5099", - "name": "resourceGroupName5099", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6723", + "name": "resourceGroupName6723", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5099/providers/Microsoft.Network/trafficmanagerprofiles/profileName7724?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6723/providers/Microsoft.Network/trafficmanagerprofiles/profileName4343?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-23bc37c965de2c42a862bf79b651229d-19c7a081b3923046-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "611f0169ad1cce9036ff809f0d5f77bf", + "traceparent": "00-816f7bcc8ae8d5a868684cd0a80f6726-c9ea8c0aa246f095-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "cdfe9be93e393e309bc702758f07b425", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName7724", + "name": "profileName4343", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName7724" + "relativeName": "profileName4343" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:35 GMT", + "Date": "Tue, 15 Nov 2022 12:25:13 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e11190c2-e387-49a3-b9c8-d5f5d1f56e69", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "611f0169-ad1c-ce90-36ff-809f0d5f77bf", - "x-ms-routing-request-id": "WESTUS2:20220803T045035Z:e11190c2-e387-49a3-b9c8-d5f5d1f56e69", + "x-ms-correlation-request-id": "5e45f31a-efd5-4364-933b-a1853e126791", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4496", + "x-ms-request-id": "cdfe9be9-3e39-3e30-9bc7-02758f07b425", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122514Z:5e45f31a-efd5-4364-933b-a1853e126791", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5099/providers/Microsoft.Network/trafficManagerProfiles/profileName7724", - "name": "profileName7724", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6723/providers/Microsoft.Network/trafficManagerProfiles/profileName4343", + "name": "profileName4343", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7724", - "fqdn": "profilename7724.trafficmanager.net", + "relativeName": "profilename4343", + "fqdn": "profilename4343.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5099/providers/Microsoft.Network/trafficManagerProfiles/profileName7724/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6723/providers/Microsoft.Network/trafficManagerProfiles/profileName4343/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5099/providers/Microsoft.Network/trafficManagerProfiles/profileName7724/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6723/providers/Microsoft.Network/trafficManagerProfiles/profileName4343/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5099/providers/Microsoft.Network/trafficmanagerprofiles/profileName7724?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6723/providers/Microsoft.Network/trafficmanagerprofiles/profileName4343?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e5f515f9c89c194aacb7aab5b69f04f5-8f33e7207f62f540-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "bd29d77f381dbcac4cecdc92ec00573d", + "traceparent": "00-a96d1104f286cac07d20e1da355b8f68-5b12076d2136f562-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a7046e4daa9cf8cb161ea284ddb87dd2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:35 GMT", + "Date": "Tue, 15 Nov 2022 12:25:15 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c19e93e6-4600-432e-9fbe-9d18d40fbc34", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "bd29d77f-381d-bcac-4cec-dc92ec00573d", - "x-ms-routing-request-id": "WESTUS2:20220803T045035Z:c19e93e6-4600-432e-9fbe-9d18d40fbc34", + "x-ms-correlation-request-id": "a5290c1e-0446-4e40-a95d-e6b89344b6c7", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1998", + "x-ms-request-id": "a7046e4d-aa9c-f8cb-161e-a284ddb87dd2", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122515Z:a5290c1e-0446-4e40-a95d-e6b89344b6c7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5099/providers/Microsoft.Network/trafficManagerProfiles/profileName7724", - "name": "profileName7724", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6723/providers/Microsoft.Network/trafficManagerProfiles/profileName4343", + "name": "profileName4343", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7724", - "fqdn": "profilename7724.trafficmanager.net", + "relativeName": "profilename4343", + "fqdn": "profilename4343.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5099/providers/Microsoft.Network/trafficManagerProfiles/profileName7724/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6723/providers/Microsoft.Network/trafficManagerProfiles/profileName4343/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5099/providers/Microsoft.Network/trafficManagerProfiles/profileName7724/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6723/providers/Microsoft.Network/trafficManagerProfiles/profileName4343/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,16 +305,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5099/providers/Microsoft.Network/trafficmanagerprofiles/profileName7724/externalEndpoints/anotherEndpoint?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6723/providers/Microsoft.Network/trafficmanagerprofiles/profileName4343/externalEndpoints/anotherEndpoint?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "174", "Content-Type": "application/json", - "traceparent": "00-a8f7c5a0f8391f40a8600647358e58f0-c306c69d1374bd46-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ff7a6915a1c4a5e126559ab1c6415a9b", + "traceparent": "00-8a7d838a848e4cf1f3ab046422d73c51-e6ba9041bd8214d0-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d1edd14b10a4c770d99893eddf15efbd", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -332,21 +328,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "597", + "Content-Length": "622", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:35 GMT", + "Date": "Tue, 15 Nov 2022 12:25:16 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a440cc64-633e-4814-9e51-7eedf5575698", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "ff7a6915-a1c4-a5e1-2655-9ab1c6415a9b", - "x-ms-routing-request-id": "WESTUS2:20220803T045036Z:a440cc64-633e-4814-9e51-7eedf5575698", + "x-ms-correlation-request-id": "89054b61-f792-4a06-9787-75f6ce896612", + "x-ms-ratelimit-remaining-subscription-resource-requests": "247", + "x-ms-request-id": "d1edd14b-10a4-c770-d998-93eddf15efbd", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122516Z:89054b61-f792-4a06-9787-75f6ce896612", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5099/providers/Microsoft.Network/trafficManagerProfiles/profileName7724/externalEndpoints/anotherEndpoint", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6723/providers/Microsoft.Network/trafficManagerProfiles/profileName4343/externalEndpoints/anotherEndpoint", "name": "anotherEndpoint", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -359,40 +355,41 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5099/providers/Microsoft.Network/trafficmanagerprofiles/profileName7724/externalEndpoints/anotherEndpoint?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6723/providers/Microsoft.Network/trafficmanagerprofiles/profileName4343/externalEndpoints/anotherEndpoint?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-674d3af001550f45bc03c5e2f5fc95e5-6b5e974d6c6e7e4b-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "22e131f5c375305955621530d0fde136", + "traceparent": "00-87e95d284bd88f122a069f785a148d85-00a90e301fb4613c-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "46308e915c003fa1cf05b71b9cab60e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "597", + "Content-Length": "622", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:35 GMT", + "Date": "Tue, 15 Nov 2022 12:25:16 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d202bb97-72c3-4e39-badd-3c92979ba08e", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "22e131f5-c375-3059-5562-1530d0fde136", - "x-ms-routing-request-id": "WESTUS2:20220803T045036Z:d202bb97-72c3-4e39-badd-3c92979ba08e", + "x-ms-correlation-request-id": "ee467cd4-5bf3-4696-b4ba-6361c15e3f51", + "x-ms-ratelimit-remaining-subscription-resource-requests": "244", + "x-ms-request-id": "46308e91-5c00-3fa1-cf05-b71b9cab60e3", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122517Z:ee467cd4-5bf3-4696-b4ba-6361c15e3f51", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5099/providers/Microsoft.Network/trafficManagerProfiles/profileName7724/externalEndpoints/anotherEndpoint", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6723/providers/Microsoft.Network/trafficManagerProfiles/profileName4343/externalEndpoints/anotherEndpoint", "name": "anotherEndpoint", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -405,18 +402,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5099/providers/Microsoft.Network/trafficmanagerprofiles/profileName7724?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6723/providers/Microsoft.Network/trafficmanagerprofiles/profileName4343?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a38a42a877e4defaf58396c79dfbf60a", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bd292f49e3193d81fd3dce0416dd1900", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -424,28 +422,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:37 GMT", + "Date": "Tue, 15 Nov 2022 12:25:22 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39859287-165e-40c3-b333-5e44ae47974a", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "a38a42a8-77e4-defa-f583-96c79dfbf60a", - "x-ms-routing-request-id": "WESTUS2:20220803T045037Z:39859287-165e-40c3-b333-5e44ae47974a", + "x-ms-correlation-request-id": "120a62bf-5c1b-462c-9623-de11e0bdbf0a", + "x-ms-ratelimit-remaining-subscription-resource-requests": "496", + "x-ms-request-id": "bd292f49-e319-3d81-fd3d-ce0416dd1900", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122522Z:120a62bf-5c1b-462c-9623-de11e0bdbf0a", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName5099?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6723?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d93806580ef3cf4ab417622887a37ea8-d1d0b9a8d0bc2f43-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ba9c4092341e52c81049aa618bb1d529", + "traceparent": "00-1718b44206a315a799d3ca2c59e3becf-f1abfb671f3fda40-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4ff2e42f3787efd230ad019f58552b2d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -453,28 +451,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:37 GMT", + "Date": "Tue, 15 Nov 2022 12:25:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUwOTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3cc88568-9ab4-4743-974c-cea35a33377e", + "x-ms-correlation-request-id": "2dd88fe0-096f-41ff-86fc-9b603d872cd9", "x-ms-ratelimit-remaining-subscription-deletes": "14991", - "x-ms-request-id": "3cc88568-9ab4-4743-974c-cea35a33377e", - "x-ms-routing-request-id": "WESTUS2:20220803T045038Z:3cc88568-9ab4-4743-974c-cea35a33377e" + "x-ms-request-id": "2dd88fe0-096f-41ff-86fc-9b603d872cd9", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122525Z:2dd88fe0-096f-41ff-86fc-9b603d872cd9" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUwOTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d93806580ef3cf4ab417622887a37ea8-cbc185c7cb297848-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8f9e0a6c266173177a37939acd985244", + "traceparent": "00-1718b44206a315a799d3ca2c59e3becf-1f52eff359e1dba2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b7ebb7eb11b9125c5d3a8d6ce1e1e4a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -482,28 +480,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:38 GMT", + "Date": "Tue, 15 Nov 2022 12:25:25 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUwOTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84d81148-e536-430c-9b19-33e11e353e3e", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "84d81148-e536-430c-9b19-33e11e353e3e", - "x-ms-routing-request-id": "WESTUS2:20220803T045038Z:84d81148-e536-430c-9b19-33e11e353e3e" + "x-ms-correlation-request-id": "c4a91d7f-845a-4753-bb4b-6605756ae99f", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "c4a91d7f-845a-4753-bb4b-6605756ae99f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122525Z:c4a91d7f-845a-4753-bb4b-6605756ae99f" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUwOTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d93806580ef3cf4ab417622887a37ea8-247512863007df40-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "39536dae71f2db53891e831b07d5257e", + "traceparent": "00-1718b44206a315a799d3ca2c59e3becf-8ab1537268f6a444-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "66cca0126939fe1440444194ed0f6092", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:25:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "171e2695-593d-4b7a-90ab-cb7a6755ac4d", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "171e2695-593d-4b7a-90ab-cb7a6755ac4d", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122541Z:171e2695-593d-4b7a-90ab-cb7a6755ac4d" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-1718b44206a315a799d3ca2c59e3becf-8c5d7a95d1dd5d51-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a1b3108373692673539152b2a337cc2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:25:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5dfef504-66c4-4750-b5cd-a4fcf4d5a864", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "5dfef504-66c4-4750-b5cd-a4fcf4d5a864", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122556Z:5dfef504-66c4-4750-b5cd-a4fcf4d5a864" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-1718b44206a315a799d3ca2c59e3becf-856551b45258c451-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "edb0a10ec2d182b7a3ed7774d0c7244e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:26:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "063f554d-c5f0-4d34-9b09-59824d843e5c", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "063f554d-c5f0-4d34-9b09-59824d843e5c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122612Z:063f554d-c5f0-4d34-9b09-59824d843e5c" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-1718b44206a315a799d3ca2c59e3becf-c8aed3cb346dabec-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d1e8fad9432e9e3e2ca613a717625a08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:26:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1cdcfd12-1147-4be0-91be-bbe23e5e9966", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "1cdcfd12-1147-4be0-91be-bbe23e5e9966", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122627Z:1cdcfd12-1147-4be0-91be-bbe23e5e9966" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-1718b44206a315a799d3ca2c59e3becf-775244318cac39e4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4c861578725ec1c15831fe7bfcff558b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -511,23 +625,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:53 GMT", + "Date": "Tue, 15 Nov 2022 12:26:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3b9e60d-c5e0-4e2b-ad54-b96829c52939", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "a3b9e60d-c5e0-4e2b-ad54-b96829c52939", - "x-ms-routing-request-id": "WESTUS2:20220803T045053Z:a3b9e60d-c5e0-4e2b-ad54-b96829c52939" + "x-ms-correlation-request-id": "4f314f6f-97dd-4eac-a9f0-4cfd6a945802", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "4f314f6f-97dd-4eac-a9f0-4cfd6a945802", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122643Z:4f314f6f-97dd-4eac-a9f0-4cfd6a945802" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1627806337", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "845778282", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/DeleteTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/DeleteTest.json index 98952d7dac24..87a17bcb5b1a 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/DeleteTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/DeleteTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4b60d108346f44489da58f4b1be707f7-b0443539b653f545-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "20861f59f59a80eb89adece33f3346ce", + "traceparent": "00-b520cf096d234228e70fdab95318191b-d9d8ffb9e2cffdf6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3fb41f815cb6a411f405571960a34d7f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:25 GMT", + "Date": "Tue, 15 Nov 2022 12:15:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44f9ed46-e7a3-4284-9087-ebded8e9395e", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "44f9ed46-e7a3-4284-9087-ebded8e9395e", - "x-ms-routing-request-id": "WESTUS2:20220803T044826Z:44f9ed46-e7a3-4284-9087-ebded8e9395e" + "x-ms-correlation-request-id": "d88915f7-292b-43e3-b225-02b9e8a49fc1", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "d88915f7-292b-43e3-b225-02b9e8a49fc1", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121547Z:d88915f7-292b-43e3-b225-02b9e8a49fc1" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName619?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName9735?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-b2ee35a455136d4baf0f3575c68acb09-fc30e0ae45667947-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e70408c5296ddf5fbd6906d949e21d4c", + "traceparent": "00-74134ce3579ef6a49a3b5ac352b00769-3404533a640a0126-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "cf734457812b128920fe2e64e6ff73c5", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -69,21 +61,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "237", + "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:26 GMT", + "Date": "Tue, 15 Nov 2022 12:15:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13a79db9-da11-4ea0-ba4d-a1692d3f298a", + "x-ms-correlation-request-id": "d0e8da7d-3ef7-43fb-ad78-ca2b9c7edec1", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "13a79db9-da11-4ea0-ba4d-a1692d3f298a", - "x-ms-routing-request-id": "WESTUS2:20220803T044826Z:13a79db9-da11-4ea0-ba4d-a1692d3f298a" + "x-ms-request-id": "d0e8da7d-3ef7-43fb-ad78-ca2b9c7edec1", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121548Z:d0e8da7d-3ef7-43fb-ad78-ca2b9c7edec1" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName619", - "name": "resourceGroupName619", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9735", + "name": "resourceGroupName9735", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName619/providers/Microsoft.Network/trafficmanagerprofiles/profileName847?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9735/providers/Microsoft.Network/trafficmanagerprofiles/profileName8175?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "559", + "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-6f3cb97cdc3b984eb8d0fb633b08c0e2-90ff06ac5e647d4d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8c4b0a44506c614475ca1323baacf397", + "traceparent": "00-214599cdc646274f2f074ed511bc41a1-b99fcab706784224-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8fb450cf8821cbe7a5057b9f91287565", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName847", + "name": "profileName8175", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName847" + "relativeName": "profileName8175" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1864", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:27 GMT", + "Date": "Tue, 15 Nov 2022 12:15:54 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c663f32-fec1-4df4-b51f-d7006ce6bfbb", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "8c4b0a44-506c-6144-75ca-1323baacf397", - "x-ms-routing-request-id": "WESTUS2:20220803T044827Z:3c663f32-fec1-4df4-b51f-d7006ce6bfbb", + "x-ms-correlation-request-id": "ac4e6ce2-c1f0-4cb7-affa-f4aab3e4ed26", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4498", + "x-ms-request-id": "8fb450cf-8821-cbe7-a505-7b9f91287565", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121555Z:ac4e6ce2-c1f0-4cb7-affa-f4aab3e4ed26", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname619/providers/Microsoft.Network/trafficManagerProfiles/profileName847", - "name": "profileName847", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9735/providers/Microsoft.Network/trafficManagerProfiles/profileName8175", + "name": "profileName8175", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename847", - "fqdn": "profilename847.trafficmanager.net", + "relativeName": "profilename8175", + "fqdn": "profilename8175.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname619/providers/Microsoft.Network/trafficManagerProfiles/profileName847/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9735/providers/Microsoft.Network/trafficManagerProfiles/profileName8175/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname619/providers/Microsoft.Network/trafficManagerProfiles/profileName847/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9735/providers/Microsoft.Network/trafficManagerProfiles/profileName8175/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,13 +211,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName619/providers/Microsoft.Network/trafficmanagerprofiles/profileName847/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9735/providers/Microsoft.Network/trafficmanagerprofiles/profileName8175/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "38abf3f3892bf6ec2741dc8be5a640ca", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "cdb64a6e74b59e562a2c965de23f0d05", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -231,50 +225,50 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:48:27 GMT", + "Date": "Tue, 15 Nov 2022 12:15:55 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cef74d3a-ee3d-4969-9f3a-1906d39e8cf5", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "38abf3f3-892b-f6ec-2741-dc8be5a640ca", - "x-ms-routing-request-id": "WESTUS2:20220803T044828Z:cef74d3a-ee3d-4969-9f3a-1906d39e8cf5", + "x-ms-correlation-request-id": "885ae529-245c-40af-90c9-99a0affbdb31", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "cdb64a6e-74b5-9e56-2a2c-965de23f0d05", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121556Z:885ae529-245c-40af-90c9-99a0affbdb31", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName619/providers/Microsoft.Network/trafficmanagerprofiles/profileName847?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9735/providers/Microsoft.Network/trafficmanagerprofiles/profileName8175?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bb5c52bf86dd224bacd05bb323933517-49f0cdfae4ed3a46-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "29fa96cf42fb7534c4a372a3163c2511", + "traceparent": "00-a18e019040149793f3de5bb0317e6519-55a0aafca1632af0-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "539053e3f098cfc55ca8292506ea81f7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1292", + "Content-Length": "1324", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:27 GMT", + "Date": "Tue, 15 Nov 2022 12:15:56 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5df967e7-5db8-4d19-b87d-96506a29b577", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "29fa96cf-42fb-7534-c4a3-72a3163c2511", - "x-ms-routing-request-id": "WESTUS2:20220803T044828Z:5df967e7-5db8-4d19-b87d-96506a29b577", + "x-ms-correlation-request-id": "42f56913-4eff-40f3-8605-b94c4c33ad75", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1998", + "x-ms-request-id": "539053e3-f098-cfc5-5ca8-292506ea81f7", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121556Z:42f56913-4eff-40f3-8605-b94c4c33ad75", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname619/providers/Microsoft.Network/trafficManagerProfiles/profileName847", - "name": "profileName847", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9735/providers/Microsoft.Network/trafficManagerProfiles/profileName8175", + "name": "profileName8175", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -282,8 +276,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename847", - "fqdn": "profilename847.trafficmanager.net", + "relativeName": "profilename8175", + "fqdn": "profilename8175.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -297,7 +291,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname619/providers/Microsoft.Network/trafficManagerProfiles/profileName847/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9735/providers/Microsoft.Network/trafficManagerProfiles/profileName8175/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -310,7 +304,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -320,46 +315,46 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname619/providers/Microsoft.Network/trafficmanagerprofiles/profileName847/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9735/providers/Microsoft.Network/trafficmanagerprofiles/profileName8175/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2b7ab57bd90c6f469be3e9227f616da9-6c8a2e0263ccd041-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "55e56e76e436bb211e55652b73b97bce", + "traceparent": "00-ae1461335d17c31b0aedd2905bb368cb-e4ff6a3eb6d0a4b8-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9cf5c889a6495b0ffa1664f5f18ae865", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "132", + "Content-Length": "133", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:28 GMT", + "Date": "Tue, 15 Nov 2022 12:15:56 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04f39887-b8ba-46bd-bc78-e2706298454c", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "55e56e76-e436-bb21-1e55-652b73b97bce", - "x-ms-routing-request-id": "WESTUS2:20220803T044828Z:04f39887-b8ba-46bd-bc78-e2706298454c", + "x-ms-correlation-request-id": "4e487b5f-3c69-4c68-aa87-a1c8e509c4aa", + "x-ms-ratelimit-remaining-subscription-resource-requests": "248", + "x-ms-request-id": "9cf5c889-a649-5b0f-fa16-64f5f18ae865", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121557Z:4e487b5f-3c69-4c68-aa87-a1c8e509c4aa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "code": "NotFound", - "message": "The endpoint \u0027endpoint1\u0027 of type \u0027externalendpoints\u0027 does not exist in the profile \u0027profileName847\u0027." + "message": "The endpoint \u0027endpoint1\u0027 of type \u0027externalendpoints\u0027 does not exist in the profile \u0027profileName8175\u0027." } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName619/providers/Microsoft.Network/trafficmanagerprofiles/profileName847?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9735/providers/Microsoft.Network/trafficmanagerprofiles/profileName8175?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "23544889cab2b19bbf3674871748e0eb", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3dbb75f722987ecc84e7700d4a309740", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -367,28 +362,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:48:29 GMT", + "Date": "Tue, 15 Nov 2022 12:16:00 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "974a85c8-6d49-4876-8689-303303312723", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "23544889-cab2-b19b-bf36-74871748e0eb", - "x-ms-routing-request-id": "WESTUS2:20220803T044830Z:974a85c8-6d49-4876-8689-303303312723", + "x-ms-correlation-request-id": "531f2383-4376-4389-8289-e2b0e140f71e", + "x-ms-ratelimit-remaining-subscription-resource-requests": "498", + "x-ms-request-id": "3dbb75f7-2298-7ecc-84e7-700d4a309740", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121601Z:531f2383-4376-4389-8289-e2b0e140f71e", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName619?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName9735?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-49ceecb208314b4e9818359de8ed4b58-75b91e7f23890942-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7715ca1beac0ea94753f0aa6dc08010a", + "traceparent": "00-2400c1aca4de9b4136bcdc818f9af200-4300f1bcac87a2d4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "19d49faa714a3dbc443558818bcfddd2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -396,28 +391,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:48:30 GMT", + "Date": "Tue, 15 Nov 2022 12:16:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYxOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3MzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80e58e84-8316-4976-bbf6-f9c1c131fdb5", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-request-id": "80e58e84-8316-4976-bbf6-f9c1c131fdb5", - "x-ms-routing-request-id": "WESTUS2:20220803T044830Z:80e58e84-8316-4976-bbf6-f9c1c131fdb5" + "x-ms-correlation-request-id": "ba6d2dbd-2084-4026-b10a-63ce4308f802", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-request-id": "ba6d2dbd-2084-4026-b10a-63ce4308f802", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121603Z:ba6d2dbd-2084-4026-b10a-63ce4308f802" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3MzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2400c1aca4de9b4136bcdc818f9af200-43f0f19064ccefc0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "524a237eceb6861bb87ef962c94bf2b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:16:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3MzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1b4dd6a2-912b-4aa8-9e78-d6d66a1dbc7f", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "1b4dd6a2-912b-4aa8-9e78-d6d66a1dbc7f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121603Z:1b4dd6a2-912b-4aa8-9e78-d6d66a1dbc7f" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3MzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2400c1aca4de9b4136bcdc818f9af200-2e8db4bc84fc93fa-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "864d9d0a06036611406d1dd4595b0642", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:16:18 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3MzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fba157a4-92cd-4561-ac50-c599fb9ede06", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "fba157a4-92cd-4561-ac50-c599fb9ede06", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121619Z:fba157a4-92cd-4561-ac50-c599fb9ede06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3MzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2400c1aca4de9b4136bcdc818f9af200-877db906e364df1b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "68028f248a85f01ca8a6d8b04afc9db0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:16:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3MzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9b2b539e-6fae-4bf9-92f1-1e5300b33f5a", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "9b2b539e-6fae-4bf9-92f1-1e5300b33f5a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121634Z:9b2b539e-6fae-4bf9-92f1-1e5300b33f5a" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3MzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-2400c1aca4de9b4136bcdc818f9af200-b37ec26a7da6810d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "985763838bb478c611e41248b0472d5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:16:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3MzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9c3eed53-98d3-4e7e-9d12-5b75da4ba806", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "9c3eed53-98d3-4e7e-9d12-5b75da4ba806", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121650Z:9c3eed53-98d3-4e7e-9d12-5b75da4ba806" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYxOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3MzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-49ceecb208314b4e9818359de8ed4b58-bd09b87788692c43-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a80f7a7504a49f0eb469ae72c0f4d5b6", + "traceparent": "00-2400c1aca4de9b4136bcdc818f9af200-97ed0a9f5a7e3c6c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3a3eb7778a487f2f805ddd5c2e601b43", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -425,28 +536,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:48:30 GMT", + "Date": "Tue, 15 Nov 2022 12:17:05 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYxOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3MzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d802c83-efc9-401f-8c7e-876ad3bed487", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "4d802c83-efc9-401f-8c7e-876ad3bed487", - "x-ms-routing-request-id": "WESTUS2:20220803T044830Z:4d802c83-efc9-401f-8c7e-876ad3bed487" + "x-ms-correlation-request-id": "334c4d50-6c19-497d-8e61-f20b0e428560", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "334c4d50-6c19-497d-8e61-f20b0e428560", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121705Z:334c4d50-6c19-497d-8e61-f20b0e428560" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYxOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3MzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-49ceecb208314b4e9818359de8ed4b58-ff1dbab7ad2b324e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "735f6a35122e1a036b69a48c55937adc", + "traceparent": "00-2400c1aca4de9b4136bcdc818f9af200-f7dba15b49d0ba57-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f6506dcf6d03998dc98a56a178d34061", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -454,23 +565,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:48:45 GMT", + "Date": "Tue, 15 Nov 2022 12:17:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4d75802-e50f-45cc-a11d-64f280ecaa54", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "c4d75802-e50f-45cc-a11d-64f280ecaa54", - "x-ms-routing-request-id": "WESTUS2:20220803T044846Z:c4d75802-e50f-45cc-a11d-64f280ecaa54" + "x-ms-correlation-request-id": "ac9ba784-60ef-4ef8-8501-f768e412a093", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "ac9ba784-60ef-4ef8-8501-f768e412a093", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121720Z:ac9ba784-60ef-4ef8-8501-f768e412a093" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "143805582", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1290894114", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/DeleteTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/DeleteTestAsync.json index e5e14a276198..d16c12f34469 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/DeleteTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/DeleteTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c79891f6e7f9424eb1ddcb9e2febc166-b3d788c2807aea45-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "705277c90cf099a694741a37d429af71", + "traceparent": "00-2eff847a9414627711fd7939148cdba5-6b8408042d4c6dc4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b94149e2f4705ea93e934be26a36ab40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:53 GMT", + "Date": "Tue, 15 Nov 2022 12:26:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e09b449-11b9-47dd-b342-622f9c264f7c", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "0e09b449-11b9-47dd-b342-622f9c264f7c", - "x-ms-routing-request-id": "WESTUS2:20220803T045054Z:0e09b449-11b9-47dd-b342-622f9c264f7c" + "x-ms-correlation-request-id": "746a927c-9c76-4b59-8061-144ef8329727", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "746a927c-9c76-4b59-8061-144ef8329727", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122643Z:746a927c-9c76-4b59-8061-144ef8329727" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName8728?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName3944?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-8260a5e0642d6b45b2f973b760a07595-570f3da0a4bef342-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5906122ad7b4d185a36128216f2234c8", + "traceparent": "00-24c325f47238ab47418edb709ea0b38a-b6b1b3ce40b39e0e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c91086d596cc99774fb896f636483dfc", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:54 GMT", + "Date": "Tue, 15 Nov 2022 12:26:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c27e8b1b-7a1b-4e71-8f0d-7c3af6e155ce", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "c27e8b1b-7a1b-4e71-8f0d-7c3af6e155ce", - "x-ms-routing-request-id": "WESTUS2:20220803T045054Z:c27e8b1b-7a1b-4e71-8f0d-7c3af6e155ce" + "x-ms-correlation-request-id": "637d4652-5211-4a5d-813c-fbc95669c2e4", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "637d4652-5211-4a5d-813c-fbc95669c2e4", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122645Z:637d4652-5211-4a5d-813c-fbc95669c2e4" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName8728", - "name": "resourceGroupName8728", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3944", + "name": "resourceGroupName3944", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName8728/providers/Microsoft.Network/trafficmanagerprofiles/profileName4741?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3944/providers/Microsoft.Network/trafficmanagerprofiles/profileName2059?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-7bb08bad1635a84b9c9ec9b3e1f86150-182612f5bdf63140-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6d3f4caaab5642943afbcd3248836e67", + "traceparent": "00-44ce19af8496ec7b3d8ae8c17979a27d-a84dae2b6a3bb958-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c01ebc4dd9b39d3bd4e746771f8aadf4", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName4741", + "name": "profileName2059", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName4741" + "relativeName": "profileName2059" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:55 GMT", + "Date": "Tue, 15 Nov 2022 12:26:50 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39eeba44-b757-42a1-8d93-4419942608e3", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "6d3f4caa-ab56-4294-3afb-cd3248836e67", - "x-ms-routing-request-id": "WESTUS2:20220803T045055Z:39eeba44-b757-42a1-8d93-4419942608e3", + "x-ms-correlation-request-id": "6cff08cc-73cc-4cf4-a522-e2edebad18ad", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4495", + "x-ms-request-id": "c01ebc4d-d9b3-9d3b-d4e7-46771f8aadf4", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122650Z:6cff08cc-73cc-4cf4-a522-e2edebad18ad", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8728/providers/Microsoft.Network/trafficManagerProfiles/profileName4741", - "name": "profileName4741", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3944/providers/Microsoft.Network/trafficManagerProfiles/profileName2059", + "name": "profileName2059", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4741", - "fqdn": "profilename4741.trafficmanager.net", + "relativeName": "profilename2059", + "fqdn": "profilename2059.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8728/providers/Microsoft.Network/trafficManagerProfiles/profileName4741/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3944/providers/Microsoft.Network/trafficManagerProfiles/profileName2059/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8728/providers/Microsoft.Network/trafficManagerProfiles/profileName4741/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3944/providers/Microsoft.Network/trafficManagerProfiles/profileName2059/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,13 +211,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName8728/providers/Microsoft.Network/trafficmanagerprofiles/profileName4741/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3944/providers/Microsoft.Network/trafficmanagerprofiles/profileName2059/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8635e7056deea015cd9f4dab7d772451", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6d487f1d32bbb316ca20203b1268084a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -231,50 +225,50 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:55 GMT", + "Date": "Tue, 15 Nov 2022 12:26:50 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1d01d2b-9f03-4072-8d8e-9ec32b9cd2e3", + "x-ms-correlation-request-id": "c7048c4f-cdfe-4a75-8363-c0bb89a9fbb6", "x-ms-ratelimit-remaining-subscription-deletes": "14990", - "x-ms-request-id": "8635e705-6dee-a015-cd9f-4dab7d772451", - "x-ms-routing-request-id": "WESTUS2:20220803T045056Z:a1d01d2b-9f03-4072-8d8e-9ec32b9cd2e3", + "x-ms-request-id": "6d487f1d-32bb-b316-ca20-203b1268084a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122651Z:c7048c4f-cdfe-4a75-8363-c0bb89a9fbb6", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName8728/providers/Microsoft.Network/trafficmanagerprofiles/profileName4741?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3944/providers/Microsoft.Network/trafficmanagerprofiles/profileName2059?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-af5ee6eac22e5841a76dd9f4bc3190de-b63dd865d33ed544-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "dd2a6ee503707f297ec41fb90a538920", + "traceparent": "00-dc093467c2b0c56f2a04497643ef14dc-ad2f2331bd4cc501-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "791ce60e808cfca04a72f4e44f0079c4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1299", + "Content-Length": "1324", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:55 GMT", + "Date": "Tue, 15 Nov 2022 12:26:51 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ecd86446-7fad-4009-8884-f9c5e2a3f72f", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "dd2a6ee5-0370-7f29-7ec4-1fb90a538920", - "x-ms-routing-request-id": "WESTUS2:20220803T045056Z:ecd86446-7fad-4009-8884-f9c5e2a3f72f", + "x-ms-correlation-request-id": "4ea03b54-786f-412b-abf7-e7f726af3e01", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1997", + "x-ms-request-id": "791ce60e-808c-fca0-4a72-f4e44f0079c4", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122652Z:4ea03b54-786f-412b-abf7-e7f726af3e01", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8728/providers/Microsoft.Network/trafficManagerProfiles/profileName4741", - "name": "profileName4741", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3944/providers/Microsoft.Network/trafficManagerProfiles/profileName2059", + "name": "profileName2059", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -282,8 +276,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4741", - "fqdn": "profilename4741.trafficmanager.net", + "relativeName": "profilename2059", + "fqdn": "profilename2059.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -297,7 +291,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8728/providers/Microsoft.Network/trafficManagerProfiles/profileName4741/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3944/providers/Microsoft.Network/trafficManagerProfiles/profileName2059/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -310,7 +304,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -320,14 +315,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8728/providers/Microsoft.Network/trafficmanagerprofiles/profileName4741/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3944/providers/Microsoft.Network/trafficmanagerprofiles/profileName2059/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4768d00838434d43bf12d27380f2c087-838768e4c0aace42-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "871cc0f2aeed3cda379fa0b75ee8c4c2", + "traceparent": "00-57e085a23f47ac63715430ee76a7d17e-679625da596480bc-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b6d9a10bd0001b40a66bf593b8008a6c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -336,30 +331,30 @@ "Cache-Control": "private", "Content-Length": "133", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:55 GMT", + "Date": "Tue, 15 Nov 2022 12:26:51 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1ca2e05-bc11-4062-8fea-fdd1dc5ac826", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "871cc0f2-aeed-3cda-379f-a0b75ee8c4c2", - "x-ms-routing-request-id": "WESTUS2:20220803T045056Z:f1ca2e05-bc11-4062-8fea-fdd1dc5ac826", + "x-ms-correlation-request-id": "9863d1c4-a129-441f-9dcb-4d356ad75795", + "x-ms-ratelimit-remaining-subscription-resource-requests": "243", + "x-ms-request-id": "b6d9a10b-d000-1b40-a66b-f593b8008a6c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122652Z:9863d1c4-a129-441f-9dcb-4d356ad75795", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "code": "NotFound", - "message": "The endpoint \u0027endpoint1\u0027 of type \u0027externalendpoints\u0027 does not exist in the profile \u0027profileName4741\u0027." + "message": "The endpoint \u0027endpoint1\u0027 of type \u0027externalendpoints\u0027 does not exist in the profile \u0027profileName2059\u0027." } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName8728/providers/Microsoft.Network/trafficmanagerprofiles/profileName4741?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3944/providers/Microsoft.Network/trafficmanagerprofiles/profileName2059?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d94d7bd6915902f7beb6082a4e5b9579", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3969fcdf346d9c67de4b22483d3164c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -367,28 +362,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:57 GMT", + "Date": "Tue, 15 Nov 2022 12:26:57 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f58352ba-0fe6-4d5e-9b1e-87b723ad12b3", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "d94d7bd6-9159-02f7-beb6-082a4e5b9579", - "x-ms-routing-request-id": "WESTUS2:20220803T045058Z:f58352ba-0fe6-4d5e-9b1e-87b723ad12b3", + "x-ms-correlation-request-id": "89879422-3b1b-49c5-bd3c-29e0dda2553f", + "x-ms-ratelimit-remaining-subscription-resource-requests": "495", + "x-ms-request-id": "3969fcdf-346d-9c67-de4b-22483d3164c9", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122657Z:89879422-3b1b-49c5-bd3c-29e0dda2553f", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName8728?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName3944?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5a64872cc89cad4f9c18c6b61997ba98-4d024664558cd745-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "bcb92d159c5b376494eda6d062712195", + "traceparent": "00-3262f526edaf91efe37355ea6ef5aaa0-7bc024e4da3d02f2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "71305ca6528e3e4aa501d3218a0d444a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -396,28 +391,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:57 GMT", + "Date": "Tue, 15 Nov 2022 12:26:59 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg3MjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM5NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3781d789-5192-45e3-ae9c-d87f5e2942f5", + "x-ms-correlation-request-id": "27d3213f-a3b7-4126-a55e-0e7dd810248e", "x-ms-ratelimit-remaining-subscription-deletes": "14989", - "x-ms-request-id": "3781d789-5192-45e3-ae9c-d87f5e2942f5", - "x-ms-routing-request-id": "WESTUS2:20220803T045058Z:3781d789-5192-45e3-ae9c-d87f5e2942f5" + "x-ms-request-id": "27d3213f-a3b7-4126-a55e-0e7dd810248e", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122700Z:27d3213f-a3b7-4126-a55e-0e7dd810248e" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg3MjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM5NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5a64872cc89cad4f9c18c6b61997ba98-c6e257b0c68ceb4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "30a12709082f39661715446beb269f4d", + "traceparent": "00-3262f526edaf91efe37355ea6ef5aaa0-9445723b46396c3a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5cec2b0719d08ddeb12a936c604611d1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -425,28 +420,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:57 GMT", + "Date": "Tue, 15 Nov 2022 12:27:00 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg3MjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM5NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9f693aa-bf8f-4b9e-b1a5-f5a4df3c5607", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "e9f693aa-bf8f-4b9e-b1a5-f5a4df3c5607", - "x-ms-routing-request-id": "WESTUS2:20220803T045058Z:e9f693aa-bf8f-4b9e-b1a5-f5a4df3c5607" + "x-ms-correlation-request-id": "a19c7886-3fbf-4849-904d-b5a1d736dd19", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "a19c7886-3fbf-4849-904d-b5a1d736dd19", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122701Z:a19c7886-3fbf-4849-904d-b5a1d736dd19" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg3MjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM5NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5a64872cc89cad4f9c18c6b61997ba98-75662ce1322f8546-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f12b7394077965736658f341d32d92e5", + "traceparent": "00-3262f526edaf91efe37355ea6ef5aaa0-8c72ca164d6ebb7a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b561d807112c6532055937517a9490ad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -454,28 +449,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:51:13 GMT", + "Date": "Tue, 15 Nov 2022 12:27:16 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg3MjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM5NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd234ba9-5c8d-4133-80a3-dcabd883056a", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "cd234ba9-5c8d-4133-80a3-dcabd883056a", - "x-ms-routing-request-id": "WESTUS2:20220803T045113Z:cd234ba9-5c8d-4133-80a3-dcabd883056a" + "x-ms-correlation-request-id": "ab37b95d-1e39-4974-afc5-7b7b07bbc01c", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "ab37b95d-1e39-4974-afc5-7b7b07bbc01c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122716Z:ab37b95d-1e39-4974-afc5-7b7b07bbc01c" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg3MjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM5NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5a64872cc89cad4f9c18c6b61997ba98-d9b710c65e2d7e4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "3bc7cafff0cff665f5a977f06b5b74a2", + "traceparent": "00-3262f526edaf91efe37355ea6ef5aaa0-b35bb945f01264ec-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5e195e24e720cd79a978a16cadea76f2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -483,28 +478,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:51:28 GMT", + "Date": "Tue, 15 Nov 2022 12:27:31 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg3MjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM5NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e553313b-f8e9-44fc-8f9e-e9f29aa11303", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "e553313b-f8e9-44fc-8f9e-e9f29aa11303", - "x-ms-routing-request-id": "WESTUS2:20220803T045129Z:e553313b-f8e9-44fc-8f9e-e9f29aa11303" + "x-ms-correlation-request-id": "216fff9a-8d91-448b-9160-43e70f08407d", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "216fff9a-8d91-448b-9160-43e70f08407d", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122732Z:216fff9a-8d91-448b-9160-43e70f08407d" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg3MjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM5NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5a64872cc89cad4f9c18c6b61997ba98-22cf95ebb86d6b44-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "32a27c7afc840262b33ccad7142565ea", + "traceparent": "00-3262f526edaf91efe37355ea6ef5aaa0-e68b7f9df3e131e3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d4ad052b2796f648f9875777e18c121c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -512,28 +507,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:51:44 GMT", + "Date": "Tue, 15 Nov 2022 12:27:46 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg3MjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM5NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d8b4b42-14f5-46b9-82ca-4cd0c3f47d9c", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "1d8b4b42-14f5-46b9-82ca-4cd0c3f47d9c", - "x-ms-routing-request-id": "WESTUS2:20220803T045144Z:1d8b4b42-14f5-46b9-82ca-4cd0c3f47d9c" + "x-ms-correlation-request-id": "faa60c17-4bbd-48c1-b7e1-f3141fdd0652", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "faa60c17-4bbd-48c1-b7e1-f3141fdd0652", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122747Z:faa60c17-4bbd-48c1-b7e1-f3141fdd0652" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg3MjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM5NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5a64872cc89cad4f9c18c6b61997ba98-c8638c4d88b0b645-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "206c5e83635fa47d0d34fccf8f82f90a", + "traceparent": "00-3262f526edaf91efe37355ea6ef5aaa0-250b97d74312759b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0148e59ab22c1fb15e930cb36fc6b81b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -541,28 +536,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:51:59 GMT", + "Date": "Tue, 15 Nov 2022 12:28:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg3MjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM5NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "effd85d6-a6b2-4c00-9587-35a35490d1a0", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "effd85d6-a6b2-4c00-9587-35a35490d1a0", - "x-ms-routing-request-id": "WESTUS2:20220803T045159Z:effd85d6-a6b2-4c00-9587-35a35490d1a0" + "x-ms-correlation-request-id": "0c9b96a5-cb68-4df9-85ff-5eca34e50dc0", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "0c9b96a5-cb68-4df9-85ff-5eca34e50dc0", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122803Z:0c9b96a5-cb68-4df9-85ff-5eca34e50dc0" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg3MjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM5NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5a64872cc89cad4f9c18c6b61997ba98-2b12ca36f83d0f4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "57c651e35f8a036168c48793258ee2d0", + "traceparent": "00-3262f526edaf91efe37355ea6ef5aaa0-8b3a64d1fff2152d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "742644e2bbe7fc16162365999002ec1c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -570,23 +565,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:52:14 GMT", + "Date": "Tue, 15 Nov 2022 12:28:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a97f1c4-4473-427e-a280-141e79bcf76f", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "4a97f1c4-4473-427e-a280-141e79bcf76f", - "x-ms-routing-request-id": "WESTUS2:20220803T045214Z:4a97f1c4-4473-427e-a280-141e79bcf76f" + "x-ms-correlation-request-id": "34e77803-2462-4dd1-8787-5a6d491d57db", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "34e77803-2462-4dd1-8787-5a6d491d57db", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122818Z:34e77803-2462-4dd1-8787-5a6d491d57db" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1099111546", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1690984557", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/ExistsTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/ExistsTest.json index efd00e050207..af6eed5e1718 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/ExistsTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/ExistsTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7faab1a5212aa14881e2616682c41d7c-afa377dd1558b747-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "be25c5f22244a50c1f37a7eae6812ab6", + "traceparent": "00-f832b75598468cfdfbd223cc9eb556b1-3b63662d7c25f66b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9a5b697c230ad5ee028bae7a3d2ce556", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:46 GMT", + "Date": "Tue, 15 Nov 2022 12:17:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20b2ab4c-13b0-49d7-8609-e614d29ad521", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "20b2ab4c-13b0-49d7-8609-e614d29ad521", - "x-ms-routing-request-id": "WESTUS2:20220803T044846Z:20b2ab4c-13b0-49d7-8609-e614d29ad521" + "x-ms-correlation-request-id": "960135ae-208b-41d7-8611-ba9d85c78f26", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "960135ae-208b-41d7-8611-ba9d85c78f26", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121721Z:960135ae-208b-41d7-8611-ba9d85c78f26" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName1511?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName9780?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-deca20f23825034697a7c92c31936034-7c108cfd0132d34e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a58c383fc24386ce8839e2807e1f66ff", + "traceparent": "00-eb6c88148ae95c6e673c9689605690e0-2f2779e2639f391f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f2939ab88b5708a4119cc40e830e1492", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:46 GMT", + "Date": "Tue, 15 Nov 2022 12:17:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d4f5bf3-9ee9-4a68-bb09-86c786756f01", + "x-ms-correlation-request-id": "6c5c89b8-b731-4997-8b59-ea547ed445dd", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "1d4f5bf3-9ee9-4a68-bb09-86c786756f01", - "x-ms-routing-request-id": "WESTUS2:20220803T044847Z:1d4f5bf3-9ee9-4a68-bb09-86c786756f01" + "x-ms-request-id": "6c5c89b8-b731-4997-8b59-ea547ed445dd", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121722Z:6c5c89b8-b731-4997-8b59-ea547ed445dd" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1511", - "name": "resourceGroupName1511", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9780", + "name": "resourceGroupName9780", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1511/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9780/providers/Microsoft.Network/trafficmanagerprofiles/profileName1584?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-d8c48f16afef534b83188711a828dda6-da1fc56255973247-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a4c4327d529444a927b6660b867b0d4e", + "traceparent": "00-053c8f6fd3fc8246cf24563b1389fb8b-f27386cc08211a90-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0a38e34b4b63ff6601eecf98664de3d1", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName2877", + "name": "profileName1584", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName2877" + "relativeName": "profileName1584" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:47 GMT", + "Date": "Tue, 15 Nov 2022 12:17:28 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "118e1bce-c952-4dda-9ac9-a915f25c1080", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "a4c4327d-5294-44a9-27b6-660b867b0d4e", - "x-ms-routing-request-id": "WESTUS2:20220803T044848Z:118e1bce-c952-4dda-9ac9-a915f25c1080", + "x-ms-correlation-request-id": "8a0c8193-8e42-42ba-ba68-d4f71f06cce5", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4497", + "x-ms-request-id": "0a38e34b-4b63-ff66-01ee-cf98664de3d1", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121728Z:8a0c8193-8e42-42ba-ba68-d4f71f06cce5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1511/providers/Microsoft.Network/trafficManagerProfiles/profileName2877", - "name": "profileName2877", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9780/providers/Microsoft.Network/trafficManagerProfiles/profileName1584", + "name": "profileName1584", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2877", - "fqdn": "profilename2877.trafficmanager.net", + "relativeName": "profilename1584", + "fqdn": "profilename1584.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1511/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9780/providers/Microsoft.Network/trafficManagerProfiles/profileName1584/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1511/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9780/providers/Microsoft.Network/trafficManagerProfiles/profileName1584/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1511/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9780/providers/Microsoft.Network/trafficmanagerprofiles/profileName1584?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-745c7c33912f4643a2e1076e3239b827-0d3785c00190c24d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "dce33f96b26302ae5637bce82924a118", + "traceparent": "00-c0bc21337dc2457048f53b88f402a980-a8b2eb61e02c1654-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ff52a0dbdcccde25b691f9872ac77f7c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:47 GMT", + "Date": "Tue, 15 Nov 2022 12:17:28 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19a981a5-4795-47af-9f8c-8f4d37af1b6b", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "dce33f96-b263-02ae-5637-bce82924a118", - "x-ms-routing-request-id": "WESTUS2:20220803T044848Z:19a981a5-4795-47af-9f8c-8f4d37af1b6b", + "x-ms-correlation-request-id": "541d7f07-81d0-4324-8924-fb1b4e32fb4c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1997", + "x-ms-request-id": "ff52a0db-dccc-de25-b691-f9872ac77f7c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121728Z:541d7f07-81d0-4324-8924-fb1b4e32fb4c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1511/providers/Microsoft.Network/trafficManagerProfiles/profileName2877", - "name": "profileName2877", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9780/providers/Microsoft.Network/trafficManagerProfiles/profileName1584", + "name": "profileName1584", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2877", - "fqdn": "profilename2877.trafficmanager.net", + "relativeName": "profilename1584", + "fqdn": "profilename1584.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1511/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9780/providers/Microsoft.Network/trafficManagerProfiles/profileName1584/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1511/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9780/providers/Microsoft.Network/trafficManagerProfiles/profileName1584/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,35 +305,35 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1511/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9780/providers/Microsoft.Network/trafficmanagerprofiles/profileName1584/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c96f66641b16d4499c4b1ede83ebf5e8-5960b4e62e7b6348-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4f68ea411166ed3b8e487d8d5cc3000c", + "traceparent": "00-5fedc1417a36402fa6c184be04ae148f-a55275b7e600a593-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "48f2e8994cac6c713394f068bb0ba2c4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "583", + "Content-Length": "608", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:48:48 GMT", + "Date": "Tue, 15 Nov 2022 12:17:29 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56f2a331-6b32-47f3-9633-319387ae14b3", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "4f68ea41-1166-ed3b-8e48-7d8d5cc3000c", - "x-ms-routing-request-id": "WESTUS2:20220803T044848Z:56f2a331-6b32-47f3-9633-319387ae14b3", + "x-ms-correlation-request-id": "5a2d610a-3b1e-4a5c-85cc-47bf4c2a1486", + "x-ms-ratelimit-remaining-subscription-resource-requests": "247", + "x-ms-request-id": "48f2e899-4cac-6c71-3394-f068bb0ba2c4", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121729Z:5a2d610a-3b1e-4a5c-85cc-47bf4c2a1486", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1511/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9780/providers/Microsoft.Network/trafficManagerProfiles/profileName1584/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -350,18 +346,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1511/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9780/providers/Microsoft.Network/trafficmanagerprofiles/profileName1584?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "3fe9942b893bcb9c84c14e5c96c01b02", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e233f2b815bb6fc6be5a53d152dfd43a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -369,28 +366,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:48:49 GMT", + "Date": "Tue, 15 Nov 2022 12:17:34 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a57dc3e-d883-4fa6-ac5a-d410c592fd03", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "3fe9942b-893b-cb9c-84c1-4e5c96c01b02", - "x-ms-routing-request-id": "WESTUS2:20220803T044850Z:3a57dc3e-d883-4fa6-ac5a-d410c592fd03", + "x-ms-correlation-request-id": "7a5250fc-c52d-48af-9578-e3ce7d8e5052", + "x-ms-ratelimit-remaining-subscription-resource-requests": "497", + "x-ms-request-id": "e233f2b8-15bb-6fc6-be5a-53d152dfd43a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121734Z:7a5250fc-c52d-48af-9578-e3ce7d8e5052", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName1511?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName9780?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6dbcfabe89d1ae488dacc8290b792860-1955aef9523e184a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "9bca4d15be1385e704f64e1b3521a693", + "traceparent": "00-dc80e93331e84966ea8384b0f9c95226-c0bce98330f026c5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7dff526f9b5a8e252fe6cb38ebbc22ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -398,28 +395,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:48:50 GMT", + "Date": "Tue, 15 Nov 2022 12:17:37 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MTEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3ODAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3aa2d44d-77da-410d-99e7-5d99592cee47", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-request-id": "3aa2d44d-77da-410d-99e7-5d99592cee47", - "x-ms-routing-request-id": "WESTUS2:20220803T044851Z:3aa2d44d-77da-410d-99e7-5d99592cee47" + "x-ms-correlation-request-id": "cd4870dc-6c7d-41c6-9b80-9491ee1bf1e7", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-request-id": "cd4870dc-6c7d-41c6-9b80-9491ee1bf1e7", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121737Z:cd4870dc-6c7d-41c6-9b80-9491ee1bf1e7" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MTEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3ODAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6dbcfabe89d1ae488dacc8290b792860-d7baf5cfab626d49-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0e777a2c64f86cf9ac643b443b819563", + "traceparent": "00-dc80e93331e84966ea8384b0f9c95226-2d3e278f33a04b12-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "68f8b6bf240c1d69cca4b3d5498e8301", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -427,28 +424,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:48:50 GMT", + "Date": "Tue, 15 Nov 2022 12:17:37 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MTEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3ODAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35e22165-6e89-450c-95c2-8b019d07ae86", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "35e22165-6e89-450c-95c2-8b019d07ae86", - "x-ms-routing-request-id": "WESTUS2:20220803T044851Z:35e22165-6e89-450c-95c2-8b019d07ae86" + "x-ms-correlation-request-id": "06eeb137-49c9-4a38-8886-6deb1fcf486a", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "06eeb137-49c9-4a38-8886-6deb1fcf486a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121737Z:06eeb137-49c9-4a38-8886-6deb1fcf486a" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MTEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3ODAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6dbcfabe89d1ae488dacc8290b792860-8960d27faa15c244-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e725ba1b8603b3c770134d76f343c125", + "traceparent": "00-dc80e93331e84966ea8384b0f9c95226-0db57eda13cff948-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1ee2a7379c11d3a6917a5cd711d2958f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:17:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3ODAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "daed4882-cbeb-41e0-96e4-0ffcef8e1e94", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "daed4882-cbeb-41e0-96e4-0ffcef8e1e94", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121753Z:daed4882-cbeb-41e0-96e4-0ffcef8e1e94" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3ODAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-dc80e93331e84966ea8384b0f9c95226-1140d001b43dc94c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "347977ccb9c4ca9fcbb16befe9eb3a93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:18:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3ODAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1f805316-15da-4c71-8269-766a349eca04", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "1f805316-15da-4c71-8269-766a349eca04", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121808Z:1f805316-15da-4c71-8269-766a349eca04" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3ODAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-dc80e93331e84966ea8384b0f9c95226-4a7c637da743ec94-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "511b88fffbbc22430f25d791c8910bfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:18:23 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3ODAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "54aaa872-0f3c-488c-8b8f-005a1b5d2636", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "54aaa872-0f3c-488c-8b8f-005a1b5d2636", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121824Z:54aaa872-0f3c-488c-8b8f-005a1b5d2636" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3ODAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-dc80e93331e84966ea8384b0f9c95226-2ea011defd0c95f5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d208230e4e157d3d0717525f30b7e9a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:18:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3ODAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c70798d4-ea57-4f01-baff-f3e47105e25b", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "c70798d4-ea57-4f01-baff-f3e47105e25b", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121839Z:c70798d4-ea57-4f01-baff-f3e47105e25b" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk3ODAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-dc80e93331e84966ea8384b0f9c95226-c46bed4a7957c271-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "88d8c84043b7d1d33456249ee20e0239", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -456,23 +569,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:49:05 GMT", + "Date": "Tue, 15 Nov 2022 12:18:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0023c6f1-7a8a-4eb8-af58-fb30a994c4d5", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "0023c6f1-7a8a-4eb8-af58-fb30a994c4d5", - "x-ms-routing-request-id": "WESTUS2:20220803T044906Z:0023c6f1-7a8a-4eb8-af58-fb30a994c4d5" + "x-ms-correlation-request-id": "bb4874b7-0c56-48c0-b0a2-8c766b27a89b", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "bb4874b7-0c56-48c0-b0a2-8c766b27a89b", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121855Z:bb4874b7-0c56-48c0-b0a2-8c766b27a89b" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1987387788", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "931066417", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/ExistsTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/ExistsTestAsync.json index 45bfc715c130..cb2183072aa7 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/ExistsTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/ExistsTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-66d46b49d4344a4391f667014b6ce384-54b8dcff0a88a44b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "061f61b95aa69feaa51f6c9a6366dd05", + "traceparent": "00-3a841b0d8dd289cf2ab39fb091b2fc65-f189c16ec58b8d20-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9318153effedcd7c04387dcdfa54169f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:14 GMT", + "Date": "Tue, 15 Nov 2022 12:28:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a73cd25c-ef63-486e-b1c1-290bdad458ee", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "a73cd25c-ef63-486e-b1c1-290bdad458ee", - "x-ms-routing-request-id": "WESTUS2:20220803T045215Z:a73cd25c-ef63-486e-b1c1-290bdad458ee" + "x-ms-correlation-request-id": "6c15cc36-b7e1-4ed2-adb8-e69c58f5ca14", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "6c15cc36-b7e1-4ed2-adb8-e69c58f5ca14", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122819Z:6c15cc36-b7e1-4ed2-adb8-e69c58f5ca14" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName5146?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName1249?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-a3365d36e6d6b24eb08edf341ce27b36-c0d202d0266c8846-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4c38e01bacb96ee9b895fb07df5a3ffa", + "traceparent": "00-ac9488c59bf60983fc749706c9d7fef1-89ed748ae8499b75-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a0683021a872f64e2024695e98925cf7", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:15 GMT", + "Date": "Tue, 15 Nov 2022 12:28:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b66e2e01-68b8-4df6-be84-8f401aff5ea9", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "b66e2e01-68b8-4df6-be84-8f401aff5ea9", - "x-ms-routing-request-id": "WESTUS2:20220803T045215Z:b66e2e01-68b8-4df6-be84-8f401aff5ea9" + "x-ms-correlation-request-id": "5fa0a364-db8b-4722-9bd1-8d2cf2651790", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "5fa0a364-db8b-4722-9bd1-8d2cf2651790", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122821Z:5fa0a364-db8b-4722-9bd1-8d2cf2651790" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5146", - "name": "resourceGroupName5146", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1249", + "name": "resourceGroupName1249", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5146/providers/Microsoft.Network/trafficmanagerprofiles/profileName7386?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1249/providers/Microsoft.Network/trafficmanagerprofiles/profileName2499?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-289997921ad93045a13ead2db7215b9d-251c7ca8e5cd114c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "826570ffc6ad1c3956294002f1f878e8", + "traceparent": "00-1fcd46c3fe09985ae1939527a5b29467-37553ad7bb16c857-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5f5e43dbc5c0d29398c340878112ef47", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName7386", + "name": "profileName2499", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName7386" + "relativeName": "profileName2499" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:17 GMT", + "Date": "Tue, 15 Nov 2022 12:28:24 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e76aac4-7940-4781-818b-1693053cee07", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10790", - "x-ms-request-id": "826570ff-c6ad-1c39-5629-4002f1f878e8", - "x-ms-routing-request-id": "WESTUS2:20220803T045217Z:7e76aac4-7940-4781-818b-1693053cee07", + "x-ms-correlation-request-id": "076767e6-61b8-4041-969b-42af9c6839dc", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "5f5e43db-c5c0-d293-98c3-40878112ef47", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122825Z:076767e6-61b8-4041-969b-42af9c6839dc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5146/providers/Microsoft.Network/trafficManagerProfiles/profileName7386", - "name": "profileName7386", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1249/providers/Microsoft.Network/trafficManagerProfiles/profileName2499", + "name": "profileName2499", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7386", - "fqdn": "profilename7386.trafficmanager.net", + "relativeName": "profilename2499", + "fqdn": "profilename2499.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5146/providers/Microsoft.Network/trafficManagerProfiles/profileName7386/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1249/providers/Microsoft.Network/trafficManagerProfiles/profileName2499/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5146/providers/Microsoft.Network/trafficManagerProfiles/profileName7386/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1249/providers/Microsoft.Network/trafficManagerProfiles/profileName2499/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5146/providers/Microsoft.Network/trafficmanagerprofiles/profileName7386?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1249/providers/Microsoft.Network/trafficmanagerprofiles/profileName2499?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5639ba664c5a1d49a6754ec164cb7d00-97b33f9fde8a744d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "74797b1f6ee5b4003598eec5ee97c5c4", + "traceparent": "00-a9f92211cce81115afda5b7044ef0200-985a9577cb00cb4f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1f302fd1838b6dcbc99ccddb126e6ca6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:17 GMT", + "Date": "Tue, 15 Nov 2022 12:28:25 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b02fed73-39c5-4c1b-adc6-16dff76e11c1", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "74797b1f-6ee5-b400-3598-eec5ee97c5c4", - "x-ms-routing-request-id": "WESTUS2:20220803T045217Z:b02fed73-39c5-4c1b-adc6-16dff76e11c1", + "x-ms-correlation-request-id": "48e19eae-5576-427d-8660-a35a17920259", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1996", + "x-ms-request-id": "1f302fd1-838b-6dcb-c99c-cddb126e6ca6", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122826Z:48e19eae-5576-427d-8660-a35a17920259", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5146/providers/Microsoft.Network/trafficManagerProfiles/profileName7386", - "name": "profileName7386", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1249/providers/Microsoft.Network/trafficManagerProfiles/profileName2499", + "name": "profileName2499", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7386", - "fqdn": "profilename7386.trafficmanager.net", + "relativeName": "profilename2499", + "fqdn": "profilename2499.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5146/providers/Microsoft.Network/trafficManagerProfiles/profileName7386/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1249/providers/Microsoft.Network/trafficManagerProfiles/profileName2499/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5146/providers/Microsoft.Network/trafficManagerProfiles/profileName7386/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1249/providers/Microsoft.Network/trafficManagerProfiles/profileName2499/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,35 +305,35 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5146/providers/Microsoft.Network/trafficmanagerprofiles/profileName7386/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1249/providers/Microsoft.Network/trafficmanagerprofiles/profileName2499/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-49337472f4b6c94094fdd2f374dcdae4-a5ad7e763612c043-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f5639f2c8277557ea61cf58f6ce77cbf", + "traceparent": "00-c83efaa22182771596dbe8ada407f844-2cc3b1602b88e455-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "111fd6203fb85b6f9d9508af67c6750e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "583", + "Content-Length": "608", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:17 GMT", + "Date": "Tue, 15 Nov 2022 12:28:25 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1180ae0d-6da3-4688-a00d-9b79798c1592", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "f5639f2c-8277-557e-a61c-f58f6ce77cbf", - "x-ms-routing-request-id": "WESTUS2:20220803T045217Z:1180ae0d-6da3-4688-a00d-9b79798c1592", + "x-ms-correlation-request-id": "c7378f3d-5411-44ad-b338-9803498131e6", + "x-ms-ratelimit-remaining-subscription-resource-requests": "242", + "x-ms-request-id": "111fd620-3fb8-5b6f-9d95-08af67c6750e", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122826Z:c7378f3d-5411-44ad-b338-9803498131e6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5146/providers/Microsoft.Network/trafficManagerProfiles/profileName7386/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1249/providers/Microsoft.Network/trafficManagerProfiles/profileName2499/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -350,18 +346,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5146/providers/Microsoft.Network/trafficmanagerprofiles/profileName7386?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1249/providers/Microsoft.Network/trafficmanagerprofiles/profileName2499?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "64e8131ccbe1911570b14d14d7742dbe", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "688c21343d61576b77f19524f8b7c029", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -369,28 +366,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:52:19 GMT", + "Date": "Tue, 15 Nov 2022 12:28:30 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d2ceaec-e878-4783-8c61-6decaeb82631", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10790", - "x-ms-request-id": "64e8131c-cbe1-9115-70b1-4d14d7742dbe", - "x-ms-routing-request-id": "WESTUS2:20220803T045219Z:4d2ceaec-e878-4783-8c61-6decaeb82631", + "x-ms-correlation-request-id": "b4a3b71c-1a08-4ff7-8b11-0ec96cf3a102", + "x-ms-ratelimit-remaining-subscription-resource-requests": "494", + "x-ms-request-id": "688c2134-3d61-576b-77f1-9524f8b7c029", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122831Z:b4a3b71c-1a08-4ff7-8b11-0ec96cf3a102", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName5146?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName1249?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5c4a8945ac2113468410614303943d40-84a47500aa353d46-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "52d57b6383949c70fc24cec97871484d", + "traceparent": "00-e21ce21567fb9214b27ba2eaf11887d7-c3af3c2d4e27e3e1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "aa679a56def2928fc0d582f57b1c0503", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -398,28 +395,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:52:20 GMT", + "Date": "Tue, 15 Nov 2022 12:28:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEyNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1849707-3ba4-4ad0-8675-b5da9c6f4886", + "x-ms-correlation-request-id": "ae87f215-5ca5-49b5-a454-1664ac24efb4", "x-ms-ratelimit-remaining-subscription-deletes": "14988", - "x-ms-request-id": "e1849707-3ba4-4ad0-8675-b5da9c6f4886", - "x-ms-routing-request-id": "WESTUS2:20220803T045220Z:e1849707-3ba4-4ad0-8675-b5da9c6f4886" + "x-ms-request-id": "ae87f215-5ca5-49b5-a454-1664ac24efb4", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122833Z:ae87f215-5ca5-49b5-a454-1664ac24efb4" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEyNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5c4a8945ac2113468410614303943d40-4baf11580ade5845-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f02b36ef2912982aa34b67bcfc4b18fe", + "traceparent": "00-e21ce21567fb9214b27ba2eaf11887d7-cdeaa1cdbfb30c3e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "cd58ded5cb5f561b92faa88cba75dc5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -427,28 +424,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:52:20 GMT", + "Date": "Tue, 15 Nov 2022 12:28:34 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEyNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e73a1f7d-14d1-4463-8d31-83ec46755056", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "e73a1f7d-14d1-4463-8d31-83ec46755056", - "x-ms-routing-request-id": "WESTUS2:20220803T045220Z:e73a1f7d-14d1-4463-8d31-83ec46755056" + "x-ms-correlation-request-id": "7c1b3975-e729-41e7-b0b8-df014034b961", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "7c1b3975-e729-41e7-b0b8-df014034b961", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122834Z:7c1b3975-e729-41e7-b0b8-df014034b961" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEyNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5c4a8945ac2113468410614303943d40-025cb81a7ccfb04a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a9f8ff6852cb020f9873c8c1fea96792", + "traceparent": "00-e21ce21567fb9214b27ba2eaf11887d7-5daf6023c4f0a3dc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "39fd92ebcf10524755833f2b44c8e975", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:28:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEyNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d37bb834-411b-453b-8d39-de287831db96", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "d37bb834-411b-453b-8d39-de287831db96", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122849Z:d37bb834-411b-453b-8d39-de287831db96" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEyNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e21ce21567fb9214b27ba2eaf11887d7-8445e968f1b28a56-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9c209c7238c35ba4a4505ee85bb828f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:29:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEyNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fca4626a-e867-43a4-a494-ee7c03340854", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "fca4626a-e867-43a4-a494-ee7c03340854", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122904Z:fca4626a-e867-43a4-a494-ee7c03340854" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEyNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e21ce21567fb9214b27ba2eaf11887d7-d3ce016db25ea785-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "16db3eea294d06d5970677db8bef12c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:29:20 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEyNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "11a63231-48aa-4c84-8ea4-a4f5c95e56e0", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "11a63231-48aa-4c84-8ea4-a4f5c95e56e0", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122920Z:11a63231-48aa-4c84-8ea4-a4f5c95e56e0" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEyNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e21ce21567fb9214b27ba2eaf11887d7-a7996b1268087238-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1e1932114055b298eea294bf715ff69d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:29:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEyNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6cf464f6-3b42-48c4-a2bb-617ab17bcceb", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "6cf464f6-3b42-48c4-a2bb-617ab17bcceb", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122935Z:6cf464f6-3b42-48c4-a2bb-617ab17bcceb" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEyNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e21ce21567fb9214b27ba2eaf11887d7-a406f666370b3391-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0540495bd2ed4928c71905bdc1c9cfb4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -456,23 +569,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:52:35 GMT", + "Date": "Tue, 15 Nov 2022 12:29:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7bfee630-ed8a-4964-9571-7e1330a9e075", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "7bfee630-ed8a-4964-9571-7e1330a9e075", - "x-ms-routing-request-id": "WESTUS2:20220803T045235Z:7bfee630-ed8a-4964-9571-7e1330a9e075" + "x-ms-correlation-request-id": "4e6910f9-7731-4c12-aa24-667e75d50969", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "4e6910f9-7731-4c12-aa24-667e75d50969", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122951Z:4e6910f9-7731-4c12-aa24-667e75d50969" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "996247737", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "148199753", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetOnCollectionTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetOnCollectionTest.json index 5032a09b9633..65024d5f29f0 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetOnCollectionTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetOnCollectionTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5235265c9747364ebbab32eb6f2cacea-f0af50a87d44e846-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6de53a7ebc0a70657c744d613df876ba", + "traceparent": "00-0c2505575cb2417729d4894207c6c6a0-065f3e01254a43d6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8b2fcafd662c8201ae3344f2b9cfa16a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:06 GMT", + "Date": "Tue, 15 Nov 2022 12:18:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb9956a1-d972-4d8e-b6ea-a1894cb027bf", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "eb9956a1-d972-4d8e-b6ea-a1894cb027bf", - "x-ms-routing-request-id": "WESTUS2:20220803T044906Z:eb9956a1-d972-4d8e-b6ea-a1894cb027bf" + "x-ms-correlation-request-id": "29d396d6-03b1-4554-8ccb-ac7396af176f", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "29d396d6-03b1-4554-8ccb-ac7396af176f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121856Z:29d396d6-03b1-4554-8ccb-ac7396af176f" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6090?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName2544?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-f8caf4e51034a44d96f942a8deb14ae6-cda16ae43e206941-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "164380e02cc26bdc8e5e142fc0b6b82f", + "traceparent": "00-397ca215cd8ad8b0d680da17b75c5be5-a608cc2b115a8844-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b6240d32e4ea7d9a4d770e3901b8ae8b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:06 GMT", + "Date": "Tue, 15 Nov 2022 12:18:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d97bf47-e7b7-4cf6-b88f-0e16da325cf0", + "x-ms-correlation-request-id": "fe547c1e-16e5-4c5c-8de8-21c95d35fa98", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "9d97bf47-e7b7-4cf6-b88f-0e16da325cf0", - "x-ms-routing-request-id": "WESTUS2:20220803T044907Z:9d97bf47-e7b7-4cf6-b88f-0e16da325cf0" + "x-ms-request-id": "fe547c1e-16e5-4c5c-8de8-21c95d35fa98", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121857Z:fe547c1e-16e5-4c5c-8de8-21c95d35fa98" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6090", - "name": "resourceGroupName6090", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2544", + "name": "resourceGroupName2544", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6090/providers/Microsoft.Network/trafficmanagerprofiles/profileName2183?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2544/providers/Microsoft.Network/trafficmanagerprofiles/profileName2049?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-e5f6e8495e523742a23696573dcbda70-48f3c9503eabb849-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "23437ae7dd863dbd323a52e004ea1be5", + "traceparent": "00-db097e07a553d32b27294f47f93e6c15-450c773ce00c988d-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "359a950ce4ab789cc651d88e18f445c6", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName2183", + "name": "profileName2049", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName2183" + "relativeName": "profileName2049" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:07 GMT", + "Date": "Tue, 15 Nov 2022 12:19:00 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e80ccad-697e-4163-b2ee-ce3eee5e54b0", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "23437ae7-dd86-3dbd-323a-52e004ea1be5", - "x-ms-routing-request-id": "WESTUS2:20220803T044908Z:1e80ccad-697e-4163-b2ee-ce3eee5e54b0", + "x-ms-correlation-request-id": "902e50c9-5e71-470e-9303-22959335ac4a", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4496", + "x-ms-request-id": "359a950c-e4ab-789c-c651-d88e18f445c6", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121900Z:902e50c9-5e71-470e-9303-22959335ac4a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6090/providers/Microsoft.Network/trafficManagerProfiles/profileName2183", - "name": "profileName2183", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2544/providers/Microsoft.Network/trafficManagerProfiles/profileName2049", + "name": "profileName2049", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2183", - "fqdn": "profilename2183.trafficmanager.net", + "relativeName": "profilename2049", + "fqdn": "profilename2049.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6090/providers/Microsoft.Network/trafficManagerProfiles/profileName2183/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2544/providers/Microsoft.Network/trafficManagerProfiles/profileName2049/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6090/providers/Microsoft.Network/trafficManagerProfiles/profileName2183/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2544/providers/Microsoft.Network/trafficManagerProfiles/profileName2049/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6090/providers/Microsoft.Network/trafficmanagerprofiles/profileName2183?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2544/providers/Microsoft.Network/trafficmanagerprofiles/profileName2049?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c3e9117e86bd734a94daf03d5e1ec86a-69ebbdac957dae47-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ce79f879fe090dbb09027b5d5141bcbd", + "traceparent": "00-e5ae374ec81a8b70290dc69a1994d1f7-70935df315cbaf9d-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bba4b6221550e612950edeeef248ac7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:07 GMT", + "Date": "Tue, 15 Nov 2022 12:19:01 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "54f0fcb7-9800-49b4-ad4c-1e421fc3de31", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "ce79f879-fe09-0dbb-0902-7b5d5141bcbd", - "x-ms-routing-request-id": "WESTUS2:20220803T044908Z:54f0fcb7-9800-49b4-ad4c-1e421fc3de31", + "x-ms-correlation-request-id": "248f14c7-7790-4fc1-b7e6-9acd6fdcc0ca", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1996", + "x-ms-request-id": "bba4b622-1550-e612-950e-deeef248ac7a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121901Z:248f14c7-7790-4fc1-b7e6-9acd6fdcc0ca", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6090/providers/Microsoft.Network/trafficManagerProfiles/profileName2183", - "name": "profileName2183", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2544/providers/Microsoft.Network/trafficManagerProfiles/profileName2049", + "name": "profileName2049", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2183", - "fqdn": "profilename2183.trafficmanager.net", + "relativeName": "profilename2049", + "fqdn": "profilename2049.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6090/providers/Microsoft.Network/trafficManagerProfiles/profileName2183/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2544/providers/Microsoft.Network/trafficManagerProfiles/profileName2049/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6090/providers/Microsoft.Network/trafficManagerProfiles/profileName2183/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2544/providers/Microsoft.Network/trafficManagerProfiles/profileName2049/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,35 +305,35 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6090/providers/Microsoft.Network/trafficmanagerprofiles/profileName2183/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2544/providers/Microsoft.Network/trafficmanagerprofiles/profileName2049/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5754e4a5b41f5244a44981322b56c427-2137b3385fd73246-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7d5531949632039ec306e488d9fb66a4", + "traceparent": "00-3d057623774127a67d43e8097b2ca285-d78735967de22115-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "39ad679535064e9b70abf0980b0b6558", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "583", + "Content-Length": "608", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:08 GMT", + "Date": "Tue, 15 Nov 2022 12:19:01 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a57f084-619f-4a69-949f-f3b54c42c1a5", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "7d553194-9632-039e-c306-e488d9fb66a4", - "x-ms-routing-request-id": "WESTUS2:20220803T044908Z:5a57f084-619f-4a69-949f-f3b54c42c1a5", + "x-ms-correlation-request-id": "42571b71-6aee-4b68-bba6-a7baed99f45b", + "x-ms-ratelimit-remaining-subscription-resource-requests": "246", + "x-ms-request-id": "39ad6795-3506-4e9b-70ab-f0980b0b6558", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121901Z:42571b71-6aee-4b68-bba6-a7baed99f45b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6090/providers/Microsoft.Network/trafficManagerProfiles/profileName2183/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2544/providers/Microsoft.Network/trafficManagerProfiles/profileName2049/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -350,18 +346,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6090/providers/Microsoft.Network/trafficmanagerprofiles/profileName2183?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2544/providers/Microsoft.Network/trafficmanagerprofiles/profileName2049?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c8b52f43e93de925bf351984615fecf0", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4a174732f214f63a82b3a09d05ad857e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -369,28 +366,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:49:09 GMT", + "Date": "Tue, 15 Nov 2022 12:19:06 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc8bca0b-0796-457f-a087-da86198936de", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "c8b52f43-e93d-e925-bf35-1984615fecf0", - "x-ms-routing-request-id": "WESTUS2:20220803T044910Z:dc8bca0b-0796-457f-a087-da86198936de", + "x-ms-correlation-request-id": "a47e3a38-5030-4b4e-94b8-ab4bdc870958", + "x-ms-ratelimit-remaining-subscription-resource-requests": "496", + "x-ms-request-id": "4a174732-f214-f63a-82b3-a09d05ad857e", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121907Z:a47e3a38-5030-4b4e-94b8-ab4bdc870958", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6090?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName2544?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a7abca02c7d92e439a9e438892107ffd-75822108ece66f41-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d24b957e9d94e2b25a760b031933330e", + "traceparent": "00-8c3cae0cd3293e438f389c08354c37e4-60bcc5779864a90b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b0f85da50b47edc01a564aa5257ada89", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -398,28 +395,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:49:10 GMT", + "Date": "Tue, 15 Nov 2022 12:19:09 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae894124-13c3-4f9c-9c54-39defebcfcef", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-request-id": "ae894124-13c3-4f9c-9c54-39defebcfcef", - "x-ms-routing-request-id": "WESTUS2:20220803T044911Z:ae894124-13c3-4f9c-9c54-39defebcfcef" + "x-ms-correlation-request-id": "da194f32-0b1e-4d47-b537-3f9eb3aa45ca", + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-request-id": "da194f32-0b1e-4d47-b537-3f9eb3aa45ca", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121910Z:da194f32-0b1e-4d47-b537-3f9eb3aa45ca" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a7abca02c7d92e439a9e438892107ffd-828d68a9590a6f42-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4409f31994afa60f7cd26dc6de21cf8c", + "traceparent": "00-8c3cae0cd3293e438f389c08354c37e4-a1cfe118ab997a10-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "aef37125b412261187292fbda895d108", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -427,28 +424,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:49:10 GMT", + "Date": "Tue, 15 Nov 2022 12:19:10 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "749d4590-6363-42b9-944b-3fd91fa2132c", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "749d4590-6363-42b9-944b-3fd91fa2132c", - "x-ms-routing-request-id": "WESTUS2:20220803T044911Z:749d4590-6363-42b9-944b-3fd91fa2132c" + "x-ms-correlation-request-id": "5818e400-5ea8-4ae8-9ee3-7492036a3770", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "5818e400-5ea8-4ae8-9ee3-7492036a3770", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121910Z:5818e400-5ea8-4ae8-9ee3-7492036a3770" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a7abca02c7d92e439a9e438892107ffd-e82ca687184e914b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8ae80a01ca468a6414a0c628deb5653f", + "traceparent": "00-8c3cae0cd3293e438f389c08354c37e4-9ffa9cb6b4a6f3dc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7ff416d9daf0434df6558491556d581c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:19:25 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3838dee8-0e0b-46bd-b7f6-4a255941b376", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "3838dee8-0e0b-46bd-b7f6-4a255941b376", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121926Z:3838dee8-0e0b-46bd-b7f6-4a255941b376" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8c3cae0cd3293e438f389c08354c37e4-b4e6f10226502efc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b37f870d2c87f4777496230731a8fa96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:19:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c11aa0c2-3b9a-4158-98d6-e77f2d2a8f38", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "c11aa0c2-3b9a-4158-98d6-e77f2d2a8f38", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121941Z:c11aa0c2-3b9a-4158-98d6-e77f2d2a8f38" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8c3cae0cd3293e438f389c08354c37e4-daa162b8eaff9acd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7e79aee5c8094ad224b0b7bc2f7fd01a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:19:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e6305687-0494-4c33-89e4-4ae9261aceb5", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "e6305687-0494-4c33-89e4-4ae9261aceb5", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T121957Z:e6305687-0494-4c33-89e4-4ae9261aceb5" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8c3cae0cd3293e438f389c08354c37e4-4d43002dea3256b9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "21b013d01d16ac819f000b5ab745114d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:20:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "32fe5b8b-95a2-4341-a5b3-92c48568b7dc", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "32fe5b8b-95a2-4341-a5b3-92c48568b7dc", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122012Z:32fe5b8b-95a2-4341-a5b3-92c48568b7dc" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1NDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8c3cae0cd3293e438f389c08354c37e4-9993d4552256339b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a7abed5bdaf34412b4348fd674bac4f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -456,23 +569,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:49:26 GMT", + "Date": "Tue, 15 Nov 2022 12:20:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3b86222-67ad-42a1-a329-241145ecfb7a", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "e3b86222-67ad-42a1-a329-241145ecfb7a", - "x-ms-routing-request-id": "WESTUS2:20220803T044926Z:e3b86222-67ad-42a1-a329-241145ecfb7a" + "x-ms-correlation-request-id": "1b50208c-5217-4122-ad23-68babaf5f2ea", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "1b50208c-5217-4122-ad23-68babaf5f2ea", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122028Z:1b50208c-5217-4122-ad23-68babaf5f2ea" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1390908851", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "2006373962", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetOnCollectionTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetOnCollectionTestAsync.json index 2156d4bda9ce..81d7adfc38ed 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetOnCollectionTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetOnCollectionTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f2320e7983bd6d48ad579473067ca40e-2802fb5cbe37d14d-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ea5d69e2a41a10e0f9c17e0aa0e4bea5", + "traceparent": "00-fbccfca3326dc88b3f85e6f9583d76aa-fd1e408ba8b54851-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "52e346214d62cf3903bd6c8a35da9263", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:35 GMT", + "Date": "Tue, 15 Nov 2022 12:29:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09ad82b8-3075-4165-a407-8175732ec7bb", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "09ad82b8-3075-4165-a407-8175732ec7bb", - "x-ms-routing-request-id": "WESTUS2:20220803T045236Z:09ad82b8-3075-4165-a407-8175732ec7bb" + "x-ms-correlation-request-id": "89056cac-f3c8-48f5-8473-da87be296f81", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "89056cac-f3c8-48f5-8473-da87be296f81", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122952Z:89056cac-f3c8-48f5-8473-da87be296f81" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName7026?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6224?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-4f2f6645c1600749ab8233640cb06947-26de311660c54043-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d71e3dd4684312c37b95b9022dbd81af", + "traceparent": "00-32c006734e5a07c07e3695adc05a5c61-e5168853695d4a59-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ba86474a332f73ad9c4ee45cc05d40f2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:36 GMT", + "Date": "Tue, 15 Nov 2022 12:29:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c3706f2-45ca-4c90-a4b5-7e6c6faae178", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-request-id": "4c3706f2-45ca-4c90-a4b5-7e6c6faae178", - "x-ms-routing-request-id": "WESTUS2:20220803T045237Z:4c3706f2-45ca-4c90-a4b5-7e6c6faae178" + "x-ms-correlation-request-id": "e0e18228-73bf-4be3-95e8-b41a97b8a2e9", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "e0e18228-73bf-4be3-95e8-b41a97b8a2e9", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122953Z:e0e18228-73bf-4be3-95e8-b41a97b8a2e9" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7026", - "name": "resourceGroupName7026", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6224", + "name": "resourceGroupName6224", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7026/providers/Microsoft.Network/trafficmanagerprofiles/profileName3244?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6224/providers/Microsoft.Network/trafficmanagerprofiles/profileName2912?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-9b6824559ba39e488803c6c93be5572d-910752713b90fe49-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b56c3629fbea1c7b8e5c537f6724f8aa", + "traceparent": "00-45662086ca970e5356b5c03cc6d073df-7f94095b7780f910-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d51c36ddf86e23911f6556b87bcd80e9", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName3244", + "name": "profileName2912", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName3244" + "relativeName": "profileName2912" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:37 GMT", + "Date": "Tue, 15 Nov 2022 12:29:56 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6967f19f-cfc9-4091-bd15-fc2623db4153", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10789", - "x-ms-request-id": "b56c3629-fbea-1c7b-8e5c-537f6724f8aa", - "x-ms-routing-request-id": "WESTUS2:20220803T045238Z:6967f19f-cfc9-4091-bd15-fc2623db4153", + "x-ms-correlation-request-id": "547ac0ad-40cb-4792-97a7-c7efa886696d", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4493", + "x-ms-request-id": "d51c36dd-f86e-2391-1f65-56b87bcd80e9", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122957Z:547ac0ad-40cb-4792-97a7-c7efa886696d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7026/providers/Microsoft.Network/trafficManagerProfiles/profileName3244", - "name": "profileName3244", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6224/providers/Microsoft.Network/trafficManagerProfiles/profileName2912", + "name": "profileName2912", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3244", - "fqdn": "profilename3244.trafficmanager.net", + "relativeName": "profilename2912", + "fqdn": "profilename2912.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7026/providers/Microsoft.Network/trafficManagerProfiles/profileName3244/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6224/providers/Microsoft.Network/trafficManagerProfiles/profileName2912/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7026/providers/Microsoft.Network/trafficManagerProfiles/profileName3244/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6224/providers/Microsoft.Network/trafficManagerProfiles/profileName2912/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7026/providers/Microsoft.Network/trafficmanagerprofiles/profileName3244?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6224/providers/Microsoft.Network/trafficmanagerprofiles/profileName2912?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-055b59e37f248a4fbb0bbc80e6290cf0-c1f1e52e15c3da4c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "fb68ac3a7ee1019e99d79f0f260dcc03", + "traceparent": "00-21c8597a9f2535348f5c4fb0cae46e89-8468f094a12977c6-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e881255909a413f136dec5fe5572425f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:37 GMT", + "Date": "Tue, 15 Nov 2022 12:29:57 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab3343cd-2496-445d-8f8c-96727e6f325c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "fb68ac3a-7ee1-019e-99d7-9f0f260dcc03", - "x-ms-routing-request-id": "WESTUS2:20220803T045238Z:ab3343cd-2496-445d-8f8c-96727e6f325c", + "x-ms-correlation-request-id": "ada54a5f-95d7-4cee-b7e3-80f58651af8a", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1995", + "x-ms-request-id": "e8812559-09a4-13f1-36de-c5fe5572425f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122958Z:ada54a5f-95d7-4cee-b7e3-80f58651af8a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7026/providers/Microsoft.Network/trafficManagerProfiles/profileName3244", - "name": "profileName3244", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6224/providers/Microsoft.Network/trafficManagerProfiles/profileName2912", + "name": "profileName2912", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3244", - "fqdn": "profilename3244.trafficmanager.net", + "relativeName": "profilename2912", + "fqdn": "profilename2912.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7026/providers/Microsoft.Network/trafficManagerProfiles/profileName3244/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6224/providers/Microsoft.Network/trafficManagerProfiles/profileName2912/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7026/providers/Microsoft.Network/trafficManagerProfiles/profileName3244/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6224/providers/Microsoft.Network/trafficManagerProfiles/profileName2912/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,35 +305,35 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7026/providers/Microsoft.Network/trafficmanagerprofiles/profileName3244/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6224/providers/Microsoft.Network/trafficmanagerprofiles/profileName2912/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cb17b167acb758498416e611681a0c6d-d10a6c7a95f13d45-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ae775bfdef51d9dbc10248e71444ab56", + "traceparent": "00-948f298095564bf37379e453c20a681a-c076d4dcaff23480-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a457972c8d765162b6629bcadcf5f7cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "583", + "Content-Length": "608", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:38 GMT", + "Date": "Tue, 15 Nov 2022 12:29:58 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5737d02f-21df-4179-b72b-bbcf40816983", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "ae775bfd-ef51-d9db-c102-48e71444ab56", - "x-ms-routing-request-id": "WESTUS2:20220803T045238Z:5737d02f-21df-4179-b72b-bbcf40816983", + "x-ms-correlation-request-id": "1b22ea44-a569-4310-8c85-a29f1c67c85b", + "x-ms-ratelimit-remaining-subscription-resource-requests": "241", + "x-ms-request-id": "a457972c-8d76-5162-b662-9bcadcf5f7cf", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122958Z:1b22ea44-a569-4310-8c85-a29f1c67c85b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7026/providers/Microsoft.Network/trafficManagerProfiles/profileName3244/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6224/providers/Microsoft.Network/trafficManagerProfiles/profileName2912/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -350,18 +346,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7026/providers/Microsoft.Network/trafficmanagerprofiles/profileName3244?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6224/providers/Microsoft.Network/trafficmanagerprofiles/profileName2912?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "80c80f9c8654aacd986a1b125c6cf581", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9b03face57dcd34e45089f8f3292ceac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -369,28 +366,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:52:39 GMT", + "Date": "Tue, 15 Nov 2022 12:30:04 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad7c106b-15ab-411f-9f02-9a5d00be3293", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10789", - "x-ms-request-id": "80c80f9c-8654-aacd-986a-1b125c6cf581", - "x-ms-routing-request-id": "WESTUS2:20220803T045240Z:ad7c106b-15ab-411f-9f02-9a5d00be3293", + "x-ms-correlation-request-id": "892dd308-dd66-4cf4-be68-fcc49aa5394e", + "x-ms-ratelimit-remaining-subscription-resource-requests": "496", + "x-ms-request-id": "9b03face-57dc-d34e-4508-9f8f3292ceac", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123004Z:892dd308-dd66-4cf4-be68-fcc49aa5394e", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName7026?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6224?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-496b6aee52ab1b478bd068afcac1823b-7bb39f1d6564bb4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0c8150904aad4a58d18f39df36b6ed55", + "traceparent": "00-68cc4f5ad212d0b177fd796bb41e2610-19eec56d23eb3d66-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e38bf622dc75cb72c23032416e263640", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -398,28 +395,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:52:40 GMT", + "Date": "Tue, 15 Nov 2022 12:30:06 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcwMjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e05b447c-7cd1-4ef0-8922-d8740be06ef6", + "x-ms-correlation-request-id": "e0be26d9-c021-40b8-8729-439994297ade", "x-ms-ratelimit-remaining-subscription-deletes": "14987", - "x-ms-request-id": "e05b447c-7cd1-4ef0-8922-d8740be06ef6", - "x-ms-routing-request-id": "WESTUS2:20220803T045241Z:e05b447c-7cd1-4ef0-8922-d8740be06ef6" + "x-ms-request-id": "e0be26d9-c021-40b8-8729-439994297ade", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123007Z:e0be26d9-c021-40b8-8729-439994297ade" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcwMjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-496b6aee52ab1b478bd068afcac1823b-32b6e534200b0a4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c457c70c9ec252a8b77dafc54ced74e1", + "traceparent": "00-68cc4f5ad212d0b177fd796bb41e2610-337806d6a92eb02d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e6a7ee94136af15a8737d8ac240c651e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -427,28 +424,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:52:40 GMT", + "Date": "Tue, 15 Nov 2022 12:30:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcwMjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59ae6605-d381-4f60-9e12-bb9f236f4eee", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "59ae6605-d381-4f60-9e12-bb9f236f4eee", - "x-ms-routing-request-id": "WESTUS2:20220803T045241Z:59ae6605-d381-4f60-9e12-bb9f236f4eee" + "x-ms-correlation-request-id": "dff93914-0e37-48e2-93c5-fe7a944ca297", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "dff93914-0e37-48e2-93c5-fe7a944ca297", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123007Z:dff93914-0e37-48e2-93c5-fe7a944ca297" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcwMjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-496b6aee52ab1b478bd068afcac1823b-3950388ec5861642-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "13e6c67ddff9443ba10a7ee034717608", + "traceparent": "00-68cc4f5ad212d0b177fd796bb41e2610-679b442f9f68dfc7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3ca85ed273627b3d73b69af17c05ddef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:30:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7f316239-533b-4c0e-a1bc-98111203f889", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "7f316239-533b-4c0e-a1bc-98111203f889", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123023Z:7f316239-533b-4c0e-a1bc-98111203f889" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-68cc4f5ad212d0b177fd796bb41e2610-961c208b6779cf40-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7fad0e11507ed2d69b3ed237ced6b03c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:30:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f8f210d7-c0cc-4f3a-8df6-f6715add1d26", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "f8f210d7-c0cc-4f3a-8df6-f6715add1d26", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123038Z:f8f210d7-c0cc-4f3a-8df6-f6715add1d26" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-68cc4f5ad212d0b177fd796bb41e2610-65d27b8065119675-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8f9b411ee12a20c1b12c72b379697482", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:30:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d616552f-7df7-4211-8b8d-c42c7fcbd715", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "d616552f-7df7-4211-8b8d-c42c7fcbd715", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123054Z:d616552f-7df7-4211-8b8d-c42c7fcbd715" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-68cc4f5ad212d0b177fd796bb41e2610-09e00bf569dfc680-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "169ae95ae55f819f88d6a123a005ad9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:31:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8617dd9d-432a-455b-90b8-e58c3f4afd0f", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "8617dd9d-432a-455b-90b8-e58c3f4afd0f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123109Z:8617dd9d-432a-455b-90b8-e58c3f4afd0f" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-68cc4f5ad212d0b177fd796bb41e2610-611e01932b6142e7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3bd35e054e6a30c54c8cce52dd225932", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -456,23 +569,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:52:55 GMT", + "Date": "Tue, 15 Nov 2022 12:31:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f392bd82-6674-45d5-80ad-2d16f7a96b3f", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "f392bd82-6674-45d5-80ad-2d16f7a96b3f", - "x-ms-routing-request-id": "WESTUS2:20220803T045256Z:f392bd82-6674-45d5-80ad-2d16f7a96b3f" + "x-ms-correlation-request-id": "fe2aa3fb-e647-46ef-988d-b4c65e486e9d", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "fe2aa3fb-e647-46ef-988d-b4c65e486e9d", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123124Z:fe2aa3fb-e647-46ef-988d-b4c65e486e9d" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1193636458", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1132027041", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetTest.json index 44ebdff56f81..d9bd6f072ba7 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-edfd3e4e34cd8a4babd2f934aea54f62-58a5d6ba3ce28d45-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "193d05bbeae8d56dbc036f2190f969f7", + "traceparent": "00-0cf412e8a9ee959680780ff3e43002e8-0cf983e4d6acfc0c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ff8a28e0e9c4ee98b20beb8a6e529387", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:27 GMT", + "Date": "Tue, 15 Nov 2022 12:20:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "729fb5a7-64c7-4d70-8625-96b290ca27c2", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "729fb5a7-64c7-4d70-8625-96b290ca27c2", - "x-ms-routing-request-id": "WESTUS2:20220803T044927Z:729fb5a7-64c7-4d70-8625-96b290ca27c2" + "x-ms-correlation-request-id": "2718de47-695a-467c-8610-d3114634b8b5", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "2718de47-695a-467c-8610-d3114634b8b5", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122028Z:2718de47-695a-467c-8610-d3114634b8b5" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName5575?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName4208?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-d4204c6eb77d6b46b2897a29c1aba540-00202c551fa98f4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0c9433b71948afaf061cdb5d89bbf2cb", + "traceparent": "00-cb4f2dffaf99d3b63be57301432ad417-d5831bda05102ea2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "125281820c48bb70dc9ca99aa2e946fc", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:27 GMT", + "Date": "Tue, 15 Nov 2022 12:20:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93574908-2231-41f8-b9e4-73a7199d7ed3", + "x-ms-correlation-request-id": "1106fae4-4747-461e-aa8c-10adda598117", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "93574908-2231-41f8-b9e4-73a7199d7ed3", - "x-ms-routing-request-id": "WESTUS2:20220803T044927Z:93574908-2231-41f8-b9e4-73a7199d7ed3" + "x-ms-request-id": "1106fae4-4747-461e-aa8c-10adda598117", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122029Z:1106fae4-4747-461e-aa8c-10adda598117" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5575", - "name": "resourceGroupName5575", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4208", + "name": "resourceGroupName4208", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5575/providers/Microsoft.Network/trafficmanagerprofiles/profileName5181?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4208/providers/Microsoft.Network/trafficmanagerprofiles/profileName8329?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-8b40e2fc5dff71499b8a0db3513575ae-6a887886de367141-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "194d72d535c7c02bbebd07a189407605", + "traceparent": "00-76e4c6e1c1cb6809a0e09f43d38df2a2-3cbe01fc0cd57b42-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4e975ebb3e7f19db8b6ac67fe6e4e901", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName5181", + "name": "profileName8329", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName5181" + "relativeName": "profileName8329" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:34 GMT", + "Date": "Tue, 15 Nov 2022 12:20:33 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a432bef8-c54c-4afd-98ee-87df2a07c2a9", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "194d72d5-35c7-c02b-bebd-07a189407605", - "x-ms-routing-request-id": "WESTUS2:20220803T044934Z:a432bef8-c54c-4afd-98ee-87df2a07c2a9", + "x-ms-correlation-request-id": "b07caed4-d16a-4d70-9c4d-e4afb6152180", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4496", + "x-ms-request-id": "4e975ebb-3e7f-19db-8b6a-c67fe6e4e901", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122033Z:b07caed4-d16a-4d70-9c4d-e4afb6152180", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5575/providers/Microsoft.Network/trafficManagerProfiles/profileName5181", - "name": "profileName5181", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4208/providers/Microsoft.Network/trafficManagerProfiles/profileName8329", + "name": "profileName8329", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename5181", - "fqdn": "profilename5181.trafficmanager.net", + "relativeName": "profilename8329", + "fqdn": "profilename8329.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5575/providers/Microsoft.Network/trafficManagerProfiles/profileName5181/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4208/providers/Microsoft.Network/trafficManagerProfiles/profileName8329/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5575/providers/Microsoft.Network/trafficManagerProfiles/profileName5181/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4208/providers/Microsoft.Network/trafficManagerProfiles/profileName8329/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,34 +211,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5575/providers/Microsoft.Network/trafficmanagerprofiles/profileName5181/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4208/providers/Microsoft.Network/trafficmanagerprofiles/profileName8329/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4c19a4dad000ec738e6ae1cd91773247", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "844939cbf5921b981a43e74def530f22", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "583", + "Content-Length": "608", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:34 GMT", + "Date": "Tue, 15 Nov 2022 12:20:34 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f602e8a4-7596-458c-bd1a-79d833e8632b", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "4c19a4da-d000-ec73-8e6a-e1cd91773247", - "x-ms-routing-request-id": "WESTUS2:20220803T044935Z:f602e8a4-7596-458c-bd1a-79d833e8632b", + "x-ms-correlation-request-id": "65f00d4c-7ec7-445a-b519-e6eee902f30b", + "x-ms-ratelimit-remaining-subscription-resource-requests": "246", + "x-ms-request-id": "844939cb-f592-1b98-1a43-e74def530f22", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122034Z:65f00d4c-7ec7-445a-b519-e6eee902f30b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5575/providers/Microsoft.Network/trafficManagerProfiles/profileName5181/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4208/providers/Microsoft.Network/trafficManagerProfiles/profileName8329/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -257,18 +251,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5575/providers/Microsoft.Network/trafficmanagerprofiles/profileName5181?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4208/providers/Microsoft.Network/trafficmanagerprofiles/profileName8329?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "86ba557dde1b814a07d44e8a120d25c6", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f3b38da438fb4355a63987de46f0d5f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -276,28 +271,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:49:36 GMT", + "Date": "Tue, 15 Nov 2022 12:20:39 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6dd8571-d7db-43d7-8140-f75580912143", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "86ba557d-de1b-814a-07d4-4e8a120d25c6", - "x-ms-routing-request-id": "WESTUS2:20220803T044936Z:a6dd8571-d7db-43d7-8140-f75580912143", + "x-ms-correlation-request-id": "01f8527f-2f36-455a-bdd9-2c01e3989c34", + "x-ms-ratelimit-remaining-subscription-resource-requests": "496", + "x-ms-request-id": "f3b38da4-38fb-4355-a639-87de46f0d5f8", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122039Z:01f8527f-2f36-455a-bdd9-2c01e3989c34", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName5575?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName4208?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-32e5584f77b8b1479396f851a9ebe78c-85168d11c954b24e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e582d6a6a5a204cbfe608b5d545e2e46", + "traceparent": "00-fe7ce0058a1c35b956d6982fc791922f-4c670868bf081951-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "68cfa8b2c29fc669c67c343c568d2a37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -305,28 +300,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:49:37 GMT", + "Date": "Tue, 15 Nov 2022 12:20:41 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQyMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de6207ef-f7a9-4239-8a19-af7a520796d4", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "de6207ef-f7a9-4239-8a19-af7a520796d4", - "x-ms-routing-request-id": "WESTUS2:20220803T044937Z:de6207ef-f7a9-4239-8a19-af7a520796d4" + "x-ms-correlation-request-id": "6abbd640-1695-466c-baa8-fe322787bc76", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-request-id": "6abbd640-1695-466c-baa8-fe322787bc76", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122041Z:6abbd640-1695-466c-baa8-fe322787bc76" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQyMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-32e5584f77b8b1479396f851a9ebe78c-e284c756dc510c46-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "bb261a444df5d7a58ab587bb53ed2ca9", + "traceparent": "00-fe7ce0058a1c35b956d6982fc791922f-8da99b528d46a181-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "479bef6ea784e28223ed2d7f0319ec18", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -334,28 +329,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:49:37 GMT", + "Date": "Tue, 15 Nov 2022 12:20:42 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQyMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2fa3958-0eb7-4cb0-8794-116d8dcad8a1", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "b2fa3958-0eb7-4cb0-8794-116d8dcad8a1", - "x-ms-routing-request-id": "WESTUS2:20220803T044937Z:b2fa3958-0eb7-4cb0-8794-116d8dcad8a1" + "x-ms-correlation-request-id": "34ad64c9-4fb5-402f-9993-6340e7b47e77", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "34ad64c9-4fb5-402f-9993-6340e7b47e77", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122042Z:34ad64c9-4fb5-402f-9993-6340e7b47e77" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQyMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-32e5584f77b8b1479396f851a9ebe78c-4919bea47188b84e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "52ff08a5f2e9b740ec868b0a619f8216", + "traceparent": "00-fe7ce0058a1c35b956d6982fc791922f-976f55561b6b34c1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a183500e7c15bcc7a13b849ae410580c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:20:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQyMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9ca14027-71b9-4042-960e-421bb3789dd7", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "9ca14027-71b9-4042-960e-421bb3789dd7", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122057Z:9ca14027-71b9-4042-960e-421bb3789dd7" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQyMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fe7ce0058a1c35b956d6982fc791922f-2aa58670da2e8662-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "66cd0ba6e3f2b3b221f83443c88790ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:21:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQyMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0a2f7f61-900b-418a-9334-8e451279cbca", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "0a2f7f61-900b-418a-9334-8e451279cbca", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122113Z:0a2f7f61-900b-418a-9334-8e451279cbca" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQyMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fe7ce0058a1c35b956d6982fc791922f-682731a5cb1c1d7b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1d4ac4183336f11328dea54822e8fe13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:21:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQyMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "da56677b-9690-4933-aa11-abfde846dbb2", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "da56677b-9690-4933-aa11-abfde846dbb2", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122128Z:da56677b-9690-4933-aa11-abfde846dbb2" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQyMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fe7ce0058a1c35b956d6982fc791922f-ac730ab0819014ab-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f7d82094854b2b269dd0801d4783f41a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:21:43 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQyMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f339d8aa-392e-4b42-95b2-280a7a9a06ec", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "f339d8aa-392e-4b42-95b2-280a7a9a06ec", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122144Z:f339d8aa-392e-4b42-95b2-280a7a9a06ec" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQyMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fe7ce0058a1c35b956d6982fc791922f-eb966988a10d0237-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1f81baab3ac573d6f7dc3e133d6a9038", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -363,23 +474,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:49:52 GMT", + "Date": "Tue, 15 Nov 2022 12: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": "8a4b478c-8ef1-4afe-90b5-36539c8c1a75", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "8a4b478c-8ef1-4afe-90b5-36539c8c1a75", - "x-ms-routing-request-id": "WESTUS2:20220803T044952Z:8a4b478c-8ef1-4afe-90b5-36539c8c1a75" + "x-ms-correlation-request-id": "425848e8-03c7-4ff8-abb4-e8450f32baed", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "425848e8-03c7-4ff8-abb4-e8450f32baed", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122159Z:425848e8-03c7-4ff8-abb4-e8450f32baed" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "630329777", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1166980377", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetTestAsync.json index a977cf43dbd2..d236ed1a48d7 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/GetTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e93971ea84798a4abe7aff14c8fe51c7-621904d6bd05bf4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "341f9fe9a066021beada654a9d5a6ac8", + "traceparent": "00-7fc6dc5a6e49e4e05a3761757b472074-ba387050ee037940-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4227d1b112553e9e4f4f2a61128f4b25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:56 GMT", + "Date": "Tue, 15 Nov 2022 12:31:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7e5f8e4-9dea-48cb-9219-b55cacf3a640", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "f7e5f8e4-9dea-48cb-9219-b55cacf3a640", - "x-ms-routing-request-id": "WESTUS2:20220803T045257Z:f7e5f8e4-9dea-48cb-9219-b55cacf3a640" + "x-ms-correlation-request-id": "6efd8d8b-5813-4be2-8481-bf4621db9e7b", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "6efd8d8b-5813-4be2-8481-bf4621db9e7b", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123125Z:6efd8d8b-5813-4be2-8481-bf4621db9e7b" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6283?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName5184?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-3f1e754ea2d1c343ab55a127d6c892d4-e26d339194f9e14a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "be7294e87dc29a461931b9298a2a7d42", + "traceparent": "00-61c9f78424c5831ea1910a9b60eacca9-0dbdf39a6dc0b945-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3b0af25e275bc7a5783fd710a15b18d8", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:57 GMT", + "Date": "Tue, 15 Nov 2022 12:31:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be24af2c-a9e6-48f3-ad40-ecb85e0bbb4d", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-request-id": "be24af2c-a9e6-48f3-ad40-ecb85e0bbb4d", - "x-ms-routing-request-id": "WESTUS2:20220803T045257Z:be24af2c-a9e6-48f3-ad40-ecb85e0bbb4d" + "x-ms-correlation-request-id": "70c4b527-d783-4d85-bf65-0364828d3d02", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "70c4b527-d783-4d85-bf65-0364828d3d02", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123126Z:70c4b527-d783-4d85-bf65-0364828d3d02" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6283", - "name": "resourceGroupName6283", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5184", + "name": "resourceGroupName5184", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6283/providers/Microsoft.Network/trafficmanagerprofiles/profileName4044?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5184/providers/Microsoft.Network/trafficmanagerprofiles/profileName4092?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-126f3bead3914342ba63d53a57533312-d1e6439da7e59c44-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a560ce8b0f4dd1766bf763188bad4d88", + "traceparent": "00-4a7e45f9934f3260ab736a8445e0e711-9bd44eb96a5ecf99-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "56c05ff335cea8ae493256822f2bb37f", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName4044", + "name": "profileName4092", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName4044" + "relativeName": "profileName4092" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:58 GMT", + "Date": "Tue, 15 Nov 2022 12:31:31 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d64d634-930e-4fc0-8727-9a98a4b6d9a0", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10788", - "x-ms-request-id": "a560ce8b-0f4d-d176-6bf7-63188bad4d88", - "x-ms-routing-request-id": "WESTUS2:20220803T045258Z:6d64d634-930e-4fc0-8727-9a98a4b6d9a0", + "x-ms-correlation-request-id": "0bfcd9f9-ffeb-4f6f-84e6-85aff629086d", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4495", + "x-ms-request-id": "56c05ff3-35ce-a8ae-4932-56822f2bb37f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123132Z:0bfcd9f9-ffeb-4f6f-84e6-85aff629086d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6283/providers/Microsoft.Network/trafficManagerProfiles/profileName4044", - "name": "profileName4044", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5184/providers/Microsoft.Network/trafficManagerProfiles/profileName4092", + "name": "profileName4092", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4044", - "fqdn": "profilename4044.trafficmanager.net", + "relativeName": "profilename4092", + "fqdn": "profilename4092.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6283/providers/Microsoft.Network/trafficManagerProfiles/profileName4044/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5184/providers/Microsoft.Network/trafficManagerProfiles/profileName4092/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6283/providers/Microsoft.Network/trafficManagerProfiles/profileName4044/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5184/providers/Microsoft.Network/trafficManagerProfiles/profileName4092/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,34 +211,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6283/providers/Microsoft.Network/trafficmanagerprofiles/profileName4044/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5184/providers/Microsoft.Network/trafficmanagerprofiles/profileName4092/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7a9da76325552127d8994c6e61d85faf", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "69b39bb14c4fa956817bdcd2c62dadf3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "583", + "Content-Length": "608", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:52:58 GMT", + "Date": "Tue, 15 Nov 2022 12:31:32 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfb778ef-c20b-49c6-b61c-39d9cc7d1a3b", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "7a9da763-2555-2127-d899-4c6e61d85faf", - "x-ms-routing-request-id": "WESTUS2:20220803T045259Z:dfb778ef-c20b-49c6-b61c-39d9cc7d1a3b", + "x-ms-correlation-request-id": "5e4f9865-ba20-41eb-8a74-6b4ed44edf5b", + "x-ms-ratelimit-remaining-subscription-resource-requests": "245", + "x-ms-request-id": "69b39bb1-4c4f-a956-817b-dcd2c62dadf3", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123132Z:5e4f9865-ba20-41eb-8a74-6b4ed44edf5b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6283/providers/Microsoft.Network/trafficManagerProfiles/profileName4044/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5184/providers/Microsoft.Network/trafficManagerProfiles/profileName4092/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -257,18 +251,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6283/providers/Microsoft.Network/trafficmanagerprofiles/profileName4044?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5184/providers/Microsoft.Network/trafficmanagerprofiles/profileName4092?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8b1207e82209d8741da152ca192d0e6c", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2f1f8911ce8b28704462f229d023974c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -276,28 +271,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:52:59 GMT", + "Date": "Tue, 15 Nov 2022 12:31:37 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5244af82-78cb-4785-87bf-b652e34832af", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10788", - "x-ms-request-id": "8b1207e8-2209-d874-1da1-52ca192d0e6c", - "x-ms-routing-request-id": "WESTUS2:20220803T045300Z:5244af82-78cb-4785-87bf-b652e34832af", + "x-ms-correlation-request-id": "e207f44a-686f-450b-8588-0066b3994391", + "x-ms-ratelimit-remaining-subscription-resource-requests": "495", + "x-ms-request-id": "2f1f8911-ce8b-2870-4462-f229d023974c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123137Z:e207f44a-686f-450b-8588-0066b3994391", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6283?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName5184?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-201a37a4c5251244ba0ca183267bbe5f-4628d05a12730044-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e3c631e4028d65eca73eccb3c2086f93", + "traceparent": "00-27afbb6f7773509d795a6faf6fe9fd74-3d9c86dfded3b07c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "055f578baea8a6880916d55358dbe11c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -305,59 +300,173 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:53:00 GMT", + "Date": "Tue, 15 Nov 2022 12:31:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08be4589-6f19-494e-8d43-896727837f76", + "x-ms-correlation-request-id": "4817310b-f650-44e4-b1e9-db837b459d97", "x-ms-ratelimit-remaining-subscription-deletes": "14986", - "x-ms-request-id": "08be4589-6f19-494e-8d43-896727837f76", - "x-ms-routing-request-id": "WESTUS2:20220803T045301Z:08be4589-6f19-494e-8d43-896727837f76" + "x-ms-request-id": "4817310b-f650-44e4-b1e9-db837b459d97", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123139Z:4817310b-f650-44e4-b1e9-db837b459d97" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "Connection": "close", - "traceparent": "00-201a37a4c5251244ba0ca183267bbe5f-e15068e44990134b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "308ae08a7c12e5221aace4cb55c11615", + "traceparent": "00-27afbb6f7773509d795a6faf6fe9fd74-e360c612f9bfb146-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6f478fe4a8cd624a00782674f91dcf68", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Connection": "close", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:53:00 GMT", + "Date": "Tue, 15 Nov 2022 12:31:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9be2e7ac-7cf9-45a0-b0d5-61e0edcd45ab", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "9be2e7ac-7cf9-45a0-b0d5-61e0edcd45ab", - "x-ms-routing-request-id": "WESTUS2:20220803T045301Z:9be2e7ac-7cf9-45a0-b0d5-61e0edcd45ab" + "x-ms-correlation-request-id": "8f373af8-020e-4667-b2e4-87d6c67817ee", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "8f373af8-020e-4667-b2e4-87d6c67817ee", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123140Z:8f373af8-020e-4667-b2e4-87d6c67817ee" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-201a37a4c5251244ba0ca183267bbe5f-cc114666bb69b04e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6533bf318afc21d1b284b1c8a539934a", + "traceparent": "00-27afbb6f7773509d795a6faf6fe9fd74-1297367314617641-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6da5d580f0b20740627bda1d899b4cdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:31:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c0c1c30e-52a1-4d6f-9b52-b1b5c9d8d67c", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "c0c1c30e-52a1-4d6f-9b52-b1b5c9d8d67c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123155Z:c0c1c30e-52a1-4d6f-9b52-b1b5c9d8d67c" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-27afbb6f7773509d795a6faf6fe9fd74-720f9f275ba22e5d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c96f763d7294dc4e190da6935d7fe90d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:32:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d0de46e1-6cb7-4228-b644-811dab05c20b", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "d0de46e1-6cb7-4228-b644-811dab05c20b", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123211Z:d0de46e1-6cb7-4228-b644-811dab05c20b" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-27afbb6f7773509d795a6faf6fe9fd74-ff50556d4b4e82a2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "846cbdbb6c87f3ac4f400c52cd2cd965", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:32:25 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "df2f2a64-d064-4c8b-af6e-3245038cac50", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "df2f2a64-d064-4c8b-af6e-3245038cac50", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123226Z:df2f2a64-d064-4c8b-af6e-3245038cac50" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-27afbb6f7773509d795a6faf6fe9fd74-4633f05aca0bbbb2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8237482c06ae0ed387c853a54aaca9e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:32:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1c83b3f7-f960-4f87-a142-79a02d762b42", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "1c83b3f7-f960-4f87-a142-79a02d762b42", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123242Z:1c83b3f7-f960-4f87-a142-79a02d762b42" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-27afbb6f7773509d795a6faf6fe9fd74-9f76743ecfbc1b98-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "cb62cd91c72ed155ca7b795466fc0fec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -365,23 +474,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:53:16 GMT", + "Date": "Tue, 15 Nov 2022 12:32:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "048d9b9a-6620-44b9-80ab-387a8cb002f8", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "048d9b9a-6620-44b9-80ab-387a8cb002f8", - "x-ms-routing-request-id": "WESTUS2:20220803T045316Z:048d9b9a-6620-44b9-80ab-387a8cb002f8" + "x-ms-correlation-request-id": "932dc8bf-ea37-4901-8f71-94fcfe1a2165", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "932dc8bf-ea37-4901-8f71-94fcfe1a2165", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123257Z:932dc8bf-ea37-4901-8f71-94fcfe1a2165" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1660262945", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "855814662", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateOnCollectionTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateOnCollectionTest.json index 2c42533c95ca..4dd3ee1e271a 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateOnCollectionTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateOnCollectionTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-87a8be8887751749b055be2ce83c3f70-4b37cdfd8e6c9143-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7b0ffd6bab54fdc61c73472555c73caf", + "traceparent": "00-ed04721726aef5b2bb5f4fcb7eb6e622-05898499dc680f3a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bdcd95a0e691bce570c0eeb96478cb64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:52 GMT", + "Date": "Tue, 15 Nov 2022 12:22:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7df7a05-933e-4ff5-a981-46fee49288ba", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "d7df7a05-933e-4ff5-a981-46fee49288ba", - "x-ms-routing-request-id": "WESTUS2:20220803T044953Z:d7df7a05-933e-4ff5-a981-46fee49288ba" + "x-ms-correlation-request-id": "8a95f5ce-5ccb-43d3-b306-50e54c4216cb", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "8a95f5ce-5ccb-43d3-b306-50e54c4216cb", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122200Z:8a95f5ce-5ccb-43d3-b306-50e54c4216cb" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName2973?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName301?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-384f06afa009f1478be50e2412b6ace3-7ebcf11fc28d8f46-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "54f5199c92b8afad1f3ddd60ff9b4025", + "traceparent": "00-a3b2eec5879c9cf49af2a421b64b4af2-b8ad2a2e5bbe0a7a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "80c433850cc0ef6b48aa0dc72ba9cf5e", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -69,21 +61,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "239", + "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:53 GMT", + "Date": "Tue, 15 Nov 2022 12: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": "ea1a8614-1598-4cc9-a4d9-112b45a1734a", + "x-ms-correlation-request-id": "60ed0426-8fa7-4e9d-b738-9995168599d1", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "ea1a8614-1598-4cc9-a4d9-112b45a1734a", - "x-ms-routing-request-id": "WESTUS2:20220803T044953Z:ea1a8614-1598-4cc9-a4d9-112b45a1734a" + "x-ms-request-id": "60ed0426-8fa7-4e9d-b738-9995168599d1", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122201Z:60ed0426-8fa7-4e9d-b738-9995168599d1" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2973", - "name": "resourceGroupName2973", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName301", + "name": "resourceGroupName301", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2973/providers/Microsoft.Network/trafficmanagerprofiles/profileName9583?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName301/providers/Microsoft.Network/trafficmanagerprofiles/profileName1697?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-7edc1b21d279c94ea9f233237e663a79-1ad8fdfc4380854c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c78c7bf8bcd83d085fce528cd69cdb37", + "traceparent": "00-8d71744bc250c64b9359383d42dd836d-ee58535d6d5f68e8-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b7f3b41981571e786ff0af9c613df9f6", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName9583", + "name": "profileName1697", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName9583" + "relativeName": "profileName1697" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1920", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:54 GMT", + "Date": "Tue, 15 Nov 2022 12:22:05 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48d58c88-36cf-418b-8578-17183bcbf190", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "c78c7bf8-bcd8-3d08-5fce-528cd69cdb37", - "x-ms-routing-request-id": "WESTUS2:20220803T044954Z:48d58c88-36cf-418b-8578-17183bcbf190", + "x-ms-correlation-request-id": "018ca677-a9b6-4581-82d1-e2bfad5334b4", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4495", + "x-ms-request-id": "b7f3b419-8157-1e78-6ff0-af9c613df9f6", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122205Z:018ca677-a9b6-4581-82d1-e2bfad5334b4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2973/providers/Microsoft.Network/trafficManagerProfiles/profileName9583", - "name": "profileName9583", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname301/providers/Microsoft.Network/trafficManagerProfiles/profileName1697", + "name": "profileName1697", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9583", - "fqdn": "profilename9583.trafficmanager.net", + "relativeName": "profilename1697", + "fqdn": "profilename1697.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2973/providers/Microsoft.Network/trafficManagerProfiles/profileName9583/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname301/providers/Microsoft.Network/trafficManagerProfiles/profileName1697/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2973/providers/Microsoft.Network/trafficManagerProfiles/profileName9583/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname301/providers/Microsoft.Network/trafficManagerProfiles/profileName1697/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2973/providers/Microsoft.Network/trafficmanagerprofiles/profileName9583?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName301/providers/Microsoft.Network/trafficmanagerprofiles/profileName1697?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-270d36a44b008c408cb33d0efee7d873-ec6847f371fed446-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "668559fa824a6bb361cc346de89c1cd8", + "traceparent": "00-e01f6c9c2ea19cc9b7383388cb7fa9ed-6562512ecbd95130-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "cc2e7c0240d188e062cd493bd7f44417", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1930", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:54 GMT", + "Date": "Tue, 15 Nov 2022 12:22:05 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b12a7dfb-689e-45da-877a-7eb30d0c95c8", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "668559fa-824a-6bb3-61cc-346de89c1cd8", - "x-ms-routing-request-id": "WESTUS2:20220803T044954Z:b12a7dfb-689e-45da-877a-7eb30d0c95c8", + "x-ms-correlation-request-id": "5eab49d6-fb55-4807-b540-ce0b340aea6f", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1996", + "x-ms-request-id": "cc2e7c02-40d1-88e0-62cd-493bd7f44417", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122206Z:5eab49d6-fb55-4807-b540-ce0b340aea6f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2973/providers/Microsoft.Network/trafficManagerProfiles/profileName9583", - "name": "profileName9583", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname301/providers/Microsoft.Network/trafficManagerProfiles/profileName1697", + "name": "profileName1697", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9583", - "fqdn": "profilename9583.trafficmanager.net", + "relativeName": "profilename1697", + "fqdn": "profilename1697.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2973/providers/Microsoft.Network/trafficManagerProfiles/profileName9583/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname301/providers/Microsoft.Network/trafficManagerProfiles/profileName1697/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2973/providers/Microsoft.Network/trafficManagerProfiles/profileName9583/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname301/providers/Microsoft.Network/trafficManagerProfiles/profileName1697/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,34 +305,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2973/providers/Microsoft.Network/trafficmanagerprofiles/profileName9583/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName301/providers/Microsoft.Network/trafficmanagerprofiles/profileName1697/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4b5dff07e7afe0ae10b8f5ea3f21d883", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c44a5a1fadd80326baa511d05dcf8d0b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "583", + "Content-Length": "607", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:54 GMT", + "Date": "Tue, 15 Nov 2022 12:22:06 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3aabcae0-28f5-4b15-8c90-20324a09e687", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "4b5dff07-e7af-e0ae-10b8-f5ea3f21d883", - "x-ms-routing-request-id": "WESTUS2:20220803T044954Z:3aabcae0-28f5-4b15-8c90-20324a09e687", + "x-ms-correlation-request-id": "fe786e0d-d12c-481e-8d82-9cb1eee3447e", + "x-ms-ratelimit-remaining-subscription-resource-requests": "245", + "x-ms-request-id": "c44a5a1f-add8-0326-baa5-11d05dcf8d0b", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122206Z:fe786e0d-d12c-481e-8d82-9cb1eee3447e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2973/providers/Microsoft.Network/trafficManagerProfiles/profileName9583/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname301/providers/Microsoft.Network/trafficManagerProfiles/profileName1697/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -349,25 +345,26 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2973/providers/Microsoft.Network/trafficmanagerprofiles/profileName9583/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname301/providers/Microsoft.Network/trafficmanagerprofiles/profileName1697/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "443", + "Content-Length": "467", "Content-Type": "application/json", - "traceparent": "00-4f7a679262d4784bb9ed59ff8f462d33-910ccc7f774b8240-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a566a662d91575dbc821660b879a55c2", + "traceparent": "00-7ccde3721ecef64a8a1c1c377897118f-af0feffec968cc2b-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "afc517b1027ad88cd46a5589383d477a", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2973/providers/Microsoft.Network/trafficManagerProfiles/profileName9583/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname301/providers/Microsoft.Network/trafficManagerProfiles/profileName1697/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -375,27 +372,28 @@ "endpointStatus": "Enabled", "weight": 1000, "priority": 1, - "endpointMonitorStatus": "CheckingEndpoint" + "endpointMonitorStatus": "CheckingEndpoint", + "alwaysServe": "Disabled" } }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "586", + "Content-Length": "610", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:54 GMT", + "Date": "Tue, 15 Nov 2022 12:22:07 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "22352bfa-6722-4a35-816d-2074f0ba359c", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "a566a662-d915-75db-c821-660b879a55c2", - "x-ms-routing-request-id": "WESTUS2:20220803T044955Z:22352bfa-6722-4a35-816d-2074f0ba359c", + "x-ms-correlation-request-id": "8d3cc629-3aef-44cd-bcd3-c6cc213b81a2", + "x-ms-ratelimit-remaining-subscription-resource-requests": "249", + "x-ms-request-id": "afc517b1-027a-d88c-d46a-5589383d477a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122208Z:8d3cc629-3aef-44cd-bcd3-c6cc213b81a2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2973/providers/Microsoft.Network/trafficManagerProfiles/profileName9583/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname301/providers/Microsoft.Network/trafficManagerProfiles/profileName1697/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -408,39 +406,40 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2973/providers/Microsoft.Network/trafficmanagerprofiles/profileName9583/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName301/providers/Microsoft.Network/trafficmanagerprofiles/profileName1697/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d7857ab18f3e1388aba555918dc92b3f", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "067c98ab34f2541d552b112b2f0f2b92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "586", + "Content-Length": "610", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:49:55 GMT", + "Date": "Tue, 15 Nov 2022 12:22:08 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c6ca273-be05-4b3f-ac5e-c866acf34faf", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "d7857ab1-8f3e-1388-aba5-55918dc92b3f", - "x-ms-routing-request-id": "WESTUS2:20220803T044955Z:1c6ca273-be05-4b3f-ac5e-c866acf34faf", + "x-ms-correlation-request-id": "c22bb924-9208-4fa9-828a-6d79bca10002", + "x-ms-ratelimit-remaining-subscription-resource-requests": "244", + "x-ms-request-id": "067c98ab-34f2-541d-552b-112b2f0f2b92", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122208Z:c22bb924-9208-4fa9-828a-6d79bca10002", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2973/providers/Microsoft.Network/trafficManagerProfiles/profileName9583/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname301/providers/Microsoft.Network/trafficManagerProfiles/profileName1697/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -453,18 +452,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2973/providers/Microsoft.Network/trafficmanagerprofiles/profileName9583?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName301/providers/Microsoft.Network/trafficmanagerprofiles/profileName1697?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "420bb1f476362dc224e7838e81a25876", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bf893e3f952f1c9cce71f06e589dcb7d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -472,28 +472,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:49:56 GMT", + "Date": "Tue, 15 Nov 2022 12:22:13 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03c34f5e-4310-441b-8fdf-820045330a30", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "420bb1f4-7636-2dc2-24e7-838e81a25876", - "x-ms-routing-request-id": "WESTUS2:20220803T044957Z:03c34f5e-4310-441b-8fdf-820045330a30", + "x-ms-correlation-request-id": "82cb875f-f71f-4f5d-a628-40c4a5811f89", + "x-ms-ratelimit-remaining-subscription-resource-requests": "495", + "x-ms-request-id": "bf893e3f-952f-1c9c-ce71-f06e589dcb7d", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122213Z:82cb875f-f71f-4f5d-a628-40c4a5811f89", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName2973?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName301?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6d9f9d2c0b850743b4dae71776bedd1e-e48ac7f3f847364b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c5383263009cd2441d52fa6f8349e8fe", + "traceparent": "00-f574c60de0c66ea8d8b7de6d5e570488-baad0d86fea303d5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c425965d87527c18f970594ff160a9c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:22:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "21096630-25e0-402e-8415-5c3ffd8f4b65", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-request-id": "21096630-25e0-402e-8415-5c3ffd8f4b65", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122215Z:21096630-25e0-402e-8415-5c3ffd8f4b65" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f574c60de0c66ea8d8b7de6d5e570488-27a26036a39d6b25-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "99cd935f66eab840250cc5be3b4d2a6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:22:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "68692a73-ee5d-4389-96b2-de127175de02", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "68692a73-ee5d-4389-96b2-de127175de02", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122216Z:68692a73-ee5d-4389-96b2-de127175de02" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f574c60de0c66ea8d8b7de6d5e570488-04430802d3b5a77d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "962f2bc8d153d6ca4b0fc9f14f97384a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:22:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a842e93a-c591-4697-ab4c-83296e3e2584", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "a842e93a-c591-4697-ab4c-83296e3e2584", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122231Z:a842e93a-c591-4697-ab4c-83296e3e2584" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f574c60de0c66ea8d8b7de6d5e570488-f6d742b465e01859-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5defa1740f92d7da8191d4a6c18cdaae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:22:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9e36e3de-6dba-4562-a008-b4e986f3e0e9", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "9e36e3de-6dba-4562-a008-b4e986f3e0e9", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122247Z:9e36e3de-6dba-4562-a008-b4e986f3e0e9" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f574c60de0c66ea8d8b7de6d5e570488-718b43a4af60486d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "18b7cb3565808e65c9f74ddb9d4e698d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -501,28 +617,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:49:57 GMT", + "Date": "Tue, 15 Nov 2022 12:23:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b87cc5d-2fac-4b57-ac9b-73e9655572b6", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-request-id": "1b87cc5d-2fac-4b57-ac9b-73e9655572b6", - "x-ms-routing-request-id": "WESTUS2:20220803T044957Z:1b87cc5d-2fac-4b57-ac9b-73e9655572b6" + "x-ms-correlation-request-id": "41dab302-86d1-4bcc-a1e2-f52e2bea678e", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "41dab302-86d1-4bcc-a1e2-f52e2bea678e", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122302Z:41dab302-86d1-4bcc-a1e2-f52e2bea678e" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6d9f9d2c0b850743b4dae71776bedd1e-24a71ea3a0634e4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5a2edf4d6691f3a36d3824e47c52aada", + "traceparent": "00-f574c60de0c66ea8d8b7de6d5e570488-58241fc4abd52211-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "99497bd4cd5db9da515714c1fd2314be", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -530,28 +646,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:49:57 GMT", + "Date": "Tue, 15 Nov 2022 12:23:17 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "324553ae-c71c-4d50-9cea-6a6f3a797bcb", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "324553ae-c71c-4d50-9cea-6a6f3a797bcb", - "x-ms-routing-request-id": "WESTUS2:20220803T044957Z:324553ae-c71c-4d50-9cea-6a6f3a797bcb" + "x-ms-correlation-request-id": "1741943c-fe5a-4f23-b009-e86b529f486c", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "1741943c-fe5a-4f23-b009-e86b529f486c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122318Z:1741943c-fe5a-4f23-b009-e86b529f486c" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6d9f9d2c0b850743b4dae71776bedd1e-326584b1b833634b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5a9884ff818b50e7a6fd0d454dedc523", + "traceparent": "00-f574c60de0c66ea8d8b7de6d5e570488-e6bab354aff6c267-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "83bc1b341fe00fc93c61939bc1fe3a32", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -559,23 +675,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:12 GMT", + "Date": "Tue, 15 Nov 2022 12:23:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a33ba945-cb45-4374-8db6-4c3a7363a78e", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "a33ba945-cb45-4374-8db6-4c3a7363a78e", - "x-ms-routing-request-id": "WESTUS2:20220803T045013Z:a33ba945-cb45-4374-8db6-4c3a7363a78e" + "x-ms-correlation-request-id": "9103c3ff-c736-4e2a-aa6c-20eab7be439e", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "9103c3ff-c736-4e2a-aa6c-20eab7be439e", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122333Z:9103c3ff-c736-4e2a-aa6c-20eab7be439e" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1293890221", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "217261502", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateOnCollectionTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateOnCollectionTestAsync.json index 607696f34731..d69639e0e4b3 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateOnCollectionTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateOnCollectionTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ca2ba141b28f9548a6d1ee82a90377b8-350815871bbe4d45-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "30e074b36bf2e1661b85abb1c8d0e668", + "traceparent": "00-019152cd880d4225649e54a06d8f1824-ee8413d11d72685e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "08384da82f932c1cfb4c9539b9a3610e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:16 GMT", + "Date": "Tue, 15 Nov 2022 12:32:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9df94396-b891-45ee-a372-8d4f5686117f", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "9df94396-b891-45ee-a372-8d4f5686117f", - "x-ms-routing-request-id": "WESTUS2:20220803T045317Z:9df94396-b891-45ee-a372-8d4f5686117f" + "x-ms-correlation-request-id": "ebaab7f5-9530-4b00-a8cd-8e6055e3f89c", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "ebaab7f5-9530-4b00-a8cd-8e6055e3f89c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123258Z:ebaab7f5-9530-4b00-a8cd-8e6055e3f89c" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName8201?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName823?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-c6994fed3ae81a4fb38bb7baba8f66cb-061d60a762b85f40-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6b78f8c23fc0508ef292d2125aad2317", + "traceparent": "00-9854436d71b98033feff8a9fec4c6468-774d9c767a7733e2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "519661a98dbccc407c919e3596d0b31a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -69,21 +61,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "239", + "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:18 GMT", + "Date": "Tue, 15 Nov 2022 12:32:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd8c1e00-a961-4877-91ee-224785bf4182", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "fd8c1e00-a961-4877-91ee-224785bf4182", - "x-ms-routing-request-id": "WESTUS2:20220803T045318Z:fd8c1e00-a961-4877-91ee-224785bf4182" + "x-ms-correlation-request-id": "7aaa0b78-9d0f-480a-8a52-803c0d67a6f9", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "7aaa0b78-9d0f-480a-8a52-803c0d67a6f9", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123259Z:7aaa0b78-9d0f-480a-8a52-803c0d67a6f9" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName8201", - "name": "resourceGroupName8201", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName823", + "name": "resourceGroupName823", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName8201/providers/Microsoft.Network/trafficmanagerprofiles/profileName9096?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName823/providers/Microsoft.Network/trafficmanagerprofiles/profileName8380?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-eedbee215f14254ab4dbd5290ff469a1-b09000799be57c4f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "dd9abf715c7728ea5ffde25051a07e43", + "traceparent": "00-58a259f709cd13ee38e0fa2dca26f7a8-f6ec3c2f55c29195-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f9b27dd79dd752700784b9e75e8c49c6", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName9096", + "name": "profileName8380", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName9096" + "relativeName": "profileName8380" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1920", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:20 GMT", + "Date": "Tue, 15 Nov 2022 12:33:03 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1df2b082-1a3a-44f2-940b-90000af9842b", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "dd9abf71-5c77-28ea-5ffd-e25051a07e43", - "x-ms-routing-request-id": "WESTUS2:20220803T045321Z:1df2b082-1a3a-44f2-940b-90000af9842b", + "x-ms-correlation-request-id": "f8df72d4-9a53-4c7c-9764-325fb72d0a0b", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "f9b27dd7-9dd7-5270-0784-b9e75e8c49c6", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123304Z:f8df72d4-9a53-4c7c-9764-325fb72d0a0b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8201/providers/Microsoft.Network/trafficManagerProfiles/profileName9096", - "name": "profileName9096", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname823/providers/Microsoft.Network/trafficManagerProfiles/profileName8380", + "name": "profileName8380", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9096", - "fqdn": "profilename9096.trafficmanager.net", + "relativeName": "profilename8380", + "fqdn": "profilename8380.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8201/providers/Microsoft.Network/trafficManagerProfiles/profileName9096/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname823/providers/Microsoft.Network/trafficManagerProfiles/profileName8380/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8201/providers/Microsoft.Network/trafficManagerProfiles/profileName9096/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname823/providers/Microsoft.Network/trafficManagerProfiles/profileName8380/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName8201/providers/Microsoft.Network/trafficmanagerprofiles/profileName9096?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName823/providers/Microsoft.Network/trafficmanagerprofiles/profileName8380?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-978e420259269149bb4cb4c1b23e0dfb-ee8977bb934fbc45-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "1f8280601ee235f252dfffd893cec1d8", + "traceparent": "00-a5cdcacc6bc58c6733ff1c40dc33db92-7340017137c3220f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ce0c27fdc0a5c0ebf73b169d7ef6657c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1930", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:20 GMT", + "Date": "Tue, 15 Nov 2022 12:33:04 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f972b548-4cc0-4fd0-9e12-ba8cc8fdd452", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "1f828060-1ee2-35f2-52df-ffd893cec1d8", - "x-ms-routing-request-id": "WESTUS2:20220803T045321Z:f972b548-4cc0-4fd0-9e12-ba8cc8fdd452", + "x-ms-correlation-request-id": "d5a67ba8-ca3f-4f3e-a556-3dd869feb503", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1995", + "x-ms-request-id": "ce0c27fd-c0a5-c0eb-f73b-169d7ef6657c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123304Z:d5a67ba8-ca3f-4f3e-a556-3dd869feb503", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8201/providers/Microsoft.Network/trafficManagerProfiles/profileName9096", - "name": "profileName9096", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname823/providers/Microsoft.Network/trafficManagerProfiles/profileName8380", + "name": "profileName8380", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9096", - "fqdn": "profilename9096.trafficmanager.net", + "relativeName": "profilename8380", + "fqdn": "profilename8380.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8201/providers/Microsoft.Network/trafficManagerProfiles/profileName9096/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname823/providers/Microsoft.Network/trafficManagerProfiles/profileName8380/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8201/providers/Microsoft.Network/trafficManagerProfiles/profileName9096/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname823/providers/Microsoft.Network/trafficManagerProfiles/profileName8380/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,34 +305,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName8201/providers/Microsoft.Network/trafficmanagerprofiles/profileName9096/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName823/providers/Microsoft.Network/trafficmanagerprofiles/profileName8380/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "115699878a4c65f20e4f0bc35d3dff51", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "26e11ee215af0b8cf0434a38d3596ef0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "583", + "Content-Length": "607", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:21 GMT", + "Date": "Tue, 15 Nov 2022 12:33:04 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00a2ff9b-bd88-4c99-93c0-dc6473b34ddf", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "11569987-8a4c-65f2-0e4f-0bc35d3dff51", - "x-ms-routing-request-id": "WESTUS2:20220803T045321Z:00a2ff9b-bd88-4c99-93c0-dc6473b34ddf", + "x-ms-correlation-request-id": "29cb5255-5981-423f-a86e-6031e6f06f02", + "x-ms-ratelimit-remaining-subscription-resource-requests": "244", + "x-ms-request-id": "26e11ee2-15af-0b8c-f043-4a38d3596ef0", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123305Z:29cb5255-5981-423f-a86e-6031e6f06f02", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8201/providers/Microsoft.Network/trafficManagerProfiles/profileName9096/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname823/providers/Microsoft.Network/trafficManagerProfiles/profileName8380/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -349,25 +345,26 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8201/providers/Microsoft.Network/trafficmanagerprofiles/profileName9096/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname823/providers/Microsoft.Network/trafficmanagerprofiles/profileName8380/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "443", + "Content-Length": "467", "Content-Type": "application/json", - "traceparent": "00-d330abaadad07d4194e71f740236f21a-42cc286c73136546-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d9b28f13042a5235cc648b975d119591", + "traceparent": "00-e795ff73c66c4647152f5c922ea1b928-ef59165274fc52ca-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6e37d747e5c3167591f1019c87d3d311", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8201/providers/Microsoft.Network/trafficManagerProfiles/profileName9096/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname823/providers/Microsoft.Network/trafficManagerProfiles/profileName8380/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -375,27 +372,28 @@ "endpointStatus": "Enabled", "weight": 1000, "priority": 1, - "endpointMonitorStatus": "CheckingEndpoint" + "endpointMonitorStatus": "CheckingEndpoint", + "alwaysServe": "Disabled" } }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "586", + "Content-Length": "610", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:21 GMT", + "Date": "Tue, 15 Nov 2022 12:33:05 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f36b25a-d909-4d9f-b3b4-66f1d875c8c5", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "d9b28f13-042a-5235-cc64-8b975d119591", - "x-ms-routing-request-id": "WESTUS2:20220803T045321Z:6f36b25a-d909-4d9f-b3b4-66f1d875c8c5", + "x-ms-correlation-request-id": "ae6a0f54-86b3-4bb7-8e59-abaf2378fbed", + "x-ms-ratelimit-remaining-subscription-resource-requests": "248", + "x-ms-request-id": "6e37d747-e5c3-1675-91f1-019c87d3d311", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123306Z:ae6a0f54-86b3-4bb7-8e59-abaf2378fbed", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8201/providers/Microsoft.Network/trafficManagerProfiles/profileName9096/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname823/providers/Microsoft.Network/trafficManagerProfiles/profileName8380/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -408,39 +406,40 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName8201/providers/Microsoft.Network/trafficmanagerprofiles/profileName9096/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName823/providers/Microsoft.Network/trafficmanagerprofiles/profileName8380/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b7c8093b6d4ad5f68e1d1092132fd814", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3f053c1e23aae8169b01dd6176b3ec9e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "586", + "Content-Length": "610", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:21 GMT", + "Date": "Tue, 15 Nov 2022 12:33:05 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6913532-775b-441d-bc1e-922cc944e8d1", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "b7c8093b-6d4a-d5f6-8e1d-1092132fd814", - "x-ms-routing-request-id": "WESTUS2:20220803T045322Z:a6913532-775b-441d-bc1e-922cc944e8d1", + "x-ms-correlation-request-id": "ae6ff6ac-6230-4dd1-9157-cfe080ebeb83", + "x-ms-ratelimit-remaining-subscription-resource-requests": "243", + "x-ms-request-id": "3f053c1e-23aa-e816-9b01-dd6176b3ec9e", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123306Z:ae6ff6ac-6230-4dd1-9157-cfe080ebeb83", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname8201/providers/Microsoft.Network/trafficManagerProfiles/profileName9096/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname823/providers/Microsoft.Network/trafficManagerProfiles/profileName8380/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -453,18 +452,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName8201/providers/Microsoft.Network/trafficmanagerprofiles/profileName9096?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName823/providers/Microsoft.Network/trafficmanagerprofiles/profileName8380?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "04c4aedfe71b82ad640345e7ff5b07fc", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a65526cdf6befcb9a9ca94bd13f0841d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -472,28 +472,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:53:24 GMT", + "Date": "Tue, 15 Nov 2022 12:33:10 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8bc193de-268b-4967-a468-3d016694adde", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "04c4aedf-e71b-82ad-6403-45e7ff5b07fc", - "x-ms-routing-request-id": "WESTUS2:20220803T045324Z:8bc193de-268b-4967-a468-3d016694adde", + "x-ms-correlation-request-id": "daa0864b-083d-46fb-a466-305b6d710735", + "x-ms-ratelimit-remaining-subscription-resource-requests": "494", + "x-ms-request-id": "a65526cd-f6be-fcb9-a9ca-94bd13f0841d", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123311Z:daa0864b-083d-46fb-a466-305b6d710735", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName8201?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName823?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-91b5b2d3a46d304db08c396cdd5af6ba-b0d297ac377eee4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "538879ba4875a60798dd4b0df3a33f9d", + "traceparent": "00-bb91261aec12b24759e81be97e37470c-d6991015b6fe7f87-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9619396f2f532445c14fd3c20713a0de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -501,28 +501,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:53:25 GMT", + "Date": "Tue, 15 Nov 2022 12:33:12 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f348c8d0-de72-431a-8345-703fbeb1ebbb", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "f348c8d0-de72-431a-8345-703fbeb1ebbb", - "x-ms-routing-request-id": "WESTUS2:20220803T045325Z:f348c8d0-de72-431a-8345-703fbeb1ebbb" + "x-ms-correlation-request-id": "49323902-375f-4f4a-9523-8c0e0c46794c", + "x-ms-ratelimit-remaining-subscription-deletes": "14985", + "x-ms-request-id": "49323902-375f-4f4a-9523-8c0e0c46794c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123313Z:49323902-375f-4f4a-9523-8c0e0c46794c" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-91b5b2d3a46d304db08c396cdd5af6ba-6d118b889c651b4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "99d7141584a6979ea71d6b3d9ca08ec1", + "traceparent": "00-bb91261aec12b24759e81be97e37470c-41b9925616143937-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3df1c07d56999e4ae031e56f23f6f495", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -530,28 +530,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:53:25 GMT", + "Date": "Tue, 15 Nov 2022 12:33:12 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ccf58ff-1757-435c-bd8a-1a6e8a278d0c", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "2ccf58ff-1757-435c-bd8a-1a6e8a278d0c", - "x-ms-routing-request-id": "WESTUS2:20220803T045325Z:2ccf58ff-1757-435c-bd8a-1a6e8a278d0c" + "x-ms-correlation-request-id": "4e2318c6-1748-4d47-ad0a-0826307831a7", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "4e2318c6-1748-4d47-ad0a-0826307831a7", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123313Z:4e2318c6-1748-4d47-ad0a-0826307831a7" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-91b5b2d3a46d304db08c396cdd5af6ba-23203de86f172e43-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "885ba8c359a329ae0333f72ff5c07e88", + "traceparent": "00-bb91261aec12b24759e81be97e37470c-9963361e0fc860fc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b0b9b62a232142a0e6f1124b98659668", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -559,23 +559,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:53:40 GMT", + "Date": "Tue, 15 Nov 2022 12:33:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a23491c7-b9ac-4a64-9829-f79c9e9a2b11", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "a23491c7-b9ac-4a64-9829-f79c9e9a2b11", - "x-ms-routing-request-id": "WESTUS2:20220803T045341Z:a23491c7-b9ac-4a64-9829-f79c9e9a2b11" + "x-ms-correlation-request-id": "829814e5-a78e-4364-8729-6043899c8568", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "829814e5-a78e-4364-8729-6043899c8568", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123329Z:829814e5-a78e-4364-8729-6043899c8568" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1595336720", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "657962403", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateTest.json index 80545568424f..c024d96884d8 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-287332bd23ba7447b2e1ab1945b7f5a6-8b024deb9c756b4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "398d654b0626d33c6f97295a5bd04487", + "traceparent": "00-a36eccf9ec7042f3c55b651023f7b0a7-686bdc1b6ece8dab-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5c1e08f08d7a970f348cae77e58a7357", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:13 GMT", + "Date": "Tue, 15 Nov 2022 12:23:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad715c36-3cae-4a39-bc7e-fde220cd78fc", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "ad715c36-3cae-4a39-bc7e-fde220cd78fc", - "x-ms-routing-request-id": "WESTUS2:20220803T045013Z:ad715c36-3cae-4a39-bc7e-fde220cd78fc" + "x-ms-correlation-request-id": "bbfdb0bd-034c-4c2c-8d31-cf5ca104d766", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "bbfdb0bd-034c-4c2c-8d31-cf5ca104d766", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122334Z:bbfdb0bd-034c-4c2c-8d31-cf5ca104d766" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName3523?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName5153?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-1baf85d28eb17e4496ffe07883703a58-86d93b6fd1feca4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "1c4edd48dca0845b0f8cc93faffa3137", + "traceparent": "00-2aeb86a3883f635da06485f023d8b84d-ca6a9fb25f43e978-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7dd5559ed3260935e04334c3fb027047", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:13 GMT", + "Date": "Tue, 15 Nov 2022 12:23:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a829682-be96-44d4-8633-da698043faff", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "1a829682-be96-44d4-8633-da698043faff", - "x-ms-routing-request-id": "WESTUS2:20220803T045014Z:1a829682-be96-44d4-8633-da698043faff" + "x-ms-correlation-request-id": "a2a9ec97-60b1-4ae4-8dd5-37198d060a93", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "a2a9ec97-60b1-4ae4-8dd5-37198d060a93", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122335Z:a2a9ec97-60b1-4ae4-8dd5-37198d060a93" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3523", - "name": "resourceGroupName3523", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5153", + "name": "resourceGroupName5153", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3523/providers/Microsoft.Network/trafficmanagerprofiles/profileName7142?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5153/providers/Microsoft.Network/trafficmanagerprofiles/profileName4618?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-ec024aad3189c7498fe42fb1a79c2386-9ba237c5aa481e44-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8579da5a0e79cbb6aa5453eeee619d79", + "traceparent": "00-dfaff2bebf478f9dab3dfa449dbecf4d-c581c3454b36192a-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "938f2b024005a1aade3b17332dd505c0", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName7142", + "name": "profileName4618", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName7142" + "relativeName": "profileName4618" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:14 GMT", + "Date": "Tue, 15 Nov 2022 12:23:39 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7dca51c-458f-4a73-8a57-c51032c46fee", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "8579da5a-0e79-cbb6-aa54-53eeee619d79", - "x-ms-routing-request-id": "WESTUS2:20220803T045015Z:d7dca51c-458f-4a73-8a57-c51032c46fee", + "x-ms-correlation-request-id": "edff5027-79e9-40bb-b3c3-6a2d31b46242", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "938f2b02-4005-a1aa-de3b-17332dd505c0", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122340Z:edff5027-79e9-40bb-b3c3-6a2d31b46242", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3523/providers/Microsoft.Network/trafficManagerProfiles/profileName7142", - "name": "profileName7142", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5153/providers/Microsoft.Network/trafficManagerProfiles/profileName4618", + "name": "profileName4618", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7142", - "fqdn": "profilename7142.trafficmanager.net", + "relativeName": "profilename4618", + "fqdn": "profilename4618.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3523/providers/Microsoft.Network/trafficManagerProfiles/profileName7142/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5153/providers/Microsoft.Network/trafficManagerProfiles/profileName4618/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3523/providers/Microsoft.Network/trafficManagerProfiles/profileName7142/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5153/providers/Microsoft.Network/trafficManagerProfiles/profileName4618/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,34 +211,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3523/providers/Microsoft.Network/trafficmanagerprofiles/profileName7142/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5153/providers/Microsoft.Network/trafficmanagerprofiles/profileName4618/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0200d107f58889ab31b5177a7394bf9d", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ab2345a5e4f334cae9539949dbd4398a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "583", + "Content-Length": "608", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:15 GMT", + "Date": "Tue, 15 Nov 2022 12:23:40 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da4a5012-5f9e-44b3-937d-2a0b9f4ae611", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "0200d107-f588-89ab-31b5-177a7394bf9d", - "x-ms-routing-request-id": "WESTUS2:20220803T045015Z:da4a5012-5f9e-44b3-937d-2a0b9f4ae611", + "x-ms-correlation-request-id": "5f33776e-fa23-4b50-903e-d28212c33888", + "x-ms-ratelimit-remaining-subscription-resource-requests": "243", + "x-ms-request-id": "ab2345a5-e4f3-34ca-e953-9949dbd4398a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122341Z:5f33776e-fa23-4b50-903e-d28212c33888", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3523/providers/Microsoft.Network/trafficManagerProfiles/profileName7142/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5153/providers/Microsoft.Network/trafficManagerProfiles/profileName4618/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -257,24 +251,25 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3523/providers/Microsoft.Network/trafficmanagerprofiles/profileName7142/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5153/providers/Microsoft.Network/trafficmanagerprofiles/profileName4618/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "443", + "Content-Length": "468", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f50122f702cb390c2682714b886c95ad", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5fe32f3ec4e45d96aa339eebbb01db0a", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3523/providers/Microsoft.Network/trafficManagerProfiles/profileName7142/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5153/providers/Microsoft.Network/trafficManagerProfiles/profileName4618/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,27 +277,28 @@ "endpointStatus": "Enabled", "weight": 1000, "priority": 1, - "endpointMonitorStatus": "CheckingEndpoint" + "endpointMonitorStatus": "CheckingEndpoint", + "alwaysServe": "Disabled" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "586", + "Content-Length": "611", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:15 GMT", + "Date": "Tue, 15 Nov 2022 12:23:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c073f661-304b-4f44-9272-10c2c8b00cfe", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "f50122f7-02cb-390c-2682-714b886c95ad", - "x-ms-routing-request-id": "WESTUS2:20220803T045015Z:c073f661-304b-4f44-9272-10c2c8b00cfe", + "x-ms-correlation-request-id": "a92df5fc-b68c-4ad6-b95a-e60106636d9b", + "x-ms-ratelimit-remaining-subscription-resource-requests": "248", + "x-ms-request-id": "5fe32f3e-c4e4-5d96-aa33-9eebbb01db0a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122342Z:a92df5fc-b68c-4ad6-b95a-e60106636d9b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3523/providers/Microsoft.Network/trafficManagerProfiles/profileName7142/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5153/providers/Microsoft.Network/trafficManagerProfiles/profileName4618/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -315,39 +311,40 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3523/providers/Microsoft.Network/trafficmanagerprofiles/profileName7142/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5153/providers/Microsoft.Network/trafficmanagerprofiles/profileName4618/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "de374fee2ef964af2fef53c4f73c5816", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b51d743dc5df1d54615aa9b2a660c60a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "586", + "Content-Length": "611", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:50:15 GMT", + "Date": "Tue, 15 Nov 2022 12:23:42 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd28ef94-0861-414b-abb1-fa843c954a86", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "de374fee-2ef9-64af-2fef-53c4f73c5816", - "x-ms-routing-request-id": "WESTUS2:20220803T045015Z:dd28ef94-0861-414b-abb1-fa843c954a86", + "x-ms-correlation-request-id": "eef41625-9322-4337-b9a9-0e8d60b40c3f", + "x-ms-ratelimit-remaining-subscription-resource-requests": "242", + "x-ms-request-id": "b51d743d-c5df-1d54-615a-a9b2a660c60a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122342Z:eef41625-9322-4337-b9a9-0e8d60b40c3f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3523/providers/Microsoft.Network/trafficManagerProfiles/profileName7142/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5153/providers/Microsoft.Network/trafficManagerProfiles/profileName4618/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -360,18 +357,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3523/providers/Microsoft.Network/trafficmanagerprofiles/profileName7142?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5153/providers/Microsoft.Network/trafficmanagerprofiles/profileName4618?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "cbf6b694a76005aec4c7db06845f01c5", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fef58d02a6f2e1dcafc500bf45de79e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -379,28 +377,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:17 GMT", + "Date": "Tue, 15 Nov 2022 12:23:47 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b177a13-5ee3-4626-9e54-7088ed38c412", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "cbf6b694-a760-05ae-c4c7-db06845f01c5", - "x-ms-routing-request-id": "WESTUS2:20220803T045017Z:5b177a13-5ee3-4626-9e54-7088ed38c412", + "x-ms-correlation-request-id": "0c5135db-df9f-41ba-8cc9-9acc3a92e262", + "x-ms-ratelimit-remaining-subscription-resource-requests": "494", + "x-ms-request-id": "fef58d02-a6f2-e1dc-afc5-00bf45de79e8", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122347Z:0c5135db-df9f-41ba-8cc9-9acc3a92e262", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName3523?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName5153?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6d4d29cf722afc479c7a61362723c8b3-4e4f493f327bb640-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "238b691fe15cc8a4739cc6dbae4742ea", + "traceparent": "00-8cf716071ad84c4c667e753de8941eb6-5e19a37e1e6c0f80-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "670b8e7783b779abdbc5fd891ae4b64a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:23:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "321965fd-9a7e-4a27-829c-3933e60a49b9", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-request-id": "321965fd-9a7e-4a27-829c-3933e60a49b9", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122350Z:321965fd-9a7e-4a27-829c-3933e60a49b9" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8cf716071ad84c4c667e753de8941eb6-6c45addee25a1e81-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "173bc1e05f547e53e17c232da852c7ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:23:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "49a08f8e-d8a3-4038-b63e-c827df088e21", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "49a08f8e-d8a3-4038-b63e-c827df088e21", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122351Z:49a08f8e-d8a3-4038-b63e-c827df088e21" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8cf716071ad84c4c667e753de8941eb6-1ce54d9415f49e9c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b152b60e4bf499dc7674cf7c7d92b446", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:24:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "23524f00-3790-4720-855d-ab38bbb3161c", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "23524f00-3790-4720-855d-ab38bbb3161c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122406Z:23524f00-3790-4720-855d-ab38bbb3161c" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8cf716071ad84c4c667e753de8941eb6-3579145494c22a45-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "58a87aec9ea90df5416b4c8fbaebee44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:24:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e34a0f3c-bf1f-4f37-b0be-2e019ba355f4", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "e34a0f3c-bf1f-4f37-b0be-2e019ba355f4", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122422Z:e34a0f3c-bf1f-4f37-b0be-2e019ba355f4" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8cf716071ad84c4c667e753de8941eb6-82bf1a35bc652574-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0d0a3b732642958ee5a1a1e08fd6004f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -408,28 +522,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:17 GMT", + "Date": "Tue, 15 Nov 2022 12:24:36 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57d483e9-2829-4d12-a24d-ffb2ae106a19", - "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-request-id": "57d483e9-2829-4d12-a24d-ffb2ae106a19", - "x-ms-routing-request-id": "WESTUS2:20220803T045018Z:57d483e9-2829-4d12-a24d-ffb2ae106a19" + "x-ms-correlation-request-id": "0902cbbb-a191-4edd-a378-d159476d2097", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "0902cbbb-a191-4edd-a378-d159476d2097", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122437Z:0902cbbb-a191-4edd-a378-d159476d2097" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6d4d29cf722afc479c7a61362723c8b3-9a31fafda0bbfc4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8da58eee34b0b3b9112d58c4e1d2567d", + "traceparent": "00-8cf716071ad84c4c667e753de8941eb6-4ea8db6ee1defbee-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2e40ddc76faa6f21c0447089fe4ddf8b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -437,28 +551,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:17 GMT", + "Date": "Tue, 15 Nov 2022 12:24:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c625596-2168-461f-844b-3a6b5459f533", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "9c625596-2168-461f-844b-3a6b5459f533", - "x-ms-routing-request-id": "WESTUS2:20220803T045018Z:9c625596-2168-461f-844b-3a6b5459f533" + "x-ms-correlation-request-id": "6ea0fe80-6c26-4370-bcce-026924e22d41", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "6ea0fe80-6c26-4370-bcce-026924e22d41", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122453Z:6ea0fe80-6c26-4370-bcce-026924e22d41" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1MjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUxNTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6d4d29cf722afc479c7a61362723c8b3-b547e8b3a35ac548-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "29dcf0842ea8564f1b44822ac87175cb", + "traceparent": "00-8cf716071ad84c4c667e753de8941eb6-163b7646e9fc76fd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "42088a85a787c603eb127307fd157e6a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -466,23 +580,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:50:32 GMT", + "Date": "Tue, 15 Nov 2022 12:25:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab1a93f4-58f3-4078-b61f-96ecc8cc05ac", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "ab1a93f4-58f3-4078-b61f-96ecc8cc05ac", - "x-ms-routing-request-id": "WESTUS2:20220803T045033Z:ab1a93f4-58f3-4078-b61f-96ecc8cc05ac" + "x-ms-correlation-request-id": "e4a732f6-6c42-4339-a379-a8eb697d6989", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "e4a732f6-6c42-4339-a379-a8eb697d6989", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T122508Z:e4a732f6-6c42-4339-a379-a8eb697d6989" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1341360671", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1757258913", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateTestAsync.json index 165db74b4546..bd79d6819fd8 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/EndpointTests/UpdateTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9ed208af95eea74c8551fc519071ae46-27c37ab80855b44b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "53ea5277505113a82dfe8b03ca6616f1", + "traceparent": "00-96e620c7de028bdc56fa1435aa630124-4ee6cb191df82d1e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "69be48986b77387d678e5c25679a1282", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:40 GMT", + "Date": "Tue, 15 Nov 2022 12:33:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65e87698-ae6f-4899-bb2a-17fe39667a09", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "65e87698-ae6f-4899-bb2a-17fe39667a09", - "x-ms-routing-request-id": "WESTUS2:20220803T045341Z:65e87698-ae6f-4899-bb2a-17fe39667a09" + "x-ms-correlation-request-id": "b4ae272b-305e-4fb3-8be9-7ea5f5b01199", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "b4ae272b-305e-4fb3-8be9-7ea5f5b01199", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123329Z:b4ae272b-305e-4fb3-8be9-7ea5f5b01199" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName1530?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName3308?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-d6b6d70da20e904c88c17a45d6b3fdd2-a51d9904bab61547-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "638842e82b9a4d9819401a63294dc209", + "traceparent": "00-35dfc9c9c2ccdcb5bd602f6f72da4099-eabcb1a9fa39111d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b5ee211482f9cd16d7f1d60ec33fefd7", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:41 GMT", + "Date": "Tue, 15 Nov 2022 12:33:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "512eedb4-9db1-4d30-a624-bfdc47e0c0ca", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "512eedb4-9db1-4d30-a624-bfdc47e0c0ca", - "x-ms-routing-request-id": "WESTUS2:20220803T045342Z:512eedb4-9db1-4d30-a624-bfdc47e0c0ca" + "x-ms-correlation-request-id": "fae21745-1c5c-445d-981f-4c6bc821e2b6", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "fae21745-1c5c-445d-981f-4c6bc821e2b6", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123331Z:fae21745-1c5c-445d-981f-4c6bc821e2b6" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1530", - "name": "resourceGroupName1530", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3308", + "name": "resourceGroupName3308", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1530/providers/Microsoft.Network/trafficmanagerprofiles/profileName7868?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3308/providers/Microsoft.Network/trafficmanagerprofiles/profileName3614?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-340d0ff8f9c4c34bb51237b0dedfe956-f1455d2d8ed59b4b-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7e34cab97069629400416ade8eaeabdd", + "traceparent": "00-170fc1eff007d0095c933dd528772d74-d5ebcb985ea3b8ab-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "429901de379a2fb1fa2696c4d82e75bb", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName7868", + "name": "profileName3614", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName7868" + "relativeName": "profileName3614" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:43 GMT", + "Date": "Tue, 15 Nov 2022 12:33:33 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0724d37-da2e-4948-877a-aefa7496d5d6", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "7e34cab9-7069-6294-0041-6ade8eaeabdd", - "x-ms-routing-request-id": "WESTUS2:20220803T045343Z:d0724d37-da2e-4948-877a-aefa7496d5d6", + "x-ms-correlation-request-id": "9e85e640-f349-419f-87c3-5763176d2513", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4493", + "x-ms-request-id": "429901de-379a-2fb1-fa26-96c4d82e75bb", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123333Z:9e85e640-f349-419f-87c3-5763176d2513", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1530/providers/Microsoft.Network/trafficManagerProfiles/profileName7868", - "name": "profileName7868", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3308/providers/Microsoft.Network/trafficManagerProfiles/profileName3614", + "name": "profileName3614", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7868", - "fqdn": "profilename7868.trafficmanager.net", + "relativeName": "profilename3614", + "fqdn": "profilename3614.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1530/providers/Microsoft.Network/trafficManagerProfiles/profileName7868/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3308/providers/Microsoft.Network/trafficManagerProfiles/profileName3614/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1530/providers/Microsoft.Network/trafficManagerProfiles/profileName7868/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3308/providers/Microsoft.Network/trafficManagerProfiles/profileName3614/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,34 +211,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1530/providers/Microsoft.Network/trafficmanagerprofiles/profileName7868/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3308/providers/Microsoft.Network/trafficmanagerprofiles/profileName3614/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "2a6e23183e6e26dc520638108daf04b1", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "04f7c6901a7ec69fa79c9f7aa72aa34f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "583", + "Content-Length": "608", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:43 GMT", + "Date": "Tue, 15 Nov 2022 12:33:33 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f01eaf05-b5c3-4ba1-919b-7488def51812", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "2a6e2318-3e6e-26dc-5206-38108daf04b1", - "x-ms-routing-request-id": "WESTUS2:20220803T045343Z:f01eaf05-b5c3-4ba1-919b-7488def51812", + "x-ms-correlation-request-id": "e68ef66f-a078-4e83-8b89-93a0d5188854", + "x-ms-ratelimit-remaining-subscription-resource-requests": "242", + "x-ms-request-id": "04f7c690-1a7e-c69f-a79c-9f7aa72aa34f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123334Z:e68ef66f-a078-4e83-8b89-93a0d5188854", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1530/providers/Microsoft.Network/trafficManagerProfiles/profileName7868/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3308/providers/Microsoft.Network/trafficManagerProfiles/profileName3614/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -257,24 +251,25 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1530/providers/Microsoft.Network/trafficmanagerprofiles/profileName7868/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3308/providers/Microsoft.Network/trafficmanagerprofiles/profileName3614/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "443", + "Content-Length": "468", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "9c11f9c872e278fdae256358c0b9be6a", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "99884d6d4079dc486fbfbad2eb52f5a8", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1530/providers/Microsoft.Network/trafficManagerProfiles/profileName7868/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3308/providers/Microsoft.Network/trafficManagerProfiles/profileName3614/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,27 +277,28 @@ "endpointStatus": "Enabled", "weight": 1000, "priority": 1, - "endpointMonitorStatus": "CheckingEndpoint" + "endpointMonitorStatus": "CheckingEndpoint", + "alwaysServe": "Disabled" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "586", + "Content-Length": "611", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:43 GMT", + "Date": "Tue, 15 Nov 2022 12:33:34 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6941f236-83c9-44b1-a76e-b3ad0968cc59", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "9c11f9c8-72e2-78fd-ae25-6358c0b9be6a", - "x-ms-routing-request-id": "WESTUS2:20220803T045344Z:6941f236-83c9-44b1-a76e-b3ad0968cc59", + "x-ms-correlation-request-id": "09b5b22f-4f08-4e16-8720-3b99adae97c2", + "x-ms-ratelimit-remaining-subscription-resource-requests": "247", + "x-ms-request-id": "99884d6d-4079-dc48-6fbf-bad2eb52f5a8", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123335Z:09b5b22f-4f08-4e16-8720-3b99adae97c2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1530/providers/Microsoft.Network/trafficManagerProfiles/profileName7868/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3308/providers/Microsoft.Network/trafficManagerProfiles/profileName3614/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -315,39 +311,40 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1530/providers/Microsoft.Network/trafficmanagerprofiles/profileName7868/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3308/providers/Microsoft.Network/trafficmanagerprofiles/profileName3614/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "054a3c9598de7a9aed0d2c633784d450", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fd7d1b7beb47c45961d29afd983788cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "586", + "Content-Length": "611", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:53:43 GMT", + "Date": "Tue, 15 Nov 2022 12:33:35 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "313f1115-d650-4784-a8c7-ba4e03258250", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "054a3c95-98de-7a9a-ed0d-2c633784d450", - "x-ms-routing-request-id": "WESTUS2:20220803T045344Z:313f1115-d650-4784-a8c7-ba4e03258250", + "x-ms-correlation-request-id": "8f65d1b7-e37d-4b22-8c01-9dc2e613bc6d", + "x-ms-ratelimit-remaining-subscription-resource-requests": "241", + "x-ms-request-id": "fd7d1b7b-eb47-c459-61d2-9afd983788cf", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123336Z:8f65d1b7-e37d-4b22-8c01-9dc2e613bc6d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1530/providers/Microsoft.Network/trafficManagerProfiles/profileName7868/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3308/providers/Microsoft.Network/trafficManagerProfiles/profileName3614/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -360,18 +357,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1530/providers/Microsoft.Network/trafficmanagerprofiles/profileName7868?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3308/providers/Microsoft.Network/trafficmanagerprofiles/profileName3614?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "9416b93d0e9da5fb25f67c48db846698", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8a574783dca64f417e1b94be5fcdda55", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -379,144 +377,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:53:45 GMT", + "Date": "Tue, 15 Nov 2022 12:33:40 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88d9a7af-a2dc-4ed2-907e-ab47f6d82453", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "9416b93d-0e9d-a5fb-25f6-7c48db846698", - "x-ms-routing-request-id": "WESTUS2:20220803T045345Z:88d9a7af-a2dc-4ed2-907e-ab47f6d82453", + "x-ms-correlation-request-id": "f5cb8d4f-0a6c-4927-b6e7-32607d178098", + "x-ms-ratelimit-remaining-subscription-resource-requests": "493", + "x-ms-request-id": "8a574783-dca6-4f41-7e1b-94be5fcdda55", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123341Z:f5cb8d4f-0a6c-4927-b6e7-32607d178098", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName1530?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName3308?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ee0966adca8f564fbf37340bef168eed-d46b64f2643f3a43-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "517bcd47fe652fd35f96aed4469a4029", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:53:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9644daf-0819-43bc-b5c0-7bee112e424b", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "b9644daf-0819-43bc-b5c0-7bee112e424b", - "x-ms-routing-request-id": "WESTUS2:20220803T045346Z:b9644daf-0819-43bc-b5c0-7bee112e424b" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-ee0966adca8f564fbf37340bef168eed-94d7a31a556c0c4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6a1b94a782093febe5e6350660275f8a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:53:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a2c3de0-ac39-461e-b70f-ddd03554cbd4", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "7a2c3de0-ac39-461e-b70f-ddd03554cbd4", - "x-ms-routing-request-id": "WESTUS2:20220803T045346Z:7a2c3de0-ac39-461e-b70f-ddd03554cbd4" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-ee0966adca8f564fbf37340bef168eed-9de95d93d1f2c548-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c8f753b65e691df400f411c01deb130d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:54:01 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74c65b23-6e38-43c0-872f-fe46dcb3f99c", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "74c65b23-6e38-43c0-872f-fe46dcb3f99c", - "x-ms-routing-request-id": "WESTUS2:20220803T045402Z:74c65b23-6e38-43c0-872f-fe46dcb3f99c" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-ee0966adca8f564fbf37340bef168eed-2144f03b3299b948-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b22c44f6d67fcf1f27dc21bdf4c62519", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:54:16 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75e358dd-f6c9-44b5-a995-2d34be4bbb20", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "75e358dd-f6c9-44b5-a995-2d34be4bbb20", - "x-ms-routing-request-id": "WESTUS2:20220803T045417Z:75e358dd-f6c9-44b5-a995-2d34be4bbb20" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-ee0966adca8f564fbf37340bef168eed-762be752278c544f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c8315645d65a48009ffd6a14702a21fa", + "traceparent": "00-909ee923b53f2b89395d1dbfbcf6c086-c0803017e3d08c32-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8bfef7a7a5ac8107f4c337a6a64a4438", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -524,28 +406,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:54:32 GMT", + "Date": "Tue, 15 Nov 2022 12:33:41 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMzMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "744c7124-64d4-4f5f-97f1-e13ac2207d96", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "744c7124-64d4-4f5f-97f1-e13ac2207d96", - "x-ms-routing-request-id": "WESTUS2:20220803T045432Z:744c7124-64d4-4f5f-97f1-e13ac2207d96" + "x-ms-correlation-request-id": "425f34d3-860c-4477-9aae-7e1101014397", + "x-ms-ratelimit-remaining-subscription-deletes": "14984", + "x-ms-request-id": "425f34d3-860c-4477-9aae-7e1101014397", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123342Z:425f34d3-860c-4477-9aae-7e1101014397" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMzMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ee0966adca8f564fbf37340bef168eed-b3273af91a974045-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "1b1027d2adfae00a3328a08d3c372839", + "traceparent": "00-909ee923b53f2b89395d1dbfbcf6c086-1b3d32c1a9a24358-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a15644f7fc38dd233fd696e2a49ba834", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -553,28 +435,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:54:47 GMT", + "Date": "Tue, 15 Nov 2022 12:33:42 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMzMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ff3f1bc-6868-4487-a37c-0b956c602833", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "0ff3f1bc-6868-4487-a37c-0b956c602833", - "x-ms-routing-request-id": "WESTUS2:20220803T045447Z:0ff3f1bc-6868-4487-a37c-0b956c602833" + "x-ms-correlation-request-id": "5781d64a-9c2c-4020-90c0-9ce139fc6ae6", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "5781d64a-9c2c-4020-90c0-9ce139fc6ae6", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123343Z:5781d64a-9c2c-4020-90c0-9ce139fc6ae6" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE1MzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMzMDgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ee0966adca8f564fbf37340bef168eed-11a3356b5019f84b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c77bf8cf4ab91fb344e412816c0b5efd", + "traceparent": "00-909ee923b53f2b89395d1dbfbcf6c086-1374a305aee50cc8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "73875cd6367e3c5bf45fb27d26db2959", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -582,23 +464,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:55:02 GMT", + "Date": "Tue, 15 Nov 2022 12:33:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfdf64d6-fd91-42ab-bd3a-ca76c1113776", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "cfdf64d6-fd91-42ab-bd3a-ca76c1113776", - "x-ms-routing-request-id": "WESTUS2:20220803T045502Z:cfdf64d6-fd91-42ab-bd3a-ca76c1113776" + "x-ms-correlation-request-id": "6e20d9bc-f65d-41fa-b731-d2267fc6e535", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "6e20d9bc-f65d-41fa-b731-d2267fc6e535", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123358Z:6e20d9bc-f65d-41fa-b731-d2267fc6e535" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1502382989", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1232884650", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/ExistsTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/ExistsTest.json index 8ab8c3bc61cb..bb4e5933e1de 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/ExistsTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/ExistsTest.json @@ -52,7 +52,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/ExistsTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/ExistsTestAsync.json index 7389223b1fb5..b851d0e0bfab 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/ExistsTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/ExistsTestAsync.json @@ -52,7 +52,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetFromCollectionTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetFromCollectionTest.json index 0694b7582952..0ce2d89ec657 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetFromCollectionTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetFromCollectionTest.json @@ -51,7 +51,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetFromCollectionTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetFromCollectionTestAsync.json index 6574b269b030..195f4433d41c 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetFromCollectionTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetFromCollectionTestAsync.json @@ -51,7 +51,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetTest.json index 51e50736ac5e..5f7c62370c61 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetTest.json @@ -51,7 +51,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetTestAsync.json index 95c3b8c494d3..c67e471d0fee 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetTestAsync.json @@ -51,7 +51,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetWithCoordinatesConstraintTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetWithCoordinatesConstraintTest.json index 147b6661cea1..751f97e66cd2 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetWithCoordinatesConstraintTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetWithCoordinatesConstraintTest.json @@ -51,7 +51,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?topLeft=-18.910742%2C-47.858517\u0026botRight=-24.341378%2C-37.964283\u0026api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?topLeft=-18.910742%2C-47.858517\u0026botRight=-24.341378%2C-37.964283\u0026api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -204,7 +204,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?topLeft=47.198208%2C37.385117\u0026botRight=47.072374%2C37.707283\u0026api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?topLeft=47.198208%2C37.385117\u0026botRight=47.072374%2C37.707283\u0026api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetWithCoordinatesConstraintTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetWithCoordinatesConstraintTestAsync.json index 96ea3b2f1c2d..c5e790e68945 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetWithCoordinatesConstraintTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/HeatMapModelTests/GetWithCoordinatesConstraintTestAsync.json @@ -51,7 +51,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?topLeft=-18.910742%2C-47.858517\u0026botRight=-24.341378%2C-37.964283\u0026api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?topLeft=-18.910742%2C-47.858517\u0026botRight=-24.341378%2C-37.964283\u0026api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -204,7 +204,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?topLeft=47.198208%2C37.385117\u0026botRight=47.072374%2C37.707283\u0026api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?topLeft=47.198208%2C37.385117\u0026botRight=47.072374%2C37.707283\u0026api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(False).json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(False).json index 346f7a2ebbd6..fb54ef052a50 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(False).json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(False).json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c7502fd227bd7dd8a194915d687562f5-d4ee605b3f221874-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3897c33ec3f53162bb0493a3767c7180", + "traceparent": "00-70179c2d00c4fe03b6c48061e90d1fd6-dbb3daec06f37d1d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bf1eec8ef82ebc3cc72489da097769f2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:15 GMT", + "Date": "Tue, 15 Nov 2022 12:35:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "597f2095-d717-4304-b780-a2fb4c9d2393", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "597f2095-d717-4304-b780-a2fb4c9d2393", - "x-ms-routing-request-id": "WESTUS2:20220815T191216Z:597f2095-d717-4304-b780-a2fb4c9d2393" + "x-ms-correlation-request-id": "3138c0b4-3d51-4905-8d26-216fe5242ca1", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "3138c0b4-3d51-4905-8d26-216fe5242ca1", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123536Z:3138c0b4-3d51-4905-8d26-216fe5242ca1" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName2163?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8389?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-1bf3f25055bce0d029baa10a8981c30b-4aa5dd71a6e12bf5-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5dd0eb5113ffad199412ba4783f7b737", + "traceparent": "00-ca8a9858e147ca462b4915749dbaf97d-5dd435be7acdc559-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8835ad729753cf9fbdd017562f9b9fc4", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:17 GMT", + "Date": "Tue, 15 Nov 2022 12:35:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "67893bea-b956-4f68-a255-4dade4fda923", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "67893bea-b956-4f68-a255-4dade4fda923", - "x-ms-routing-request-id": "WESTUS2:20220815T191217Z:67893bea-b956-4f68-a255-4dade4fda923" + "x-ms-correlation-request-id": "713c8556-44df-4455-baeb-9e304c235567", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "713c8556-44df-4455-baeb-9e304c235567", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123537Z:713c8556-44df-4455-baeb-9e304c235567" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2163", - "name": "resourceGroupName2163", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8389", + "name": "resourceGroupName8389", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -97,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2163/providers/Microsoft.Network/trafficmanagerprofiles/profileName3640?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8389/providers/Microsoft.Network/trafficmanagerprofiles/profileName3795?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-08b338c1099e87df0fc7f63ca6d4a3c3-0158684c6bf4d86f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a08c9dee9ac121901881b085f355e111", + "traceparent": "00-2958526d3995ee44f164e4a389caa306-c86785f1c77ccb96-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f1bc991339812455a39d5091babcb2c4", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName3640", + "name": "profileName3795", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName3640" + "relativeName": "profileName3795" }, "monitorConfig": { "protocol": "HTTP", @@ -145,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:19 GMT", + "Date": "Tue, 15 Nov 2022 12:35:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "681c6852-6f3e-444d-8b42-ffa16980e848", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "a08c9dee-9ac1-2190-1881-b085f355e111", - "x-ms-routing-request-id": "WESTUS2:20220815T191219Z:681c6852-6f3e-444d-8b42-ffa16980e848", + "x-ms-correlation-request-id": "9b1802dd-1595-40f0-97b8-fe9242ec1a90", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4495", + "x-ms-request-id": "f1bc9913-3981-2455-a39d-5091babcb2c4", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123541Z:9b1802dd-1595-40f0-97b8-fe9242ec1a90", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640", - "name": "profileName3640", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795", + "name": "profileName3795", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3640", - "fqdn": "profilename3640.trafficmanager.net", + "relativeName": "profilename3795", + "fqdn": "profilename3795.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -182,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -195,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -212,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -222,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2163/providers/Microsoft.Network/trafficmanagerprofiles/profileName3640?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8389/providers/Microsoft.Network/trafficmanagerprofiles/profileName3795?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-77b329ef83e511db52a5b6e78bf29997-c0166b0378c7c744-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "97080bea8da7af3e7e8a61b0a7ea380c", + "traceparent": "00-683beb9b35561339cc4f34ed58fdbb66-1d664ae0131ecb91-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fd40b72ee9a7553a7ff0702825669888", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:19 GMT", + "Date": "Tue, 15 Nov 2022 12:35:42 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00ccd906-91ac-45e9-bddc-c678a73a4c4c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "97080bea-8da7-af3e-7e8a-61b0a7ea380c", - "x-ms-routing-request-id": "WESTUS2:20220815T191219Z:00ccd906-91ac-45e9-bddc-c678a73a4c4c", + "x-ms-correlation-request-id": "087a36c3-9cd3-460c-bc1f-fea546d15ba2", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1995", + "x-ms-request-id": "fd40b72e-e9a7-553a-7ff0-702825669888", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123542Z:087a36c3-9cd3-460c-bc1f-fea546d15ba2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640", - "name": "profileName3640", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795", + "name": "profileName3795", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -259,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3640", - "fqdn": "profilename3640.trafficmanager.net", + "relativeName": "profilename3795", + "fqdn": "profilename3795.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -274,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -287,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -304,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -314,36 +305,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficmanagerprofiles/profileName3640?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficmanagerprofiles/profileName3795?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-31dadeff0481e48590946e2ec0833031-e496abaf11b0187b-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "df876cdce0e5b61f5bae457d6394b93f", + "traceparent": "00-31d39729be251df3e1f71fb8aabf265f-9ae3d1623b512d8a-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "def516e900ac39c25810e4b5460d1401", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:19 GMT", + "Date": "Tue, 15 Nov 2022 12:35:42 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fce36525-77f2-4683-9305-b71f8a0a14c9", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "df876cdc-e0e5-b61f-5bae-457d6394b93f", - "x-ms-routing-request-id": "WESTUS2:20220815T191220Z:fce36525-77f2-4683-9305-b71f8a0a14c9", + "x-ms-correlation-request-id": "9af9567d-210c-4529-8f49-bf82a4239919", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1994", + "x-ms-request-id": "def516e9-00ac-39c2-5810-e4b5460d1401", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123543Z:9af9567d-210c-4529-8f49-bf82a4239919", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640", - "name": "profileName3640", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795", + "name": "profileName3795", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -351,8 +342,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3640", - "fqdn": "profilename3640.trafficmanager.net", + "relativeName": "profilename3795", + "fqdn": "profilename3795.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -366,7 +357,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -379,11 +370,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -396,7 +388,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -406,16 +399,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficmanagerprofiles/profileName3640?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficmanagerprofiles/profileName3795?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "46", "Content-Type": "application/json", - "traceparent": "00-31dadeff0481e48590946e2ec0833031-cb0a79c47d40f846-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "785ca8301fef618f5edc223739df7a2e", + "traceparent": "00-31d39729be251df3e1f71fb8aabf265f-9779d16c7558d5e4-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7728521da25b2a1c5e667290c82dff3d", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -427,22 +420,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:20 GMT", + "Date": "Tue, 15 Nov 2022 12:35:45 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e87694f-376c-4352-a248-f14c72260e03", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "785ca830-1fef-618f-5edc-223739df7a2e", - "x-ms-routing-request-id": "WESTUS2:20220815T191221Z:9e87694f-376c-4352-a248-f14c72260e03", + "x-ms-correlation-request-id": "408ec495-c346-401c-ad7b-132b8e3e6c98", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "7728521d-a25b-2a1c-5e66-7290c82dff3d", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123545Z:408ec495-c346-401c-ad7b-132b8e3e6c98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640", - "name": "profileName3640", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795", + "name": "profileName3795", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -452,8 +445,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3640", - "fqdn": "profilename3640.trafficmanager.net", + "relativeName": "profilename3795", + "fqdn": "profilename3795.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -467,7 +460,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -480,11 +473,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -497,7 +491,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -507,36 +502,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2163/providers/Microsoft.Network/trafficmanagerprofiles/profileName3640?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8389/providers/Microsoft.Network/trafficmanagerprofiles/profileName3795?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3f4f553540e60232a1199bd455b348bc-93846fc20f236c70-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "87a9a44902cd092cec513bf948c04ce9", + "traceparent": "00-c18693a30e41ecfebbb1ff0533e1fc98-f14ee31811a8dc25-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a4a8c705d4c72d18f506a59604850e71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:20 GMT", + "Date": "Tue, 15 Nov 2022 12:35:45 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cdd40862-b7c9-48b3-90e5-5f955250e057", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "87a9a449-02cd-092c-ec51-3bf948c04ce9", - "x-ms-routing-request-id": "WESTUS2:20220815T191221Z:cdd40862-b7c9-48b3-90e5-5f955250e057", + "x-ms-correlation-request-id": "d96dd300-076c-43a0-838f-0f76574dae6e", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1993", + "x-ms-request-id": "a4a8c705-d4c7-2d18-f506-a59604850e71", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123546Z:d96dd300-076c-43a0-838f-0f76574dae6e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640", - "name": "profileName3640", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795", + "name": "profileName3795", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -546,8 +541,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3640", - "fqdn": "profilename3640.trafficmanager.net", + "relativeName": "profilename3795", + "fqdn": "profilename3795.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -561,7 +556,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -574,11 +569,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2163/providers/Microsoft.Network/trafficManagerProfiles/profileName3640/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8389/providers/Microsoft.Network/trafficManagerProfiles/profileName3795/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -591,7 +587,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -601,13 +598,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2163/providers/Microsoft.Network/trafficmanagerprofiles/profileName3640?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8389/providers/Microsoft.Network/trafficmanagerprofiles/profileName3795?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ff8021d1c08dbc1cdc268009bee87d7c", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d20a6fdb213d472cf9ca7f468e31702b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -615,28 +612,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:12:23 GMT", + "Date": "Tue, 15 Nov 2022 12:35:52 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ebb00b3-2c1a-4bfd-8a11-163e27d9ac1b", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "ff8021d1-c08d-bc1c-dc26-8009bee87d7c", - "x-ms-routing-request-id": "WESTUS2:20220815T191224Z:1ebb00b3-2c1a-4bfd-8a11-163e27d9ac1b", + "x-ms-correlation-request-id": "537ace30-0f4a-4c03-ab8c-8dd8fb569f6f", + "x-ms-ratelimit-remaining-subscription-resource-requests": "495", + "x-ms-request-id": "d20a6fdb-213d-472c-f9ca-7f468e31702b", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123553Z:537ace30-0f4a-4c03-ab8c-8dd8fb569f6f", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName2163?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8389?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-83bba0a39f3be521afeb704ca4583ad1-6c0dff7caa1acb15-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bf34163432ea2e717b528b9ee495189e", + "traceparent": "00-c2177fcb03785b60f9a41ab3430e0d22-9528644b6ea7594c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7eb0a711706549393afa8154fc8625d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:35:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgzODktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c98577f0-2fbd-4ccd-bdf7-e5aa16624801", + "x-ms-ratelimit-remaining-subscription-deletes": "14982", + "x-ms-request-id": "c98577f0-2fbd-4ccd-bdf7-e5aa16624801", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123555Z:c98577f0-2fbd-4ccd-bdf7-e5aa16624801" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgzODktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c2177fcb03785b60f9a41ab3430e0d22-97c02d2a6a7a511d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5d857a958fd56b0c36c198439fd74a73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:35:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgzODktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4c1fed1f-3a86-405e-8f51-447a31f7ebff", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "4c1fed1f-3a86-405e-8f51-447a31f7ebff", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123556Z:4c1fed1f-3a86-405e-8f51-447a31f7ebff" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgzODktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c2177fcb03785b60f9a41ab3430e0d22-555e8fe5b87d2980-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8eeea6a4187ce408a7cbe305c53cf468", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:36:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgzODktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "af122cec-b6b6-4fe2-bef6-340e4d775979", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "af122cec-b6b6-4fe2-bef6-340e4d775979", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123611Z:af122cec-b6b6-4fe2-bef6-340e4d775979" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgzODktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c2177fcb03785b60f9a41ab3430e0d22-78dfd9195e6d2d89-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "82bebe5bc800c704f44a226194bc45c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:36:26 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgzODktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "78a99612-7772-467d-9ebf-39368dadc251", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "78a99612-7772-467d-9ebf-39368dadc251", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123627Z:78a99612-7772-467d-9ebf-39368dadc251" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgzODktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c2177fcb03785b60f9a41ab3430e0d22-88bc2e47555c8ad9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ae58371511e37d4671a0b509ac06a5fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -644,28 +757,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:12:24 GMT", + "Date": "Tue, 15 Nov 2022 12:36:41 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIxNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgzODktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea336836-88d4-497d-b3b4-b00defd197f5", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "ea336836-88d4-497d-b3b4-b00defd197f5", - "x-ms-routing-request-id": "WESTUS2:20220815T191225Z:ea336836-88d4-497d-b3b4-b00defd197f5" + "x-ms-correlation-request-id": "acd69ac8-4b3e-47df-a23f-e3c455a930a4", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "acd69ac8-4b3e-47df-a23f-e3c455a930a4", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123642Z:acd69ac8-4b3e-47df-a23f-e3c455a930a4" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIxNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgzODktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-83bba0a39f3be521afeb704ca4583ad1-dab972ad0425aaad-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "31c5bfd38d8c9ffeb052833b347ed747", + "traceparent": "00-c2177fcb03785b60f9a41ab3430e0d22-3f76de1f0a814026-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e0e82fccc819dc72a2269932f5a650eb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -673,28 +786,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:12:25 GMT", + "Date": "Tue, 15 Nov 2022 12:36:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIxNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgzODktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ad8b6cd-f560-4be7-877a-b8bf96a72d47", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "6ad8b6cd-f560-4be7-877a-b8bf96a72d47", - "x-ms-routing-request-id": "WESTUS2:20220815T191225Z:6ad8b6cd-f560-4be7-877a-b8bf96a72d47" + "x-ms-correlation-request-id": "26496d0c-a67e-4a53-9e73-c5d4b616bbad", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "26496d0c-a67e-4a53-9e73-c5d4b616bbad", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123658Z:26496d0c-a67e-4a53-9e73-c5d4b616bbad" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIxNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgzODktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-83bba0a39f3be521afeb704ca4583ad1-6baa0b184342e143-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8579e20e6582b91c76aa37fd87caab59", + "traceparent": "00-c2177fcb03785b60f9a41ab3430e0d22-6be056732c19b58e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8def208646e34a857741105f12fa1bed", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -702,23 +815,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:12:40 GMT", + "Date": "Tue, 15 Nov 2022 12:37:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31529abf-bab2-4c17-89fc-18b63ad1b4ed", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "31529abf-bab2-4c17-89fc-18b63ad1b4ed", - "x-ms-routing-request-id": "WESTUS2:20220815T191240Z:31529abf-bab2-4c17-89fc-18b63ad1b4ed" + "x-ms-correlation-request-id": "98b4507b-8d0f-498a-825e-ac035f6ab041", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "98b4507b-8d0f-498a-825e-ac035f6ab041", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123713Z:98b4507b-8d0f-498a-825e-ac035f6ab041" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "968962194", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1713505587", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(False)Async.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(False)Async.json index b3f82ff2119f..eeb33492d382 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(False)Async.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(False)Async.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0865dbc4d928c0f396d50128d89d8503-728bd5385f8f5f86-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ea96f59b6fc623b87621fca4129acab1", + "traceparent": "00-a74d39c55c476b27874b2570ec6d46ca-4f73a054e808a524-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "84abb45aaa99ee6ce0a89dadbe2f9bac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:30 GMT", + "Date": "Tue, 15 Nov 2022 13:07:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ae82e5d-b433-4d49-9a92-41cd6b91a828", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "3ae82e5d-b433-4d49-9a92-41cd6b91a828", - "x-ms-routing-request-id": "WESTUS2:20220815T191530Z:3ae82e5d-b433-4d49-9a92-41cd6b91a828" + "x-ms-correlation-request-id": "2bc5e1ab-1248-4bac-8ee7-fa6a2900d57c", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "2bc5e1ab-1248-4bac-8ee7-fa6a2900d57c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130709Z:2bc5e1ab-1248-4bac-8ee7-fa6a2900d57c" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName7207?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6753?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-f0d4c57a8b52a2410f8b0a371abb3006-a4870b975129d60e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f061b8b11a9d790a2a813c285b49c344", + "traceparent": "00-4b7bd9bea84a9f270ee98dc31a2ebf8e-b9a20c973b6cd17d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d50a5b603071b82b5692bc48e5497c15", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:30 GMT", + "Date": "Tue, 15 Nov 2022 13:07:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed0b65b2-0804-429e-b071-5dfd00e88cc7", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "ed0b65b2-0804-429e-b071-5dfd00e88cc7", - "x-ms-routing-request-id": "WESTUS2:20220815T191531Z:ed0b65b2-0804-429e-b071-5dfd00e88cc7" + "x-ms-correlation-request-id": "1043c467-77b5-4faa-a78e-33b939caeffb", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "1043c467-77b5-4faa-a78e-33b939caeffb", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130711Z:1043c467-77b5-4faa-a78e-33b939caeffb" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName7207", - "name": "resourceGroupName7207", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6753", + "name": "resourceGroupName6753", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -97,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName7207/providers/Microsoft.Network/trafficmanagerprofiles/profileName1961?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6753/providers/Microsoft.Network/trafficmanagerprofiles/profileName1937?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-e523e54cb8d914dbe8c86f5ed83f2a6e-65a1aaee7abe8b5d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4a06701e4dcfeec3fa1b8bc612fdf61c", + "traceparent": "00-f0f0b87eb047d7789e7e9d000ccdd4c6-4cfe33d94346907e-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fab934cb6180a6a3df792e42e1440288", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName1961", + "name": "profileName1937", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName1961" + "relativeName": "profileName1937" }, "monitorConfig": { "protocol": "HTTP", @@ -145,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:32 GMT", + "Date": "Tue, 15 Nov 2022 13:07:16 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18d09fb3-1bd8-4f90-a22d-9c49a4797085", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "4a06701e-4dcf-eec3-fa1b-8bc612fdf61c", - "x-ms-routing-request-id": "WESTUS2:20220815T191532Z:18d09fb3-1bd8-4f90-a22d-9c49a4797085", + "x-ms-correlation-request-id": "8c5dfdbc-e3aa-4703-b396-47ae511d8998", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "fab934cb-6180-a6a3-df79-2e42e1440288", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130716Z:8c5dfdbc-e3aa-4703-b396-47ae511d8998", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961", - "name": "profileName1961", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937", + "name": "profileName1937", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename1961", - "fqdn": "profilename1961.trafficmanager.net", + "relativeName": "profilename1937", + "fqdn": "profilename1937.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -182,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -195,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -212,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -222,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName7207/providers/Microsoft.Network/trafficmanagerprofiles/profileName1961?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6753/providers/Microsoft.Network/trafficmanagerprofiles/profileName1937?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-34b755c145dd14e18391849178ca7af5-00103ed5e5b5ef7c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "abcd0645ffc8dbfd8b709cee7cfb1bd8", + "traceparent": "00-08018e9f4b88e8ac434ab40a3801f584-b580af708b98737f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a2c302b0e53c83e87fcb4217afa5fb5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:32 GMT", + "Date": "Tue, 15 Nov 2022 13:07:17 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bbcf57b8-6633-4864-9286-f674875adb4d", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10784", - "x-ms-request-id": "abcd0645-ffc8-dbfd-8b70-9cee7cfb1bd8", - "x-ms-routing-request-id": "WESTUS2:20220815T191532Z:bbcf57b8-6633-4864-9286-f674875adb4d", + "x-ms-correlation-request-id": "3c2796dc-c890-44d5-8bcc-408adab1db98", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1992", + "x-ms-request-id": "a2c302b0-e53c-83e8-7fcb-4217afa5fb5f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130717Z:3c2796dc-c890-44d5-8bcc-408adab1db98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961", - "name": "profileName1961", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937", + "name": "profileName1937", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -259,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename1961", - "fqdn": "profilename1961.trafficmanager.net", + "relativeName": "profilename1937", + "fqdn": "profilename1937.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -274,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -287,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -304,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -314,36 +305,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficmanagerprofiles/profileName1961?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficmanagerprofiles/profileName1937?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ad7daa10ac55a66723a5d0fe2cdf41a2-1c6178543d02ddf5-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "29f35f3967c36399f473f5818e44672c", + "traceparent": "00-961e5c46fc61354c2409c350b32892d4-bf20a66011ee3535-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "faf29721b1e1fea6b864f6f802e9d611", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:32 GMT", + "Date": "Tue, 15 Nov 2022 13:07:17 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84f189ae-e585-4903-ae09-f1feac7bf73e", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10783", - "x-ms-request-id": "29f35f39-67c3-6399-f473-f5818e44672c", - "x-ms-routing-request-id": "WESTUS2:20220815T191532Z:84f189ae-e585-4903-ae09-f1feac7bf73e", + "x-ms-correlation-request-id": "d626bda1-6d87-4181-bcba-f82b48dbee6b", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1991", + "x-ms-request-id": "faf29721-b1e1-fea6-b864-f6f802e9d611", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130718Z:d626bda1-6d87-4181-bcba-f82b48dbee6b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961", - "name": "profileName1961", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937", + "name": "profileName1937", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -351,8 +342,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename1961", - "fqdn": "profilename1961.trafficmanager.net", + "relativeName": "profilename1937", + "fqdn": "profilename1937.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -366,7 +357,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -379,11 +370,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -396,7 +388,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -406,16 +399,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficmanagerprofiles/profileName1961?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficmanagerprofiles/profileName1937?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "46", "Content-Type": "application/json", - "traceparent": "00-ad7daa10ac55a66723a5d0fe2cdf41a2-45e51bc2f6df358d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "55e2208a177c1e7b722bbe5fb1d571ff", + "traceparent": "00-961e5c46fc61354c2409c350b32892d4-abf83be0f3877189-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e2983390da85e6d84c357ab51e8cf639", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -427,22 +420,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:33 GMT", + "Date": "Tue, 15 Nov 2022 13:07:20 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1be98008-b9c9-4082-b50c-7b868750379e", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10790", - "x-ms-request-id": "55e2208a-177c-1e7b-722b-be5fb1d571ff", - "x-ms-routing-request-id": "WESTUS2:20220815T191533Z:1be98008-b9c9-4082-b50c-7b868750379e", + "x-ms-correlation-request-id": "ac317600-cf14-4a86-8344-a935f3c50534", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4493", + "x-ms-request-id": "e2983390-da85-e6d8-4c35-7ab51e8cf639", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130721Z:ac317600-cf14-4a86-8344-a935f3c50534", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961", - "name": "profileName1961", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937", + "name": "profileName1937", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -452,8 +445,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename1961", - "fqdn": "profilename1961.trafficmanager.net", + "relativeName": "profilename1937", + "fqdn": "profilename1937.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -467,7 +460,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -480,11 +473,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -497,7 +491,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -507,36 +502,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName7207/providers/Microsoft.Network/trafficmanagerprofiles/profileName1961?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6753/providers/Microsoft.Network/trafficmanagerprofiles/profileName1937?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ab26a4808f8f548f4ac0f6d787c9355b-5e0695379fd1740b-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b28cb300cd09de586c69b755097c4d47", + "traceparent": "00-813c828863154f9da3b1caef7e967897-6da43856c2eacfea-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4a21cf7d0851fea75cc4ead8efef8096", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:33 GMT", + "Date": "Tue, 15 Nov 2022 13:07:21 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d49304ca-74c8-44e4-a0f9-f0fcce305878", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10782", - "x-ms-request-id": "b28cb300-cd09-de58-6c69-b755097c4d47", - "x-ms-routing-request-id": "WESTUS2:20220815T191533Z:d49304ca-74c8-44e4-a0f9-f0fcce305878", + "x-ms-correlation-request-id": "147a73c8-8916-4d57-acc9-ddce7ea892fa", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1990", + "x-ms-request-id": "4a21cf7d-0851-fea7-5cc4-ead8efef8096", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130721Z:147a73c8-8916-4d57-acc9-ddce7ea892fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961", - "name": "profileName1961", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937", + "name": "profileName1937", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -546,8 +541,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename1961", - "fqdn": "profilename1961.trafficmanager.net", + "relativeName": "profilename1937", + "fqdn": "profilename1937.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -561,7 +556,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -574,11 +569,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7207/providers/Microsoft.Network/trafficManagerProfiles/profileName1961/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6753/providers/Microsoft.Network/trafficManagerProfiles/profileName1937/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -591,7 +587,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -601,13 +598,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName7207/providers/Microsoft.Network/trafficmanagerprofiles/profileName1961?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6753/providers/Microsoft.Network/trafficmanagerprofiles/profileName1937?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5c646f09c518225ce4d5b798a83ab21f", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7c8730f4190d46d9bf0caeab36f1df2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -615,28 +612,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:15:35 GMT", + "Date": "Tue, 15 Nov 2022 13:07:27 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9fa467d5-ec8b-49a2-9356-fb2089c1f8fa", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "5c646f09-c518-225c-e4d5-b798a83ab21f", - "x-ms-routing-request-id": "WESTUS2:20220815T191535Z:9fa467d5-ec8b-49a2-9356-fb2089c1f8fa", + "x-ms-correlation-request-id": "4877c3e2-8dbc-4a41-b164-8e75af58c188", + "x-ms-ratelimit-remaining-subscription-resource-requests": "496", + "x-ms-request-id": "7c8730f4-190d-46d9-bf0c-aeab36f1df2c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130728Z:4877c3e2-8dbc-4a41-b164-8e75af58c188", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName7207?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6753?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7affa043954586d23b703a8a51f07e9f-51bf4d75544becab-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "da81f601b4b7bd23c704e8135f2614f6", + "traceparent": "00-8a8c6de1a1c2f1df865876e87bfda600-81abb8a682df5916-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "337abc6e8cc787bf8c9a86c0f000f65c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -644,28 +641,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:15:36 GMT", + "Date": "Tue, 15 Nov 2022 13:07:29 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3NTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf245287-0998-4722-b735-24f7f8ceee0f", + "x-ms-correlation-request-id": "cd4d002d-6b01-487a-abe0-e721ee0fe68d", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-request-id": "cf245287-0998-4722-b735-24f7f8ceee0f", - "x-ms-routing-request-id": "WESTUS2:20220815T191536Z:cf245287-0998-4722-b735-24f7f8ceee0f" + "x-ms-request-id": "cd4d002d-6b01-487a-abe0-e721ee0fe68d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130730Z:cd4d002d-6b01-487a-abe0-e721ee0fe68d" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3NTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8a8c6de1a1c2f1df865876e87bfda600-36ee77800b51cd96-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "336abde44d7567ce70ffef72921856bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:07:30 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3NTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "07bf5908-2aa7-4278-9a66-878b5746a257", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "07bf5908-2aa7-4278-9a66-878b5746a257", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130730Z:07bf5908-2aa7-4278-9a66-878b5746a257" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3NTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8a8c6de1a1c2f1df865876e87bfda600-966b4aeb671a4d3d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "52f65215f131f4278f163eed027a2d91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:07:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3NTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "72cbf916-41ca-4a55-bd43-48e9fce20338", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "72cbf916-41ca-4a55-bd43-48e9fce20338", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130746Z:72cbf916-41ca-4a55-bd43-48e9fce20338" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3NTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8a8c6de1a1c2f1df865876e87bfda600-93a521b9c5a383b5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "32db1cd3c39567e716587d0589b9d1dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:08:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3NTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "aef19826-92ec-443c-bc70-75ef9d89a460", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "aef19826-92ec-443c-bc70-75ef9d89a460", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130801Z:aef19826-92ec-443c-bc70-75ef9d89a460" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3NTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-8a8c6de1a1c2f1df865876e87bfda600-3e4723c9ee84c4c5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "082fcb837404f2389676a35e0ee165f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:08:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3NTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e109d25d-929e-4c31-a084-38a3db6c9ed1", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "e109d25d-929e-4c31-a084-38a3db6c9ed1", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130817Z:e109d25d-929e-4c31-a084-38a3db6c9ed1" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3NTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7affa043954586d23b703a8a51f07e9f-c9e8435810558a4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "135398b672fb54904ca79413dc49c2bd", + "traceparent": "00-8a8c6de1a1c2f1df865876e87bfda600-4c6e4c8aaa8f1185-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "769f5ed2243d51296a8e3cd974226ad5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -673,28 +786,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:15:36 GMT", + "Date": "Tue, 15 Nov 2022 13:08:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3NTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6cb3dc97-b8f6-4b9d-a911-0c75cccff523", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "6cb3dc97-b8f6-4b9d-a911-0c75cccff523", - "x-ms-routing-request-id": "WESTUS2:20220815T191536Z:6cb3dc97-b8f6-4b9d-a911-0c75cccff523" + "x-ms-correlation-request-id": "d237ecb2-f6f7-4f48-8a80-5a449ce82485", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "d237ecb2-f6f7-4f48-8a80-5a449ce82485", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130833Z:d237ecb2-f6f7-4f48-8a80-5a449ce82485" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3NTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7affa043954586d23b703a8a51f07e9f-da4dcf4edef464b9-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "31b9c1c070e3ecae1046834ce6eea708", + "traceparent": "00-8a8c6de1a1c2f1df865876e87bfda600-e823eb1c73905d8b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "36696144254b5e8ce4e89b1f1f885835", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -702,23 +815,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:15:51 GMT", + "Date": "Tue, 15 Nov 2022 13:08:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2fa2e381-819d-450e-ae4b-16c4c361525f", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "2fa2e381-819d-450e-ae4b-16c4c361525f", - "x-ms-routing-request-id": "WESTUS2:20220815T191551Z:2fa2e381-819d-450e-ae4b-16c4c361525f" + "x-ms-correlation-request-id": "4e0305f3-ea86-462b-a57e-adfa46f0b4e1", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "4e0305f3-ea86-462b-a57e-adfa46f0b4e1", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130848Z:4e0305f3-ea86-462b-a57e-adfa46f0b4e1" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1930756671", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "543253123", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(True).json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(True).json index a4931dbe8032..77a81c5817d0 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(True).json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(True).json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-16cdc5b918837b4f8942d2c1f8b4cb94-605fe60e0595a241-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "569b1a9cbdd1a76835937aa88e3e46bf", + "traceparent": "00-b32cc53831a8baea2e098c4645eeab26-81d1a8334ae64345-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1136648334a69ef89593c0d2c237c901", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:02 GMT", + "Date": "Tue, 15 Nov 2022 12:37:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "743118e7-cff5-4ce7-9eff-bf15192c61da", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "743118e7-cff5-4ce7-9eff-bf15192c61da", - "x-ms-routing-request-id": "WESTUS2:20220803T045503Z:743118e7-cff5-4ce7-9eff-bf15192c61da" + "x-ms-correlation-request-id": "ed049722-18b3-4011-b96e-752f70ed2ca7", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "ed049722-18b3-4011-b96e-752f70ed2ca7", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123714Z:ed049722-18b3-4011-b96e-752f70ed2ca7" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName2321?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6306?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-b520dd3568ee0b439c2aae1b8bedeea7-669107d9fa7eeb42-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b9b2fef2abea3db19169b15f7b8f7a21", + "traceparent": "00-8d61da0ab97a7d4f34c3ac7c83100d2e-c373b8bbb64100f4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e8a4e3554bd235cdf383f58d04091063", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:03 GMT", + "Date": "Tue, 15 Nov 2022 12:37:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c67304b-7b32-4df1-b92e-9dce62f4b801", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "1c67304b-7b32-4df1-b92e-9dce62f4b801", - "x-ms-routing-request-id": "WESTUS2:20220803T045504Z:1c67304b-7b32-4df1-b92e-9dce62f4b801" + "x-ms-correlation-request-id": "cb61442f-0c98-4b74-bd10-872a5e0c69ea", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "cb61442f-0c98-4b74-bd10-872a5e0c69ea", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123715Z:cb61442f-0c98-4b74-bd10-872a5e0c69ea" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2321", - "name": "resourceGroupName2321", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6306", + "name": "resourceGroupName6306", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2321/providers/Microsoft.Network/trafficmanagerprofiles/profileName9075?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6306/providers/Microsoft.Network/trafficmanagerprofiles/profileName1152?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-af0e8f1fc47fe147bf333b61659ed720-8321726737f1024b-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "527616f809073c2e06ddd13f8e39f54d", + "traceparent": "00-e85b854109a412a895e69bf624a80023-35b33c1ad3d69205-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a85b685f8f2eb21ccf213fed8f74de14", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName9075", + "name": "profileName1152", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName9075" + "relativeName": "profileName1152" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:04 GMT", + "Date": "Tue, 15 Nov 2022 12:37:19 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25b3eddb-e39e-4c1e-a65e-8d9b30421f37", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "527616f8-0907-3c2e-06dd-d13f8e39f54d", - "x-ms-routing-request-id": "WESTUS2:20220803T045505Z:25b3eddb-e39e-4c1e-a65e-8d9b30421f37", + "x-ms-correlation-request-id": "f843815e-3c34-410b-99ad-726746b1a380", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4493", + "x-ms-request-id": "a85b685f-8f2e-b21c-cf21-3fed8f74de14", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123719Z:f843815e-3c34-410b-99ad-726746b1a380", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075", - "name": "profileName9075", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152", + "name": "profileName1152", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9075", - "fqdn": "profilename9075.trafficmanager.net", + "relativeName": "profilename1152", + "fqdn": "profilename1152.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2321/providers/Microsoft.Network/trafficmanagerprofiles/profileName9075?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6306/providers/Microsoft.Network/trafficmanagerprofiles/profileName1152?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-eda6b2626dacbc41b5b0e0d1da284f95-62082af7652c9d43-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4dc261f5b5266eb1e9193f54b748ba03", + "traceparent": "00-57a73daf771cb00f6d39bb7c27de870d-6261d0a7adc24a26-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0e78e588fee519b169dbb3b103119089", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:05 GMT", + "Date": "Tue, 15 Nov 2022 12:37:19 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d534d6d2-444a-459b-98cc-842502f61719", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "4dc261f5-b526-6eb1-e919-3f54b748ba03", - "x-ms-routing-request-id": "WESTUS2:20220803T045505Z:d534d6d2-444a-459b-98cc-842502f61719", + "x-ms-correlation-request-id": "110e7b25-2853-4b5c-9dea-ba745990325c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1992", + "x-ms-request-id": "0e78e588-fee5-19b1-69db-b3b103119089", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123720Z:110e7b25-2853-4b5c-9dea-ba745990325c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075", - "name": "profileName9075", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152", + "name": "profileName1152", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9075", - "fqdn": "profilename9075.trafficmanager.net", + "relativeName": "profilename1152", + "fqdn": "profilename1152.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,14 +305,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-99f1d98ca0eaec4bb674d7c5e5ad0900-811442ce8c94db49-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "289586006dcfe91ad076b20cda72ae57", + "traceparent": "00-8bf21b9ca4b57cf99b664eae35e477b6-b48c2becf8811823-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "cf626eb0596dc649c6f119b10cdfa67f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -325,34 +321,34 @@ "Cache-Control": "no-cache", "Content-Length": "274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:05 GMT", + "Date": "Tue, 15 Nov 2022 12:37:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b35d7b9-33e0-439c-ac40-b27651d05ea4", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "4b35d7b9-33e0-439c-ac40-b27651d05ea4", - "x-ms-routing-request-id": "WESTUS2:20220803T045505Z:4b35d7b9-33e0-439c-ac40-b27651d05ea4" + "x-ms-correlation-request-id": "f8a1a5e1-1421-4e68-878c-96eafe92db30", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "f8a1a5e1-1421-4e68-878c-96eafe92db30", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123720Z:f8a1a5e1-1421-4e68-878c-96eafe92db30" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficmanagerprofiles/profileName9075/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficmanagerprofiles/profileName1152/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "45", "Content-Type": "application/json", - "traceparent": "00-99f1d98ca0eaec4bb674d7c5e5ad0900-b4994f41c1c7e94d-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "196964732dcd42fb640769eec9da84bd", + "traceparent": "00-8bf21b9ca4b57cf99b664eae35e477b6-28201003e03e2381-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1e05e0a40191617eb6423f53db6aafbe", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -367,18 +363,18 @@ "Cache-Control": "no-cache", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:06 GMT", + "Date": "Tue, 15 Nov 2022 12:37:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cabe6555-c86b-4566-959e-edc62996abcb", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "cabe6555-c86b-4566-959e-edc62996abcb", - "x-ms-routing-request-id": "WESTUS2:20220803T045506Z:cabe6555-c86b-4566-959e-edc62996abcb" + "x-ms-correlation-request-id": "c093cc5b-3ac1-4078-b2cd-e0861766cec1", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-request-id": "c093cc5b-3ac1-4078-b2cd-e0861766cec1", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123723Z:c093cc5b-3ac1-4078-b2cd-e0861766cec1" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficmanagerprofiles/profileName9075/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficmanagerprofiles/profileName1152/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -389,36 +385,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficmanagerprofiles/profileName9075?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficmanagerprofiles/profileName1152?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-99f1d98ca0eaec4bb674d7c5e5ad0900-c617c7f908331544-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "073fcd22cda3887d46d97daf02a49377", + "traceparent": "00-8bf21b9ca4b57cf99b664eae35e477b6-977d9e1d2631e078-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "203db5900e112ea79cb148f4e5ff0c89", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:06 GMT", + "Date": "Tue, 15 Nov 2022 12:37:22 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2fce6b5-69d7-4da3-af9c-eb101010bd74", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "073fcd22-cda3-887d-46d9-7daf02a49377", - "x-ms-routing-request-id": "WESTUS2:20220803T045507Z:c2fce6b5-69d7-4da3-af9c-eb101010bd74", + "x-ms-correlation-request-id": "e231eeb0-c604-47e3-ba39-3e4c7fd66054", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1991", + "x-ms-request-id": "203db590-0e11-2ea7-9cb1-48f4e5ff0c89", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123723Z:e231eeb0-c604-47e3-ba39-3e4c7fd66054", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075", - "name": "profileName9075", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152", + "name": "profileName1152", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -428,8 +424,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9075", - "fqdn": "profilename9075.trafficmanager.net", + "relativeName": "profilename1152", + "fqdn": "profilename1152.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -443,7 +439,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -456,11 +452,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -473,7 +470,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -483,36 +481,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2321/providers/Microsoft.Network/trafficmanagerprofiles/profileName9075?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6306/providers/Microsoft.Network/trafficmanagerprofiles/profileName1152?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e95ce90dbaf55747bdf87f64cd1c9215-4eb517699adaae4e-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "53e0e86aa0ded3368b53c3c7042c20f5", + "traceparent": "00-bf595154e3098de9cb7d1b5b776134dd-2badf72ee97123e7-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "230c3434710baef8ef01182b19f6ea5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:06 GMT", + "Date": "Tue, 15 Nov 2022 12:37:23 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7911bbcb-d08c-420c-aa0b-8a472f517efd", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "53e0e86a-a0de-d336-8b53-c3c7042c20f5", - "x-ms-routing-request-id": "WESTUS2:20220803T045507Z:7911bbcb-d08c-420c-aa0b-8a472f517efd", + "x-ms-correlation-request-id": "64f896ed-d095-4eda-b919-d3b9eaa256cb", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1990", + "x-ms-request-id": "230c3434-710b-aef8-ef01-182b19f6ea5b", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123724Z:64f896ed-d095-4eda-b919-d3b9eaa256cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075", - "name": "profileName9075", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152", + "name": "profileName1152", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -522,8 +520,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9075", - "fqdn": "profilename9075.trafficmanager.net", + "relativeName": "profilename1152", + "fqdn": "profilename1152.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -537,7 +535,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -550,11 +548,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2321/providers/Microsoft.Network/trafficManagerProfiles/profileName9075/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6306/providers/Microsoft.Network/trafficManagerProfiles/profileName1152/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -567,7 +566,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -577,13 +577,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2321/providers/Microsoft.Network/trafficmanagerprofiles/profileName9075?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6306/providers/Microsoft.Network/trafficmanagerprofiles/profileName1152?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0ceaf5f1a733a6b3e6e1d3f4af4b3fbf", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "57205b4286a2966d38d682dfb88a7cb7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -591,28 +591,115 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:55:08 GMT", + "Date": "Tue, 15 Nov 2022 12:37:28 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc8f30a5-f43b-4d15-9b8a-7e090d4d7a25", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "0ceaf5f1-a733-a6b3-e6e1-d3f4af4b3fbf", - "x-ms-routing-request-id": "WESTUS2:20220803T045508Z:fc8f30a5-f43b-4d15-9b8a-7e090d4d7a25", + "x-ms-correlation-request-id": "cd333ab0-ec39-42ee-b376-b30dc4da1c6c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "494", + "x-ms-request-id": "57205b42-86a2-966d-38d6-82dfb88a7cb7", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123729Z:cd333ab0-ec39-42ee-b376-b30dc4da1c6c", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName2321?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6306?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e185f5bd8054da429a926bb109aea910-170f860f74a8834a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e084f17331fa82de976b7b5009b68419", + "traceparent": "00-f30218ecc72bb4207c6898a625fcca34-c20f870adf84b176-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a71eb5368b5e1eb2bc8e300ff57c14a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:37:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b4be25d8-4cef-4626-9c74-149568c9b63a", + "x-ms-ratelimit-remaining-subscription-deletes": "14981", + "x-ms-request-id": "b4be25d8-4cef-4626-9c74-149568c9b63a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123745Z:b4be25d8-4cef-4626-9c74-149568c9b63a" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f30218ecc72bb4207c6898a625fcca34-ccff267eca8e0219-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "64f5618543d7b6fda9029a14555da0bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:37:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "12b0d418-dfdd-44ec-af97-015608f7b5ea", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "12b0d418-dfdd-44ec-af97-015608f7b5ea", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123745Z:12b0d418-dfdd-44ec-af97-015608f7b5ea" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f30218ecc72bb4207c6898a625fcca34-aa27ca9944e8ad4d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "cb18ddc1f2d880d8ce70e0e7a17c2fa3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:38:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7ece5d24-54ed-4406-a28a-14b848f11306", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "7ece5d24-54ed-4406-a28a-14b848f11306", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123801Z:7ece5d24-54ed-4406-a28a-14b848f11306" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f30218ecc72bb4207c6898a625fcca34-43f9fe1066247a34-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "938acb98b08783cdeffce0dc1ad25868", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -620,28 +707,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:55:08 GMT", + "Date": "Tue, 15 Nov 2022 12:38:15 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzMjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "acd6120c-0118-4efe-bd4f-2da1d0bf2b2d", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-request-id": "acd6120c-0118-4efe-bd4f-2da1d0bf2b2d", - "x-ms-routing-request-id": "WESTUS2:20220803T045509Z:acd6120c-0118-4efe-bd4f-2da1d0bf2b2d" + "x-ms-correlation-request-id": "f3e2fd44-10f7-4cc3-bfb8-07561d944573", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "f3e2fd44-10f7-4cc3-bfb8-07561d944573", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123816Z:f3e2fd44-10f7-4cc3-bfb8-07561d944573" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzMjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e185f5bd8054da429a926bb109aea910-a3e9adadb54d5c4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "125304133fa8bffb166775c72b639d30", + "traceparent": "00-f30218ecc72bb4207c6898a625fcca34-b74972fcf31f4150-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "11742dd52a00928d897495676315142c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -649,28 +736,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:55:09 GMT", + "Date": "Tue, 15 Nov 2022 12:38:31 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzMjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75f4f1e6-aa76-47bf-86a0-b73062417038", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "75f4f1e6-aa76-47bf-86a0-b73062417038", - "x-ms-routing-request-id": "WESTUS2:20220803T045509Z:75f4f1e6-aa76-47bf-86a0-b73062417038" + "x-ms-correlation-request-id": "9b4320e8-ce7a-4b20-a8b4-ae88b8d10e9b", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "9b4320e8-ce7a-4b20-a8b4-ae88b8d10e9b", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123831Z:9b4320e8-ce7a-4b20-a8b4-ae88b8d10e9b" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzMjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMDYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e185f5bd8054da429a926bb109aea910-62ff92bfa6128a45-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "283bb95c328cec04adc1acc0c5e0b555", + "traceparent": "00-f30218ecc72bb4207c6898a625fcca34-82565e28558e4269-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8a7cf6d20cd310350f95dcdc12fb66fb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -678,23 +765,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:55:24 GMT", + "Date": "Tue, 15 Nov 2022 12:38:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4e73a73-f9a5-4802-bf46-ffb7c1703de9", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "d4e73a73-f9a5-4802-bf46-ffb7c1703de9", - "x-ms-routing-request-id": "WESTUS2:20220803T045524Z:d4e73a73-f9a5-4802-bf46-ffb7c1703de9" + "x-ms-correlation-request-id": "425853dd-18fd-4457-8a55-3ffadf72bb6f", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "425853dd-18fd-4457-8a55-3ffadf72bb6f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123847Z:425853dd-18fd-4457-8a55-3ffadf72bb6f" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1235587156", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1027548876", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(True)Async.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(True)Async.json index bd206c3734c1..9e037a5e8798 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(True)Async.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(True)Async.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-809a33550044b346b125c858c4c8db9e-158fadc0e7f43046-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "1e7ef0c1ee053637afa912f608202847", + "traceparent": "00-290bcf8fceb0bfdac9ca5a97c6b74075-2596d3722c532121-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e351e1c4ecd84cca11b68bd393d58f72", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:49 GMT", + "Date": "Tue, 15 Nov 2022 13:08:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4243265b-adb2-4d64-ada3-b10cf8ae5adc", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "4243265b-adb2-4d64-ada3-b10cf8ae5adc", - "x-ms-routing-request-id": "WESTUS:20220803T050349Z:4243265b-adb2-4d64-ada3-b10cf8ae5adc" + "x-ms-correlation-request-id": "39298570-9d58-44e0-bef1-87bb25b1028f", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "39298570-9d58-44e0-bef1-87bb25b1028f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130849Z:39298570-9d58-44e0-bef1-87bb25b1028f" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6907?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName1747?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-c11f2e5ab3d4a84da9c72c3ce634946c-f2db3aee6d6ac148-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "82d415bb0c8b859a0a385251d13c4717", + "traceparent": "00-a62816be384e006a5b110922d4644fef-3e16cc191c44453f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "58756e5991a28d136e2cef6065490a5a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:50 GMT", + "Date": "Tue, 15 Nov 2022 13:08:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1777c55f-2ec0-41c4-8d4a-596c3ae815b2", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "1777c55f-2ec0-41c4-8d4a-596c3ae815b2", - "x-ms-routing-request-id": "WESTUS:20220803T050350Z:1777c55f-2ec0-41c4-8d4a-596c3ae815b2" + "x-ms-correlation-request-id": "3831609c-b068-44d0-aece-af6d66bfee10", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "3831609c-b068-44d0-aece-af6d66bfee10", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130851Z:3831609c-b068-44d0-aece-af6d66bfee10" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6907", - "name": "resourceGroupName6907", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1747", + "name": "resourceGroupName1747", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6907/providers/Microsoft.Network/trafficmanagerprofiles/profileName4489?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1747/providers/Microsoft.Network/trafficmanagerprofiles/profileName4780?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-dfb80882e15e1a4e93417ed72964d3a9-0cf911b96e86614a-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6e1929c1d4eaedbd0289d9da6949056f", + "traceparent": "00-21fa5ab45239ada67fbd796fe494d335-2687f8e137026020-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8d11730a7ea5099deefb80c266c376da", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName4489", + "name": "profileName4780", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName4489" + "relativeName": "profileName4780" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:51 GMT", + "Date": "Tue, 15 Nov 2022 13:08:56 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f63ba4a-f6af-4c75-9b56-418acc234556", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "6e1929c1-d4ea-edbd-0289-d9da6949056f", - "x-ms-routing-request-id": "WESTUS:20220803T050351Z:6f63ba4a-f6af-4c75-9b56-418acc234556", + "x-ms-correlation-request-id": "e529ed78-265a-403c-aac8-9608a5ada124", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4492", + "x-ms-request-id": "8d11730a-7ea5-099d-eefb-80c266c376da", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130857Z:e529ed78-265a-403c-aac8-9608a5ada124", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489", - "name": "profileName4489", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780", + "name": "profileName4780", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4489", - "fqdn": "profilename4489.trafficmanager.net", + "relativeName": "profilename4780", + "fqdn": "profilename4780.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6907/providers/Microsoft.Network/trafficmanagerprofiles/profileName4489?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1747/providers/Microsoft.Network/trafficmanagerprofiles/profileName4780?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4216e9e775f46241a74a4786cc415b10-0b86af5dc494114b-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "72809d22df3fe336e398fbb6e4e5dd6d", + "traceparent": "00-3d54862b79c52aefa794650464c49a2f-32feb749f9908dde-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "22086dae660e50213e566ac0dbecac6d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:51 GMT", + "Date": "Tue, 15 Nov 2022 13:08:56 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49fa43ca-1f0c-41b3-b609-4eefe6a70dfd", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "72809d22-df3f-e336-e398-fbb6e4e5dd6d", - "x-ms-routing-request-id": "WESTUS:20220803T050351Z:49fa43ca-1f0c-41b3-b609-4eefe6a70dfd", + "x-ms-correlation-request-id": "8d85d18d-6184-4500-86cb-b3ca82e62c6a", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1989", + "x-ms-request-id": "22086dae-660e-5021-3e56-6ac0dbecac6d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130857Z:8d85d18d-6184-4500-86cb-b3ca82e62c6a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489", - "name": "profileName4489", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780", + "name": "profileName4780", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4489", - "fqdn": "profilename4489.trafficmanager.net", + "relativeName": "profilename4780", + "fqdn": "profilename4780.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,14 +305,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a1dfb4dd228375499ecb8504196cd440-3e350ac01b3be849-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f646decad90ee67b58e7800132bf1cc0", + "traceparent": "00-664be41b94cbbaf19c0aa50ec908bc20-0e069f30751f08d5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "62897881e57edae8d16b69a7115026aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -325,34 +321,34 @@ "Cache-Control": "no-cache", "Content-Length": "274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:51 GMT", + "Date": "Tue, 15 Nov 2022 13:08:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e98acc76-a32c-4c65-9e6e-3b7c08d416af", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "e98acc76-a32c-4c65-9e6e-3b7c08d416af", - "x-ms-routing-request-id": "WESTUS:20220803T050351Z:e98acc76-a32c-4c65-9e6e-3b7c08d416af" + "x-ms-correlation-request-id": "d97d390e-127f-4d67-8c04-cbde76d25cfa", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "d97d390e-127f-4d67-8c04-cbde76d25cfa", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130858Z:d97d390e-127f-4d67-8c04-cbde76d25cfa" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficmanagerprofiles/profileName4489/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficmanagerprofiles/profileName4780/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "45", "Content-Type": "application/json", - "traceparent": "00-a1dfb4dd228375499ecb8504196cd440-fd6266be1c6e884b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "332ee232d5bbe1d8f3358a52d907091c", + "traceparent": "00-664be41b94cbbaf19c0aa50ec908bc20-85d52cb550ef1423-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f7b114b5e841a34b51c14f4e13dc2e02", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -367,18 +363,18 @@ "Cache-Control": "no-cache", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:52 GMT", + "Date": "Tue, 15 Nov 2022 13:09:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e052e9f-cfd5-4c9b-905a-b035b4474833", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "7e052e9f-cfd5-4c9b-905a-b035b4474833", - "x-ms-routing-request-id": "WESTUS:20220803T050352Z:7e052e9f-cfd5-4c9b-905a-b035b4474833" + "x-ms-correlation-request-id": "3650d8ca-dca1-459f-b573-47b8038a6a81", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "3650d8ca-dca1-459f-b573-47b8038a6a81", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130901Z:3650d8ca-dca1-459f-b573-47b8038a6a81" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficmanagerprofiles/profileName4489/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficmanagerprofiles/profileName4780/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -389,36 +385,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficmanagerprofiles/profileName4489?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficmanagerprofiles/profileName4780?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a1dfb4dd228375499ecb8504196cd440-392ebbdd8c6b1d4d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8b0f6cab0e024961229a19585f35b124", + "traceparent": "00-664be41b94cbbaf19c0aa50ec908bc20-ec4acad0a0297b7a-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ed41134e1439c95c852d51a3fc7a3eed", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:52 GMT", + "Date": "Tue, 15 Nov 2022 13:09:01 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b932ce7-8947-48ea-805b-a2b122f02e6d", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "8b0f6cab-0e02-4961-229a-19585f35b124", - "x-ms-routing-request-id": "WESTUS:20220803T050352Z:0b932ce7-8947-48ea-805b-a2b122f02e6d", + "x-ms-correlation-request-id": "66b0923f-0db7-4d26-ba32-dc0591d8d9d6", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1988", + "x-ms-request-id": "ed41134e-1439-c95c-852d-51a3fc7a3eed", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130902Z:66b0923f-0db7-4d26-ba32-dc0591d8d9d6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489", - "name": "profileName4489", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780", + "name": "profileName4780", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -428,8 +424,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4489", - "fqdn": "profilename4489.trafficmanager.net", + "relativeName": "profilename4780", + "fqdn": "profilename4780.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -443,7 +439,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -456,11 +452,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -473,7 +470,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -483,36 +481,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6907/providers/Microsoft.Network/trafficmanagerprofiles/profileName4489?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1747/providers/Microsoft.Network/trafficmanagerprofiles/profileName4780?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-01af3a4e9b581f4ab80d71cfd6e8414e-bd7f081887bd1642-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "01833b7caab6f5b1066503d94e280d51", + "traceparent": "00-13136cf211027612c39f75ad84443e1f-e83b7e6f1bb493f8-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c60bbf2fb43a982b2de510bc9599c6f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:52 GMT", + "Date": "Tue, 15 Nov 2022 13:09:02 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "905dbf5c-cb3f-418d-a8d5-ec31bb360f3b", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "01833b7c-aab6-f5b1-0665-03d94e280d51", - "x-ms-routing-request-id": "WESTUS:20220803T050353Z:905dbf5c-cb3f-418d-a8d5-ec31bb360f3b", + "x-ms-correlation-request-id": "42400ae1-2279-47b4-8819-99d2f0a57ae4", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1987", + "x-ms-request-id": "c60bbf2f-b43a-982b-2de5-10bc9599c6f4", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130903Z:42400ae1-2279-47b4-8819-99d2f0a57ae4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489", - "name": "profileName4489", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780", + "name": "profileName4780", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -522,8 +520,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4489", - "fqdn": "profilename4489.trafficmanager.net", + "relativeName": "profilename4780", + "fqdn": "profilename4780.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -537,7 +535,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -550,11 +548,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6907/providers/Microsoft.Network/trafficManagerProfiles/profileName4489/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1747/providers/Microsoft.Network/trafficManagerProfiles/profileName4780/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -567,7 +566,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -577,13 +577,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6907/providers/Microsoft.Network/trafficmanagerprofiles/profileName4489?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1747/providers/Microsoft.Network/trafficmanagerprofiles/profileName4780?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c65563dd91af23bd81e51121bb8082be", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fe58673c390fa071b8e8721496a8a7d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -591,28 +591,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:03:58 GMT", + "Date": "Tue, 15 Nov 2022 13:09:08 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c28687f6-c58f-4816-84a8-0b85769ebf0b", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "c65563dd-91af-23bd-81e5-1121bb8082be", - "x-ms-routing-request-id": "WESTUS:20220803T050359Z:c28687f6-c58f-4816-84a8-0b85769ebf0b", + "x-ms-correlation-request-id": "2920d961-206a-48b6-bb1d-4c08772bc144", + "x-ms-ratelimit-remaining-subscription-resource-requests": "495", + "x-ms-request-id": "fe58673c-390f-a071-b8e8-721496a8a7d6", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130909Z:2920d961-206a-48b6-bb1d-4c08772bc144", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6907?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName1747?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8889c2e8eb5a6a458e667df96cbca6c8-79845bd94d522f41-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "9dd6668407830166ba1a849d0b87faf9", + "traceparent": "00-817d5dc74bda314416fdf799bc6ecb5a-5fa1f3a0306c0b62-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "541f628268d19ac8e7a8c054049f33ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -620,28 +620,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:03:59 GMT", + "Date": "Tue, 15 Nov 2022 13:09:12 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5MDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE3NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e28717f2-675d-4f26-8ef1-785d1192d7f6", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "e28717f2-675d-4f26-8ef1-785d1192d7f6", - "x-ms-routing-request-id": "WESTUS:20220803T050359Z:e28717f2-675d-4f26-8ef1-785d1192d7f6" + "x-ms-correlation-request-id": "87da1d5b-9670-41e8-840e-adb8abb96596", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-request-id": "87da1d5b-9670-41e8-840e-adb8abb96596", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130912Z:87da1d5b-9670-41e8-840e-adb8abb96596" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5MDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE3NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8889c2e8eb5a6a458e667df96cbca6c8-807e3902f417904a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e75545e26f52d5cefc530b950c1f18f9", + "traceparent": "00-817d5dc74bda314416fdf799bc6ecb5a-c275b2f0de2b4ad2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "33393a3e727ad3239fbd1666791d9c18", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -649,28 +649,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:03:59 GMT", + "Date": "Tue, 15 Nov 2022 13:09:12 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5MDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE3NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a6fa168-8b5c-40b4-a594-adcfe47c4269", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "2a6fa168-8b5c-40b4-a594-adcfe47c4269", - "x-ms-routing-request-id": "WESTUS:20220803T050359Z:2a6fa168-8b5c-40b4-a594-adcfe47c4269" + "x-ms-correlation-request-id": "5677c0d5-ffe8-479c-97df-926f76f86512", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "5677c0d5-ffe8-479c-97df-926f76f86512", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130912Z:5677c0d5-ffe8-479c-97df-926f76f86512" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5MDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE3NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8889c2e8eb5a6a458e667df96cbca6c8-54b08dcc568a2b46-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f39417ea860699def1ea1f228894682a", + "traceparent": "00-817d5dc74bda314416fdf799bc6ecb5a-83f99d6bcbf16327-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3aae86b4114142b3842906665a7658d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -678,23 +678,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:04:14 GMT", + "Date": "Tue, 15 Nov 2022 13:09:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ac10931-1d1c-4163-a103-b8635edec3bf", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "0ac10931-1d1c-4163-a103-b8635edec3bf", - "x-ms-routing-request-id": "WESTUS:20220803T050415Z:0ac10931-1d1c-4163-a103-b8635edec3bf" + "x-ms-correlation-request-id": "76c68b7b-fb02-4e19-bdd6-23b0802d756b", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "76c68b7b-fb02-4e19-bdd6-23b0802d756b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130928Z:76c68b7b-fb02-4e19-bdd6-23b0802d756b" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "856004427", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "814004058", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(null).json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(null).json index 0ba0ab4aa4bf..b29832d290b3 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(null).json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(null).json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d54ca7ead4d6056176034b22b4bb4bbd-eabab195cbfe5224-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4206f9d705465cf8cdd711ecc350083f", + "traceparent": "00-5581c5bdb3cbc21f24c80f5a4af16ba4-a69380e2da88426b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a1292039f54715c2df7b36b766948e2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:10 GMT", + "Date": "Tue, 15 Nov 2022 12:33:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d78c25d-2e32-45e0-b410-b0b95b85d138", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "0d78c25d-2e32-45e0-b410-b0b95b85d138", - "x-ms-routing-request-id": "WESTUS2:20220815T184910Z:0d78c25d-2e32-45e0-b410-b0b95b85d138" + "x-ms-correlation-request-id": "ce9bb061-0ee0-4794-8458-690fb3d87842", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "ce9bb061-0ee0-4794-8458-690fb3d87842", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123359Z:ce9bb061-0ee0-4794-8458-690fb3d87842" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName2002?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName1676?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-74eeec1480a3e459341cd04fcaa48fcf-7310882c5840725e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1b47f3ef8de077853a3755fdc6499c75", + "traceparent": "00-d6988970b501f019d69086aacc40dc53-6b205dbc8d7fc153-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3b8fcec96cc6232eb32affcc986ca4d5", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:11 GMT", + "Date": "Tue, 15 Nov 2022 12:34:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fcfef8e0-c85f-433b-b3c6-323630502453", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "fcfef8e0-c85f-433b-b3c6-323630502453", - "x-ms-routing-request-id": "WESTUS2:20220815T184911Z:fcfef8e0-c85f-433b-b3c6-323630502453" + "x-ms-correlation-request-id": "c9da79c5-a2bf-4a25-8125-f931912418cf", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "c9da79c5-a2bf-4a25-8125-f931912418cf", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123400Z:c9da79c5-a2bf-4a25-8125-f931912418cf" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2002", - "name": "resourceGroupName2002", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1676", + "name": "resourceGroupName1676", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -97,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2002/providers/Microsoft.Network/trafficmanagerprofiles/profileName9430?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1676/providers/Microsoft.Network/trafficmanagerprofiles/profileName6987?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-a9ab1b6f8a239c3c17b74c8cf19ec1f0-f0c0a61c833e9621-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "68b4635a174a201417f67af8209946be", + "traceparent": "00-6f60239eaf446b474a2f5d454b917305-6ad4cebfda1f7735-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3c70721e616e9e1f04c5bacb377cfb64", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName9430", + "name": "profileName6987", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName9430" + "relativeName": "profileName6987" }, "monitorConfig": { "protocol": "HTTP", @@ -145,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:13 GMT", + "Date": "Tue, 15 Nov 2022 12:34:04 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8548c946-2ca4-43e4-a272-8691373f121c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "68b4635a-174a-2014-17f6-7af8209946be", - "x-ms-routing-request-id": "WESTUS2:20220815T184913Z:8548c946-2ca4-43e4-a272-8691373f121c", + "x-ms-correlation-request-id": "1baf2a20-3cb3-4d06-8235-315c4c82e113", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4492", + "x-ms-request-id": "3c70721e-616e-9e1f-04c5-bacb377cfb64", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123405Z:1baf2a20-3cb3-4d06-8235-315c4c82e113", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430", - "name": "profileName9430", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987", + "name": "profileName6987", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9430", - "fqdn": "profilename9430.trafficmanager.net", + "relativeName": "profilename6987", + "fqdn": "profilename6987.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -182,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -195,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -212,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -222,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2002/providers/Microsoft.Network/trafficmanagerprofiles/profileName9430?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1676/providers/Microsoft.Network/trafficmanagerprofiles/profileName6987?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a96d236770edffb021dfe7d88e593d91-c4a6ffff0566040d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2f8c08ca4d996cf680cb0ccda25f078d", + "traceparent": "00-0ed7aae3540df48a3d2b62cb5fd8de13-7d4912089212b815-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fb85fdde32b0b472fa7e93cbc348460f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:13 GMT", + "Date": "Tue, 15 Nov 2022 12:34:05 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "261741b5-d32c-4593-9854-963797e07165", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "2f8c08ca-4d99-6cf6-80cb-0ccda25f078d", - "x-ms-routing-request-id": "WESTUS2:20220815T184914Z:261741b5-d32c-4593-9854-963797e07165", + "x-ms-correlation-request-id": "85cb34e2-717e-4baa-bf6a-0ba805cb0ba3", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1994", + "x-ms-request-id": "fb85fdde-32b0-b472-fa7e-93cbc348460f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123405Z:85cb34e2-717e-4baa-bf6a-0ba805cb0ba3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430", - "name": "profileName9430", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987", + "name": "profileName6987", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -259,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9430", - "fqdn": "profilename9430.trafficmanager.net", + "relativeName": "profilename6987", + "fqdn": "profilename6987.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -274,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -287,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -304,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -314,34 +305,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Resources?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1cebc14a071412c5f67032ed41029287-69b8f405a1a9c92b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ed697774d653d831df2604ea138d57a1", + "traceparent": "00-7f98298e9427950d04f7973a4653d5e4-cf7105ec264171e5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2148e291f01e6857aff13600b163eb37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "17477", + "Content-Length": "18075", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:14 GMT", + "Date": "Tue, 15 Nov 2022 12:34:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44161bc2-a1c7-4b96-963e-b44db03fdf4e", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "44161bc2-a1c7-4b96-963e-b44db03fdf4e", - "x-ms-routing-request-id": "WESTUS2:20220815T184914Z:44161bc2-a1c7-4b96-963e-b44db03fdf4e" + "x-ms-correlation-request-id": "0ba2542d-4de6-43ab-8b70-9b232ff676ed", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "0ba2542d-4de6-43ab-8b70-9b232ff676ed", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123406Z:0ba2542d-4de6-43ab-8b70-9b232ff676ed" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Resources", "namespace": "Microsoft.Resources", "authorizations": [ { @@ -875,7 +866,12 @@ "Jio India West", "West US 3", "Qatar Central", - "Sweden Central" + "Sweden Central", + "East US SLV", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" ], "apiVersions": [ "2019-05-01", @@ -952,7 +948,12 @@ "Jio India West", "West US 3", "Qatar Central", - "Sweden Central" + "Sweden Central", + "East US SLV", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" ], "apiVersions": [ "2019-05-01", @@ -1235,6 +1236,14 @@ ], "capabilities": "None" }, + { + "resourceType": "validateResources", + "locations": [], + "apiVersions": [ + "2022-06-01" + ], + "capabilities": "None" + }, { "resourceType": "links", "locations": [], @@ -1352,7 +1361,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1395,7 +1406,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1438,7 +1451,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1477,6 +1492,7 @@ "Korea South", "North Europe", "Norway East", + "Qatar Central", "Sweden Central", "UAE North", "West Central US", @@ -1485,7 +1501,9 @@ "West US", "West US 3", "South Central US", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2022-02-01", @@ -1526,6 +1544,7 @@ "Korea South", "North Europe", "Norway East", + "Qatar Central", "Sweden Central", "UAE North", "West Central US", @@ -1534,7 +1553,9 @@ "West US", "West US 3", "South Central US", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2022-02-01", @@ -1568,6 +1589,14 @@ "2022-03-01-preview" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "snapshots", + "locations": [], + "apiVersions": [ + "2022-11-01-preview" + ], + "capabilities": "SupportsExtension" } ], "registrationState": "Registered", @@ -1575,14 +1604,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1cebc14a071412c5f67032ed41029287-21e3b5185502a1de-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "be3296f16dbd0cdc6c48e87f0b467db8", + "traceparent": "00-7f98298e9427950d04f7973a4653d5e4-ef0ef037bcf6ed68-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9bee9b2fa8e6eb25ffbb42efcd54dabc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1591,34 +1620,34 @@ "Cache-Control": "no-cache", "Content-Length": "274", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:14 GMT", + "Date": "Tue, 15 Nov 2022 12:34:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59a47c75-9095-45e7-8b42-15ef295ce967", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "59a47c75-9095-45e7-8b42-15ef295ce967", - "x-ms-routing-request-id": "WESTUS2:20220815T184914Z:59a47c75-9095-45e7-8b42-15ef295ce967" + "x-ms-correlation-request-id": "3a1fd89c-e213-4eea-aa0a-332f84791daa", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "3a1fd89c-e213-4eea-aa0a-332f84791daa", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123407Z:3a1fd89c-e213-4eea-aa0a-332f84791daa" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficmanagerprofiles/profileName9430/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficmanagerprofiles/profileName6987/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "45", "Content-Type": "application/json", - "traceparent": "00-1cebc14a071412c5f67032ed41029287-0fdcc673b66e6f1a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a984ecef582ff46bd6b34f72490c59f3", + "traceparent": "00-7f98298e9427950d04f7973a4653d5e4-4974ebfdeaef8bf9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5539ab7fd933ee46a61d4cbffb720296", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1633,18 +1662,18 @@ "Cache-Control": "no-cache", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:15 GMT", + "Date": "Tue, 15 Nov 2022 12:34:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5909647b-660b-49eb-b8ed-6ee7cec6b7a0", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "5909647b-660b-49eb-b8ed-6ee7cec6b7a0", - "x-ms-routing-request-id": "WESTUS2:20220815T184916Z:5909647b-660b-49eb-b8ed-6ee7cec6b7a0" + "x-ms-correlation-request-id": "486a88ae-1443-4f47-8d9d-4444407e6df4", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "486a88ae-1443-4f47-8d9d-4444407e6df4", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123409Z:486a88ae-1443-4f47-8d9d-4444407e6df4" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficmanagerprofiles/profileName9430/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficmanagerprofiles/profileName6987/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -1655,36 +1684,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficmanagerprofiles/profileName9430?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficmanagerprofiles/profileName6987?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1cebc14a071412c5f67032ed41029287-91be28147675e14f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0cdc6a73492d06d09a5c800beeb1cd99", + "traceparent": "00-7f98298e9427950d04f7973a4653d5e4-5b10703054b38c45-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "279b5b93aa5ae828bd5c2162ae679a5a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:16 GMT", + "Date": "Tue, 15 Nov 2022 12:34:09 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61e77174-6cf1-4f99-8bf0-ef86b712649f", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "0cdc6a73-492d-06d0-9a5c-800beeb1cd99", - "x-ms-routing-request-id": "WESTUS2:20220815T184916Z:61e77174-6cf1-4f99-8bf0-ef86b712649f", + "x-ms-correlation-request-id": "07d310a0-00bb-435a-8ffc-ac203885be95", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1993", + "x-ms-request-id": "279b5b93-aa5a-e828-bd5c-2162ae679a5a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123410Z:07d310a0-00bb-435a-8ffc-ac203885be95", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430", - "name": "profileName9430", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987", + "name": "profileName6987", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1694,8 +1723,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9430", - "fqdn": "profilename9430.trafficmanager.net", + "relativeName": "profilename6987", + "fqdn": "profilename6987.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1709,7 +1738,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1722,11 +1751,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1739,7 +1769,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1749,36 +1780,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2002/providers/Microsoft.Network/trafficmanagerprofiles/profileName9430?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1676/providers/Microsoft.Network/trafficmanagerprofiles/profileName6987?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4b614f7b8b38fcc052e0cca825c1549d-b44025632b2da2fd-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "26fa4ba9ad0898712b3de7091d6ac35f", + "traceparent": "00-148eb31bfc48d0b97e684cb76c7fe0f4-ed524e52c37a8bc3-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "06807a169529560355fff5c95c65f08d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:16 GMT", + "Date": "Tue, 15 Nov 2022 12:34:10 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45d6f0de-0740-4271-9630-82d66f5e083c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "26fa4ba9-ad08-9871-2b3d-e7091d6ac35f", - "x-ms-routing-request-id": "WESTUS2:20220815T184916Z:45d6f0de-0740-4271-9630-82d66f5e083c", + "x-ms-correlation-request-id": "ac170257-96e7-4a2f-b8fb-8287e47eb44c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1992", + "x-ms-request-id": "06807a16-9529-5603-55ff-f5c95c65f08d", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123411Z:ac170257-96e7-4a2f-b8fb-8287e47eb44c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430", - "name": "profileName9430", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987", + "name": "profileName6987", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1788,8 +1819,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9430", - "fqdn": "profilename9430.trafficmanager.net", + "relativeName": "profilename6987", + "fqdn": "profilename6987.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1803,7 +1834,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1816,11 +1847,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2002/providers/Microsoft.Network/trafficManagerProfiles/profileName9430/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1676/providers/Microsoft.Network/trafficManagerProfiles/profileName6987/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1833,7 +1865,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1843,13 +1876,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2002/providers/Microsoft.Network/trafficmanagerprofiles/profileName9430?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1676/providers/Microsoft.Network/trafficmanagerprofiles/profileName6987?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a00bf4ef7169a58a1c7d0ed3d8600524", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "725babb9b3b8d462825198d7b7e3403e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1857,28 +1890,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:49:18 GMT", + "Date": "Tue, 15 Nov 2022 12:34:14 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e8f8d5a-a94d-4105-a96c-007d67c5fe2f", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "a00bf4ef-7169-a58a-1c7d-0ed3d8600524", - "x-ms-routing-request-id": "WESTUS2:20220815T184919Z:9e8f8d5a-a94d-4105-a96c-007d67c5fe2f", + "x-ms-correlation-request-id": "f356ecf6-7d81-468c-a448-6bc502918c43", + "x-ms-ratelimit-remaining-subscription-resource-requests": "492", + "x-ms-request-id": "725babb9-b3b8-d462-8251-98d7b7e3403e", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123415Z:f356ecf6-7d81-468c-a448-6bc502918c43", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName2002?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName1676?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-86e2e108b855c5207d2ffc43f00ba8e9-1c1964dee5f4a905-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fdc9b6e63211c6ebf943e0ef61c6e82f", + "traceparent": "00-5aab5257eaf5749f0545456e53d8d07b-79ec46d6e81fd961-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "81a9f282fcf1fe6d5845d25ab55f8c57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:34:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2NzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "08583d7d-20b9-45f4-92d5-17e7a78f5d14", + "x-ms-ratelimit-remaining-subscription-deletes": "14983", + "x-ms-request-id": "08583d7d-20b9-45f4-92d5-17e7a78f5d14", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123417Z:08583d7d-20b9-45f4-92d5-17e7a78f5d14" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2NzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-5aab5257eaf5749f0545456e53d8d07b-0d1346e54c8394a5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6a46b6bf6ebcbd9c3e5d1973e0071f23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:34:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2NzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ab5404b5-a338-46a5-bf5e-698e2dc18e76", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "ab5404b5-a338-46a5-bf5e-698e2dc18e76", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123417Z:ab5404b5-a338-46a5-bf5e-698e2dc18e76" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2NzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-5aab5257eaf5749f0545456e53d8d07b-7f7fb18aa55c5f3a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "236b41c43d3a5a324f4669457894012b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:34:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2NzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7ae23d2d-bf37-4465-8c60-02da807c40ac", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "7ae23d2d-bf37-4465-8c60-02da807c40ac", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123433Z:7ae23d2d-bf37-4465-8c60-02da807c40ac" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2NzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-5aab5257eaf5749f0545456e53d8d07b-aafeec4f5b5e7149-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fe9a61a62218fd9af7ebc4ae0e2f820f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:34:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2NzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1e4629c7-d3a4-4c99-a6cf-1afc6922a52e", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "1e4629c7-d3a4-4c99-a6cf-1afc6922a52e", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123448Z:1e4629c7-d3a4-4c99-a6cf-1afc6922a52e" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2NzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-5aab5257eaf5749f0545456e53d8d07b-ac1b1d6ee411613c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bb145f8c7bc1823784eb1a76045744a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1886,28 +2035,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:49:20 GMT", + "Date": "Tue, 15 Nov 2022 12:35:04 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIwMDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2NzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "466bddc0-7860-4601-8cad-42d9e737544c", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "466bddc0-7860-4601-8cad-42d9e737544c", - "x-ms-routing-request-id": "WESTUS2:20220815T184920Z:466bddc0-7860-4601-8cad-42d9e737544c" + "x-ms-correlation-request-id": "6cdfc09d-ab3b-4dad-99c9-9f222da02981", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "6cdfc09d-ab3b-4dad-99c9-9f222da02981", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123504Z:6cdfc09d-ab3b-4dad-99c9-9f222da02981" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIwMDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2NzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-86e2e108b855c5207d2ffc43f00ba8e9-6dc5c06b29bc0a6f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6623c338c5a1bc4e0945a626909b4455", + "traceparent": "00-5aab5257eaf5749f0545456e53d8d07b-17623d5a0d9268ed-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7fcced5c216ca10aa66d2b4e78834c20", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1915,28 +2064,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:49:20 GMT", + "Date": "Tue, 15 Nov 2022 12:35:19 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIwMDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2NzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a66c205-f4ba-4509-bd7a-69f97af315aa", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "1a66c205-f4ba-4509-bd7a-69f97af315aa", - "x-ms-routing-request-id": "WESTUS2:20220815T184920Z:1a66c205-f4ba-4509-bd7a-69f97af315aa" + "x-ms-correlation-request-id": "12412088-e249-4729-a05a-3d2bd9b09686", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "12412088-e249-4729-a05a-3d2bd9b09686", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123519Z:12412088-e249-4729-a05a-3d2bd9b09686" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIwMDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2NzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-86e2e108b855c5207d2ffc43f00ba8e9-9ff7591332c0e9c5-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b739de940b43b97e87913cbc2760265a", + "traceparent": "00-5aab5257eaf5749f0545456e53d8d07b-b5e12ee8a157cc17-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "19b95ac345802a6a2918792d0824f9a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1944,23 +2093,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:49:35 GMT", + "Date": "Tue, 15 Nov 2022 12:35:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fed3737-55ec-459c-bda5-8377fab53d7c", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "8fed3737-55ec-459c-bda5-8377fab53d7c", - "x-ms-routing-request-id": "WESTUS2:20220815T184935Z:8fed3737-55ec-459c-bda5-8377fab53d7c" + "x-ms-correlation-request-id": "ed74e087-90b2-4e28-b79d-116193d1f1be", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "ed74e087-90b2-4e28-b79d-116193d1f1be", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123535Z:ed74e087-90b2-4e28-b79d-116193d1f1be" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "615941235", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1927833925", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(null)Async.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(null)Async.json index a1081ed7e348..329eb34ca212 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(null)Async.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/AddTagTest(null)Async.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-40deba154272b4e8b1bfa6869f0fac2e-ee80d6efc5e55dd7-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "168abe28be43a518a437b220d129b1ef", + "traceparent": "00-9e6c55014a4f5627b1a5a526a89fa083-79e30dcb5f78b761-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9ac5b47a2f1957678f9ec1a12076caf1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:55:22 GMT", + "Date": "Tue, 15 Nov 2022 13:05:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3bd85bc-8a17-4c50-a04b-98843f859c7a", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "e3bd85bc-8a17-4c50-a04b-98843f859c7a", - "x-ms-routing-request-id": "WESTUS2:20220815T185522Z:e3bd85bc-8a17-4c50-a04b-98843f859c7a" + "x-ms-correlation-request-id": "348c7e0e-1ca6-45ae-ae7b-011b7ca4c122", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "348c7e0e-1ca6-45ae-ae7b-011b7ca4c122", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130528Z:348c7e0e-1ca6-45ae-ae7b-011b7ca4c122" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName2077?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName9402?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-e3541a7d3e21b1d076f62d98ea17e905-dda5140f9089b453-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ae6c6533a38da14189a053e8004599aa", + "traceparent": "00-8b836e65dff2fba419732819a922badb-8dd8b3af1e65a49a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e7cdfa35725f6be943d970c7d375b359", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:55:23 GMT", + "Date": "Tue, 15 Nov 2022 13:05:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57b17a62-23bc-4f82-8781-2f0b2abc99dd", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "57b17a62-23bc-4f82-8781-2f0b2abc99dd", - "x-ms-routing-request-id": "WESTUS2:20220815T185523Z:57b17a62-23bc-4f82-8781-2f0b2abc99dd" + "x-ms-correlation-request-id": "e0ddefa6-bb54-44fa-b64a-eb0fe26e02b7", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "e0ddefa6-bb54-44fa-b64a-eb0fe26e02b7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130530Z:e0ddefa6-bb54-44fa-b64a-eb0fe26e02b7" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2077", - "name": "resourceGroupName2077", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9402", + "name": "resourceGroupName9402", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -97,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2077/providers/Microsoft.Network/trafficmanagerprofiles/profileName9034?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9402/providers/Microsoft.Network/trafficmanagerprofiles/profileName3575?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-62bd8eb4be4beed4f17e78f36b12c5b4-be4c17f61b3e9427-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "42ec8069d4bbd40f1dbbf251787326c4", + "traceparent": "00-d9828249b496da2e690413bdd7b378d4-3f5023142cf7389b-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1447ae111029e90d3e427d56af2308ce", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName9034", + "name": "profileName3575", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName9034" + "relativeName": "profileName3575" }, "monitorConfig": { "protocol": "HTTP", @@ -145,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:55:24 GMT", + "Date": "Tue, 15 Nov 2022 13:05:36 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "059a5359-b7a0-41a3-8d0c-4321c2d4b444", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10790", - "x-ms-request-id": "42ec8069-d4bb-d40f-1dbb-f251787326c4", - "x-ms-routing-request-id": "WESTUS2:20220815T185524Z:059a5359-b7a0-41a3-8d0c-4321c2d4b444", + "x-ms-correlation-request-id": "0cc94fbe-1680-4961-8915-d9756b8d938d", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4495", + "x-ms-request-id": "1447ae11-1029-e90d-3e42-7d56af2308ce", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130536Z:0cc94fbe-1680-4961-8915-d9756b8d938d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034", - "name": "profileName9034", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575", + "name": "profileName3575", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9034", - "fqdn": "profilename9034.trafficmanager.net", + "relativeName": "profilename3575", + "fqdn": "profilename3575.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -182,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -195,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -212,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -222,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2077/providers/Microsoft.Network/trafficmanagerprofiles/profileName9034?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9402/providers/Microsoft.Network/trafficmanagerprofiles/profileName3575?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8aa91305c2cf693398c0538cf8f62f63-75a8207a1cf00697-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "05ea8a1571b71b9b4975ba1dc5bda3f2", + "traceparent": "00-e0a3bcdbb2af51587830a62a50e4ec31-4ba0fbb7d0036224-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c704ff106011411adc2ed655f690bc29", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:55:24 GMT", + "Date": "Tue, 15 Nov 2022 13:05:36 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa268036-fba8-4a42-9510-fe089ec75431", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10778", - "x-ms-request-id": "05ea8a15-71b7-1b9b-4975-ba1dc5bda3f2", - "x-ms-routing-request-id": "WESTUS2:20220815T185524Z:fa268036-fba8-4a42-9510-fe089ec75431", + "x-ms-correlation-request-id": "c21abf22-7534-4115-b6ba-d38431e304d9", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1995", + "x-ms-request-id": "c704ff10-6011-411a-dc2e-d655f690bc29", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130537Z:c21abf22-7534-4115-b6ba-d38431e304d9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034", - "name": "profileName9034", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575", + "name": "profileName3575", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -259,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9034", - "fqdn": "profilename9034.trafficmanager.net", + "relativeName": "profilename3575", + "fqdn": "profilename3575.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -274,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -287,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -304,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -314,34 +305,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Resources?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8c40736194114bc5b02cc1393be82594-34366cba1680be9d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a9677519acc55ed9559790d1b1f02816", + "traceparent": "00-a3bce10ca5136d511df520abb22586e0-02a744a6948fe106-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c80f470ddc83243dede4a91df592bc1f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "17477", + "Content-Length": "18075", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:55:24 GMT", + "Date": "Tue, 15 Nov 2022 13:05:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4c3d83a-245c-470d-89a4-aef8884dbf44", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "b4c3d83a-245c-470d-89a4-aef8884dbf44", - "x-ms-routing-request-id": "WESTUS2:20220815T185524Z:b4c3d83a-245c-470d-89a4-aef8884dbf44" + "x-ms-correlation-request-id": "d875e7c6-fb15-4c18-91a8-322c9d15ee3b", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "d875e7c6-fb15-4c18-91a8-322c9d15ee3b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130537Z:d875e7c6-fb15-4c18-91a8-322c9d15ee3b" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Resources", "namespace": "Microsoft.Resources", "authorizations": [ { @@ -875,7 +866,12 @@ "Jio India West", "West US 3", "Qatar Central", - "Sweden Central" + "Sweden Central", + "East US SLV", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" ], "apiVersions": [ "2019-05-01", @@ -952,7 +948,12 @@ "Jio India West", "West US 3", "Qatar Central", - "Sweden Central" + "Sweden Central", + "East US SLV", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" ], "apiVersions": [ "2019-05-01", @@ -1235,6 +1236,14 @@ ], "capabilities": "None" }, + { + "resourceType": "validateResources", + "locations": [], + "apiVersions": [ + "2022-06-01" + ], + "capabilities": "None" + }, { "resourceType": "links", "locations": [], @@ -1352,7 +1361,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1395,7 +1406,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1438,7 +1451,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1477,6 +1492,7 @@ "Korea South", "North Europe", "Norway East", + "Qatar Central", "Sweden Central", "UAE North", "West Central US", @@ -1485,7 +1501,9 @@ "West US", "West US 3", "South Central US", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2022-02-01", @@ -1526,6 +1544,7 @@ "Korea South", "North Europe", "Norway East", + "Qatar Central", "Sweden Central", "UAE North", "West Central US", @@ -1534,7 +1553,9 @@ "West US", "West US 3", "South Central US", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2022-02-01", @@ -1568,6 +1589,14 @@ "2022-03-01-preview" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "snapshots", + "locations": [], + "apiVersions": [ + "2022-11-01-preview" + ], + "capabilities": "SupportsExtension" } ], "registrationState": "Registered", @@ -1575,14 +1604,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8c40736194114bc5b02cc1393be82594-f65e561f96a42f44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "76d38f7a935bf7f3e5d0f9451af20f60", + "traceparent": "00-a3bce10ca5136d511df520abb22586e0-1971360047832b98-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d3b6a2d1eb70b047930538fa39b7f2ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1591,34 +1620,34 @@ "Cache-Control": "no-cache", "Content-Length": "274", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:55:24 GMT", + "Date": "Tue, 15 Nov 2022 13:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83141b02-3786-4273-80e2-79a0bacc418f", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "83141b02-3786-4273-80e2-79a0bacc418f", - "x-ms-routing-request-id": "WESTUS2:20220815T185524Z:83141b02-3786-4273-80e2-79a0bacc418f" + "x-ms-correlation-request-id": "77c30387-3758-4cb5-ab21-624eead2766a", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "77c30387-3758-4cb5-ab21-624eead2766a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130537Z:77c30387-3758-4cb5-ab21-624eead2766a" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficmanagerprofiles/profileName9034/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficmanagerprofiles/profileName3575/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "45", "Content-Type": "application/json", - "traceparent": "00-8c40736194114bc5b02cc1393be82594-6ede50bcfcf2c5e0-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0337ff187d0b68ffb18baf1fe1c96958", + "traceparent": "00-a3bce10ca5136d511df520abb22586e0-b24dd8174b1dba3f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "684854863f13344bc2dfda2db7fd4c49", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1633,18 +1662,18 @@ "Cache-Control": "no-cache", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:55:25 GMT", + "Date": "Tue, 15 Nov 2022 13:05:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7349d06d-6b87-4b16-a665-90b1f6a40b3c", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "7349d06d-6b87-4b16-a665-90b1f6a40b3c", - "x-ms-routing-request-id": "WESTUS2:20220815T185525Z:7349d06d-6b87-4b16-a665-90b1f6a40b3c" + "x-ms-correlation-request-id": "b2f8c326-3044-4f57-942c-401739db9831", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "b2f8c326-3044-4f57-942c-401739db9831", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130540Z:b2f8c326-3044-4f57-942c-401739db9831" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficmanagerprofiles/profileName9034/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficmanagerprofiles/profileName3575/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -1655,36 +1684,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficmanagerprofiles/profileName9034?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficmanagerprofiles/profileName3575?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8c40736194114bc5b02cc1393be82594-dbcf83bd74b6beb9-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "36a2a34d2de98697816fc3f4b2934363", + "traceparent": "00-a3bce10ca5136d511df520abb22586e0-1222dee7cbe6fda6-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5484b672e8d921b8ff5f347da343ea35", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:55:25 GMT", + "Date": "Tue, 15 Nov 2022 13:05:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "190d0965-2698-4a8c-bf3b-7494c98ed6ca", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10777", - "x-ms-request-id": "36a2a34d-2de9-8697-816f-c3f4b2934363", - "x-ms-routing-request-id": "WESTUS2:20220815T185526Z:190d0965-2698-4a8c-bf3b-7494c98ed6ca", + "x-ms-correlation-request-id": "cf9be3f9-a992-4e86-90e5-73c6d3eb74ed", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1994", + "x-ms-request-id": "5484b672-e8d9-21b8-ff5f-347da343ea35", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130541Z:cf9be3f9-a992-4e86-90e5-73c6d3eb74ed", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034", - "name": "profileName9034", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575", + "name": "profileName3575", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1694,8 +1723,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9034", - "fqdn": "profilename9034.trafficmanager.net", + "relativeName": "profilename3575", + "fqdn": "profilename3575.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1709,7 +1738,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1722,11 +1751,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1739,7 +1769,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1749,36 +1780,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2077/providers/Microsoft.Network/trafficmanagerprofiles/profileName9034?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9402/providers/Microsoft.Network/trafficmanagerprofiles/profileName3575?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-83967a5b34d9fe61b675d3ee0186fe74-87970382f858d33a-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b1b92f8824b9fd0a906bc4cfe3d4161b", + "traceparent": "00-84320bcdabf2d14d82a1c94e51c9fcde-059bc5d1901b872b-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a097faf15449910b56821191111af996", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:55:25 GMT", + "Date": "Tue, 15 Nov 2022 13:05:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "584d6ff5-fe4e-4cb1-97ff-efd982bda4c3", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10776", - "x-ms-request-id": "b1b92f88-24b9-fd0a-906b-c4cfe3d4161b", - "x-ms-routing-request-id": "WESTUS2:20220815T185526Z:584d6ff5-fe4e-4cb1-97ff-efd982bda4c3", + "x-ms-correlation-request-id": "cefca1c7-d2eb-4551-b6ba-d48e474e4863", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1993", + "x-ms-request-id": "a097faf1-5449-910b-5682-1191111af996", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130542Z:cefca1c7-d2eb-4551-b6ba-d48e474e4863", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034", - "name": "profileName9034", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575", + "name": "profileName3575", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1788,8 +1819,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename9034", - "fqdn": "profilename9034.trafficmanager.net", + "relativeName": "profilename3575", + "fqdn": "profilename3575.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1803,7 +1834,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1816,11 +1847,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2077/providers/Microsoft.Network/trafficManagerProfiles/profileName9034/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9402/providers/Microsoft.Network/trafficManagerProfiles/profileName3575/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1833,7 +1865,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1843,13 +1876,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2077/providers/Microsoft.Network/trafficmanagerprofiles/profileName9034?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9402/providers/Microsoft.Network/trafficmanagerprofiles/profileName3575?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "76f8a166d94feb7768b1819bb90ab51e", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8388eeb99d339dd59c2668b40acd907f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1857,28 +1890,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:55:27 GMT", + "Date": "Tue, 15 Nov 2022 13:05:47 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4c1e75e-3ac8-4d59-ba16-34918c8b9122", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "76f8a166-d94f-eb77-68b1-819bb90ab51e", - "x-ms-routing-request-id": "WESTUS2:20220815T185528Z:a4c1e75e-3ac8-4d59-ba16-34918c8b9122", + "x-ms-correlation-request-id": "be758f12-4f47-480c-b464-8102ad85c70d", + "x-ms-ratelimit-remaining-subscription-resource-requests": "497", + "x-ms-request-id": "8388eeb9-9d33-9dd5-9c26-68b40acd907f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130548Z:be758f12-4f47-480c-b464-8102ad85c70d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName2077?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName9402?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b89b03ec03aa13d375e88bcf8918c6c3-9e64760a3875edec-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b1974c47b810289f99a5a57e68c7a2ad", + "traceparent": "00-7389ac0825deebe2841331efc2068697-d751b973d9484c02-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bc3ba5f4ab651d00aaf2fd56d62610e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:05:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk0MDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d2bd5c1d-55b7-491f-8144-7ce13556840e", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "d2bd5c1d-55b7-491f-8144-7ce13556840e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130550Z:d2bd5c1d-55b7-491f-8144-7ce13556840e" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk0MDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7389ac0825deebe2841331efc2068697-fcfef88dee550791-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6c9c92f13cde0e30ee6ad841a07ec675", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:05:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk0MDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dd1ed6c5-419c-49df-b924-c22731bbe670", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "dd1ed6c5-419c-49df-b924-c22731bbe670", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130551Z:dd1ed6c5-419c-49df-b924-c22731bbe670" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk0MDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7389ac0825deebe2841331efc2068697-be43d053b42497ad-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6c4e8416db0a8dc4a3e7976ca6dd3153", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:06:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk0MDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e15f7a6e-3252-4ee4-a925-2b7d5b39bdda", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "e15f7a6e-3252-4ee4-a925-2b7d5b39bdda", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130606Z:e15f7a6e-3252-4ee4-a925-2b7d5b39bdda" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk0MDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7389ac0825deebe2841331efc2068697-b493ff45618b078e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4465746ba48a2a066eb5c6508ec0b3a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:06:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk0MDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8c7b09fa-4385-4399-bb99-32c5f47212d2", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "8c7b09fa-4385-4399-bb99-32c5f47212d2", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130622Z:8c7b09fa-4385-4399-bb99-32c5f47212d2" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk0MDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-7389ac0825deebe2841331efc2068697-b7c4ede08f5f96f2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "670c8f321a08157fce0ec9f6a4c46711", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1886,28 +2035,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:55:28 GMT", + "Date": "Tue, 15 Nov 2022 13:06:37 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIwNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk0MDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2d49d4f-0e05-48bc-bac6-086193def479", - "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-request-id": "a2d49d4f-0e05-48bc-bac6-086193def479", - "x-ms-routing-request-id": "WESTUS2:20220815T185528Z:a2d49d4f-0e05-48bc-bac6-086193def479" + "x-ms-correlation-request-id": "9f8b3664-e5f9-474d-a96a-7f5a58273979", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "9f8b3664-e5f9-474d-a96a-7f5a58273979", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130637Z:9f8b3664-e5f9-474d-a96a-7f5a58273979" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIwNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk0MDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b89b03ec03aa13d375e88bcf8918c6c3-66ecc84c4ae90ef8-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9687a6b5653dae0b02d0dda933f883a1", + "traceparent": "00-7389ac0825deebe2841331efc2068697-b5950945f6a986ee-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2cd58538821872ea7d24fd541573fee2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1915,28 +2064,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:55:28 GMT", + "Date": "Tue, 15 Nov 2022 13:06:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIwNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk0MDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff9d5d44-f429-4c9d-9f9b-4e1992461e20", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "ff9d5d44-f429-4c9d-9f9b-4e1992461e20", - "x-ms-routing-request-id": "WESTUS2:20220815T185529Z:ff9d5d44-f429-4c9d-9f9b-4e1992461e20" + "x-ms-correlation-request-id": "0a3abc0b-2f58-4337-a2d8-c3730f351032", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "0a3abc0b-2f58-4337-a2d8-c3730f351032", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130653Z:0a3abc0b-2f58-4337-a2d8-c3730f351032" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIwNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk0MDItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b89b03ec03aa13d375e88bcf8918c6c3-f997ddde986612a3-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1242d40ea47c7a8339e8f8426f97852a", + "traceparent": "00-7389ac0825deebe2841331efc2068697-c9215483af65c59e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1739f034cad1504af54f767bda0f85a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1944,23 +2093,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:55:43 GMT", + "Date": "Tue, 15 Nov 2022 13:07:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee0d705d-e7ab-470e-a4c6-f5cacbad93da", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "ee0d705d-e7ab-470e-a4c6-f5cacbad93da", - "x-ms-routing-request-id": "WESTUS2:20220815T185544Z:ee0d705d-e7ab-470e-a4c6-f5cacbad93da" + "x-ms-correlation-request-id": "d19ac26f-413b-4612-b47a-7fc1ceba42fe", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "d19ac26f-413b-4612-b47a-7fc1ceba42fe", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130708Z:d19ac26f-413b-4612-b47a-7fc1ceba42fe" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1728501320", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1322268548", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/EnumeratorTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/EnumeratorTest.json index e81f47bbed31..ae2e61581232 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/EnumeratorTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/EnumeratorTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-30ec3f857d32d34d9530bd26ca8d4f29-00ca0eee1173d74d-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "2c20fc1f0613d977e92f256b1f0a1716", + "traceparent": "00-71fce92ef380eb2e5d2a7ea472039d8a-5d3ff953a26013a5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bc72377fb6b80738a00f81772d920ad0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:24 GMT", + "Date": "Tue, 15 Nov 2022 12:50:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20dd68de-7984-455e-b2da-a1fbb1130c92", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "20dd68de-7984-455e-b2da-a1fbb1130c92", - "x-ms-routing-request-id": "WESTUS2:20220803T045525Z:20dd68de-7984-455e-b2da-a1fbb1130c92" + "x-ms-correlation-request-id": "69a768c5-2699-42e9-98b1-d9be9afa58cc", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "69a768c5-2699-42e9-98b1-d9be9afa58cc", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125057Z:69a768c5-2699-42e9-98b1-d9be9afa58cc" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName5609?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName9593?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-46cfc8d7837ae6408bfc244a1a8f8232-604e404c87082a4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0cceec4f15c54527ac7a84d03429cae0", + "traceparent": "00-c93c39f919dbc69ef4e92f68d9640491-bcabbc1581b9bc20-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0610b9d249ae17fceaf7c20707011bb4", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:25 GMT", + "Date": "Tue, 15 Nov 2022 12:50:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f565dda-87e9-413a-be4b-85958fda7989", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "4f565dda-87e9-413a-be4b-85958fda7989", - "x-ms-routing-request-id": "WESTUS2:20220803T045525Z:4f565dda-87e9-413a-be4b-85958fda7989" + "x-ms-correlation-request-id": "d7248e0d-e74a-435a-8f4c-6eb4671498cc", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "d7248e0d-e74a-435a-8f4c-6eb4671498cc", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125100Z:d7248e0d-e74a-435a-8f4c-6eb4671498cc" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5609", - "name": "resourceGroupName5609", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9593", + "name": "resourceGroupName9593", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5609/providers/Microsoft.Network/trafficmanagerprofiles/profileName3965?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9593/providers/Microsoft.Network/trafficmanagerprofiles/profileName3481?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-0386acdf5c72a340bc009f09353ee799-9d579679fb77fc48-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a7ec0c6de62b9c52656e82e340d633a6", + "traceparent": "00-b005d1389b624979726e12ae9cba26ad-4466c43cbfb30495-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d76400f091a482b1943952d309170afd", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName3965", + "name": "profileName3481", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName3965" + "relativeName": "profileName3481" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:26 GMT", + "Date": "Tue, 15 Nov 2022 12:51:04 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03aee998-865c-4353-b1e3-06be9c20b3e5", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "a7ec0c6d-e62b-9c52-656e-82e340d633a6", - "x-ms-routing-request-id": "WESTUS2:20220803T045527Z:03aee998-865c-4353-b1e3-06be9c20b3e5", + "x-ms-correlation-request-id": "b5908d6b-b1b2-4370-b807-1b148ae52f43", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "d76400f0-91a4-82b1-9439-52d309170afd", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125104Z:b5908d6b-b1b2-4370-b807-1b148ae52f43", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5609/providers/Microsoft.Network/trafficManagerProfiles/profileName3965", - "name": "profileName3965", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9593/providers/Microsoft.Network/trafficManagerProfiles/profileName3481", + "name": "profileName3481", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3965", - "fqdn": "profilename3965.trafficmanager.net", + "relativeName": "profilename3481", + "fqdn": "profilename3481.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5609/providers/Microsoft.Network/trafficManagerProfiles/profileName3965/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9593/providers/Microsoft.Network/trafficManagerProfiles/profileName3481/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5609/providers/Microsoft.Network/trafficManagerProfiles/profileName3965/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9593/providers/Microsoft.Network/trafficManagerProfiles/profileName3481/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,38 +211,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5609/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9593/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-04684607b788ed4eafdf9e24a34e0bbd-f3c126f08e7e6648-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e54931481c63e75af9e6668bf208b405", + "traceparent": "00-171ece6ce2a95f8148d0e5c1ea54e88b-2949869b8d462bc6-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "11634138dca2eed075a4cdbf75ff990e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1895", + "Content-Length": "1945", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:26 GMT", + "Date": "Tue, 15 Nov 2022 12:51:04 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "544dfa77-d281-41ad-a0bd-de2446e10f76", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "e5493148-1c63-e75a-f9e6-668bf208b405", - "x-ms-routing-request-id": "WESTUS2:20220803T045527Z:544dfa77-d281-41ad-a0bd-de2446e10f76", + "x-ms-correlation-request-id": "1fe0fa6f-7596-4ccc-99f4-9b81019fbd3c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1981", + "x-ms-request-id": "11634138-dca2-eed0-75a4-cdbf75ff990e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125104Z:1fe0fa6f-7596-4ccc-99f4-9b81019fbd3c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5609/providers/Microsoft.Network/trafficManagerProfiles/profileName3965", - "name": "profileName3965", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9593/providers/Microsoft.Network/trafficManagerProfiles/profileName3481", + "name": "profileName3481", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -256,8 +250,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3965", - "fqdn": "profilename3965.trafficmanager.net", + "relativeName": "profilename3481", + "fqdn": "profilename3481.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -271,7 +265,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5609/providers/Microsoft.Network/trafficManagerProfiles/profileName3965/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9593/providers/Microsoft.Network/trafficManagerProfiles/profileName3481/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -284,11 +278,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5609/providers/Microsoft.Network/trafficManagerProfiles/profileName3965/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9593/providers/Microsoft.Network/trafficManagerProfiles/profileName3481/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -301,7 +296,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -313,13 +309,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5609/providers/Microsoft.Network/trafficmanagerprofiles/profileName3965?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9593/providers/Microsoft.Network/trafficmanagerprofiles/profileName3481?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "fdb18b5a6e2a68d29932a756924305d5", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "923cc266f9a64153088d7175f6290dd2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -327,28 +323,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:55:28 GMT", + "Date": "Tue, 15 Nov 2022 12:51:10 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "54799d99-afdd-4457-b3cf-fc1fd1b39b91", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "fdb18b5a-6e2a-68d2-9932-a756924305d5", - "x-ms-routing-request-id": "WESTUS2:20220803T045528Z:54799d99-afdd-4457-b3cf-fc1fd1b39b91", + "x-ms-correlation-request-id": "644d87d2-9593-40a9-b8ff-cf0b82266442", + "x-ms-ratelimit-remaining-subscription-resource-requests": "496", + "x-ms-request-id": "923cc266-f9a6-4153-088d-7175f6290dd2", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125110Z:644d87d2-9593-40a9-b8ff-cf0b82266442", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName5609?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName9593?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-efa0b1d62768294ab316c10419b4740f-fccf938ad4655540-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0288de46e5df507cb205ae447fc7aa5c", + "traceparent": "00-31a33839a48af31a3fb25d5ba5fb1bcf-de67c0d47fec9e31-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c5cfc4ec099d1411307661ffc4f20c94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:51:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk1OTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8648aa75-2613-48db-a830-8161e6450ec5", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-request-id": "8648aa75-2613-48db-a830-8161e6450ec5", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125112Z:8648aa75-2613-48db-a830-8161e6450ec5" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk1OTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-31a33839a48af31a3fb25d5ba5fb1bcf-7027b6c3a8d70844-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b1d2fa96d32f5d70b028622f98547d15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:51:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk1OTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c98b4510-a76e-4ffa-93fd-a28e09a48fb3", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "c98b4510-a76e-4ffa-93fd-a28e09a48fb3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125112Z:c98b4510-a76e-4ffa-93fd-a28e09a48fb3" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk1OTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-31a33839a48af31a3fb25d5ba5fb1bcf-bfcba13f491f675a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b2d5dd80c6bc74f76c90d87b00fca9d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:51:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk1OTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "42f51c4c-6439-4c62-b1d1-5b4891844351", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "42f51c4c-6439-4c62-b1d1-5b4891844351", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125128Z:42f51c4c-6439-4c62-b1d1-5b4891844351" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk1OTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-31a33839a48af31a3fb25d5ba5fb1bcf-26c3d901e90aca06-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c968147e5b20cc64d30f96b21628a699", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:51:43 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk1OTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a1f8fbf9-96b5-4920-bfac-9ea417ea4a2f", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "a1f8fbf9-96b5-4920-bfac-9ea417ea4a2f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125143Z:a1f8fbf9-96b5-4920-bfac-9ea417ea4a2f" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk1OTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-31a33839a48af31a3fb25d5ba5fb1bcf-231b43e2c5a9de48-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8d94f3a54485d08f035d449ffbf55db3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -356,28 +468,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:55:28 GMT", + "Date": "Tue, 15 Nov 2022 12:51:59 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU2MDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk1OTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8743340e-5cf1-4031-97ee-15d8eb4d6c6e", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-request-id": "8743340e-5cf1-4031-97ee-15d8eb4d6c6e", - "x-ms-routing-request-id": "WESTUS2:20220803T045529Z:8743340e-5cf1-4031-97ee-15d8eb4d6c6e" + "x-ms-correlation-request-id": "8b9c6c59-e77c-4148-aeec-eac8b7176e2f", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "8b9c6c59-e77c-4148-aeec-eac8b7176e2f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125159Z:8b9c6c59-e77c-4148-aeec-eac8b7176e2f" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU2MDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk1OTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efa0b1d62768294ab316c10419b4740f-d51034a410ea3743-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "134490e0b28075250e614b25c08de9d2", + "traceparent": "00-31a33839a48af31a3fb25d5ba5fb1bcf-1d0b8b98293fd02f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "83b18c7eb4eb25f57809dfad30455e44", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -385,28 +497,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:55:29 GMT", + "Date": "Tue, 15 Nov 2022 12:52:14 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU2MDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk1OTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9bb760c-6736-48a6-a503-b40d27c28775", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "d9bb760c-6736-48a6-a503-b40d27c28775", - "x-ms-routing-request-id": "WESTUS2:20220803T045529Z:d9bb760c-6736-48a6-a503-b40d27c28775" + "x-ms-correlation-request-id": "c8dbb5d2-8516-43c9-affd-b9e51294e958", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "c8dbb5d2-8516-43c9-affd-b9e51294e958", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125214Z:c8dbb5d2-8516-43c9-affd-b9e51294e958" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU2MDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk1OTMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-efa0b1d62768294ab316c10419b4740f-538fdf5461a26843-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "159c4a8750ba11b163aea3ff984bdaae", + "traceparent": "00-31a33839a48af31a3fb25d5ba5fb1bcf-57888052b35bbae1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0cd63eea1c6839508598c5c217c5d1dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -414,23 +526,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:55:44 GMT", + "Date": "Tue, 15 Nov 2022 12:52:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46021ade-d725-416d-8006-ea09b5f30d6a", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "46021ade-d725-416d-8006-ea09b5f30d6a", - "x-ms-routing-request-id": "WESTUS2:20220803T045545Z:46021ade-d725-416d-8006-ea09b5f30d6a" + "x-ms-correlation-request-id": "b86b5ea2-1af4-4e91-ac34-26e48b365669", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "b86b5ea2-1af4-4e91-ac34-26e48b365669", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125230Z:b86b5ea2-1af4-4e91-ac34-26e48b365669" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1889653510", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1829829307", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/EnumeratorTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/EnumeratorTestAsync.json index 77d43ad2e9da..30f1b7af3d1f 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/EnumeratorTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/EnumeratorTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a2e6c60473200242b6ae0e251df4987c-11948efbbac53b40-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "2809c192122dc5595afb938c20a06a90", + "traceparent": "00-91dd937db3415d583d60dd0f62808122-14c93ea0f83fb714-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2f2d7d80837772ed116cc182c38e00d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:04:15 GMT", + "Date": "Tue, 15 Nov 2022 13:19:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92e25591-1369-4cb3-95c7-70be52806da0", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "92e25591-1369-4cb3-95c7-70be52806da0", - "x-ms-routing-request-id": "WESTUS:20220803T050415Z:92e25591-1369-4cb3-95c7-70be52806da0" + "x-ms-correlation-request-id": "17096e71-c065-464e-984e-d82eb7de294f", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "17096e71-c065-464e-984e-d82eb7de294f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131948Z:17096e71-c065-464e-984e-d82eb7de294f" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName7575?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8170?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-c6423f62c98edb4995c1d93bb34f510b-1cad3c837d350246-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "779db56f91a9c57286be0e53f6ba30b2", + "traceparent": "00-8eaf6e2a25fedbe4b1488fed895f2775-d7ad7c9edd2cda37-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "aadc959e737a102abd7afe85d341af9c", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:04:16 GMT", + "Date": "Tue, 15 Nov 2022 13:19:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b28164d-1e49-4bba-914b-b74f0bb1fc4c", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "7b28164d-1e49-4bba-914b-b74f0bb1fc4c", - "x-ms-routing-request-id": "WESTUS:20220803T050416Z:7b28164d-1e49-4bba-914b-b74f0bb1fc4c" + "x-ms-correlation-request-id": "a83e7095-0f53-4959-a959-1e0738902d6d", + "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-request-id": "a83e7095-0f53-4959-a959-1e0738902d6d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131950Z:a83e7095-0f53-4959-a959-1e0738902d6d" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7575", - "name": "resourceGroupName7575", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8170", + "name": "resourceGroupName8170", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7575/providers/Microsoft.Network/trafficmanagerprofiles/profileName1353?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8170/providers/Microsoft.Network/trafficmanagerprofiles/profileName633?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "561", + "Content-Length": "559", "Content-Type": "application/json", - "traceparent": "00-b498db011346034da4361b4bf26760a4-0b5c3e4bff7a794c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6c6953913886c6634f3aaa630526f453", + "traceparent": "00-657c5c8f4cefaf92b043b7cb8765b9e8-fefaa978fb110dcb-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6f1d5a4285ddf8d4dd7baefb33748814", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName1353", + "name": "profileName633", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName1353" + "relativeName": "profileName633" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1917", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:04:17 GMT", + "Date": "Tue, 15 Nov 2022 13:19:54 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8df1741c-b65f-4b45-9544-8e5d0a55ea29", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "6c695391-3886-c663-4f3a-aa630526f453", - "x-ms-routing-request-id": "WESTUS:20220803T050417Z:8df1741c-b65f-4b45-9544-8e5d0a55ea29", + "x-ms-correlation-request-id": "e7193a89-ac5a-48c5-a508-856f83aceaf5", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4490", + "x-ms-request-id": "6f1d5a42-85dd-f8d4-dd7b-aefb33748814", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131955Z:e7193a89-ac5a-48c5-a508-856f83aceaf5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7575/providers/Microsoft.Network/trafficManagerProfiles/profileName1353", - "name": "profileName1353", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8170/providers/Microsoft.Network/trafficManagerProfiles/profileName633", + "name": "profileName633", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename1353", - "fqdn": "profilename1353.trafficmanager.net", + "relativeName": "profilename633", + "fqdn": "profilename633.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7575/providers/Microsoft.Network/trafficManagerProfiles/profileName1353/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8170/providers/Microsoft.Network/trafficManagerProfiles/profileName633/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7575/providers/Microsoft.Network/trafficManagerProfiles/profileName1353/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8170/providers/Microsoft.Network/trafficManagerProfiles/profileName633/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,38 +211,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7575/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8170/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d9f77a8a3b7cb14daaf9adf78c1bb313-6dde8763ef884649-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "cbf3f52d95102fe89763a6534b726441", + "traceparent": "00-860de5797b55c4e7786d6275946f0236-29b5c8a7e9d388cb-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b307df25f4f70906021fba09efed3d2a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1895", + "Content-Length": "1939", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:04:17 GMT", + "Date": "Tue, 15 Nov 2022 13:19:54 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98e24ac5-d190-41a6-a594-176d1659ccef", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "cbf3f52d-9510-2fe8-9763-a6534b726441", - "x-ms-routing-request-id": "WESTUS:20220803T050417Z:98e24ac5-d190-41a6-a594-176d1659ccef", + "x-ms-correlation-request-id": "5762fab2-4505-47c8-bc2f-b9b3a863b7ea", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1969", + "x-ms-request-id": "b307df25-f4f7-0906-021f-ba09efed3d2a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131955Z:5762fab2-4505-47c8-bc2f-b9b3a863b7ea", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7575/providers/Microsoft.Network/trafficManagerProfiles/profileName1353", - "name": "profileName1353", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8170/providers/Microsoft.Network/trafficManagerProfiles/profileName633", + "name": "profileName633", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -256,8 +250,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename1353", - "fqdn": "profilename1353.trafficmanager.net", + "relativeName": "profilename633", + "fqdn": "profilename633.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -271,7 +265,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7575/providers/Microsoft.Network/trafficManagerProfiles/profileName1353/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8170/providers/Microsoft.Network/trafficManagerProfiles/profileName633/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -284,11 +278,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7575/providers/Microsoft.Network/trafficManagerProfiles/profileName1353/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8170/providers/Microsoft.Network/trafficManagerProfiles/profileName633/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -301,7 +296,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -313,13 +309,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7575/providers/Microsoft.Network/trafficmanagerprofiles/profileName1353?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8170/providers/Microsoft.Network/trafficmanagerprofiles/profileName633?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4d8fd962230136ba52d6286fe70fbf60", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3481e51260e31985c0e3cdfec52fdc49", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -327,28 +323,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:04:19 GMT", + "Date": "Tue, 15 Nov 2022 13:20:00 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75a5f336-5a99-4b9c-8ee7-aa759ddf1848", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "4d8fd962-2301-36ba-52d6-286fe70fbf60", - "x-ms-routing-request-id": "WESTUS:20220803T050419Z:75a5f336-5a99-4b9c-8ee7-aa759ddf1848", + "x-ms-correlation-request-id": "bf2acdef-c0bc-41f7-a9fb-132679a49bb5", + "x-ms-ratelimit-remaining-subscription-resource-requests": "497", + "x-ms-request-id": "3481e512-60e3-1985-c0e3-cdfec52fdc49", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132000Z:bf2acdef-c0bc-41f7-a9fb-132679a49bb5", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName7575?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8170?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-194f627ee0616949b039b2a01778fb6c-6780335950728d4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0125baca64c6fba26a3ad522910f7bdc", + "traceparent": "00-d33e83463a8cb1d3a55e2bcd5a5a8d91-33b1d90331305080-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f460eaf1fc3a4ea553136dbdcacb09f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:20:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "364ff035-d9df-432a-a6e1-0814a29a224a", + "x-ms-ratelimit-remaining-subscription-deletes": "14986", + "x-ms-request-id": "364ff035-d9df-432a-a6e1-0814a29a224a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132002Z:364ff035-d9df-432a-a6e1-0814a29a224a" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-d33e83463a8cb1d3a55e2bcd5a5a8d91-4eac3f143cfd830a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "04177042498d16f04033e0cff3c84ef5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:20:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5ead2f5f-da8d-44ef-8ab0-03c03c83dc5d", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "5ead2f5f-da8d-44ef-8ab0-03c03c83dc5d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132002Z:5ead2f5f-da8d-44ef-8ab0-03c03c83dc5d" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-d33e83463a8cb1d3a55e2bcd5a5a8d91-f27c87a6668cb6e2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "41c0dcda8f459d56b89c9b4c0991274b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:20:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3e9417d6-c168-46db-a5b6-305727d956f0", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "3e9417d6-c168-46db-a5b6-305727d956f0", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132018Z:3e9417d6-c168-46db-a5b6-305727d956f0" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-d33e83463a8cb1d3a55e2bcd5a5a8d91-7ceba9030c601738-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "597a9acf04b4f46393d30dbf7362d091", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:20:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ee3719d7-f6e4-4c8a-af55-03e20f34a354", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "ee3719d7-f6e4-4c8a-af55-03e20f34a354", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132033Z:ee3719d7-f6e4-4c8a-af55-03e20f34a354" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-d33e83463a8cb1d3a55e2bcd5a5a8d91-f1838d33630ef8f2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4a38fd9e0248b38c1a7a4cf0ada30cae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -356,28 +468,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:04:19 GMT", + "Date": "Tue, 15 Nov 2022 13:20:49 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc1NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "771c18ea-2fa7-4e1d-8ba6-cd97d7f7863b", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-request-id": "771c18ea-2fa7-4e1d-8ba6-cd97d7f7863b", - "x-ms-routing-request-id": "WESTUS:20220803T050420Z:771c18ea-2fa7-4e1d-8ba6-cd97d7f7863b" + "x-ms-correlation-request-id": "0aa163bd-c85b-4b0f-8685-6ba452353a48", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "0aa163bd-c85b-4b0f-8685-6ba452353a48", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132049Z:0aa163bd-c85b-4b0f-8685-6ba452353a48" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc1NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-194f627ee0616949b039b2a01778fb6c-c23adf71ba493147-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "908946a4624cfe7a3793e2c74e98a542", + "traceparent": "00-d33e83463a8cb1d3a55e2bcd5a5a8d91-41f98210349b94d6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "58ff950bf44dd54079cbae7282972956", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -385,28 +497,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:04:19 GMT", + "Date": "Tue, 15 Nov 2022 13:21:04 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc1NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4cce7232-b8c9-44c5-aab8-029663888458", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "4cce7232-b8c9-44c5-aab8-029663888458", - "x-ms-routing-request-id": "WESTUS:20220803T050420Z:4cce7232-b8c9-44c5-aab8-029663888458" + "x-ms-correlation-request-id": "6c8b7624-362f-422f-a8fb-4da36b844c6b", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "6c8b7624-362f-422f-a8fb-4da36b844c6b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132104Z:6c8b7624-362f-422f-a8fb-4da36b844c6b" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc1NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-194f627ee0616949b039b2a01778fb6c-5c82a3b311ecc74b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7e994b5a930e23c8681cc70aeb678ef0", + "traceparent": "00-d33e83463a8cb1d3a55e2bcd5a5a8d91-505961cccd704f3f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0cad09cbdd59cc020dc73f39b87247ef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -414,23 +526,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:04:34 GMT", + "Date": "Tue, 15 Nov 2022 13:21:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78015746-be5e-4bf3-9891-7d51bcafeecb", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "78015746-be5e-4bf3-9891-7d51bcafeecb", - "x-ms-routing-request-id": "WESTUS:20220803T050435Z:78015746-be5e-4bf3-9891-7d51bcafeecb" + "x-ms-correlation-request-id": "b7a31486-d45c-4266-9f02-51ed8540fdd0", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "b7a31486-d45c-4266-9f02-51ed8540fdd0", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132120Z:b7a31486-d45c-4266-9f02-51ed8540fdd0" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "2125992662", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "913176407", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/ExistsTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/ExistsTest.json index 39d84638d330..24bd50df3ad2 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/ExistsTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/ExistsTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2ae80a525ac6e64fa566da1eb5ffef6d-524fc2332368754d-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4b34fa35937820b994c9422d7a9f6614", + "traceparent": "00-07470418c025acf96b3903d1bb6bf753-8920496921dae485-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "55039f1583edb6548081e1a28cf83911", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:44 GMT", + "Date": "Tue, 15 Nov 2022 12:52:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8417007c-e486-4b68-a556-9ac96537a739", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "8417007c-e486-4b68-a556-9ac96537a739", - "x-ms-routing-request-id": "WESTUS2:20220803T045545Z:8417007c-e486-4b68-a556-9ac96537a739" + "x-ms-correlation-request-id": "f945cbac-b0d5-4d5b-8193-e689eb309cc5", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "f945cbac-b0d5-4d5b-8193-e689eb309cc5", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125231Z:f945cbac-b0d5-4d5b-8193-e689eb309cc5" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6387?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName3583?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-e81577bd287f6f428f3a60f5b4705a61-1af11cfe7ba5d440-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e22320be38b4d6247bea37b34f1ffaef", + "traceparent": "00-f16d3cd0f4b28f0169530853661c67b7-60e901820a4f2902-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "123720f0a80917213a48c49c17f0ba7d", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:45 GMT", + "Date": "Tue, 15 Nov 2022 12:52:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf67d3af-5895-46af-afc8-d9e711997661", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "cf67d3af-5895-46af-afc8-d9e711997661", - "x-ms-routing-request-id": "WESTUS2:20220803T045546Z:cf67d3af-5895-46af-afc8-d9e711997661" + "x-ms-correlation-request-id": "19f42f0b-30d7-4662-b2c6-b419fdc045da", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "19f42f0b-30d7-4662-b2c6-b419fdc045da", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125232Z:19f42f0b-30d7-4662-b2c6-b419fdc045da" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6387", - "name": "resourceGroupName6387", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3583", + "name": "resourceGroupName3583", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6387/providers/Microsoft.Network/trafficmanagerprofiles/profileName3724?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3583/providers/Microsoft.Network/trafficmanagerprofiles/profileName1533?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-45f333328d445a438abc58a49f6b1423-6a57389dd67faa4c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6befcb5b7aabf8605fd2286cac61fb29", + "traceparent": "00-3cfe8c2d83a95b9f2ddfca79769c6528-d51cb01f9c9dae38-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "dc2d484b225cdb05d25e5b9110dfa918", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName3724", + "name": "profileName1533", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName3724" + "relativeName": "profileName1533" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:46 GMT", + "Date": "Tue, 15 Nov 2022 12:52:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0d5c312-f730-48c7-afc3-1d4488eda84d", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "6befcb5b-7aab-f860-5fd2-286cac61fb29", - "x-ms-routing-request-id": "WESTUS2:20220803T045547Z:e0d5c312-f730-48c7-afc3-1d4488eda84d", + "x-ms-correlation-request-id": "230902a6-6581-4907-804a-38d133675a7c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4493", + "x-ms-request-id": "dc2d484b-225c-db05-d25e-5b9110dfa918", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125242Z:230902a6-6581-4907-804a-38d133675a7c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6387/providers/Microsoft.Network/trafficManagerProfiles/profileName3724", - "name": "profileName3724", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3583/providers/Microsoft.Network/trafficManagerProfiles/profileName1533", + "name": "profileName1533", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3724", - "fqdn": "profilename3724.trafficmanager.net", + "relativeName": "profilename1533", + "fqdn": "profilename1533.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6387/providers/Microsoft.Network/trafficManagerProfiles/profileName3724/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3583/providers/Microsoft.Network/trafficManagerProfiles/profileName1533/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6387/providers/Microsoft.Network/trafficManagerProfiles/profileName3724/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3583/providers/Microsoft.Network/trafficManagerProfiles/profileName1533/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6387/providers/Microsoft.Network/trafficmanagerprofiles/profileName3724?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3583/providers/Microsoft.Network/trafficmanagerprofiles/profileName1533?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2dfba86bf3b35d4fad30b24b220a8152-483953d5af08c74c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6c2f5a82bb25c2800f75fca8826d44a9", + "traceparent": "00-17287afa5883f6d2c84e6473c9ed6202-22b46bee30d6a1b8-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8fac1997500ff70ce13db23a8f1a6890", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:55:46 GMT", + "Date": "Tue, 15 Nov 2022 12:52:42 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7156165e-26ca-4e6f-ac91-d4a2a3f8fb38", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "6c2f5a82-bb25-c280-0f75-fca8826d44a9", - "x-ms-routing-request-id": "WESTUS2:20220803T045547Z:7156165e-26ca-4e6f-ac91-d4a2a3f8fb38", + "x-ms-correlation-request-id": "643aed67-ef89-4218-995c-5ebc20aa9523", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1980", + "x-ms-request-id": "8fac1997-500f-f70c-e13d-b23a8f1a6890", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125243Z:643aed67-ef89-4218-995c-5ebc20aa9523", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6387/providers/Microsoft.Network/trafficManagerProfiles/profileName3724", - "name": "profileName3724", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3583/providers/Microsoft.Network/trafficManagerProfiles/profileName1533", + "name": "profileName1533", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3724", - "fqdn": "profilename3724.trafficmanager.net", + "relativeName": "profilename1533", + "fqdn": "profilename1533.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6387/providers/Microsoft.Network/trafficManagerProfiles/profileName3724/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3583/providers/Microsoft.Network/trafficManagerProfiles/profileName1533/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6387/providers/Microsoft.Network/trafficManagerProfiles/profileName3724/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3583/providers/Microsoft.Network/trafficManagerProfiles/profileName1533/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,13 +305,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6387/providers/Microsoft.Network/trafficmanagerprofiles/profileName3724?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3583/providers/Microsoft.Network/trafficmanagerprofiles/profileName1533?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d41f3d47a9774343c02a82e110b82a1a", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "af402527350bce531a5b40aa4c90075a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -323,28 +319,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:55:48 GMT", + "Date": "Tue, 15 Nov 2022 12:52:48 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dcf80f41-49c0-4f86-80e0-aac71f88081b", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "d41f3d47-a977-4343-c02a-82e110b82a1a", - "x-ms-routing-request-id": "WESTUS2:20220803T045549Z:dcf80f41-49c0-4f86-80e0-aac71f88081b", + "x-ms-correlation-request-id": "6a822f93-d9f9-4cc0-857d-b333cf87388a", + "x-ms-ratelimit-remaining-subscription-resource-requests": "495", + "x-ms-request-id": "af402527-350b-ce53-1a5b-40aa4c90075a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125248Z:6a822f93-d9f9-4cc0-857d-b333cf87388a", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6387?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName3583?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-43b4b1169092d6439ec443700f1cccd9-8d90e6826905b24f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f4300dee8ef09fca4a2c5b367db776f1", + "traceparent": "00-10a66c65ea6fb3f8c404f4ed776ebe58-95d65419dc2cf716-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fd04ac9f2a44fb6d3c36fa1e6fcb4cb7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -352,28 +348,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:55:49 GMT", + "Date": "Tue, 15 Nov 2022 12:52:50 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1ODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "548a47f3-817c-481b-9c8e-0c98472aec75", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-request-id": "548a47f3-817c-481b-9c8e-0c98472aec75", - "x-ms-routing-request-id": "WESTUS2:20220803T045549Z:548a47f3-817c-481b-9c8e-0c98472aec75" + "x-ms-correlation-request-id": "25e8bdff-8337-424f-aa6b-90e8bcc5a63a", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-request-id": "25e8bdff-8337-424f-aa6b-90e8bcc5a63a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125250Z:25e8bdff-8337-424f-aa6b-90e8bcc5a63a" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1ODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-43b4b1169092d6439ec443700f1cccd9-9e9cade072127f45-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "74bae24a4f3cb9b97280894a4d0dc509", + "traceparent": "00-10a66c65ea6fb3f8c404f4ed776ebe58-006d9533609be30c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e29b57366b16fc4bb84573d53a355e4f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -381,28 +377,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:55:49 GMT", + "Date": "Tue, 15 Nov 2022 12:52:51 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1ODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c675ab8-e579-40da-a294-b71da564d013", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "7c675ab8-e579-40da-a294-b71da564d013", - "x-ms-routing-request-id": "WESTUS2:20220803T045549Z:7c675ab8-e579-40da-a294-b71da564d013" + "x-ms-correlation-request-id": "2f5eb2d5-6dd2-42dc-a11c-6d1e8167e21e", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "2f5eb2d5-6dd2-42dc-a11c-6d1e8167e21e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125251Z:2f5eb2d5-6dd2-42dc-a11c-6d1e8167e21e" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1ODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-43b4b1169092d6439ec443700f1cccd9-8aff4cdc6e7f1b4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "915491b4bb93c6d75b58dd03e1d066ab", + "traceparent": "00-10a66c65ea6fb3f8c404f4ed776ebe58-9e78a091fdd86b5c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "81b5880f1c25a5bba0a23866b5b9ebda", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -410,28 +406,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:56:04 GMT", + "Date": "Tue, 15 Nov 2022 12:53:06 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1ODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a79352b-94ac-4895-9111-b89d34b131a2", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "6a79352b-94ac-4895-9111-b89d34b131a2", - "x-ms-routing-request-id": "WESTUS2:20220803T045605Z:6a79352b-94ac-4895-9111-b89d34b131a2" + "x-ms-correlation-request-id": "67a6fabd-f3d2-4b05-a321-553cb797f8a2", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "67a6fabd-f3d2-4b05-a321-553cb797f8a2", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125306Z:67a6fabd-f3d2-4b05-a321-553cb797f8a2" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1ODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-43b4b1169092d6439ec443700f1cccd9-c774835ba0da1c45-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "9aeb057a02fd3eb5c56bfbc29e678a0a", + "traceparent": "00-10a66c65ea6fb3f8c404f4ed776ebe58-01930105ce656518-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "18e8a88b6a2f8aa17f6e325986362790", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -439,28 +435,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:56:19 GMT", + "Date": "Tue, 15 Nov 2022 12:53:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1ODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf2d6141-2d48-4057-ab19-b4ca6bf27b01", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "cf2d6141-2d48-4057-ab19-b4ca6bf27b01", - "x-ms-routing-request-id": "WESTUS2:20220803T045620Z:cf2d6141-2d48-4057-ab19-b4ca6bf27b01" + "x-ms-correlation-request-id": "667e797e-355c-41a6-b833-f0b8363e7851", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "667e797e-355c-41a6-b833-f0b8363e7851", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125322Z:667e797e-355c-41a6-b833-f0b8363e7851" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1ODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-43b4b1169092d6439ec443700f1cccd9-8b0548751edfa745-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a745a326204a8fc30af318e472b5d7a2", + "traceparent": "00-10a66c65ea6fb3f8c404f4ed776ebe58-241e90ef2ccf99b4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "87a4267f29ac1a2b9bf6417432e546fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -468,28 +464,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:56:34 GMT", + "Date": "Tue, 15 Nov 2022 12:53:38 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1ODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6b39088-19de-400a-a2db-c0021a4c28a4", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "b6b39088-19de-400a-a2db-c0021a4c28a4", - "x-ms-routing-request-id": "WESTUS2:20220803T045635Z:b6b39088-19de-400a-a2db-c0021a4c28a4" + "x-ms-correlation-request-id": "d1bc7284-085b-4874-8834-f8ba6f110fba", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "d1bc7284-085b-4874-8834-f8ba6f110fba", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125338Z:d1bc7284-085b-4874-8834-f8ba6f110fba" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1ODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-43b4b1169092d6439ec443700f1cccd9-9334c9b97ea33c4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "48d0de1a2b21b10cdb15cc28c01528f4", + "traceparent": "00-10a66c65ea6fb3f8c404f4ed776ebe58-e77394077d167626-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "91499959464da41fe62b01b7e9611e69", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -497,28 +493,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:56:49 GMT", + "Date": "Tue, 15 Nov 2022 12:53:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1ODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a202ac2a-8b51-4a98-8e71-5e75cf4b94c7", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "a202ac2a-8b51-4a98-8e71-5e75cf4b94c7", - "x-ms-routing-request-id": "WESTUS2:20220803T045650Z:a202ac2a-8b51-4a98-8e71-5e75cf4b94c7" + "x-ms-correlation-request-id": "6b696a04-3020-4412-9674-1cc2a4363fe5", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "6b696a04-3020-4412-9674-1cc2a4363fe5", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125353Z:6b696a04-3020-4412-9674-1cc2a4363fe5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM1ODMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-43b4b1169092d6439ec443700f1cccd9-78c11a5b650eba46-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "3eddd3cdbe8a5a60425b9009ead1cb10", + "traceparent": "00-10a66c65ea6fb3f8c404f4ed776ebe58-8c8791d06707bf40-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8fe7a87a6314612d7dcd7c39282d579a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -526,23 +522,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:57:05 GMT", + "Date": "Tue, 15 Nov 2022 12:54:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "559547ed-1eb1-4a01-8d1f-b64903c78022", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "559547ed-1eb1-4a01-8d1f-b64903c78022", - "x-ms-routing-request-id": "WESTUS2:20220803T045705Z:559547ed-1eb1-4a01-8d1f-b64903c78022" + "x-ms-correlation-request-id": "b4d6c2ec-8ca8-4e22-93cc-6e842229ee9e", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "b4d6c2ec-8ca8-4e22-93cc-6e842229ee9e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125409Z:b4d6c2ec-8ca8-4e22-93cc-6e842229ee9e" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "709918399", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "941527608", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/ExistsTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/ExistsTestAsync.json index 0d42a6cddd1d..7025b4f76e93 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/ExistsTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/ExistsTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3a18162010d2a2449c5263e9329c4f5c-bd8793d587cf624b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ed6439c56d9abac38821a8a4fc827a9d", + "traceparent": "00-813b959cd9f48cae68753373a4fbb19a-0eb602839ad1004a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0b8787dbc1920bb1f7924955f1a18d28", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:04:35 GMT", + "Date": "Tue, 15 Nov 2022 13:21:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31d42aea-6de6-4392-bcb6-a21475a5da3a", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "31d42aea-6de6-4392-bcb6-a21475a5da3a", - "x-ms-routing-request-id": "WESTUS:20220803T050435Z:31d42aea-6de6-4392-bcb6-a21475a5da3a" + "x-ms-correlation-request-id": "0070b5b3-7c09-4613-b2d7-669dd6e3c01f", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "0070b5b3-7c09-4613-b2d7-669dd6e3c01f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132121Z:0070b5b3-7c09-4613-b2d7-669dd6e3c01f" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName2421?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6258?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-c624ac1a4f2a504fa342530f5b7341f0-461192442dc3cb48-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "dad94a480969e8d1d604ee74f0fd1a32", + "traceparent": "00-04b75ed88210342686a94192320e3b42-063aa5b961f1baf8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "193c8da869e97be58f4c8c4951b17e32", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:04:36 GMT", + "Date": "Tue, 15 Nov 2022 13:21:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8960ef4-d511-4d3d-9598-33329fd65001", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "a8960ef4-d511-4d3d-9598-33329fd65001", - "x-ms-routing-request-id": "WESTUS:20220803T050436Z:a8960ef4-d511-4d3d-9598-33329fd65001" + "x-ms-correlation-request-id": "93487915-cbba-43cf-9d7b-ec6d4906a993", + "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-request-id": "93487915-cbba-43cf-9d7b-ec6d4906a993", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132123Z:93487915-cbba-43cf-9d7b-ec6d4906a993" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2421", - "name": "resourceGroupName2421", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6258", + "name": "resourceGroupName6258", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2421/providers/Microsoft.Network/trafficmanagerprofiles/profileName4397?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6258/providers/Microsoft.Network/trafficmanagerprofiles/profileName6133?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-f7fba3cfbae6a747a2f3a93af364b724-25fcf45b72009644-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "9921994db4b4250786855cb172a55749", + "traceparent": "00-c81ca5ef9248c25f2041c2b7c63bb6b7-d416ee43c9ba5aea-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8cf76b51f87fb411bbdc8a13da2a0b91", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName4397", + "name": "profileName6133", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName4397" + "relativeName": "profileName6133" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:04:37 GMT", + "Date": "Tue, 15 Nov 2022 13:21:27 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "202fd1ce-ccad-4f96-9530-c114fa37f58e", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "9921994d-b4b4-2507-8685-5cb172a55749", - "x-ms-routing-request-id": "WESTUS:20220803T050437Z:202fd1ce-ccad-4f96-9530-c114fa37f58e", + "x-ms-correlation-request-id": "a00846cf-3946-4be8-8227-dafc28879d59", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "8cf76b51-f87f-b411-bbdc-8a13da2a0b91", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132127Z:a00846cf-3946-4be8-8227-dafc28879d59", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2421/providers/Microsoft.Network/trafficManagerProfiles/profileName4397", - "name": "profileName4397", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6258/providers/Microsoft.Network/trafficManagerProfiles/profileName6133", + "name": "profileName6133", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4397", - "fqdn": "profilename4397.trafficmanager.net", + "relativeName": "profilename6133", + "fqdn": "profilename6133.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2421/providers/Microsoft.Network/trafficManagerProfiles/profileName4397/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6258/providers/Microsoft.Network/trafficManagerProfiles/profileName6133/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2421/providers/Microsoft.Network/trafficManagerProfiles/profileName4397/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6258/providers/Microsoft.Network/trafficManagerProfiles/profileName6133/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2421/providers/Microsoft.Network/trafficmanagerprofiles/profileName4397?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6258/providers/Microsoft.Network/trafficmanagerprofiles/profileName6133?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e16695cc0c7d934a8ae74b1bcfca3547-3e58695ca00b2e41-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c5229c90dd2c2f5b9205c469d4469724", + "traceparent": "00-04d1bf5ffa50acc50ab0fe4ab1448772-7cd1e8c34d714e9e-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9e96dbe541391df1a18f037424c1a6e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:04:37 GMT", + "Date": "Tue, 15 Nov 2022 13:21:27 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df0f46cb-3d98-473c-b15d-7427f6b248ef", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "c5229c90-dd2c-2f5b-9205-c469d4469724", - "x-ms-routing-request-id": "WESTUS:20220803T050437Z:df0f46cb-3d98-473c-b15d-7427f6b248ef", + "x-ms-correlation-request-id": "16db4012-b4d0-4a61-88dc-68a1973255a8", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1986", + "x-ms-request-id": "9e96dbe5-4139-1df1-a18f-037424c1a6e0", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132127Z:16db4012-b4d0-4a61-88dc-68a1973255a8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2421/providers/Microsoft.Network/trafficManagerProfiles/profileName4397", - "name": "profileName4397", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6258/providers/Microsoft.Network/trafficManagerProfiles/profileName6133", + "name": "profileName6133", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4397", - "fqdn": "profilename4397.trafficmanager.net", + "relativeName": "profilename6133", + "fqdn": "profilename6133.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2421/providers/Microsoft.Network/trafficManagerProfiles/profileName4397/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6258/providers/Microsoft.Network/trafficManagerProfiles/profileName6133/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2421/providers/Microsoft.Network/trafficManagerProfiles/profileName4397/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6258/providers/Microsoft.Network/trafficManagerProfiles/profileName6133/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,13 +305,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2421/providers/Microsoft.Network/trafficmanagerprofiles/profileName4397?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6258/providers/Microsoft.Network/trafficmanagerprofiles/profileName6133?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e8ae718e0459946b43b454e3ad207530", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "369f23ca9c95b04a7b885d0cded2a165", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -323,28 +319,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:04:38 GMT", + "Date": "Tue, 15 Nov 2022 13:21:32 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc5cebb7-9a1e-4097-9b1f-c9e45e5b33ef", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "e8ae718e-0459-946b-43b4-54e3ad207530", - "x-ms-routing-request-id": "WESTUS:20220803T050439Z:bc5cebb7-9a1e-4097-9b1f-c9e45e5b33ef", + "x-ms-correlation-request-id": "40d26a55-c164-4867-a9b2-ffe93a83d4cc", + "x-ms-ratelimit-remaining-subscription-resource-requests": "496", + "x-ms-request-id": "369f23ca-9c95-b04a-7b88-5d0cded2a165", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132133Z:40d26a55-c164-4867-a9b2-ffe93a83d4cc", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName2421?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6258?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5ea1566c15484d4abb70ac668a15c1b6-16b0d8ad3adb114c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "53e3a5ad54da70053ef106afef9d5040", + "traceparent": "00-b6170c7314442125e5be83af698f3929-ec717127a7a20bf7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7664fa41df1a10f87ad9eaeff59d8ff9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -352,28 +348,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:04:39 GMT", + "Date": "Tue, 15 Nov 2022 13:21:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI0MjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyNTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1a0e006-dcee-454e-bac4-b613e6931712", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-request-id": "f1a0e006-dcee-454e-bac4-b613e6931712", - "x-ms-routing-request-id": "WESTUS:20220803T050440Z:f1a0e006-dcee-454e-bac4-b613e6931712" + "x-ms-correlation-request-id": "01031637-e3da-403b-8d80-39ef313a35b6", + "x-ms-ratelimit-remaining-subscription-deletes": "14985", + "x-ms-request-id": "01031637-e3da-403b-8d80-39ef313a35b6", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132135Z:01031637-e3da-403b-8d80-39ef313a35b6" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI0MjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyNTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5ea1566c15484d4abb70ac668a15c1b6-dd9ee755495eed4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "2fbc938f446239496b3eaa68fdbca4a5", + "traceparent": "00-b6170c7314442125e5be83af698f3929-4c479e31932108c9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2a339dee305deac62a8fbbbcb15abbde", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -381,28 +377,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:04:39 GMT", + "Date": "Tue, 15 Nov 2022 13:21:36 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI0MjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyNTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68e1b1f3-c931-44b6-b36d-6faa0329d212", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "68e1b1f3-c931-44b6-b36d-6faa0329d212", - "x-ms-routing-request-id": "WESTUS:20220803T050440Z:68e1b1f3-c931-44b6-b36d-6faa0329d212" + "x-ms-correlation-request-id": "f71318e3-e947-4b17-885c-1f7f38568d39", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "f71318e3-e947-4b17-885c-1f7f38568d39", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132136Z:f71318e3-e947-4b17-885c-1f7f38568d39" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI0MjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyNTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5ea1566c15484d4abb70ac668a15c1b6-8acf38f8858aa54e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "75f5136474fd3f39b558224dd28de6c6", + "traceparent": "00-b6170c7314442125e5be83af698f3929-1128bd8fb1f8eb28-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "35d664f8ea896bdaff1ae534bd472c95", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -410,28 +406,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:04:55 GMT", + "Date": "Tue, 15 Nov 2022 13:21:51 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI0MjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyNTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27dd84ad-8e28-4a5e-9361-41ce18fe22e4", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "27dd84ad-8e28-4a5e-9361-41ce18fe22e4", - "x-ms-routing-request-id": "WESTUS:20220803T050455Z:27dd84ad-8e28-4a5e-9361-41ce18fe22e4" + "x-ms-correlation-request-id": "88775ff7-54b3-44d4-ae65-9ca462825668", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "88775ff7-54b3-44d4-ae65-9ca462825668", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132151Z:88775ff7-54b3-44d4-ae65-9ca462825668" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI0MjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyNTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5ea1566c15484d4abb70ac668a15c1b6-5f35b737cb3cac4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5c1f946e20e1a9deede995b9c3888d75", + "traceparent": "00-b6170c7314442125e5be83af698f3929-7df0d45a048a1b04-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "57011b9a6569059be35d8cfb193e9836", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -439,28 +435,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:05:10 GMT", + "Date": "Tue, 15 Nov 2022 13:22:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI0MjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyNTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99fa0d3a-4b11-409b-a20b-09de4fe388ce", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "99fa0d3a-4b11-409b-a20b-09de4fe388ce", - "x-ms-routing-request-id": "WESTUS:20220803T050510Z:99fa0d3a-4b11-409b-a20b-09de4fe388ce" + "x-ms-correlation-request-id": "b7ec208d-e8af-4a30-b4be-ae514ab7ce10", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "b7ec208d-e8af-4a30-b4be-ae514ab7ce10", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132207Z:b7ec208d-e8af-4a30-b4be-ae514ab7ce10" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI0MjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyNTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5ea1566c15484d4abb70ac668a15c1b6-eb12b3c2ce070949-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7513dce90c811b755a7c7a0922fc67de", + "traceparent": "00-b6170c7314442125e5be83af698f3929-c302e9bdc0cb3e9a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7fb8442a090d0346c2c82a424b912de3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -468,28 +464,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:05:25 GMT", + "Date": "Tue, 15 Nov 2022 13:22:22 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI0MjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyNTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94ce900f-c29f-406a-b219-65daf92de2cb", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "94ce900f-c29f-406a-b219-65daf92de2cb", - "x-ms-routing-request-id": "WESTUS:20220803T050525Z:94ce900f-c29f-406a-b219-65daf92de2cb" + "x-ms-correlation-request-id": "08a75ce9-9363-4575-9166-6fc7d25a2e42", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "08a75ce9-9363-4575-9166-6fc7d25a2e42", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132222Z:08a75ce9-9363-4575-9166-6fc7d25a2e42" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI0MjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyNTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5ea1566c15484d4abb70ac668a15c1b6-079c5760cb4f0140-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "69f9e357489c43c3354c8714df807b2d", + "traceparent": "00-b6170c7314442125e5be83af698f3929-fef163332b90f852-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9622266264589375c8d0512b5edf52c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -497,28 +493,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:05:40 GMT", + "Date": "Tue, 15 Nov 2022 13:22:37 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI0MjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyNTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9319b8a7-9cfe-4216-9621-e1d90bf68fdf", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "9319b8a7-9cfe-4216-9621-e1d90bf68fdf", - "x-ms-routing-request-id": "WESTUS:20220803T050541Z:9319b8a7-9cfe-4216-9621-e1d90bf68fdf" + "x-ms-correlation-request-id": "e7bb5835-610d-4dcf-a3e9-f60a05558b3e", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "e7bb5835-610d-4dcf-a3e9-f60a05558b3e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132238Z:e7bb5835-610d-4dcf-a3e9-f60a05558b3e" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI0MjEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYyNTgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5ea1566c15484d4abb70ac668a15c1b6-69474cac4bd9564c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f663acca707962441f040264a6d487f1", + "traceparent": "00-b6170c7314442125e5be83af698f3929-f06b06b616f0dd53-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "780aae82ad8e9087d4fe94a13a58ba51", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -526,23 +522,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:05:55 GMT", + "Date": "Tue, 15 Nov 2022 13:22:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffcc219e-7513-41bb-8fe3-6ad7a05a2b48", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "ffcc219e-7513-41bb-8fe3-6ad7a05a2b48", - "x-ms-routing-request-id": "WESTUS:20220803T050556Z:ffcc219e-7513-41bb-8fe3-6ad7a05a2b48" + "x-ms-correlation-request-id": "c3e10980-b936-4ee0-a92f-4f3d3661eb6e", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "c3e10980-b936-4ee0-a92f-4f3d3661eb6e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132253Z:c3e10980-b936-4ee0-a92f-4f3d3661eb6e" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "871382472", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "698614198", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetAllTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetAllTest.json index 9662617accfe..5641ac2f04b1 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetAllTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetAllTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-89352de75e9284459c493761a269d12d-9e28f9c8bf27c34c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "51ce9854c067fabe9b7df617a5036cbd", + "traceparent": "00-b1064185d7bf3ae02cac2f990ea436f2-476fcdb886ce4cbe-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "91b8208b33cb1ae6d4f1cad99104d0b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:57:06 GMT", + "Date": "Tue, 15 Nov 2022 12:54:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e311c31b-d06b-4012-8bbc-dd200fa242db", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "e311c31b-d06b-4012-8bbc-dd200fa242db", - "x-ms-routing-request-id": "WESTUS2:20220803T045706Z:e311c31b-d06b-4012-8bbc-dd200fa242db" + "x-ms-correlation-request-id": "7621d32f-14c0-4764-8c5b-046fb1659899", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "7621d32f-14c0-4764-8c5b-046fb1659899", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125410Z:7621d32f-14c0-4764-8c5b-046fb1659899" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6949?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName5230?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-509cb8cfe03a4f44bb628f9f7034b3c1-b221a6dd38153940-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "67e76db0a336995aa2557b2d6cd67fe3", + "traceparent": "00-d0ac7c6dfa62eaa3dbf37819f036cf86-2d8d1fda9bd4072e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d4382032af0975730ea22189e813c3e9", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:57:07 GMT", + "Date": "Tue, 15 Nov 2022 12:54:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef476eb7-5a14-4d9d-871c-211b26b9caf3", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "ef476eb7-5a14-4d9d-871c-211b26b9caf3", - "x-ms-routing-request-id": "WESTUS2:20220803T045707Z:ef476eb7-5a14-4d9d-871c-211b26b9caf3" + "x-ms-correlation-request-id": "a5a1ab2b-9914-4c48-b16b-faed18755c81", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "a5a1ab2b-9914-4c48-b16b-faed18755c81", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125412Z:a5a1ab2b-9914-4c48-b16b-faed18755c81" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6949", - "name": "resourceGroupName6949", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5230", + "name": "resourceGroupName5230", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6949/providers/Microsoft.Network/trafficmanagerprofiles/profileName387?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5230/providers/Microsoft.Network/trafficmanagerprofiles/profileName1254?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "559", + "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-47dac03aa1d85e4d8f13ade343275930-39ff47bd76e07b4f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "951f42023cf9c3c2f387330e1cc4a232", + "traceparent": "00-bec207022e24966fc7e87b47f22c58dc-c10b9aa231eda254-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e21ba3c38264321cfb15e358b2cafb7f", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName387", + "name": "profileName1254", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName387" + "relativeName": "profileName1254" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1867", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:57:09 GMT", + "Date": "Tue, 15 Nov 2022 12:54:16 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92af4cea-f179-4476-92a1-454011ed85f6", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "951f4202-3cf9-c3c2-f387-330e1cc4a232", - "x-ms-routing-request-id": "WESTUS2:20220803T045709Z:92af4cea-f179-4476-92a1-454011ed85f6", + "x-ms-correlation-request-id": "bb9fc6f0-083c-4715-8095-b23757a5037d", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4492", + "x-ms-request-id": "e21ba3c3-8264-321c-fb15-e358b2cafb7f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125417Z:bb9fc6f0-083c-4715-8095-b23757a5037d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6949/providers/Microsoft.Network/trafficManagerProfiles/profileName387", - "name": "profileName387", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5230/providers/Microsoft.Network/trafficManagerProfiles/profileName1254", + "name": "profileName1254", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename387", - "fqdn": "profilename387.trafficmanager.net", + "relativeName": "profilename1254", + "fqdn": "profilename1254.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6949/providers/Microsoft.Network/trafficManagerProfiles/profileName387/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5230/providers/Microsoft.Network/trafficManagerProfiles/profileName1254/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6949/providers/Microsoft.Network/trafficManagerProfiles/profileName387/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5230/providers/Microsoft.Network/trafficManagerProfiles/profileName1254/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,38 +211,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6949/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5230/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0dcfc16b17e376438abdd0d1a881bb5b-f1d7563968f04544-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "cde052db1efbf51d73b8c46b43cc2ea6", + "traceparent": "00-cbc76112c9257499057080977e59e7c8-604b4989e1363a9b-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a6b90e98df627181451bbd91c490ebde", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1889", + "Content-Length": "1945", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:57:09 GMT", + "Date": "Tue, 15 Nov 2022 12:54:16 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51500d94-9fb1-42ca-96e7-8453c0193ee2", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "cde052db-1efb-f51d-73b8-c46b43cc2ea6", - "x-ms-routing-request-id": "WESTUS2:20220803T045709Z:51500d94-9fb1-42ca-96e7-8453c0193ee2", + "x-ms-correlation-request-id": "87932a06-2cd5-43b2-8213-6aa316e37d02", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1979", + "x-ms-request-id": "a6b90e98-df62-7181-451b-bd91c490ebde", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125417Z:87932a06-2cd5-43b2-8213-6aa316e37d02", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6949/providers/Microsoft.Network/trafficManagerProfiles/profileName387", - "name": "profileName387", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5230/providers/Microsoft.Network/trafficManagerProfiles/profileName1254", + "name": "profileName1254", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -256,8 +250,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename387", - "fqdn": "profilename387.trafficmanager.net", + "relativeName": "profilename1254", + "fqdn": "profilename1254.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -271,7 +265,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6949/providers/Microsoft.Network/trafficManagerProfiles/profileName387/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5230/providers/Microsoft.Network/trafficManagerProfiles/profileName1254/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -284,11 +278,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6949/providers/Microsoft.Network/trafficManagerProfiles/profileName387/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5230/providers/Microsoft.Network/trafficManagerProfiles/profileName1254/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -301,7 +296,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -313,13 +309,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6949/providers/Microsoft.Network/trafficmanagerprofiles/profileName387?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5230/providers/Microsoft.Network/trafficmanagerprofiles/profileName1254?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c0a33376274d7333ab2373af6f4c7dde", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "60ceef07d6b4b0680405d8f3cb1bc243", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -327,28 +323,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:57:10 GMT", + "Date": "Tue, 15 Nov 2022 12:54:22 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce6bd6e6-f2a4-4a0e-8639-fb9d628cc456", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "c0a33376-274d-7333-ab23-73af6f4c7dde", - "x-ms-routing-request-id": "WESTUS2:20220803T045710Z:ce6bd6e6-f2a4-4a0e-8639-fb9d628cc456", + "x-ms-correlation-request-id": "93f97f2f-f112-4291-b303-8c54b68d3706", + "x-ms-ratelimit-remaining-subscription-resource-requests": "494", + "x-ms-request-id": "60ceef07-d6b4-b068-0405-d8f3cb1bc243", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125422Z:93f97f2f-f112-4291-b303-8c54b68d3706", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6949?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName5230?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4ad6277b640224419adde550b75407cd-d01a714f4a3dcf40-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "195248b2b2f6e3e82529214177578026", + "traceparent": "00-b9916680b444213e868ad1fcf413c533-5a7543a28f88d60c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "daf1a1a61c59e38721aa9d49c48a6d6b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -356,28 +352,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:57:11 GMT", + "Date": "Tue, 15 Nov 2022 12:54:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5NDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bde0e191-ee32-47e4-bfa2-a88b94a6df57", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "bde0e191-ee32-47e4-bfa2-a88b94a6df57", - "x-ms-routing-request-id": "WESTUS2:20220803T045711Z:bde0e191-ee32-47e4-bfa2-a88b94a6df57" + "x-ms-correlation-request-id": "a6032de1-e268-42b7-81ee-052eae334adc", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-request-id": "a6032de1-e268-42b7-81ee-052eae334adc", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125424Z:a6032de1-e268-42b7-81ee-052eae334adc" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5NDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4ad6277b640224419adde550b75407cd-9b4426bb4753204f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "fbb9e63b147ac4af4abf9b2305f2fb53", + "traceparent": "00-b9916680b444213e868ad1fcf413c533-dc907f8ab624a2f3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "23eb7959119fea8567ea3e09391feb79", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -385,28 +381,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:57:11 GMT", + "Date": "Tue, 15 Nov 2022 12:54:25 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5NDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c060ab3-eaea-44d9-8c75-5a0247fbc88f", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "0c060ab3-eaea-44d9-8c75-5a0247fbc88f", - "x-ms-routing-request-id": "WESTUS2:20220803T045711Z:0c060ab3-eaea-44d9-8c75-5a0247fbc88f" + "x-ms-correlation-request-id": "c8d11824-c331-40d2-8c89-6cc15801b4da", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "c8d11824-c331-40d2-8c89-6cc15801b4da", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125425Z:c8d11824-c331-40d2-8c89-6cc15801b4da" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5NDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4ad6277b640224419adde550b75407cd-e32a3cb2379fa54d-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e1564ca394b4d0bc639efa898f1139b7", + "traceparent": "00-b9916680b444213e868ad1fcf413c533-cea222cd0d5d55f5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c6ca6d97ffca0b46d62f34507a2bdc93", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -414,28 +410,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:57:26 GMT", + "Date": "Tue, 15 Nov 2022 12:54:40 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5NDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59959c67-7ee6-4496-9250-ceb3f6b2d7a9", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "59959c67-7ee6-4496-9250-ceb3f6b2d7a9", - "x-ms-routing-request-id": "WESTUS2:20220803T045726Z:59959c67-7ee6-4496-9250-ceb3f6b2d7a9" + "x-ms-correlation-request-id": "e5ace604-9a12-45bc-8c5b-38cd5a72e5f6", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "e5ace604-9a12-45bc-8c5b-38cd5a72e5f6", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125440Z:e5ace604-9a12-45bc-8c5b-38cd5a72e5f6" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5NDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4ad6277b640224419adde550b75407cd-a4bf4cf22ccf4543-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "9106faa4849e43acddd39d6246c1ad2c", + "traceparent": "00-b9916680b444213e868ad1fcf413c533-dc127ce527f5cb10-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4aef73054a9f18cb80665b125cc18885", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -443,28 +439,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:57:41 GMT", + "Date": "Tue, 15 Nov 2022 12:54:55 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5NDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b7c245d-4943-4f9e-ab62-b8011feed2c3", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "1b7c245d-4943-4f9e-ab62-b8011feed2c3", - "x-ms-routing-request-id": "WESTUS2:20220803T045742Z:1b7c245d-4943-4f9e-ab62-b8011feed2c3" + "x-ms-correlation-request-id": "553cc4ed-d2c5-47c2-92e3-a645bad78dc5", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "553cc4ed-d2c5-47c2-92e3-a645bad78dc5", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125456Z:553cc4ed-d2c5-47c2-92e3-a645bad78dc5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5NDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4ad6277b640224419adde550b75407cd-34d701026a733b40-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5e34ce71a317a6732ae897dc19263439", + "traceparent": "00-b9916680b444213e868ad1fcf413c533-26665027176903b6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9ac4291ddfc45a6032df4c6fdc35703c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -472,28 +468,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:57:56 GMT", + "Date": "Tue, 15 Nov 2022 12:55:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5NDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b81d410-cb61-4c63-99af-a311f1fffba9", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "4b81d410-cb61-4c63-99af-a311f1fffba9", - "x-ms-routing-request-id": "WESTUS2:20220803T045757Z:4b81d410-cb61-4c63-99af-a311f1fffba9" + "x-ms-correlation-request-id": "fcef1a3d-1bc1-45ec-aaaf-efb328ad07b6", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "fcef1a3d-1bc1-45ec-aaaf-efb328ad07b6", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125511Z:fcef1a3d-1bc1-45ec-aaaf-efb328ad07b6" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5NDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4ad6277b640224419adde550b75407cd-2e6fdf763f28204f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0b7fe3866aec1eb5a01304e1f75a8aa2", + "traceparent": "00-b9916680b444213e868ad1fcf413c533-63678a2764c58530-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c504ab0da12f4dd9a1b24563a334ae15", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -501,54 +497,52 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:58:11 GMT", + "Date": "Tue, 15 Nov 2022 12:55:26 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5NDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0f207f5-edfc-43d0-99a5-904397cdd708", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "f0f207f5-edfc-43d0-99a5-904397cdd708", - "x-ms-routing-request-id": "WESTUS2:20220803T045812Z:f0f207f5-edfc-43d0-99a5-904397cdd708" + "x-ms-correlation-request-id": "62505e86-587c-42fb-905f-1d068a65797b", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "62505e86-587c-42fb-905f-1d068a65797b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125527Z:62505e86-587c-42fb-905f-1d068a65797b" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY5NDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMzAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "Connection": "close", - "traceparent": "00-4ad6277b640224419adde550b75407cd-38ca63fe8bb86542-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c117cef0dadc00a0875f66b5edd029b6", + "traceparent": "00-b9916680b444213e868ad1fcf413c533-f34b1d6f82e652cc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5132aea6426625cf139517bffe5c3b4b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Connection": "close", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:58:27 GMT", + "Date": "Tue, 15 Nov 2022 12:55:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "028b8401-d01a-4cb7-825f-af3fa79f9a8a", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "028b8401-d01a-4cb7-825f-af3fa79f9a8a", - "x-ms-routing-request-id": "WESTUS2:20220803T045827Z:028b8401-d01a-4cb7-825f-af3fa79f9a8a" + "x-ms-correlation-request-id": "62ec0aca-49d7-4421-a06e-777d4b12cb8d", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "62ec0aca-49d7-4421-a06e-777d4b12cb8d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125542Z:62ec0aca-49d7-4421-a06e-777d4b12cb8d" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "838938873", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "749142543", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetAllTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetAllTestAsync.json index ed20ce39149c..deaf937b4bac 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetAllTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetAllTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f9f62b38881b234ab67e8cf918c1b8c4-4ddf2961ef01b745-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f3fed1e49b8b93c89bd55c9c27e6805a", + "traceparent": "00-2571ca9ca9f860b08a88f2878f6605cc-a89bae7bfec33b81-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bba2418f048e85b2371c081ad9f64c3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:05:56 GMT", + "Date": "Tue, 15 Nov 2022 13:22:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e6fb58d-a69e-4639-b13c-92fce029e3ae", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "3e6fb58d-a69e-4639-b13c-92fce029e3ae", - "x-ms-routing-request-id": "WESTUS:20220803T050556Z:3e6fb58d-a69e-4639-b13c-92fce029e3ae" + "x-ms-correlation-request-id": "ec2b8664-f1f3-46e4-a5b0-ee8bd82ae42a", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "ec2b8664-f1f3-46e4-a5b0-ee8bd82ae42a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132254Z:ec2b8664-f1f3-46e4-a5b0-ee8bd82ae42a" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName2984?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName5220?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-5b32d7fd03d11c469823ef5ba7d744c0-abcc9a4ca4b57841-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5f9db63a7cecab070f6e32ec0db49e1a", + "traceparent": "00-960b7132fd8e2c536166481d3ce9b8e4-8bc7e1b1a5b5ab5f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "62b70e669adc1dd4abb4ddf4d609c01d", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:05:56 GMT", + "Date": "Tue, 15 Nov 2022 13:22:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0ad1947-3cf2-4c11-a23a-99e1a7e46e09", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "a0ad1947-3cf2-4c11-a23a-99e1a7e46e09", - "x-ms-routing-request-id": "WESTUS:20220803T050557Z:a0ad1947-3cf2-4c11-a23a-99e1a7e46e09" + "x-ms-correlation-request-id": "93acdaaa-823f-4d45-a9b2-ccd321ae5ec9", + "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-request-id": "93acdaaa-823f-4d45-a9b2-ccd321ae5ec9", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132256Z:93acdaaa-823f-4d45-a9b2-ccd321ae5ec9" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2984", - "name": "resourceGroupName2984", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5220", + "name": "resourceGroupName5220", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2984/providers/Microsoft.Network/trafficmanagerprofiles/profileName1060?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5220/providers/Microsoft.Network/trafficmanagerprofiles/profileName6150?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-ac87e11e0814dd4188df567e17e318d7-6a4c9f51b8b64348-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c35711f57402f04c1a2e6853d4f4fd52", + "traceparent": "00-401b2d25ebef6f3c023b16abc744ccf7-57516d7ecf9208ac-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ed6dbcc5605afc7dc718155d4622fcff", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName1060", + "name": "profileName6150", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName1060" + "relativeName": "profileName6150" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:05:58 GMT", + "Date": "Tue, 15 Nov 2022 13:23:01 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b43ecae6-8be9-4c8a-9b3f-b0fbefdbaafe", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "c35711f5-7402-f04c-1a2e-6853d4f4fd52", - "x-ms-routing-request-id": "WESTUS:20220803T050558Z:b43ecae6-8be9-4c8a-9b3f-b0fbefdbaafe", + "x-ms-correlation-request-id": "f3d5dfce-f29a-4269-bb91-16701ebfad82", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4493", + "x-ms-request-id": "ed6dbcc5-605a-fc7d-c718-155d4622fcff", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132301Z:f3d5dfce-f29a-4269-bb91-16701ebfad82", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2984/providers/Microsoft.Network/trafficManagerProfiles/profileName1060", - "name": "profileName1060", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5220/providers/Microsoft.Network/trafficManagerProfiles/profileName6150", + "name": "profileName6150", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename1060", - "fqdn": "profilename1060.trafficmanager.net", + "relativeName": "profilename6150", + "fqdn": "profilename6150.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2984/providers/Microsoft.Network/trafficManagerProfiles/profileName1060/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5220/providers/Microsoft.Network/trafficManagerProfiles/profileName6150/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2984/providers/Microsoft.Network/trafficManagerProfiles/profileName1060/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5220/providers/Microsoft.Network/trafficManagerProfiles/profileName6150/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,38 +211,38 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2984/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5220/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-325d071a53c40d4b9c4f4958e6f40673-1568d1b8dfa74346-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "08d394d7400054f8f6487c2c96a78e21", + "traceparent": "00-ba750501959010b634fbcace89f8bdca-a7e9e4cd89c3b559-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2aebfb6c8bb5a6b2ce9de250d5916113", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1895", + "Content-Length": "1945", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:05:58 GMT", + "Date": "Tue, 15 Nov 2022 13:23:01 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4cba438f-521a-4253-bf46-738c4bb98bdd", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "08d394d7-4000-54f8-f648-7c2c96a78e21", - "x-ms-routing-request-id": "WESTUS:20220803T050559Z:4cba438f-521a-4253-bf46-738c4bb98bdd", + "x-ms-correlation-request-id": "ea3afb29-2549-4f94-8b74-5d90d0a4c29d", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1985", + "x-ms-request-id": "2aebfb6c-8bb5-a6b2-ce9d-e250d5916113", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132302Z:ea3afb29-2549-4f94-8b74-5d90d0a4c29d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2984/providers/Microsoft.Network/trafficManagerProfiles/profileName1060", - "name": "profileName1060", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5220/providers/Microsoft.Network/trafficManagerProfiles/profileName6150", + "name": "profileName6150", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -256,8 +250,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename1060", - "fqdn": "profilename1060.trafficmanager.net", + "relativeName": "profilename6150", + "fqdn": "profilename6150.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -271,7 +265,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2984/providers/Microsoft.Network/trafficManagerProfiles/profileName1060/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5220/providers/Microsoft.Network/trafficManagerProfiles/profileName6150/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -284,11 +278,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2984/providers/Microsoft.Network/trafficManagerProfiles/profileName1060/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5220/providers/Microsoft.Network/trafficManagerProfiles/profileName6150/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -301,7 +296,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -313,13 +309,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2984/providers/Microsoft.Network/trafficmanagerprofiles/profileName1060?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5220/providers/Microsoft.Network/trafficmanagerprofiles/profileName6150?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d53281bd9629c65b6aad44bd14b3d61a", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3a14fd474cde06b891ba9ac48476d788", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -327,28 +323,57 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:06:00 GMT", + "Date": "Tue, 15 Nov 2022 13:23:04 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "471b7991-a153-4a9e-a6e2-7192ec5c67b8", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "d53281bd-9629-c65b-6aad-44bd14b3d61a", - "x-ms-routing-request-id": "WESTUS:20220803T050601Z:471b7991-a153-4a9e-a6e2-7192ec5c67b8", + "x-ms-correlation-request-id": "e8ed2e89-9f20-4c6b-9077-fa24ec988a62", + "x-ms-ratelimit-remaining-subscription-resource-requests": "495", + "x-ms-request-id": "3a14fd47-4cde-06b8-91ba-9ac48476d788", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132305Z:e8ed2e89-9f20-4c6b-9077-fa24ec988a62", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName2984?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName5220?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a4731b6ae28c6a4bad3ae1c225618a9d-3e3be952ce873e49-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7815e07196e1b5191902ccbaf81f5973", + "traceparent": "00-0b57bc89ee316aeb3b768b3263205dca-288e620682e7e454-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "da87ddb8961d3a6709c71ebc7d2c2736", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:23:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMjAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "463f0b52-1522-4ebe-ac68-29da597fa2db", + "x-ms-ratelimit-remaining-subscription-deletes": "14984", + "x-ms-request-id": "463f0b52-1522-4ebe-ac68-29da597fa2db", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132307Z:463f0b52-1522-4ebe-ac68-29da597fa2db" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMjAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-0b57bc89ee316aeb3b768b3263205dca-8d6748b88dc4328f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f79759c68609b1f595d930172dfc8864", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -356,28 +381,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:06:01 GMT", + "Date": "Tue, 15 Nov 2022 13:23:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMjAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a37738f-8dd1-4f9f-833a-9943b8b205b1", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-request-id": "4a37738f-8dd1-4f9f-833a-9943b8b205b1", - "x-ms-routing-request-id": "WESTUS:20220803T050602Z:4a37738f-8dd1-4f9f-833a-9943b8b205b1" + "x-ms-correlation-request-id": "e2ace77a-b1de-4ec0-b779-7eefdf57a8ca", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "e2ace77a-b1de-4ec0-b779-7eefdf57a8ca", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132307Z:e2ace77a-b1de-4ec0-b779-7eefdf57a8ca" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMjAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a4731b6ae28c6a4bad3ae1c225618a9d-9fbea617ed09ac46-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b6ba617115922640677dbc26c9a1ce4a", + "traceparent": "00-0b57bc89ee316aeb3b768b3263205dca-6b2af9d2e2ad41a9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "820d64938e60f67abc689738fd6d491b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -385,28 +410,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:06:01 GMT", + "Date": "Tue, 15 Nov 2022 13:23:22 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMjAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "817510ec-7417-48b6-b935-8325519285cf", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "817510ec-7417-48b6-b935-8325519285cf", - "x-ms-routing-request-id": "WESTUS:20220803T050602Z:817510ec-7417-48b6-b935-8325519285cf" + "x-ms-correlation-request-id": "0240cda2-3f29-4bc6-a7e8-99361ddf7d25", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "0240cda2-3f29-4bc6-a7e8-99361ddf7d25", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132323Z:0240cda2-3f29-4bc6-a7e8-99361ddf7d25" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMjAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a4731b6ae28c6a4bad3ae1c225618a9d-38aa65b7c575074c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ce1cd153831d4858b6d43fd4f8c6b9de", + "traceparent": "00-0b57bc89ee316aeb3b768b3263205dca-96847ae183b01574-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "23f6c7a52f95302c0d64b334910af146", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -414,28 +439,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:06:16 GMT", + "Date": "Tue, 15 Nov 2022 13:23:38 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMjAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5f22bab-7ebc-4ee0-aa87-1c7d33cebd40", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "b5f22bab-7ebc-4ee0-aa87-1c7d33cebd40", - "x-ms-routing-request-id": "WESTUS:20220803T050617Z:b5f22bab-7ebc-4ee0-aa87-1c7d33cebd40" + "x-ms-correlation-request-id": "36081318-778d-4bfb-9243-b6021bfae23f", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "36081318-778d-4bfb-9243-b6021bfae23f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132338Z:36081318-778d-4bfb-9243-b6021bfae23f" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMjAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a4731b6ae28c6a4bad3ae1c225618a9d-adb353f24f1db54e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "964889c2a3648be1066feb456c027697", + "traceparent": "00-0b57bc89ee316aeb3b768b3263205dca-9789f624dee2f6eb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8b66345d9fe138f7dfa13aa1eebdb428", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -443,28 +468,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:06:44 GMT", + "Date": "Tue, 15 Nov 2022 13:23:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMjAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2fd385f-4f64-4139-be92-5b0497b4f1c3", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "f2fd385f-4f64-4139-be92-5b0497b4f1c3", - "x-ms-routing-request-id": "WESTUS:20220803T050645Z:f2fd385f-4f64-4139-be92-5b0497b4f1c3" + "x-ms-correlation-request-id": "387dac51-fa26-4744-83a4-e747f5f1aa96", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "387dac51-fa26-4744-83a4-e747f5f1aa96", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132354Z:387dac51-fa26-4744-83a4-e747f5f1aa96" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMjAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a4731b6ae28c6a4bad3ae1c225618a9d-6c5e10502154a54c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "2a00533e711eee250972ffbdd56c2ea1", + "traceparent": "00-0b57bc89ee316aeb3b768b3263205dca-5feedcff0e586901-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "66711490640564cf38dc74fbda4565b2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -472,28 +497,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:07:00 GMT", + "Date": "Tue, 15 Nov 2022 13:24:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMjAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a8ea205-b21a-4997-9af5-4809fd447937", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "8a8ea205-b21a-4997-9af5-4809fd447937", - "x-ms-routing-request-id": "WESTUS:20220803T050700Z:8a8ea205-b21a-4997-9af5-4809fd447937" + "x-ms-correlation-request-id": "6678d936-f40f-436f-ba84-2084bfa4118b", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "6678d936-f40f-436f-ba84-2084bfa4118b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132409Z:6678d936-f40f-436f-ba84-2084bfa4118b" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5ODQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyMjAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a4731b6ae28c6a4bad3ae1c225618a9d-c51e94eeb01c2740-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4064ddc33759b0e5ef91c8ae9812dcb4", + "traceparent": "00-0b57bc89ee316aeb3b768b3263205dca-4af077b994797bac-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c9da5076bd06053acfbd44f3f48a4150", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -501,23 +526,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:07:15 GMT", + "Date": "Tue, 15 Nov 2022 13:24:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b433da8d-cd74-418b-b97d-b41f774c99a3", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "b433da8d-cd74-418b-b97d-b41f774c99a3", - "x-ms-routing-request-id": "WESTUS:20220803T050715Z:b433da8d-cd74-418b-b97d-b41f774c99a3" + "x-ms-correlation-request-id": "4ecdf535-05fa-48be-99e7-eccf92a0be44", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "4ecdf535-05fa-48be-99e7-eccf92a0be44", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132425Z:4ecdf535-05fa-48be-99e7-eccf92a0be44" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1000402946", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1648800484", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetEndpointTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetEndpointTest.json index 2af5d5caba41..ce942c63d205 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetEndpointTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetEndpointTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-73e435b5935b2d4baacc90f1ec9db41f-cebf7f539593004f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b3267705df29f1d17c8687c253f95ffa", + "traceparent": "00-a2e6de4ad936a8f43b2c7cd9b92480eb-a6db67ba90e80bde-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "15c4ccdd5dca56e695b293dc88bb703f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:58:27 GMT", + "Date": "Tue, 15 Nov 2022 12:57:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73626c9a-1ebf-4187-9799-0dae5f810bb2", + "x-ms-correlation-request-id": "c192912d-d068-47a9-a5e2-9dad0deaabf5", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "73626c9a-1ebf-4187-9799-0dae5f810bb2", - "x-ms-routing-request-id": "WESTUS2:20220803T045828Z:73626c9a-1ebf-4187-9799-0dae5f810bb2" + "x-ms-request-id": "c192912d-d068-47a9-a5e2-9dad0deaabf5", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125724Z:c192912d-d068-47a9-a5e2-9dad0deaabf5" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName820?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName2887?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-f97b0f8e788b8542a1ba8af4214a3132-e2636191a3a88243-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7d9b84e659a11e6baf235f0f853ff853", + "traceparent": "00-5a44892540fe8d42df0b756f0ac2cdad-ba813dcf7e2fd34c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "eb2d169aa2455a42abcea570440166f2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -69,21 +61,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "237", + "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:58:29 GMT", + "Date": "Tue, 15 Nov 2022 12:57:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "841e6355-324d-473b-bc06-cf81a7d59b29", + "x-ms-correlation-request-id": "d53a1c07-7a61-499d-8334-75412fbf2711", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "841e6355-324d-473b-bc06-cf81a7d59b29", - "x-ms-routing-request-id": "WESTUS2:20220803T045829Z:841e6355-324d-473b-bc06-cf81a7d59b29" + "x-ms-request-id": "d53a1c07-7a61-499d-8334-75412fbf2711", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125729Z:d53a1c07-7a61-499d-8334-75412fbf2711" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName820", - "name": "resourceGroupName820", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2887", + "name": "resourceGroupName2887", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName820/providers/Microsoft.Network/trafficmanagerprofiles/profileName1050?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2887/providers/Microsoft.Network/trafficmanagerprofiles/profileName3390?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-7a4f62d93d872b4eb9021fd5ec492e12-b4c010ee1c44434a-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b888791f853083eeb2afe59f5ad72209", + "traceparent": "00-571690eb0ad1337dc300451d905fd164-c5823773e57ef8b4-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "dea8afecfcdfb8028a014357d32da9cb", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName1050", + "name": "profileName3390", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName1050" + "relativeName": "profileName3390" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1870", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:58:32 GMT", + "Date": "Tue, 15 Nov 2022 12:57:34 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3ccdc8c-9c64-43ea-b068-3d47976ac6a6", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "b888791f-8530-83ee-b2af-e59f5ad72209", - "x-ms-routing-request-id": "WESTUS2:20220803T045832Z:a3ccdc8c-9c64-43ea-b068-3d47976ac6a6", + "x-ms-correlation-request-id": "6bef8978-9181-4c66-884c-877c0bf1a31c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4499", + "x-ms-request-id": "dea8afec-fcdf-b802-8a01-4357d32da9cb", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125735Z:6bef8978-9181-4c66-884c-877c0bf1a31c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname820/providers/Microsoft.Network/trafficManagerProfiles/profileName1050", - "name": "profileName1050", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2887/providers/Microsoft.Network/trafficManagerProfiles/profileName3390", + "name": "profileName3390", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename1050", - "fqdn": "profilename1050.trafficmanager.net", + "relativeName": "profilename3390", + "fqdn": "profilename3390.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname820/providers/Microsoft.Network/trafficManagerProfiles/profileName1050/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2887/providers/Microsoft.Network/trafficManagerProfiles/profileName3390/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname820/providers/Microsoft.Network/trafficManagerProfiles/profileName1050/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2887/providers/Microsoft.Network/trafficManagerProfiles/profileName3390/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName820/providers/Microsoft.Network/trafficmanagerprofiles/profileName1050?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2887/providers/Microsoft.Network/trafficmanagerprofiles/profileName3390?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e8edaef6f7f798428e6d1ee09e5b35f4-bf41b92ec517e346-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "58c5295556491d63bb957abb72e1f746", + "traceparent": "00-aa1cdc24528fcdc82d89760187310436-a36ae14b5a8a584c-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d6ae536a522a299782bb1f8e41e651b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1880", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:58:32 GMT", + "Date": "Tue, 15 Nov 2022 12:57:35 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42c786f0-40df-444d-9ac1-767de0110e1c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "58c52955-5649-1d63-bb95-7abb72e1f746", - "x-ms-routing-request-id": "WESTUS2:20220803T045833Z:42c786f0-40df-444d-9ac1-767de0110e1c", + "x-ms-correlation-request-id": "81d9e15d-7eff-4a3d-bb8c-1e83d7370584", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1999", + "x-ms-request-id": "d6ae536a-522a-2997-82bb-1f8e41e651b1", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125736Z:81d9e15d-7eff-4a3d-bb8c-1e83d7370584", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname820/providers/Microsoft.Network/trafficManagerProfiles/profileName1050", - "name": "profileName1050", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2887/providers/Microsoft.Network/trafficManagerProfiles/profileName3390", + "name": "profileName3390", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename1050", - "fqdn": "profilename1050.trafficmanager.net", + "relativeName": "profilename3390", + "fqdn": "profilename3390.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname820/providers/Microsoft.Network/trafficManagerProfiles/profileName1050/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2887/providers/Microsoft.Network/trafficManagerProfiles/profileName3390/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname820/providers/Microsoft.Network/trafficManagerProfiles/profileName1050/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2887/providers/Microsoft.Network/trafficManagerProfiles/profileName3390/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,35 +305,35 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname820/providers/Microsoft.Network/trafficmanagerprofiles/profileName1050/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2887/providers/Microsoft.Network/trafficmanagerprofiles/profileName3390/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5a6295ac8383be43bba339be3ab3ea9f-17305c1640de144f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7f346e8e42d6603a9618cbf173cbc3d8", + "traceparent": "00-3bd7ba574f273fd7117f3777e0627fd9-659b3d35b19243a0-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0b9be92c61c89ebb137560435feb867d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "582", + "Content-Length": "608", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:58:32 GMT", + "Date": "Tue, 15 Nov 2022 12:57:36 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db43f4e5-8a74-414e-baa2-7b398e17cc6e", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "7f346e8e-42d6-603a-9618-cbf173cbc3d8", - "x-ms-routing-request-id": "WESTUS2:20220803T045833Z:db43f4e5-8a74-414e-baa2-7b398e17cc6e", + "x-ms-correlation-request-id": "8fc4686f-1d95-4abe-af02-283c4d47c0ba", + "x-ms-ratelimit-remaining-subscription-resource-requests": "249", + "x-ms-request-id": "0b9be92c-61c8-9ebb-1375-60435feb867d", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125736Z:8fc4686f-1d95-4abe-af02-283c4d47c0ba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname820/providers/Microsoft.Network/trafficManagerProfiles/profileName1050/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2887/providers/Microsoft.Network/trafficManagerProfiles/profileName3390/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -350,18 +346,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName820/providers/Microsoft.Network/trafficmanagerprofiles/profileName1050?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2887/providers/Microsoft.Network/trafficmanagerprofiles/profileName3390?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5bba55019f79c80a166afc9b0b3210d0", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f006d925905299c8177e5c24dd7477a4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -369,28 +366,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:58:35 GMT", + "Date": "Tue, 15 Nov 2022 12:57:43 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad2e9f62-659e-42b5-a3b5-86d1854599eb", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "5bba5501-9f79-c80a-166a-fc9b0b3210d0", - "x-ms-routing-request-id": "WESTUS2:20220803T045836Z:ad2e9f62-659e-42b5-a3b5-86d1854599eb", + "x-ms-correlation-request-id": "9f43fed5-357a-4225-99d9-f5abcbb9bfbe", + "x-ms-ratelimit-remaining-subscription-resource-requests": "499", + "x-ms-request-id": "f006d925-9052-99c8-177e-5c24dd7477a4", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125743Z:9f43fed5-357a-4225-99d9-f5abcbb9bfbe", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName820?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName2887?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1ca4f8c0bb76fb449b2ff505f616704a-5c374420a980794b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ec119fb8a2a21332ef65c2308b71aaf0", + "traceparent": "00-09e214587d622758651ee524650b98ce-b24ca10519f164c3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ea2a92b09d9208039710c2b5f253ca96", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -398,28 +395,57 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:58:36 GMT", + "Date": "Tue, 15 Nov 2022 12:57:46 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI4ODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8d60730-f1c0-4319-abf2-0280a88cc23e", + "x-ms-correlation-request-id": "c4a74ac2-97f7-4659-be5a-a9b591fdf7f3", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "c8d60730-f1c0-4319-abf2-0280a88cc23e", - "x-ms-routing-request-id": "WESTUS2:20220803T045837Z:c8d60730-f1c0-4319-abf2-0280a88cc23e" + "x-ms-request-id": "c4a74ac2-97f7-4659-be5a-a9b591fdf7f3", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125747Z:c4a74ac2-97f7-4659-be5a-a9b591fdf7f3" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI4ODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-09e214587d622758651ee524650b98ce-77373ce1c78cf983-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "cc93bcfd9bc087ebd6fd5942cd12a7c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:57:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI4ODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "027ad295-bb6a-42b4-8365-e0b046da72f1", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "027ad295-bb6a-42b4-8365-e0b046da72f1", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125747Z:027ad295-bb6a-42b4-8365-e0b046da72f1" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI4ODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1ca4f8c0bb76fb449b2ff505f616704a-62c56839cd29824d-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d439fa07d7b95f3523a66b14ddd93ca4", + "traceparent": "00-09e214587d622758651ee524650b98ce-09c5d203478d072d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3befc5b4100a50c3348ec990a9b90300", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -427,52 +453,139 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:58:36 GMT", + "Date": "Tue, 15 Nov 2022 12:58:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI4ODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee6e15eb-1d73-4944-bef5-5d32b9ef267c", + "x-ms-correlation-request-id": "a912d411-17ea-4e30-bdbc-41cca676b7cf", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "ee6e15eb-1d73-4944-bef5-5d32b9ef267c", - "x-ms-routing-request-id": "WESTUS2:20220803T045837Z:ee6e15eb-1d73-4944-bef5-5d32b9ef267c" + "x-ms-request-id": "a912d411-17ea-4e30-bdbc-41cca676b7cf", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125803Z:a912d411-17ea-4e30-bdbc-41cca676b7cf" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI4ODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1ca4f8c0bb76fb449b2ff505f616704a-31a9fbec73c8734e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "69c80cc0f4771ca9d123883738c6ce50", + "traceparent": "00-09e214587d622758651ee524650b98ce-9ac4198307307f60-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "35b8224ffdc098d6b6e291e2071ccf0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:58:51 GMT", + "Date": "Tue, 15 Nov 2022 12:58:18 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI4ODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", + "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a80673ea-6bfa-4290-9284-26efda5d9ddc", + "x-ms-correlation-request-id": "8eb7e735-ec18-4c01-a1d2-db39a9df4376", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "a80673ea-6bfa-4290-9284-26efda5d9ddc", - "x-ms-routing-request-id": "WESTUS2:20220803T045852Z:a80673ea-6bfa-4290-9284-26efda5d9ddc" + "x-ms-request-id": "8eb7e735-ec18-4c01-a1d2-db39a9df4376", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125818Z:8eb7e735-ec18-4c01-a1d2-db39a9df4376" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI4ODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-09e214587d622758651ee524650b98ce-d5f544841f380365-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4095305984a7ed94f8439832d25add1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:58:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI4ODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8ee44e00-6b1c-4033-a5fc-635298f336ec", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "8ee44e00-6b1c-4033-a5fc-635298f336ec", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125834Z:8ee44e00-6b1c-4033-a5fc-635298f336ec" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI4ODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-09e214587d622758651ee524650b98ce-95baa8dfbbff7686-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "aaf258fa725ab603ee5685287ee04818", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:58:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI4ODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0fbfa740-94c7-477c-9557-1c41770f31b2", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "0fbfa740-94c7-477c-9557-1c41770f31b2", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125849Z:0fbfa740-94c7-477c-9557-1c41770f31b2" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI4ODctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-09e214587d622758651ee524650b98ce-8a47030e62eb418e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7836babfc323cb588eca3c7d64a4c65b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:59:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5a1da5f8-5521-459e-8de7-4b56751952b0", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "5a1da5f8-5521-459e-8de7-4b56751952b0", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125904Z:5a1da5f8-5521-459e-8de7-4b56751952b0" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "2143461446", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1193835564", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetEndpointTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetEndpointTestAsync.json index 559232368999..9ac1fd7b82ca 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetEndpointTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetEndpointTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2831862710a3b348831963473c661f10-522189904b24954c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0eadc5a71dc9a99bef04eb8f39eb1b8d", + "traceparent": "00-735c583be6b4ccb4d7bf96ffad8ae409-ed53c41f3be902d0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d74e328288dbd0c22beb8584bad886a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:07:15 GMT", + "Date": "Tue, 15 Nov 2022 13:24:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "042f102b-8b5e-431e-988d-0513f16e761f", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "042f102b-8b5e-431e-988d-0513f16e761f", - "x-ms-routing-request-id": "WESTUS:20220803T050715Z:042f102b-8b5e-431e-988d-0513f16e761f" + "x-ms-correlation-request-id": "d5b8dfe7-349b-49b8-9b60-da981c58867d", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "d5b8dfe7-349b-49b8-9b60-da981c58867d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132426Z:d5b8dfe7-349b-49b8-9b60-da981c58867d" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName1111?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName5716?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-b8aeec997f04f14e8a3a7e5be886cd32-494af999fbfcbf47-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6c432cd5dc3089346a9897345afac2d2", + "traceparent": "00-e24eb2032e601bceceaa39400608fc06-22d40469e234bd6a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "da375082d3b64e5390f7035a06f5f643", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:07:16 GMT", + "Date": "Tue, 15 Nov 2022 13:24:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efc44ff7-55ab-461e-b3b8-e5c961b5340d", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "efc44ff7-55ab-461e-b3b8-e5c961b5340d", - "x-ms-routing-request-id": "WESTUS:20220803T050716Z:efc44ff7-55ab-461e-b3b8-e5c961b5340d" + "x-ms-correlation-request-id": "240359da-2772-4101-88a6-368d87c109a7", + "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-request-id": "240359da-2772-4101-88a6-368d87c109a7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132428Z:240359da-2772-4101-88a6-368d87c109a7" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1111", - "name": "resourceGroupName1111", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5716", + "name": "resourceGroupName5716", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1111/providers/Microsoft.Network/trafficmanagerprofiles/profileName3324?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5716/providers/Microsoft.Network/trafficmanagerprofiles/profileName4092?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-7ab32b33c5882a48beaef7fc02a5aece-da3dddbe0d285d4b-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "08671a99b3f7a6fa8473f3e7e857309b", + "traceparent": "00-680376c0db851e67e42464ceb81651c7-73a17a11b1df4e76-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e5319323db461ad148e26f8ade205f45", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName3324", + "name": "profileName4092", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName3324" + "relativeName": "profileName4092" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:07:17 GMT", + "Date": "Tue, 15 Nov 2022 13:24:32 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3fb64ccf-e5b8-4ef9-833a-8adbaddf60ab", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "08671a99-b3f7-a6fa-8473-f3e7e857309b", - "x-ms-routing-request-id": "WESTUS:20220803T050718Z:3fb64ccf-e5b8-4ef9-833a-8adbaddf60ab", + "x-ms-correlation-request-id": "41a2e29b-9581-4fd6-b090-b4920ef36eba", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4492", + "x-ms-request-id": "e5319323-db46-1ad1-48e2-6f8ade205f45", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132432Z:41a2e29b-9581-4fd6-b090-b4920ef36eba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1111/providers/Microsoft.Network/trafficManagerProfiles/profileName3324", - "name": "profileName3324", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5716/providers/Microsoft.Network/trafficManagerProfiles/profileName4092", + "name": "profileName4092", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3324", - "fqdn": "profilename3324.trafficmanager.net", + "relativeName": "profilename4092", + "fqdn": "profilename4092.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1111/providers/Microsoft.Network/trafficManagerProfiles/profileName3324/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5716/providers/Microsoft.Network/trafficManagerProfiles/profileName4092/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1111/providers/Microsoft.Network/trafficManagerProfiles/profileName3324/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5716/providers/Microsoft.Network/trafficManagerProfiles/profileName4092/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1111/providers/Microsoft.Network/trafficmanagerprofiles/profileName3324?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5716/providers/Microsoft.Network/trafficmanagerprofiles/profileName4092?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-753510d7e182434e8af1593c9ab08773-1536806e1aa6e44c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "9307ca4b94dee87778845f8504759409", + "traceparent": "00-ea2eb96e8fc4a5df6cbff55072b9c787-53fee7c84bc7a5f4-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1d1986c3b9145ecbfa884b90be7624f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:07:17 GMT", + "Date": "Tue, 15 Nov 2022 13:24:32 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0cb6d61-98c5-4a44-ad89-a44077a011e7", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "9307ca4b-94de-e877-7884-5f8504759409", - "x-ms-routing-request-id": "WESTUS:20220803T050718Z:c0cb6d61-98c5-4a44-ad89-a44077a011e7", + "x-ms-correlation-request-id": "3e1ef2d0-7b06-4c00-a55e-cb8a1136db32", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1984", + "x-ms-request-id": "1d1986c3-b914-5ecb-fa88-4b90be7624f5", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132432Z:3e1ef2d0-7b06-4c00-a55e-cb8a1136db32", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1111/providers/Microsoft.Network/trafficManagerProfiles/profileName3324", - "name": "profileName3324", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5716/providers/Microsoft.Network/trafficManagerProfiles/profileName4092", + "name": "profileName4092", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3324", - "fqdn": "profilename3324.trafficmanager.net", + "relativeName": "profilename4092", + "fqdn": "profilename4092.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1111/providers/Microsoft.Network/trafficManagerProfiles/profileName3324/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5716/providers/Microsoft.Network/trafficManagerProfiles/profileName4092/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1111/providers/Microsoft.Network/trafficManagerProfiles/profileName3324/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5716/providers/Microsoft.Network/trafficManagerProfiles/profileName4092/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,35 +305,35 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1111/providers/Microsoft.Network/trafficmanagerprofiles/profileName3324/externalEndpoints/endpoint1?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5716/providers/Microsoft.Network/trafficmanagerprofiles/profileName4092/externalEndpoints/endpoint1?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4b61ee9f4b53054796de0e07c5f965bb-ddde435c9ee92f40-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d0a0bd2984b32161329de7bde84da112", + "traceparent": "00-23b95258cd930be16267d6c0ea09dcfc-82740b385e8d163f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4497408eba55a6a37e1c91d464c9706f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "583", + "Content-Length": "608", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:07:17 GMT", + "Date": "Tue, 15 Nov 2022 13:24:33 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae9b2808-2e16-424b-8b8e-10fe14c94865", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "d0a0bd29-84b3-2161-329d-e7bde84da112", - "x-ms-routing-request-id": "WESTUS:20220803T050718Z:ae9b2808-2e16-424b-8b8e-10fe14c94865", + "x-ms-correlation-request-id": "ccaba766-dc35-420c-b0cf-e60635f92b9c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "249", + "x-ms-request-id": "4497408e-ba55-a6a3-7e1c-91d464c9706f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132433Z:ccaba766-dc35-420c-b0cf-e60635f92b9c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname1111/providers/Microsoft.Network/trafficManagerProfiles/profileName3324/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5716/providers/Microsoft.Network/trafficManagerProfiles/profileName4092/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -350,18 +346,19 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1111/providers/Microsoft.Network/trafficmanagerprofiles/profileName3324?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5716/providers/Microsoft.Network/trafficmanagerprofiles/profileName4092?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "90e8fb682ff305f4a37e90725475a20f", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8097be98d8dc692ec8d2ebbe90415cd2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -369,28 +366,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:07:19 GMT", + "Date": "Tue, 15 Nov 2022 13:24:37 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffbd1f2a-4b50-4a8b-84f0-9d30b99e4b06", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "90e8fb68-2ff3-05f4-a37e-90725475a20f", - "x-ms-routing-request-id": "WESTUS:20220803T050719Z:ffbd1f2a-4b50-4a8b-84f0-9d30b99e4b06", + "x-ms-correlation-request-id": "be180501-ab32-41e2-99e6-ed68a1de02cf", + "x-ms-ratelimit-remaining-subscription-resource-requests": "494", + "x-ms-request-id": "8097be98-d8dc-692e-c8d2-ebbe90415cd2", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132438Z:be180501-ab32-41e2-99e6-ed68a1de02cf", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName1111?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName5716?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5b1ef2dd1d53b141817b1bf3e1489af4-12fa6c916404e244-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "2bbdeade5fb7c7e869e56041acba002a", + "traceparent": "00-c82553e5b7030dd421caa4d9c071d9a6-f78374909adbd040-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9dfb79bd1a8908f0e2739ff728f6fa31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -398,28 +395,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:07:20 GMT", + "Date": "Tue, 15 Nov 2022 13:24:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTExMTEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ee939d8-8b79-4577-b79b-415302233807", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "3ee939d8-8b79-4577-b79b-415302233807", - "x-ms-routing-request-id": "WESTUS:20220803T050720Z:3ee939d8-8b79-4577-b79b-415302233807" + "x-ms-correlation-request-id": "24bf349a-18dc-4c78-8ac3-06fc75255b83", + "x-ms-ratelimit-remaining-subscription-deletes": "14983", + "x-ms-request-id": "24bf349a-18dc-4c78-8ac3-06fc75255b83", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132439Z:24bf349a-18dc-4c78-8ac3-06fc75255b83" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTExMTEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5b1ef2dd1d53b141817b1bf3e1489af4-967de10d3cacd844-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "feded8fa7690095a1321260dceb359e9", + "traceparent": "00-c82553e5b7030dd421caa4d9c071d9a6-89fe4efe6ebc2f26-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ea17bfc0d2ce7de5ce8e9d69393741d1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -427,28 +424,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:07:20 GMT", + "Date": "Tue, 15 Nov 2022 13:24:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTExMTEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08a9227a-4e7f-4063-a451-0581adb9876b", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "08a9227a-4e7f-4063-a451-0581adb9876b", - "x-ms-routing-request-id": "WESTUS:20220803T050720Z:08a9227a-4e7f-4063-a451-0581adb9876b" + "x-ms-correlation-request-id": "ee18c9ac-adc6-46ef-9f5f-a247b31f795d", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "ee18c9ac-adc6-46ef-9f5f-a247b31f795d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132440Z:ee18c9ac-adc6-46ef-9f5f-a247b31f795d" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTExMTEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-5b1ef2dd1d53b141817b1bf3e1489af4-3c288ef9d220e44a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "078f657e9a59d982d4c3621c31b3d37b", + "traceparent": "00-c82553e5b7030dd421caa4d9c071d9a6-27533018a65ca349-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b4a5bad85c4819f360448b5c9d6d38fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:24:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f9cc523e-caa4-44f9-bc75-82792fd92d5c", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "f9cc523e-caa4-44f9-bc75-82792fd92d5c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132455Z:f9cc523e-caa4-44f9-bc75-82792fd92d5c" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c82553e5b7030dd421caa4d9c071d9a6-eab2c21d18226cb3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6836615d0fdf4562f67a324f06b07cdb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:25:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "005179ab-02fd-4c89-9533-fce22a9e02c1", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "005179ab-02fd-4c89-9533-fce22a9e02c1", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132511Z:005179ab-02fd-4c89-9533-fce22a9e02c1" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c82553e5b7030dd421caa4d9c071d9a6-f2ec64446604c43b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "15a9abeb603f64f4cbfe89894788df60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:25:25 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a4f7bc68-1514-4299-9503-e8a96be6629f", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "a4f7bc68-1514-4299-9503-e8a96be6629f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132526Z:a4f7bc68-1514-4299-9503-e8a96be6629f" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c82553e5b7030dd421caa4d9c071d9a6-dc4eee24539819eb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d70ba055d900c9f15760bece29a312b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:25:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4837caff-872a-4b2a-be75-0e7613a0da02", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "4837caff-872a-4b2a-be75-0e7613a0da02", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132542Z:4837caff-872a-4b2a-be75-0e7613a0da02" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU3MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c82553e5b7030dd421caa4d9c071d9a6-a1a37c0119ec8e79-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f271b0c823c3fcbd6cd29de185d9fd6d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -456,23 +569,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:07:35 GMT", + "Date": "Tue, 15 Nov 2022 13:25:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0db73a9a-9b90-42b8-b926-2fff72bf05fe", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "0db73a9a-9b90-42b8-b926-2fff72bf05fe", - "x-ms-routing-request-id": "WESTUS:20220803T050735Z:0db73a9a-9b90-42b8-b926-2fff72bf05fe" + "x-ms-correlation-request-id": "75c77435-5890-4cdc-9880-617090b23718", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "75c77435-5890-4cdc-9880-617090b23718", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132558Z:75c77435-5890-4cdc-9880-617090b23718" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1749864964", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1978322324", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelTest.json index 6a5b05fffbd1..3e9d4e7e2f56 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelTest.json @@ -92,7 +92,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6106/providers/Microsoft.Network/trafficmanagerprofiles/profileName8758?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6106/providers/Microsoft.Network/trafficmanagerprofiles/profileName8758?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -255,7 +255,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -353,7 +353,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -8750,7 +8750,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6106/providers/Microsoft.Network/trafficmanagerprofiles/profileName8758?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6106/providers/Microsoft.Network/trafficmanagerprofiles/profileName8758?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelTestAsync.json index 4a4f5458cbcc..2ae9f668edc7 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelTestAsync.json @@ -92,7 +92,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1348/providers/Microsoft.Network/trafficmanagerprofiles/profileName5990?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1348/providers/Microsoft.Network/trafficmanagerprofiles/profileName5990?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -255,7 +255,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -353,7 +353,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -8750,7 +8750,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1348/providers/Microsoft.Network/trafficmanagerprofiles/profileName5990?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName1348/providers/Microsoft.Network/trafficmanagerprofiles/profileName5990?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelWithCoordinatesConstraintTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelWithCoordinatesConstraintTest.json index 6a59460fae7a..64aef7e73c53 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelWithCoordinatesConstraintTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelWithCoordinatesConstraintTest.json @@ -92,7 +92,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6731/providers/Microsoft.Network/trafficmanagerprofiles/profileName7050?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6731/providers/Microsoft.Network/trafficmanagerprofiles/profileName7050?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -255,7 +255,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -353,7 +353,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?topLeft=-18.910742%2C-47.858517\u0026botRight=-24.341378%2C-37.964283\u0026api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?topLeft=-18.910742%2C-47.858517\u0026botRight=-24.341378%2C-37.964283\u0026api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -462,7 +462,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6731/providers/Microsoft.Network/trafficmanagerprofiles/profileName7050?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6731/providers/Microsoft.Network/trafficmanagerprofiles/profileName7050?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelWithCoordinatesConstraintTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelWithCoordinatesConstraintTestAsync.json index b71c960da8ce..17678a01de85 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelWithCoordinatesConstraintTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelWithCoordinatesConstraintTestAsync.json @@ -92,7 +92,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3205/providers/Microsoft.Network/trafficmanagerprofiles/profileName4102?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3205/providers/Microsoft.Network/trafficmanagerprofiles/profileName4102?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -255,7 +255,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -353,7 +353,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?topLeft=-18.910742%2C-47.858517\u0026botRight=-24.341378%2C-37.964283\u0026api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/dialtone-traffic-manager/providers/Microsoft.Network/trafficmanagerprofiles/az-int-int-msftmetrics/heatMaps/default?topLeft=-18.910742%2C-47.858517\u0026botRight=-24.341378%2C-37.964283\u0026api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -462,7 +462,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3205/providers/Microsoft.Network/trafficmanagerprofiles/profileName4102?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3205/providers/Microsoft.Network/trafficmanagerprofiles/profileName4102?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelsTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelsTest.json index 9c04f013953c..f6f5280deeb3 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelsTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelsTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a5320c5bb6e66d478efb4ad41ee783a6-cd8b56cf0bf3314b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ef37c26cb2f97fabf3782fa6e1525911", + "traceparent": "00-c1ea931cdd55bb4f195cb8ed2cbd3507-41b0e02f448f7a55-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9049ed5f1503cf76cb81820b1a2f23c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:58:52 GMT", + "Date": "Tue, 15 Nov 2022 12:59:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b68134b-a613-4d17-ad63-8ca63d4b5e85", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "6b68134b-a613-4d17-ad63-8ca63d4b5e85", - "x-ms-routing-request-id": "WESTUS2:20220803T045853Z:6b68134b-a613-4d17-ad63-8ca63d4b5e85" + "x-ms-correlation-request-id": "710ca1f8-0e62-4df4-9432-30be5f30e195", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "710ca1f8-0e62-4df4-9432-30be5f30e195", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125906Z:710ca1f8-0e62-4df4-9432-30be5f30e195" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6886?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6023?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-130be37e761c524ba825a18826a87df5-cb672cc7b12a4446-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "016f0cbe716e4e3d19938ef35d1af6f3", + "traceparent": "00-3f75a93d8be46d5c12e17b9bc2b3a925-57469ec8593f0dbc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1956931db0cb342b4ff234b1e17c3f06", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:58:53 GMT", + "Date": "Tue, 15 Nov 2022 12:59:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f5dec76-c035-4de2-8186-573d08099d0b", + "x-ms-correlation-request-id": "85857017-dc6f-4d5a-bab2-0ce8bff53a51", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "7f5dec76-c035-4de2-8186-573d08099d0b", - "x-ms-routing-request-id": "WESTUS2:20220803T045853Z:7f5dec76-c035-4de2-8186-573d08099d0b" + "x-ms-request-id": "85857017-dc6f-4d5a-bab2-0ce8bff53a51", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125907Z:85857017-dc6f-4d5a-bab2-0ce8bff53a51" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6886", - "name": "resourceGroupName6886", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6023", + "name": "resourceGroupName6023", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6886/providers/Microsoft.Network/trafficmanagerprofiles/profileName7153?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6023/providers/Microsoft.Network/trafficmanagerprofiles/profileName9992?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-2c7b6cffd9232e48adc3716a712e07d6-c13ee54e8761634e-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f0b91c7a24a58ffa66fc1f702ea4cabb", + "traceparent": "00-af7c86100e5fbf9f9c3049ce2ff05203-e0198e8d5f84eeb7-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f4a645139853094ddd77ffd6869cb6b1", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName7153", + "name": "profileName9992", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName7153" + "relativeName": "profileName9992" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:58:55 GMT", + "Date": "Tue, 15 Nov 2022 12:59:12 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a3ccc94-df0b-40ee-8683-3cc779221e2b", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "f0b91c7a-24a5-8ffa-66fc-1f702ea4cabb", - "x-ms-routing-request-id": "WESTUS2:20220803T045856Z:5a3ccc94-df0b-40ee-8683-3cc779221e2b", + "x-ms-correlation-request-id": "9756fef7-be86-413b-ab31-a93501d7c82f", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4498", + "x-ms-request-id": "f4a64513-9853-094d-dd77-ffd6869cb6b1", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125912Z:9756fef7-be86-413b-ab31-a93501d7c82f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6886/providers/Microsoft.Network/trafficManagerProfiles/profileName7153", - "name": "profileName7153", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6023/providers/Microsoft.Network/trafficManagerProfiles/profileName9992", + "name": "profileName9992", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7153", - "fqdn": "profilename7153.trafficmanager.net", + "relativeName": "profilename9992", + "fqdn": "profilename9992.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6886/providers/Microsoft.Network/trafficManagerProfiles/profileName7153/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6023/providers/Microsoft.Network/trafficManagerProfiles/profileName9992/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6886/providers/Microsoft.Network/trafficManagerProfiles/profileName7153/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6023/providers/Microsoft.Network/trafficManagerProfiles/profileName9992/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6886/providers/Microsoft.Network/trafficmanagerprofiles/profileName7153?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6023/providers/Microsoft.Network/trafficmanagerprofiles/profileName9992?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4ea2e0368ae40841a24c046d2cb7074c-cf6e9354d1ff7e45-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4cbd25436ad151fdfaa0df1e1c8c955d", + "traceparent": "00-ff078ef11eb5f2b155cbfef8ed859e31-60c1108346ce585e-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b3df28bfb1363c941e5bb323411eea04", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 04:58:55 GMT", + "Date": "Tue, 15 Nov 2022 12:59:13 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0749636-6bea-4c14-924e-f35247e0199a", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "4cbd2543-6ad1-51fd-faa0-df1e1c8c955d", - "x-ms-routing-request-id": "WESTUS2:20220803T045856Z:e0749636-6bea-4c14-924e-f35247e0199a", + "x-ms-correlation-request-id": "6f633716-4d23-4349-b3d3-151f49dbdb2f", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1998", + "x-ms-request-id": "b3df28bf-b136-3c94-1e5b-b323411eea04", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125913Z:6f633716-4d23-4349-b3d3-151f49dbdb2f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6886/providers/Microsoft.Network/trafficManagerProfiles/profileName7153", - "name": "profileName7153", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6023/providers/Microsoft.Network/trafficManagerProfiles/profileName9992", + "name": "profileName9992", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7153", - "fqdn": "profilename7153.trafficmanager.net", + "relativeName": "profilename9992", + "fqdn": "profilename9992.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6886/providers/Microsoft.Network/trafficManagerProfiles/profileName7153/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6023/providers/Microsoft.Network/trafficManagerProfiles/profileName9992/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6886/providers/Microsoft.Network/trafficManagerProfiles/profileName7153/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6023/providers/Microsoft.Network/trafficManagerProfiles/profileName9992/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,13 +305,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6886/providers/Microsoft.Network/trafficmanagerprofiles/profileName7153?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6023/providers/Microsoft.Network/trafficmanagerprofiles/profileName9992?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "3667b33820a0999f11e09b7252cd2075", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e9060542cf7d8590464d3c53b154adb3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -323,28 +319,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:58:57 GMT", + "Date": "Tue, 15 Nov 2022 12:59:18 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2bd044a-6f6a-41c0-901d-5df419cfbf12", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "3667b338-20a0-999f-11e0-9b7252cd2075", - "x-ms-routing-request-id": "WESTUS2:20220803T045858Z:e2bd044a-6f6a-41c0-901d-5df419cfbf12", + "x-ms-correlation-request-id": "730445ec-cf57-4fcc-b16f-7d04c07ad9f5", + "x-ms-ratelimit-remaining-subscription-resource-requests": "498", + "x-ms-request-id": "e9060542-cf7d-8590-464d-3c53b154adb3", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125918Z:730445ec-cf57-4fcc-b16f-7d04c07ad9f5", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6886?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6023?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-275e2dc5bbf5f8468fea6ef2766ec8a2-740660c1b2e15c43-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "37afd3c9aa5c0f211e67f60445db72da", + "traceparent": "00-f5412f49814a5691d016e088e1583ff8-bfa39d77e8ee5c7f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b8f1833b8b9d62cfb169d6f8e42ac7bf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -352,28 +348,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:58:58 GMT", + "Date": "Tue, 15 Nov 2022 12:59:20 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY4ODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwMjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7f7073c-4f1a-4727-ada2-deeb58db29c9", + "x-ms-correlation-request-id": "da47d981-29d5-4547-be73-5fdc4c4683d0", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "f7f7073c-4f1a-4727-ada2-deeb58db29c9", - "x-ms-routing-request-id": "WESTUS2:20220803T045858Z:f7f7073c-4f1a-4727-ada2-deeb58db29c9" + "x-ms-request-id": "da47d981-29d5-4547-be73-5fdc4c4683d0", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125921Z:da47d981-29d5-4547-be73-5fdc4c4683d0" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY4ODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwMjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-275e2dc5bbf5f8468fea6ef2766ec8a2-053e762068615145-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "49556a805ddd8e0091581738299a5335", + "traceparent": "00-f5412f49814a5691d016e088e1583ff8-5ffadac5daf3b46d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bee700ad322cb66735a43713f898a11b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -381,28 +377,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:58:58 GMT", + "Date": "Tue, 15 Nov 2022 12:59:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY4ODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwMjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d9b18ff-1b5b-4fdc-8b53-2174a9095a06", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "9d9b18ff-1b5b-4fdc-8b53-2174a9095a06", - "x-ms-routing-request-id": "WESTUS2:20220803T045859Z:9d9b18ff-1b5b-4fdc-8b53-2174a9095a06" + "x-ms-correlation-request-id": "4619fe23-121e-47a7-b646-b5fecef1e4d9", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "4619fe23-121e-47a7-b646-b5fecef1e4d9", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125921Z:4619fe23-121e-47a7-b646-b5fecef1e4d9" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY4ODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwMjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-275e2dc5bbf5f8468fea6ef2766ec8a2-6042c7d248d58749-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "900cc06ea5953438b88bb1386f313f93", + "traceparent": "00-f5412f49814a5691d016e088e1583ff8-68b3758c5e2369e8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b7c57d852cc06e1d4f0120441ee6ee70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:59:36 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwMjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1f30c80d-eb1f-47b0-a085-6e93f031ba4c", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "1f30c80d-eb1f-47b0-a085-6e93f031ba4c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125937Z:1f30c80d-eb1f-47b0-a085-6e93f031ba4c" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwMjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f5412f49814a5691d016e088e1583ff8-8258ca7bb9c94bb5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e44a0cde09435b9293dd4bf09520f7ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:59:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwMjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7f6b0e9a-f686-4ecb-9305-13dcfedeaca2", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "7f6b0e9a-f686-4ecb-9305-13dcfedeaca2", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T125952Z:7f6b0e9a-f686-4ecb-9305-13dcfedeaca2" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwMjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f5412f49814a5691d016e088e1583ff8-5c8d2c60a97f4600-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f66352b8d37a8009e2786e2a1122984e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:00:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwMjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0200649e-7694-4319-9cd0-63a8c647296f", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "0200649e-7694-4319-9cd0-63a8c647296f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T130007Z:0200649e-7694-4319-9cd0-63a8c647296f" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwMjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f5412f49814a5691d016e088e1583ff8-f269c51fa0eae1c1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ec34c6b6bc4e7bd7ea6a23e2e12dd92f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:00:23 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwMjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "06429aa7-705e-4887-9905-726f6800b4ba", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "06429aa7-705e-4887-9905-726f6800b4ba", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T130023Z:06429aa7-705e-4887-9905-726f6800b4ba" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYwMjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f5412f49814a5691d016e088e1583ff8-44175a30e86d6bd7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "cc8c2009f7820af603c902cb9b674970", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -410,23 +522,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 04:59:13 GMT", + "Date": "Tue, 15 Nov 2022 13:00:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92ab6529-bf64-4a2a-9bf3-ded0addb654c", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "92ab6529-bf64-4a2a-9bf3-ded0addb654c", - "x-ms-routing-request-id": "WESTUS2:20220803T045914Z:92ab6529-bf64-4a2a-9bf3-ded0addb654c" + "x-ms-correlation-request-id": "e43fa112-f70d-40f6-a71c-4fa6a6928fd7", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "e43fa112-f70d-40f6-a71c-4fa6a6928fd7", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T130038Z:e43fa112-f70d-40f6-a71c-4fa6a6928fd7" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "509619972", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1363665544", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelsTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelsTestAsync.json index cea1552f7629..aed342fb8e4d 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelsTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetHeatMapModelsTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0a1a20512d2f4f42a19c1af6a8c5f43b-6a1d362f673ed844-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "078010c86808786cb9ad988cf8f5139b", + "traceparent": "00-03e68b93b61957a34963fbfc52fbad2b-20d5dcd0e6068546-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ef48340e8062ecad8ab4e027c0216594", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:07:35 GMT", + "Date": "Tue, 15 Nov 2022 13:26:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59a66077-5957-497a-bd7f-f5cff729ca2e", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "59a66077-5957-497a-bd7f-f5cff729ca2e", - "x-ms-routing-request-id": "WESTUS:20220803T050736Z:59a66077-5957-497a-bd7f-f5cff729ca2e" + "x-ms-correlation-request-id": "bc6fb37e-998e-4a3c-b1ca-1ad11d8e7f41", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "bc6fb37e-998e-4a3c-b1ca-1ad11d8e7f41", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132603Z:bc6fb37e-998e-4a3c-b1ca-1ad11d8e7f41" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName5881?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8172?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-1fa11b5ada3633458412fda8abc5272d-990177e7e8969f4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "cad6b7180b4319241c7e36fa850aedea", + "traceparent": "00-32c8d1cd0e3f3e5d307c6cc9b5a658aa-699bac3d4e15e5c7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d4a8277881469bb0dd33d6b8a480f43b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:07:36 GMT", + "Date": "Tue, 15 Nov 2022 13:26:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7030a8a9-7f55-4f71-bdfd-c7a0552587f5", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "7030a8a9-7f55-4f71-bdfd-c7a0552587f5", - "x-ms-routing-request-id": "WESTUS:20220803T050737Z:7030a8a9-7f55-4f71-bdfd-c7a0552587f5" + "x-ms-correlation-request-id": "d736d358-d4b4-4ad2-932c-c50b9eb2e7c6", + "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-request-id": "d736d358-d4b4-4ad2-932c-c50b9eb2e7c6", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132605Z:d736d358-d4b4-4ad2-932c-c50b9eb2e7c6" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5881", - "name": "resourceGroupName5881", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8172", + "name": "resourceGroupName8172", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5881/providers/Microsoft.Network/trafficmanagerprofiles/profileName5634?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8172/providers/Microsoft.Network/trafficmanagerprofiles/profileName1192?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-8c953522266bd84587e4186578c42f1e-84c7454eb88db14c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "88be97d26bdb1564811019287be4917c", + "traceparent": "00-13dfe8dbf92775266bd88d33b19807cb-7432ca3cc60f95e1-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bcdb8104636c6b024207e0d545de9a72", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName5634", + "name": "profileName1192", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName5634" + "relativeName": "profileName1192" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:07:37 GMT", + "Date": "Tue, 15 Nov 2022 13:26:09 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55a5a63b-fa2f-4d56-895a-dbfbb5c91e8d", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "88be97d2-6bdb-1564-8110-19287be4917c", - "x-ms-routing-request-id": "WESTUS:20220803T050738Z:55a5a63b-fa2f-4d56-895a-dbfbb5c91e8d", + "x-ms-correlation-request-id": "01f04368-65a3-42d6-918e-6f95296ea664", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4496", + "x-ms-request-id": "bcdb8104-636c-6b02-4207-e0d545de9a72", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132609Z:01f04368-65a3-42d6-918e-6f95296ea664", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5881/providers/Microsoft.Network/trafficManagerProfiles/profileName5634", - "name": "profileName5634", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8172/providers/Microsoft.Network/trafficManagerProfiles/profileName1192", + "name": "profileName1192", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename5634", - "fqdn": "profilename5634.trafficmanager.net", + "relativeName": "profilename1192", + "fqdn": "profilename1192.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5881/providers/Microsoft.Network/trafficManagerProfiles/profileName5634/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8172/providers/Microsoft.Network/trafficManagerProfiles/profileName1192/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5881/providers/Microsoft.Network/trafficManagerProfiles/profileName5634/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8172/providers/Microsoft.Network/trafficManagerProfiles/profileName1192/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5881/providers/Microsoft.Network/trafficmanagerprofiles/profileName5634?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8172/providers/Microsoft.Network/trafficmanagerprofiles/profileName1192?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7b8387298f98d7419324a44e8dcaf0ac-d4a669cf02f8e448-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "79128c93227b04845ceeecea367d33a2", + "traceparent": "00-ca9804e7f09f3856ec3307fbff5bfd47-24f7aa409b549252-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5a9be29b9a48b2c79754854dd633e633", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:07:37 GMT", + "Date": "Tue, 15 Nov 2022 13:26:09 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad6f4c1e-8c54-4538-bbbd-943c9e5fa771", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "79128c93-227b-0484-5cee-ecea367d33a2", - "x-ms-routing-request-id": "WESTUS:20220803T050738Z:ad6f4c1e-8c54-4538-bbbd-943c9e5fa771", + "x-ms-correlation-request-id": "d238a8ac-afae-489d-8ac6-95aa5bcc2d02", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1996", + "x-ms-request-id": "5a9be29b-9a48-b2c7-9754-854dd633e633", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132609Z:d238a8ac-afae-489d-8ac6-95aa5bcc2d02", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5881/providers/Microsoft.Network/trafficManagerProfiles/profileName5634", - "name": "profileName5634", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8172/providers/Microsoft.Network/trafficManagerProfiles/profileName1192", + "name": "profileName1192", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename5634", - "fqdn": "profilename5634.trafficmanager.net", + "relativeName": "profilename1192", + "fqdn": "profilename1192.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5881/providers/Microsoft.Network/trafficManagerProfiles/profileName5634/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8172/providers/Microsoft.Network/trafficManagerProfiles/profileName1192/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5881/providers/Microsoft.Network/trafficManagerProfiles/profileName5634/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8172/providers/Microsoft.Network/trafficManagerProfiles/profileName1192/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,13 +305,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5881/providers/Microsoft.Network/trafficmanagerprofiles/profileName5634?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8172/providers/Microsoft.Network/trafficmanagerprofiles/profileName1192?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5e26a1ab1354adb653c14832f1fb9d37", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9fbbebebd7891500243d913ea0da56fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -323,28 +319,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:07:39 GMT", + "Date": "Tue, 15 Nov 2022 13:26:20 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f493cd7e-c3f8-40b0-b26f-33b25acdc7fa", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "5e26a1ab-1354-adb6-53c1-4832f1fb9d37", - "x-ms-routing-request-id": "WESTUS:20220803T050739Z:f493cd7e-c3f8-40b0-b26f-33b25acdc7fa", + "x-ms-correlation-request-id": "887f8670-b81b-4375-a0c2-14f09b641ebd", + "x-ms-ratelimit-remaining-subscription-resource-requests": "496", + "x-ms-request-id": "9fbbebeb-d789-1500-243d-913ea0da56fe", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132620Z:887f8670-b81b-4375-a0c2-14f09b641ebd", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName5881?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8172?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fe7fc2aa02f9f84496e16c7c35e3df72-ab49bb6f9d459a48-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f966b9ed73f8af6f12ba2cec7e79de04", + "traceparent": "00-0f3224c736145e67458328e77c57103a-81a2965c6093dda5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c21c64999ae56af3b9282517deb5940e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -352,28 +348,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:07:39 GMT", + "Date": "Tue, 15 Nov 2022 13:26:22 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU4ODEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de768d34-9b47-4c64-93bb-815e16974ef2", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-request-id": "de768d34-9b47-4c64-93bb-815e16974ef2", - "x-ms-routing-request-id": "WESTUS:20220803T050740Z:de768d34-9b47-4c64-93bb-815e16974ef2" + "x-ms-correlation-request-id": "476af461-1eaa-4e4f-860c-cc510d6feecb", + "x-ms-ratelimit-remaining-subscription-deletes": "14982", + "x-ms-request-id": "476af461-1eaa-4e4f-860c-cc510d6feecb", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132622Z:476af461-1eaa-4e4f-860c-cc510d6feecb" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU4ODEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fe7fc2aa02f9f84496e16c7c35e3df72-8e6d904a7dece640-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7cfdb5513a1638aa32774c9ae6c92ed9", + "traceparent": "00-0f3224c736145e67458328e77c57103a-a5e2e4213dc24b1d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "72b387fe2417504ef751e660b2e8366e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -381,28 +377,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:07:39 GMT", + "Date": "Tue, 15 Nov 2022 13:26:22 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU4ODEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01d2c512-1752-40da-92b6-b7610c74d27e", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "01d2c512-1752-40da-92b6-b7610c74d27e", - "x-ms-routing-request-id": "WESTUS:20220803T050740Z:01d2c512-1752-40da-92b6-b7610c74d27e" + "x-ms-correlation-request-id": "cf60b689-263f-41a2-b348-d44865732d89", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "cf60b689-263f-41a2-b348-d44865732d89", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132622Z:cf60b689-263f-41a2-b348-d44865732d89" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU4ODEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fe7fc2aa02f9f84496e16c7c35e3df72-d881dc8d6fce1c4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7a5644e2c27eba7992e622934cb5d5bf", + "traceparent": "00-0f3224c736145e67458328e77c57103a-66a23d4939ac85bd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f31d82a8fcf09fdb7b58e05f64e86030", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -410,28 +406,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:07:54 GMT", + "Date": "Tue, 15 Nov 2022 13:26:37 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU4ODEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49a6d6c9-79d2-481b-9ca4-8cefa819e8cd", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "49a6d6c9-79d2-481b-9ca4-8cefa819e8cd", - "x-ms-routing-request-id": "WESTUS:20220803T050755Z:49a6d6c9-79d2-481b-9ca4-8cefa819e8cd" + "x-ms-correlation-request-id": "8846972d-5643-4dcd-9dba-fe1b5005594e", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "8846972d-5643-4dcd-9dba-fe1b5005594e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132638Z:8846972d-5643-4dcd-9dba-fe1b5005594e" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU4ODEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fe7fc2aa02f9f84496e16c7c35e3df72-fc4d3cf5c363a34f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c99bcba7617ca2edcc44a746e68c990d", + "traceparent": "00-0f3224c736145e67458328e77c57103a-25fdbd9b33d8fcbe-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "571968162201fdf75e9961d1138811f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -439,28 +435,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:08:09 GMT", + "Date": "Tue, 15 Nov 2022 13:26:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU4ODEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb6a3b29-25bc-471a-aad1-2e9b762d2f1b", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "fb6a3b29-25bc-471a-aad1-2e9b762d2f1b", - "x-ms-routing-request-id": "WESTUS:20220803T050810Z:fb6a3b29-25bc-471a-aad1-2e9b762d2f1b" + "x-ms-correlation-request-id": "59926414-8fba-4e48-af1b-45addb4d00f3", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "59926414-8fba-4e48-af1b-45addb4d00f3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132653Z:59926414-8fba-4e48-af1b-45addb4d00f3" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU4ODEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fe7fc2aa02f9f84496e16c7c35e3df72-7c04e67105950742-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "95d74d3697fb8ee23c42ea301717eb7c", + "traceparent": "00-0f3224c736145e67458328e77c57103a-f272885aa5c0d07b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8762c64f1e6c02ccab14f7bf43efec0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -468,59 +464,57 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:08:25 GMT", + "Date": "Tue, 15 Nov 2022 13:27:09 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU4ODEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "508c384a-4c99-4a5b-be64-ff7194f303d4", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "508c384a-4c99-4a5b-be64-ff7194f303d4", - "x-ms-routing-request-id": "WESTUS:20220803T050826Z:508c384a-4c99-4a5b-be64-ff7194f303d4" + "x-ms-correlation-request-id": "ac6beba3-80a7-485a-a1fe-8497c3f40956", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "ac6beba3-80a7-485a-a1fe-8497c3f40956", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132709Z:ac6beba3-80a7-485a-a1fe-8497c3f40956" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU4ODEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "Connection": "close", - "traceparent": "00-fe7fc2aa02f9f84496e16c7c35e3df72-a83b33edeb2d0942-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "1bf38ca1652d805c56b4ae391a32d305", + "traceparent": "00-0f3224c736145e67458328e77c57103a-ff87ba31d6684d26-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "494ab6f1dfcf866d8b2094579a0a8bf2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Connection": "close", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:08:40 GMT", + "Date": "Tue, 15 Nov 2022 13:27:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU4ODEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "658951db-3333-438b-b810-35630eb133f6", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "658951db-3333-438b-b810-35630eb133f6", - "x-ms-routing-request-id": "WESTUS:20220803T050841Z:658951db-3333-438b-b810-35630eb133f6" + "x-ms-correlation-request-id": "e3d89e97-64d2-4278-9fa6-4245a6c666e7", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "e3d89e97-64d2-4278-9fa6-4245a6c666e7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132724Z:e3d89e97-64d2-4278-9fa6-4245a6c666e7" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU4ODEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fe7fc2aa02f9f84496e16c7c35e3df72-c40ea881323a324f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ff5c154c40de0fc4e80c8c3977bd8ab5", + "traceparent": "00-0f3224c736145e67458328e77c57103a-9282a70c6d997a2d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9d0fe746d986f7c39c16abed2a37b96f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -528,23 +522,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:08:56 GMT", + "Date": "Tue, 15 Nov 2022 13:27:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0e6357a-949b-43be-b9bd-f0f31c06304c", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "d0e6357a-949b-43be-b9bd-f0f31c06304c", - "x-ms-routing-request-id": "WESTUS2:20220803T050856Z:d0e6357a-949b-43be-b9bd-f0f31c06304c" + "x-ms-correlation-request-id": "03ef0412-0241-475b-85cc-c21383148cd4", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "03ef0412-0241-475b-85cc-c21383148cd4", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132740Z:03ef0412-0241-475b-85cc-c21383148cd4" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "188495412", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1622000057", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetTest.json index 9352b4ecc5c7..be4d06824284 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ee74f9f3f3af644caeff2484fecde736-503761c1ea466e46-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8855bf9bd7833d28eb5eb01f07a1b71c", + "traceparent": "00-90efe70de75bdec2c5672a4ef140c05f-3800d313672c8f38-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "436094aa8f70205a33cd81875ab0677d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:00:54 GMT", + "Date": "Tue, 15 Nov 2022 13:00:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85314ffd-962d-416f-9d9d-8b15af4526a4", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "85314ffd-962d-416f-9d9d-8b15af4526a4", - "x-ms-routing-request-id": "WESTUS2:20220803T050055Z:85314ffd-962d-416f-9d9d-8b15af4526a4" + "x-ms-correlation-request-id": "6af48536-43ee-447f-aca5-33af0d988ebd", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "6af48536-43ee-447f-aca5-33af0d988ebd", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T130039Z:6af48536-43ee-447f-aca5-33af0d988ebd" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName5962?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName7234?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-a91fd42290a88b4697e0f9211804a6cb-72e116b472639349-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "55dc30d615ed20789c37d2ba36ab7301", + "traceparent": "00-75c869ff8086aaede604c4d1751115b3-53d97ff17b4d4610-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d554e07fef9d2b65710f2658d662da0b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:00:55 GMT", + "Date": "Tue, 15 Nov 2022 13:00:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd56dc1f-f3cb-428d-99fc-63e9ae469640", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "bd56dc1f-f3cb-428d-99fc-63e9ae469640", - "x-ms-routing-request-id": "WESTUS2:20220803T050056Z:bd56dc1f-f3cb-428d-99fc-63e9ae469640" + "x-ms-correlation-request-id": "fb84d10a-3239-4c53-8e54-7334ca6a6738", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "fb84d10a-3239-4c53-8e54-7334ca6a6738", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T130040Z:fb84d10a-3239-4c53-8e54-7334ca6a6738" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5962", - "name": "resourceGroupName5962", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName7234", + "name": "resourceGroupName7234", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5962/providers/Microsoft.Network/trafficmanagerprofiles/profileName5415?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName7234/providers/Microsoft.Network/trafficmanagerprofiles/profileName3135?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-f096567d3d5a604d9ae3ba7a8ac08076-b4da46fc6aacec4f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "fcdcc4e60db9c42bb4d94a45d6f81b80", + "traceparent": "00-db04dd2a8b92ad973f67de8c51d114ce-0c9ed97e6f33b20f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e7d3d4be4332c16fe3ee22085c777e27", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName5415", + "name": "profileName3135", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName5415" + "relativeName": "profileName3135" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:00:56 GMT", + "Date": "Tue, 15 Nov 2022 13:00:44 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b564ef5-c918-46f3-935a-37d9c3cad9f7", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "fcdcc4e6-0db9-c42b-b4d9-4a45d6f81b80", - "x-ms-routing-request-id": "WESTUS2:20220803T050057Z:2b564ef5-c918-46f3-935a-37d9c3cad9f7", + "x-ms-correlation-request-id": "463d5c94-8b2f-413c-9044-8975e25922d7", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4497", + "x-ms-request-id": "e7d3d4be-4332-c16f-e3ee-22085c777e27", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T130045Z:463d5c94-8b2f-413c-9044-8975e25922d7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5962/providers/Microsoft.Network/trafficManagerProfiles/profileName5415", - "name": "profileName5415", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname7234/providers/Microsoft.Network/trafficManagerProfiles/profileName3135", + "name": "profileName3135", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename5415", - "fqdn": "profilename5415.trafficmanager.net", + "relativeName": "profilename3135", + "fqdn": "profilename3135.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5962/providers/Microsoft.Network/trafficManagerProfiles/profileName5415/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname7234/providers/Microsoft.Network/trafficManagerProfiles/profileName3135/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5962/providers/Microsoft.Network/trafficManagerProfiles/profileName5415/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname7234/providers/Microsoft.Network/trafficManagerProfiles/profileName3135/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5962/providers/Microsoft.Network/trafficmanagerprofiles/profileName5415?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName7234/providers/Microsoft.Network/trafficmanagerprofiles/profileName3135?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-598c15f2b7100e4d9aba9bae6a336f68-17f707eaeeb6f246-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "83d713d61b89aaaddc68e7a05582b5b2", + "traceparent": "00-8d5822446901f452778ba6290925667b-9ab84da8a7d9d9b0-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8381680c68fda50cfa17ff8033c75c6b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:00:57 GMT", + "Date": "Tue, 15 Nov 2022 13:00:44 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5203579-1a13-4ccb-9e45-49c7876cb9e9", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "83d713d6-1b89-aaad-dc68-e7a05582b5b2", - "x-ms-routing-request-id": "WESTUS2:20220803T050057Z:f5203579-1a13-4ccb-9e45-49c7876cb9e9", + "x-ms-correlation-request-id": "448a125d-e8e0-49ca-a88c-af1f2fe128c1", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1997", + "x-ms-request-id": "8381680c-68fd-a50c-fa17-ff8033c75c6b", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T130045Z:448a125d-e8e0-49ca-a88c-af1f2fe128c1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5962/providers/Microsoft.Network/trafficManagerProfiles/profileName5415", - "name": "profileName5415", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname7234/providers/Microsoft.Network/trafficManagerProfiles/profileName3135", + "name": "profileName3135", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename5415", - "fqdn": "profilename5415.trafficmanager.net", + "relativeName": "profilename3135", + "fqdn": "profilename3135.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5962/providers/Microsoft.Network/trafficManagerProfiles/profileName5415/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname7234/providers/Microsoft.Network/trafficManagerProfiles/profileName3135/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname5962/providers/Microsoft.Network/trafficManagerProfiles/profileName5415/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname7234/providers/Microsoft.Network/trafficManagerProfiles/profileName3135/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,13 +305,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName5962/providers/Microsoft.Network/trafficmanagerprofiles/profileName5415?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName7234/providers/Microsoft.Network/trafficmanagerprofiles/profileName3135?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "dc211e3d20dac9c20417a014ca324aa3", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "db9c7ca695943c247092f1afcc5ccff9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -323,28 +319,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:00:59 GMT", + "Date": "Tue, 15 Nov 2022 13:00:49 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "853f1da9-ca19-4fcf-98bd-f476400de632", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "dc211e3d-20da-c9c2-0417-a014ca324aa3", - "x-ms-routing-request-id": "WESTUS2:20220803T050059Z:853f1da9-ca19-4fcf-98bd-f476400de632", + "x-ms-correlation-request-id": "d60602a9-da83-482e-8d19-4a22515ac5cb", + "x-ms-ratelimit-remaining-subscription-resource-requests": "497", + "x-ms-request-id": "db9c7ca6-9594-3c24-7092-f1afcc5ccff9", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T130050Z:d60602a9-da83-482e-8d19-4a22515ac5cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName5962?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName7234?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-271c9735a91a0f4d94ca3ca487725718-e1095b4f4b3f0444-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "23e4511befd4cb7717321f50258b6f32", + "traceparent": "00-b7952222aeb716587b28ca14c054321f-5fdee24650759cdb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6e4cff9156e0560dc82eed1b44ef8d1c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -352,28 +348,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:00:59 GMT", + "Date": "Tue, 15 Nov 2022 13:00:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU5NjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a810b05-c878-494a-bc87-695004442a42", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-request-id": "7a810b05-c878-494a-bc87-695004442a42", - "x-ms-routing-request-id": "WESTUS2:20220803T050100Z:7a810b05-c878-494a-bc87-695004442a42" + "x-ms-correlation-request-id": "76adf16e-34fe-4c18-ba81-62b4b2560276", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "76adf16e-34fe-4c18-ba81-62b4b2560276", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T130053Z:76adf16e-34fe-4c18-ba81-62b4b2560276" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU5NjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-271c9735a91a0f4d94ca3ca487725718-52efb6394e479d40-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0484431d929e4edea756c5a80171a478", + "traceparent": "00-b7952222aeb716587b28ca14c054321f-2bba01d2427ddc81-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "34ee0548ee7b4f8a6f451266a709f880", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -381,57 +377,58 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:01:00 GMT", + "Date": "Tue, 15 Nov 2022 13:00:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU5NjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "775740b8-d91b-4495-829c-67257b92d4a2", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "775740b8-d91b-4495-829c-67257b92d4a2", - "x-ms-routing-request-id": "WESTUS2:20220803T050100Z:775740b8-d91b-4495-829c-67257b92d4a2" + "x-ms-correlation-request-id": "333055b8-4e24-4851-8295-fbdaa0dafc8e", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "333055b8-4e24-4851-8295-fbdaa0dafc8e", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T130053Z:333055b8-4e24-4851-8295-fbdaa0dafc8e" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU5NjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-271c9735a91a0f4d94ca3ca487725718-0658a8714edc5d47-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "31f06ea8922adcccab2dd2c66f04507e", + "traceparent": "00-b7952222aeb716587b28ca14c054321f-cea786ac29b80331-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "151dd505effaee1e6bd52a9b43a2df6b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", + "Connection": "close", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:01:15 GMT", + "Date": "Tue, 15 Nov 2022 13:01:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU5NjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2dc2ccf-bb91-4def-88fb-484abbabda70", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "d2dc2ccf-bb91-4def-88fb-484abbabda70", - "x-ms-routing-request-id": "WESTUS2:20220803T050115Z:d2dc2ccf-bb91-4def-88fb-484abbabda70" + "x-ms-correlation-request-id": "9a779ae6-70bc-439c-9eea-804330713401", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "9a779ae6-70bc-439c-9eea-804330713401", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T130109Z:9a779ae6-70bc-439c-9eea-804330713401" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU5NjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-271c9735a91a0f4d94ca3ca487725718-72ba25a03d55b243-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e23375516b079293b9ba108079fdb5df", + "traceparent": "00-b7952222aeb716587b28ca14c054321f-a864dbf5189ba33e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3ed350555900a2a02c127095902dcf3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -439,28 +436,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:01:30 GMT", + "Date": "Tue, 15 Nov 2022 13:01:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU5NjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1873426-1052-47e9-af74-3e940ffd4b33", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "e1873426-1052-47e9-af74-3e940ffd4b33", - "x-ms-routing-request-id": "WESTUS2:20220803T050130Z:e1873426-1052-47e9-af74-3e940ffd4b33" + "x-ms-correlation-request-id": "5db9f215-81b5-4e73-9ae5-8a1b8c8e118a", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "5db9f215-81b5-4e73-9ae5-8a1b8c8e118a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130124Z:5db9f215-81b5-4e73-9ae5-8a1b8c8e118a" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU5NjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-271c9735a91a0f4d94ca3ca487725718-1b205b8aad444d48-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0cca0769aea88b7f76a75870bf18dea2", + "traceparent": "00-b7952222aeb716587b28ca14c054321f-fc233c11749c1bc4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a065924cc33f58a2e700c8a5c3ee0ccc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -468,28 +465,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:01:45 GMT", + "Date": "Tue, 15 Nov 2022 13:01:40 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU5NjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "effb682e-4d49-4c81-880c-6dc72ec356f6", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "effb682e-4d49-4c81-880c-6dc72ec356f6", - "x-ms-routing-request-id": "WESTUS2:20220803T050146Z:effb682e-4d49-4c81-880c-6dc72ec356f6" + "x-ms-correlation-request-id": "4bad8f0a-e4c1-422c-91a0-47b0775f169d", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "4bad8f0a-e4c1-422c-91a0-47b0775f169d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130140Z:4bad8f0a-e4c1-422c-91a0-47b0775f169d" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU5NjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-271c9735a91a0f4d94ca3ca487725718-360fe6e6f7b1e54c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8b564605c23e3d71da5e7770824b63ad", + "traceparent": "00-b7952222aeb716587b28ca14c054321f-1859e23673a1ad01-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5711a766b936ab7f347ae8e77e885e3e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -497,28 +494,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:02:01 GMT", + "Date": "Tue, 15 Nov 2022 13:01:55 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU5NjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eeb43743-4c80-499f-9654-938e2b9508e0", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "eeb43743-4c80-499f-9654-938e2b9508e0", - "x-ms-routing-request-id": "WESTUS2:20220803T050201Z:eeb43743-4c80-499f-9654-938e2b9508e0" + "x-ms-correlation-request-id": "540b8c83-8d2a-4d60-bc27-bcac06ad7b70", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "540b8c83-8d2a-4d60-bc27-bcac06ad7b70", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130155Z:540b8c83-8d2a-4d60-bc27-bcac06ad7b70" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU5NjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-271c9735a91a0f4d94ca3ca487725718-d9774aa630ee3349-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "685cf378443aa3d5f5a76b5f1222d2a1", + "traceparent": "00-b7952222aeb716587b28ca14c054321f-d54f659c208f0f8f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b04ff0063e3c912bad7a570090fbde3d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -526,23 +523,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:02:16 GMT", + "Date": "Tue, 15 Nov 2022 13:02:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3963e02-35b8-457a-9cf8-b82b6bd1d93e", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "e3963e02-35b8-457a-9cf8-b82b6bd1d93e", - "x-ms-routing-request-id": "WESTUS2:20220803T050216Z:e3963e02-35b8-457a-9cf8-b82b6bd1d93e" + "x-ms-correlation-request-id": "8eb75818-815a-4e7c-903b-3ed93985a872", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "8eb75818-815a-4e7c-903b-3ed93985a872", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130211Z:8eb75818-815a-4e7c-903b-3ed93985a872" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1571893420", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "2035099852", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetTestAsync.json index ba53060c944f..b9d177a5a995 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/GetTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c8987849a1c6d842935890a1de64465f-f085683c19669145-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a03590019b4abaae52e9231f80984c54", + "traceparent": "00-9f1b95a9168fe23527d2f2a559e56265-e19e580b3456dfc9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f613b79dbc88eeed3a763fde79064253", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:10:42 GMT", + "Date": "Tue, 15 Nov 2022 13:27:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73d415ac-3d7d-4fd8-aead-83844a766d43", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "73d415ac-3d7d-4fd8-aead-83844a766d43", - "x-ms-routing-request-id": "WESTUS2:20220803T051042Z:73d415ac-3d7d-4fd8-aead-83844a766d43" + "x-ms-correlation-request-id": "36efc6b3-6868-480f-8997-42a2b59cf758", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "36efc6b3-6868-480f-8997-42a2b59cf758", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132741Z:36efc6b3-6868-480f-8997-42a2b59cf758" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName2235?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName555?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-5bd86721f307e446932247c2d66455a0-562f2fb88066b04c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "9527d5c36abaf9d81e5390311d937a35", + "traceparent": "00-905c69e6e3dfa64be8c5e7dd4c485a2b-3a54f6aea7a3d1d0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "877c0bf6ddae2567129be5fc3be1ed72", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -69,21 +61,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "239", + "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:10:42 GMT", + "Date": "Tue, 15 Nov 2022 13:27:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a612629-5461-444a-9196-cb40448d2a42", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "7a612629-5461-444a-9196-cb40448d2a42", - "x-ms-routing-request-id": "WESTUS2:20220803T051043Z:7a612629-5461-444a-9196-cb40448d2a42" + "x-ms-correlation-request-id": "96a246cb-16fc-43a2-a91a-341c612572e9", + "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-request-id": "96a246cb-16fc-43a2-a91a-341c612572e9", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132743Z:96a246cb-16fc-43a2-a91a-341c612572e9" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2235", - "name": "resourceGroupName2235", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName555", + "name": "resourceGroupName555", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2235/providers/Microsoft.Network/trafficmanagerprofiles/profileName2702?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName555/providers/Microsoft.Network/trafficmanagerprofiles/profileName3724?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-cbe3a849a23fce48bd5595bc17ab0460-e2c7fa9e6f75a047-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "54832092e26c79ba4ed3c2c22cf72560", + "traceparent": "00-0c7dd7e84231869c52f0e663a5364ee4-1aed026ba52f9f7e-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "51efd5deb885a0a51b27f623ef323a0a", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName2702", + "name": "profileName3724", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName2702" + "relativeName": "profileName3724" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1920", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:10:43 GMT", + "Date": "Tue, 15 Nov 2022 13:27:46 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62e73c94-bbcd-45f0-bb81-4e3c2141c4f3", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "54832092-e26c-79ba-4ed3-c2c22cf72560", - "x-ms-routing-request-id": "WESTUS2:20220803T051044Z:62e73c94-bbcd-45f0-bb81-4e3c2141c4f3", + "x-ms-correlation-request-id": "f420d3eb-96a2-498e-9b2a-69429e1670d3", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4495", + "x-ms-request-id": "51efd5de-b885-a0a5-1b27-f623ef323a0a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132747Z:f420d3eb-96a2-498e-9b2a-69429e1670d3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2235/providers/Microsoft.Network/trafficManagerProfiles/profileName2702", - "name": "profileName2702", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname555/providers/Microsoft.Network/trafficManagerProfiles/profileName3724", + "name": "profileName3724", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2702", - "fqdn": "profilename2702.trafficmanager.net", + "relativeName": "profilename3724", + "fqdn": "profilename3724.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2235/providers/Microsoft.Network/trafficManagerProfiles/profileName2702/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname555/providers/Microsoft.Network/trafficManagerProfiles/profileName3724/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2235/providers/Microsoft.Network/trafficManagerProfiles/profileName2702/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname555/providers/Microsoft.Network/trafficManagerProfiles/profileName3724/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2235/providers/Microsoft.Network/trafficmanagerprofiles/profileName2702?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName555/providers/Microsoft.Network/trafficmanagerprofiles/profileName3724?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0cc5c5508b5f584d9d3128bfb5fe30e1-896db3eb8e22b542-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5ffc5ee787ea25465da72c471e893556", + "traceparent": "00-22c3a75e13f82b030d2d58695b9cca63-0b32c83677d0beac-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9655163d01f9daeeabd0762007f2fe95", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1930", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:10:44 GMT", + "Date": "Tue, 15 Nov 2022 13:27:47 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f83a9e9e-e379-46cc-ae13-188ed4a79e82", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "5ffc5ee7-87ea-2546-5da7-2c471e893556", - "x-ms-routing-request-id": "WESTUS2:20220803T051044Z:f83a9e9e-e379-46cc-ae13-188ed4a79e82", + "x-ms-correlation-request-id": "db46e77d-54e3-466d-af2e-db4aad5e9bb7", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1995", + "x-ms-request-id": "9655163d-01f9-daee-abd0-762007f2fe95", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132747Z:db46e77d-54e3-466d-af2e-db4aad5e9bb7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2235/providers/Microsoft.Network/trafficManagerProfiles/profileName2702", - "name": "profileName2702", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname555/providers/Microsoft.Network/trafficManagerProfiles/profileName3724", + "name": "profileName3724", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2702", - "fqdn": "profilename2702.trafficmanager.net", + "relativeName": "profilename3724", + "fqdn": "profilename3724.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2235/providers/Microsoft.Network/trafficManagerProfiles/profileName2702/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname555/providers/Microsoft.Network/trafficManagerProfiles/profileName3724/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2235/providers/Microsoft.Network/trafficManagerProfiles/profileName2702/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname555/providers/Microsoft.Network/trafficManagerProfiles/profileName3724/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,13 +305,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2235/providers/Microsoft.Network/trafficmanagerprofiles/profileName2702?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName555/providers/Microsoft.Network/trafficmanagerprofiles/profileName3724?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "77edeaa8ffc9e15d1bae47e6a815cd26", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "319b6c5201533ef365db6c87e64436e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -323,28 +319,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:10:45 GMT", + "Date": "Tue, 15 Nov 2022 13:27:52 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf57fb7e-48af-4034-b0a8-8fab7739160d", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "77edeaa8-ffc9-e15d-1bae-47e6a815cd26", - "x-ms-routing-request-id": "WESTUS2:20220803T051046Z:cf57fb7e-48af-4034-b0a8-8fab7739160d", + "x-ms-correlation-request-id": "fb62e943-e31a-40a6-aac7-eb5ec51664ca", + "x-ms-ratelimit-remaining-subscription-resource-requests": "495", + "x-ms-request-id": "319b6c52-0153-3ef3-65db-6c87e64436e0", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132753Z:fb62e943-e31a-40a6-aac7-eb5ec51664ca", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName2235?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName555?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-16a7497a83cdea42bed129f359af857c-36e29432a8389749-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "bf492f2e1b960b4bd95df7c5b5725bc5", + "traceparent": "00-e564f5cf5d3f1708c75cf9c1235f5a70-2f1e8e7a037be7cc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "24bedb61578bdc79e615a6b442849929", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -352,28 +348,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:10:52 GMT", + "Date": "Tue, 15 Nov 2022 13:27:54 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1230704f-fcf5-4b58-83e6-205f53f28b34", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-request-id": "1230704f-fcf5-4b58-83e6-205f53f28b34", - "x-ms-routing-request-id": "WESTUS2:20220803T051053Z:1230704f-fcf5-4b58-83e6-205f53f28b34" + "x-ms-correlation-request-id": "42ed9e5f-aa05-4e46-ad72-8ea481016274", + "x-ms-ratelimit-remaining-subscription-deletes": "14981", + "x-ms-request-id": "42ed9e5f-aa05-4e46-ad72-8ea481016274", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132755Z:42ed9e5f-aa05-4e46-ad72-8ea481016274" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-16a7497a83cdea42bed129f359af857c-a15abd187bfd0b4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ee1805da753f8dbf9fe19e6b07982ba8", + "traceparent": "00-e564f5cf5d3f1708c75cf9c1235f5a70-6fbc75ed3bc0ae30-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2cbf959ad933fb09f2be4a3e5b3ffbe1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -381,28 +377,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:10:53 GMT", + "Date": "Tue, 15 Nov 2022 13:27:55 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b6b300e-1d6f-4a1e-ab36-4e57578554a2", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "2b6b300e-1d6f-4a1e-ab36-4e57578554a2", - "x-ms-routing-request-id": "WESTUS2:20220803T051053Z:2b6b300e-1d6f-4a1e-ab36-4e57578554a2" + "x-ms-correlation-request-id": "5cd59ce0-5981-414a-91ad-cca1bae3cca8", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "5cd59ce0-5981-414a-91ad-cca1bae3cca8", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132756Z:5cd59ce0-5981-414a-91ad-cca1bae3cca8" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-16a7497a83cdea42bed129f359af857c-136de6ebd74e5c42-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "3c4882538afb811d9861be7bd70ecc79", + "traceparent": "00-e564f5cf5d3f1708c75cf9c1235f5a70-32a9b9ed2ef0fffa-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "865f4242b372584924830174275b477f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:28:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a059c51f-5d0d-4ed4-8994-48634a41e4f8", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "a059c51f-5d0d-4ed4-8994-48634a41e4f8", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132811Z:a059c51f-5d0d-4ed4-8994-48634a41e4f8" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e564f5cf5d3f1708c75cf9c1235f5a70-bc9610c9fb67dbe6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ac193e216cc54ef657d590d8be78dfe4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:28:26 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3420a907-3010-46d8-a61a-fedfa4200173", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "3420a907-3010-46d8-a61a-fedfa4200173", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132827Z:3420a907-3010-46d8-a61a-fedfa4200173" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e564f5cf5d3f1708c75cf9c1235f5a70-2e6f8026d7bc093b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "52db4e1b6d07e7f44c6708afd894d497", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:28:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3a3b1153-6550-476e-b392-eba23eca83d3", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "3a3b1153-6550-476e-b392-eba23eca83d3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132842Z:3a3b1153-6550-476e-b392-eba23eca83d3" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e564f5cf5d3f1708c75cf9c1235f5a70-5641ce3ebade7df9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1d1cca764e25d51c4c112e9d227099ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:28:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "eb5a80d7-7d0b-4ab8-aa0c-ce1f520248be", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "eb5a80d7-7d0b-4ab8-aa0c-ce1f520248be", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132857Z:eb5a80d7-7d0b-4ab8-aa0c-ce1f520248be" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTU1NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-e564f5cf5d3f1708c75cf9c1235f5a70-5ddb167a4e3c9346-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d8591da3f57fb3784931605d644676c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -410,23 +522,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:11:08 GMT", + "Date": "Tue, 15 Nov 2022 13:29:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9eb6345d-a7ac-4a10-b564-12f6d1599993", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "9eb6345d-a7ac-4a10-b564-12f6d1599993", - "x-ms-routing-request-id": "WESTUS2:20220803T051108Z:9eb6345d-a7ac-4a10-b564-12f6d1599993" + "x-ms-correlation-request-id": "4d909f03-0349-43d3-afcc-5fe90bb2a1d1", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "4d909f03-0349-43d3-afcc-5fe90bb2a1d1", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132913Z:4d909f03-0349-43d3-afcc-5fe90bb2a1d1" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1072407095", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "777417431", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(False).json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(False).json index 794af26ebdde..21ccf7d51d64 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(False).json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(False).json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a6c88bad6783350056bd585480374f0c-fb6e8038a74bf2d1-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e3d1177368a87685cf5b50662de1e8e4", + "traceparent": "00-34814d5be84bdb33907af1207287d2ca-f1425eb18b52f75b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9534e60279dca97951398f12d0890520", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:40 GMT", + "Date": "Tue, 15 Nov 2022 12:40:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb2db283-c1d9-4b80-bdda-0f19439bff45", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "bb2db283-c1d9-4b80-bdda-0f19439bff45", - "x-ms-routing-request-id": "WESTUS2:20220815T191241Z:bb2db283-c1d9-4b80-bdda-0f19439bff45" + "x-ms-correlation-request-id": "72197da5-c340-4296-b7cb-4d670469230a", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "72197da5-c340-4296-b7cb-4d670469230a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124028Z:72197da5-c340-4296-b7cb-4d670469230a" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName6339?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName4390?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-4676cd636d21a7d3ebced90b823e190f-59721ddaf060096f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0d57bdb42f694c081957c4da129a9c83", + "traceparent": "00-f7b68b2d039e265ec6a27647addb3fa0-94e33e45ea1e9d1c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6cbd0afc22ed14197a8574c8dbc6cd0d", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:41 GMT", + "Date": "Tue, 15 Nov 2022 12:40:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6f338bb-0244-45c5-8a95-d060e8cea40a", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "b6f338bb-0244-45c5-8a95-d060e8cea40a", - "x-ms-routing-request-id": "WESTUS2:20220815T191242Z:b6f338bb-0244-45c5-8a95-d060e8cea40a" + "x-ms-correlation-request-id": "d399bd30-9ce0-43e8-ad5a-deb24ac0ca68", + "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-request-id": "d399bd30-9ce0-43e8-ad5a-deb24ac0ca68", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124030Z:d399bd30-9ce0-43e8-ad5a-deb24ac0ca68" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName6339", - "name": "resourceGroupName6339", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4390", + "name": "resourceGroupName4390", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -97,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName6339/providers/Microsoft.Network/trafficmanagerprofiles/profileName8013?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4390/providers/Microsoft.Network/trafficmanagerprofiles/profileName6087?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-26719987729e0471c35b43506b38b757-48e3434d423ccb1e-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3bdc4aa43c3c46f739d762f8a0dd31c8", + "traceparent": "00-0d989f8612a3d2158ca5e9ed851439e5-b9da4ee81e753d35-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "14adf4822cd0b4e69d2e806609c5fba7", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName8013", + "name": "profileName6087", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName8013" + "relativeName": "profileName6087" }, "monitorConfig": { "protocol": "HTTP", @@ -145,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:42 GMT", + "Date": "Tue, 15 Nov 2022 12:40:32 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "906e3c62-cc31-46c1-9fb7-36d1b1a33d37", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "3bdc4aa4-3c3c-46f7-39d7-62f8a0dd31c8", - "x-ms-routing-request-id": "WESTUS2:20220815T191243Z:906e3c62-cc31-46c1-9fb7-36d1b1a33d37", + "x-ms-correlation-request-id": "24c1323c-46a8-4070-a8ea-9b1329306667", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4495", + "x-ms-request-id": "14adf482-2cd0-b4e6-9d2e-806609c5fba7", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124033Z:24c1323c-46a8-4070-a8ea-9b1329306667", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013", - "name": "profileName8013", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087", + "name": "profileName6087", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8013", - "fqdn": "profilename8013.trafficmanager.net", + "relativeName": "profilename6087", + "fqdn": "profilename6087.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -182,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -195,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -212,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -222,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName6339/providers/Microsoft.Network/trafficmanagerprofiles/profileName8013?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4390/providers/Microsoft.Network/trafficmanagerprofiles/profileName6087?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9818671cb383a81676da3b71662269da-f78b4cb42a3a564d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fe285fe835d0e809c8968f10c09bbdc1", + "traceparent": "00-ef12cb883fa270d6c9c9c913e95703fb-9f92f385c0b52984-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "68f6b655d3d1c4151b8061f405e17673", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:42 GMT", + "Date": "Tue, 15 Nov 2022 12:40:33 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6ae55d0-5d81-4adb-a7ca-a6ed903af24c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "fe285fe8-35d0-e809-c896-8f10c09bbdc1", - "x-ms-routing-request-id": "WESTUS2:20220815T191243Z:d6ae55d0-5d81-4adb-a7ca-a6ed903af24c", + "x-ms-correlation-request-id": "8bb3b2a3-a8a4-4923-9b2f-9272a3cfbbbc", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1987", + "x-ms-request-id": "68f6b655-d3d1-c415-1b80-61f405e17673", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124034Z:8bb3b2a3-a8a4-4923-9b2f-9272a3cfbbbc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013", - "name": "profileName8013", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087", + "name": "profileName6087", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -259,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8013", - "fqdn": "profilename8013.trafficmanager.net", + "relativeName": "profilename6087", + "fqdn": "profilename6087.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -274,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -287,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -304,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -314,36 +305,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficmanagerprofiles/profileName8013?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficmanagerprofiles/profileName6087?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-78ed45134bf9f75c1fd9f686895d12ab-2b7e88753fe90bff-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9788e3b3a90b78dac610d391cc10ac3b", + "traceparent": "00-6ebb9e8e361c3b5d4b692627de8c856e-fd6b24c8da670315-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "954e05c10c57cf9a2308cfbea1b30bb4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:42 GMT", + "Date": "Tue, 15 Nov 2022 12:40:34 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09079936-f029-48f4-98f6-4846570506c4", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "9788e3b3-a90b-78da-c610-d391cc10ac3b", - "x-ms-routing-request-id": "WESTUS2:20220815T191243Z:09079936-f029-48f4-98f6-4846570506c4", + "x-ms-correlation-request-id": "8fccf532-da18-4288-8948-42b4fb4eb50d", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1986", + "x-ms-request-id": "954e05c1-0c57-cf9a-2308-cfbea1b30bb4", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124034Z:8fccf532-da18-4288-8948-42b4fb4eb50d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013", - "name": "profileName8013", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087", + "name": "profileName6087", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -351,8 +342,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8013", - "fqdn": "profilename8013.trafficmanager.net", + "relativeName": "profilename6087", + "fqdn": "profilename6087.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -366,7 +357,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -379,11 +370,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -396,7 +388,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -406,16 +399,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficmanagerprofiles/profileName8013?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficmanagerprofiles/profileName6087?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "46", "Content-Type": "application/json", - "traceparent": "00-78ed45134bf9f75c1fd9f686895d12ab-71ac66bcbde7a933-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b3f2fc269e716fb340f472a5ade6869e", + "traceparent": "00-6ebb9e8e361c3b5d4b692627de8c856e-15585013648a62a1-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2472cc8964cfaf3cdee9f850caf2afbb", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -427,22 +420,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:43 GMT", + "Date": "Tue, 15 Nov 2022 12:40:36 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b614050-7132-4ae8-bb59-416fdbfaecf2", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "b3f2fc26-9e71-6fb3-40f4-72a5ade6869e", - "x-ms-routing-request-id": "WESTUS2:20220815T191244Z:5b614050-7132-4ae8-bb59-416fdbfaecf2", + "x-ms-correlation-request-id": "01a916e1-c920-4f5b-9cdf-a436ff27f9fc", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "2472cc89-64cf-af3c-dee9-f850caf2afbb", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124037Z:01a916e1-c920-4f5b-9cdf-a436ff27f9fc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013", - "name": "profileName8013", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087", + "name": "profileName6087", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -452,8 +445,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8013", - "fqdn": "profilename8013.trafficmanager.net", + "relativeName": "profilename6087", + "fqdn": "profilename6087.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -467,7 +460,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -480,11 +473,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -497,7 +491,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -507,36 +502,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName6339/providers/Microsoft.Network/trafficmanagerprofiles/profileName8013?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4390/providers/Microsoft.Network/trafficmanagerprofiles/profileName6087?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a180d6bf99e457ba3512564d7019f9ad-e2969a2e3f815508-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bd44a11a9a553ebc84b037bf61781bb8", + "traceparent": "00-5fb6b3892f00c3626bc077d78f06619b-f8be9d5f57fd45bc-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "04a40cb7667749501b2745c803562267", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:43 GMT", + "Date": "Tue, 15 Nov 2022 12:40:37 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9569848-0c7a-4c4d-b738-3419a0cbe4c6", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "bd44a11a-9a55-3ebc-84b0-37bf61781bb8", - "x-ms-routing-request-id": "WESTUS2:20220815T191244Z:e9569848-0c7a-4c4d-b738-3419a0cbe4c6", + "x-ms-correlation-request-id": "f0ad328b-3023-46a9-8675-222b9de34a6f", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1985", + "x-ms-request-id": "04a40cb7-6677-4950-1b27-45c803562267", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124038Z:f0ad328b-3023-46a9-8675-222b9de34a6f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013", - "name": "profileName8013", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087", + "name": "profileName6087", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -546,8 +541,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8013", - "fqdn": "profilename8013.trafficmanager.net", + "relativeName": "profilename6087", + "fqdn": "profilename6087.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -561,7 +556,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -574,11 +569,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -591,7 +587,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -601,36 +598,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName6339/providers/Microsoft.Network/trafficmanagerprofiles/profileName8013?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4390/providers/Microsoft.Network/trafficmanagerprofiles/profileName6087?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5877e1f5e4f22a4fc7587ae5024522a5-a95733b5a33ddc2c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c4ea53ea0aa9154f2f1956173634cbe0", + "traceparent": "00-fa3e55e4d7229af83e56cadb9db5b5c4-a1cbabce37151877-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "386bac74526f5ca3c89fb66d134a0430", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:43 GMT", + "Date": "Tue, 15 Nov 2022 12:40:37 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c574cc14-b552-49f3-91e4-1b4957dd1697", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "c4ea53ea-0aa9-154f-2f19-56173634cbe0", - "x-ms-routing-request-id": "WESTUS2:20220815T191244Z:c574cc14-b552-49f3-91e4-1b4957dd1697", + "x-ms-correlation-request-id": "0884ad82-e404-4304-bb23-4fbe293ba005", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1984", + "x-ms-request-id": "386bac74-526f-5ca3-c89f-b66d134a0430", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124038Z:0884ad82-e404-4304-bb23-4fbe293ba005", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013", - "name": "profileName8013", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087", + "name": "profileName6087", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -640,8 +637,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8013", - "fqdn": "profilename8013.trafficmanager.net", + "relativeName": "profilename6087", + "fqdn": "profilename6087.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -655,7 +652,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -668,11 +665,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -685,7 +683,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -695,36 +694,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficmanagerprofiles/profileName8013?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficmanagerprofiles/profileName6087?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e72b441f7097ee98382eec1a933b8632-becc83a39449f1e6-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2b773589eecb8be63fb32ec166f30dc8", + "traceparent": "00-69d4a0bb94fb4afc9d4bcc659df43dfc-02aae198d39e5552-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "95071358070e223d7c2908a81f73ab88", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:44 GMT", + "Date": "Tue, 15 Nov 2022 12:40:38 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f6f3b29-ea91-4b22-83eb-143fdc6ef7cb", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "2b773589-eecb-8be6-3fb3-2ec166f30dc8", - "x-ms-routing-request-id": "WESTUS2:20220815T191244Z:4f6f3b29-ea91-4b22-83eb-143fdc6ef7cb", + "x-ms-correlation-request-id": "22b4b4ea-cca6-499b-a4a2-1fbc42126431", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1983", + "x-ms-request-id": "95071358-070e-223d-7c29-08a81f73ab88", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124039Z:22b4b4ea-cca6-499b-a4a2-1fbc42126431", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013", - "name": "profileName8013", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087", + "name": "profileName6087", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -734,8 +733,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8013", - "fqdn": "profilename8013.trafficmanager.net", + "relativeName": "profilename6087", + "fqdn": "profilename6087.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -749,7 +748,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -762,11 +761,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -779,7 +779,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -789,16 +790,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficmanagerprofiles/profileName8013?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficmanagerprofiles/profileName6087?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "27", "Content-Type": "application/json", - "traceparent": "00-e72b441f7097ee98382eec1a933b8632-91c2943baa1dc06d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "59babad9c2fb10f5512f8d3b43a50750", + "traceparent": "00-69d4a0bb94fb4afc9d4bcc659df43dfc-6e9982a1cee74e05-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1edb91c77787654c69483bd7afe236d1", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -808,22 +809,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:44 GMT", + "Date": "Tue, 15 Nov 2022 12:40:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "503b8f9f-8a3a-4737-ae98-a46cdde62387", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "59babad9-c2fb-10f5-512f-8d3b43a50750", - "x-ms-routing-request-id": "WESTUS2:20220815T191245Z:503b8f9f-8a3a-4737-ae98-a46cdde62387", + "x-ms-correlation-request-id": "c561ef92-eedb-4d36-bc27-4b06783bbd58", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4493", + "x-ms-request-id": "1edb91c7-7787-654c-6948-3bd7afe236d1", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124041Z:c561ef92-eedb-4d36-bc27-4b06783bbd58", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013", - "name": "profileName8013", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087", + "name": "profileName6087", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -831,8 +832,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8013", - "fqdn": "profilename8013.trafficmanager.net", + "relativeName": "profilename6087", + "fqdn": "profilename6087.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -846,7 +847,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -859,11 +860,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -876,7 +878,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -886,36 +889,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName6339/providers/Microsoft.Network/trafficmanagerprofiles/profileName8013?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4390/providers/Microsoft.Network/trafficmanagerprofiles/profileName6087?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-14a303d9cb1eb5dead9dc886e9562b97-c9e01c6522b7c0d4-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2c3657e5f000fcec6d5f84f5db8dae3b", + "traceparent": "00-c81a3fe0c37b719651cf276417a4ed42-956f12c16ba5a014-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f06f14228d4f6d596e48bb4549fb3c54", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:12:45 GMT", + "Date": "Tue, 15 Nov 2022 12:40:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81e53479-6087-4715-a56a-b639df03fbcb", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "2c3657e5-f000-fcec-6d5f-84f5db8dae3b", - "x-ms-routing-request-id": "WESTUS2:20220815T191245Z:81e53479-6087-4715-a56a-b639df03fbcb", + "x-ms-correlation-request-id": "e2b7cd93-3e9a-4c35-a136-dd70c91ca413", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1982", + "x-ms-request-id": "f06f1422-8d4f-6d59-6e48-bb4549fb3c54", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124042Z:e2b7cd93-3e9a-4c35-a136-dd70c91ca413", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013", - "name": "profileName8013", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087", + "name": "profileName6087", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -923,8 +926,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8013", - "fqdn": "profilename8013.trafficmanager.net", + "relativeName": "profilename6087", + "fqdn": "profilename6087.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -938,7 +941,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -951,11 +954,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname6339/providers/Microsoft.Network/trafficManagerProfiles/profileName8013/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4390/providers/Microsoft.Network/trafficManagerProfiles/profileName6087/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -968,7 +972,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -978,13 +983,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName6339/providers/Microsoft.Network/trafficmanagerprofiles/profileName8013?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4390/providers/Microsoft.Network/trafficmanagerprofiles/profileName6087?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7c3d8e0b7179c7e44066d99c60aa479a", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "82a62ef4e66ee1a9c6a22cc5cb66739a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -992,28 +997,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:12:47 GMT", + "Date": "Tue, 15 Nov 2022 12:40:46 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cdb67478-c150-4995-af7e-68d21d94c47f", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "7c3d8e0b-7179-c7e4-4066-d99c60aa479a", - "x-ms-routing-request-id": "WESTUS2:20220815T191248Z:cdb67478-c150-4995-af7e-68d21d94c47f", + "x-ms-correlation-request-id": "b3d02f73-6a78-4149-a058-a01edadcaf5b", + "x-ms-ratelimit-remaining-subscription-resource-requests": "496", + "x-ms-request-id": "82a62ef4-e66e-e1a9-c6a2-2cc5cb66739a", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124047Z:b3d02f73-6a78-4149-a058-a01edadcaf5b", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName6339?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName4390?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d56b6748c8ff0a7a0435104314f2f148-dcf28614d1a93bd8-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0fdcdeace1bde9c7cdbeec9c3d0034c3", + "traceparent": "00-d9b0ad161fd8ca14de4eb128a31cac57-8f037d396d2b918c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0b8536f3ba043a39376eaf3fbb061c6d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1021,28 +1026,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:12:48 GMT", + "Date": "Tue, 15 Nov 2022 12:40:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQzOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fce26ade-602b-499a-9412-9d7f6020fe3c", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "fce26ade-602b-499a-9412-9d7f6020fe3c", - "x-ms-routing-request-id": "WESTUS2:20220815T191249Z:fce26ade-602b-499a-9412-9d7f6020fe3c" + "x-ms-correlation-request-id": "c2a3c00a-15f4-47c2-808d-529c71ef0cef", + "x-ms-ratelimit-remaining-subscription-deletes": "14979", + "x-ms-request-id": "c2a3c00a-15f4-47c2-808d-529c71ef0cef", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124049Z:c2a3c00a-15f4-47c2-808d-529c71ef0cef" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQzOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d56b6748c8ff0a7a0435104314f2f148-3c5673ba80a69c59-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fd48ea179fb12a7ec754aebb84488a40", + "traceparent": "00-d9b0ad161fd8ca14de4eb128a31cac57-5005e37f7bf24f02-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "125221d531753950f56b4a00376926bf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1050,28 +1055,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:12:48 GMT", + "Date": "Tue, 15 Nov 2022 12:40:49 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQzOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5258fe8-85f7-4893-9be5-7e92e0ba53a8", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "a5258fe8-85f7-4893-9be5-7e92e0ba53a8", - "x-ms-routing-request-id": "WESTUS2:20220815T191249Z:a5258fe8-85f7-4893-9be5-7e92e0ba53a8" + "x-ms-correlation-request-id": "5812eafb-a5f3-434f-ae10-ce30654addb4", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "5812eafb-a5f3-434f-ae10-ce30654addb4", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124050Z:5812eafb-a5f3-434f-ae10-ce30654addb4" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQzOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d56b6748c8ff0a7a0435104314f2f148-c45b58fcfd18f5bd-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0e1b1532927b203207689d4ef52dd27d", + "traceparent": "00-d9b0ad161fd8ca14de4eb128a31cac57-0fbd3b0aa00326fb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e5babe86f1833f5dd349a076918cd9a3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1079,28 +1084,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:13:03 GMT", + "Date": "Tue, 15 Nov 2022 12:41:05 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQzOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83461b6a-f1e2-4106-9fe6-ca4719d11e57", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "83461b6a-f1e2-4106-9fe6-ca4719d11e57", - "x-ms-routing-request-id": "WESTUS2:20220815T191304Z:83461b6a-f1e2-4106-9fe6-ca4719d11e57" + "x-ms-correlation-request-id": "1edcfc28-94ef-4c5c-a1d9-0009592907ea", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "1edcfc28-94ef-4c5c-a1d9-0009592907ea", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124105Z:1edcfc28-94ef-4c5c-a1d9-0009592907ea" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQzOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d56b6748c8ff0a7a0435104314f2f148-ca4b81e95db5720e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "52842a2336b7e212d305ee12dc1bef29", + "traceparent": "00-d9b0ad161fd8ca14de4eb128a31cac57-d155039ea0353f58-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "996aa6cc09b4d9f796a98cd069630401", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1108,28 +1113,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:13:18 GMT", + "Date": "Tue, 15 Nov 2022 12:41:20 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQzOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c60d7036-a69c-4117-a6b0-936e1c39cc13", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "c60d7036-a69c-4117-a6b0-936e1c39cc13", - "x-ms-routing-request-id": "WESTUS2:20220815T191319Z:c60d7036-a69c-4117-a6b0-936e1c39cc13" + "x-ms-correlation-request-id": "e656edb5-c9a4-413f-98e1-bfb33a083524", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "e656edb5-c9a4-413f-98e1-bfb33a083524", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124121Z:e656edb5-c9a4-413f-98e1-bfb33a083524" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQzOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d56b6748c8ff0a7a0435104314f2f148-777ec15f1f7b3b7f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0167abe48c358447b828f548012f3599", + "traceparent": "00-d9b0ad161fd8ca14de4eb128a31cac57-3b7c0afedf545f2d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a2266967bcd9e384c4133e2b91daa868", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1137,28 +1142,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:13:33 GMT", + "Date": "Tue, 15 Nov 2022 12:41:36 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQzOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0649899-cf0c-476c-a6a3-d15eb1744232", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "a0649899-cf0c-476c-a6a3-d15eb1744232", - "x-ms-routing-request-id": "WESTUS2:20220815T191334Z:a0649899-cf0c-476c-a6a3-d15eb1744232" + "x-ms-correlation-request-id": "479eb1b0-2f57-4bca-a325-13a880d7db7e", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "479eb1b0-2f57-4bca-a325-13a880d7db7e", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124136Z:479eb1b0-2f57-4bca-a325-13a880d7db7e" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQzOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d56b6748c8ff0a7a0435104314f2f148-2c2b22cfc7de2225-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5997308237c4fb8902393a75a41f44ec", + "traceparent": "00-d9b0ad161fd8ca14de4eb128a31cac57-f4fc639b199817a5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9034a7928cff7c0bc7e04fda648dd570", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1166,28 +1171,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:13:49 GMT", + "Date": "Tue, 15 Nov 2022 12:41:51 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQzOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f6288ff-236c-45e0-8b93-b7b0737df933", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "3f6288ff-236c-45e0-8b93-b7b0737df933", - "x-ms-routing-request-id": "WESTUS2:20220815T191349Z:3f6288ff-236c-45e0-8b93-b7b0737df933" + "x-ms-correlation-request-id": "eeff58f4-9c58-4114-bd62-83c4926ef660", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "eeff58f4-9c58-4114-bd62-83c4926ef660", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124152Z:eeff58f4-9c58-4114-bd62-83c4926ef660" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTYzMzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQzOTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d56b6748c8ff0a7a0435104314f2f148-01356efa60d21cae-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "496a7379d1c59748e3ff9a8f40c9e0a4", + "traceparent": "00-d9b0ad161fd8ca14de4eb128a31cac57-054ed67761f54727-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "270e9e4537650fc92186d5a0cacb48bb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1195,23 +1200,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:14:04 GMT", + "Date": "Tue, 15 Nov 2022 12:42:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3342e063-39eb-4412-9d59-29eef4c69cdd", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "3342e063-39eb-4412-9d59-29eef4c69cdd", - "x-ms-routing-request-id": "WESTUS2:20220815T191405Z:3342e063-39eb-4412-9d59-29eef4c69cdd" + "x-ms-correlation-request-id": "99f54e49-4ad6-4a8b-a8b0-08afc8e1202c", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "99f54e49-4ad6-4a8b-a8b0-08afc8e1202c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124207Z:99f54e49-4ad6-4a8b-a8b0-08afc8e1202c" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1686794698", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "566191683", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(False)Async.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(False)Async.json index 0fac4da86734..c7c34bbe79dc 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(False)Async.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(False)Async.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-015ffe932e01c5bbb9f636434efda42a-40556e1b4b7d1798-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a3ea166715b60597d1712d426bf1a8d1", + "traceparent": "00-3950abbaca06688f5137e9440f95a608-bafa5420cfae7ef7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d4d6ac8bb15152c2e9c2713f5c077d3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:51 GMT", + "Date": "Tue, 15 Nov 2022 13:11:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05fb714c-0076-43ed-8cc7-284284a65446", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "05fb714c-0076-43ed-8cc7-284284a65446", - "x-ms-routing-request-id": "WESTUS2:20220815T191552Z:05fb714c-0076-43ed-8cc7-284284a65446" + "x-ms-correlation-request-id": "3bcbc47e-2d2f-4bde-a353-12b5afcc8ee7", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "3bcbc47e-2d2f-4bde-a353-12b5afcc8ee7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131111Z:3bcbc47e-2d2f-4bde-a353-12b5afcc8ee7" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName2377?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName9975?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-ac1a22fb53e62f568d736732c8157cab-7a7d2f85141496e4-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ea73bcc5d722475a9b31d3965e540d52", + "traceparent": "00-264315bb529b776b4cf856ef3917e5f7-f252d034838eda6e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "27094cc750a51838e0ce3f9bd59bb7c1", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:52 GMT", + "Date": "Tue, 15 Nov 2022 13:11:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47e1b05b-4135-4789-9b9a-58864df000da", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "47e1b05b-4135-4789-9b9a-58864df000da", - "x-ms-routing-request-id": "WESTUS2:20220815T191552Z:47e1b05b-4135-4789-9b9a-58864df000da" + "x-ms-correlation-request-id": "8f91a877-0db7-4d33-8597-1545cab055a2", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "8f91a877-0db7-4d33-8597-1545cab055a2", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131113Z:8f91a877-0db7-4d33-8597-1545cab055a2" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2377", - "name": "resourceGroupName2377", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9975", + "name": "resourceGroupName9975", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -97,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2377/providers/Microsoft.Network/trafficmanagerprofiles/profileName3927?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9975/providers/Microsoft.Network/trafficmanagerprofiles/profileName3771?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-558a9eba95dc48f2e656c935b3d04177-24c84575d09f3671-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d3eed33c4c818c0d6f541fef93537d2d", + "traceparent": "00-aa110f155f470f70583d1b8645f05365-533ba9791b09d0c3-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1501cc3500c1ca5becbe6820e3f42d74", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName3927", + "name": "profileName3771", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName3927" + "relativeName": "profileName3771" }, "monitorConfig": { "protocol": "HTTP", @@ -145,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:53 GMT", + "Date": "Tue, 15 Nov 2022 13:11:17 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1a4de36-9574-4251-9303-ab5746f9e966", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10789", - "x-ms-request-id": "d3eed33c-4c81-8c0d-6f54-1fef93537d2d", - "x-ms-routing-request-id": "WESTUS2:20220815T191553Z:e1a4de36-9574-4251-9303-ab5746f9e966", + "x-ms-correlation-request-id": "015e5f65-8554-40a9-bcc6-6f2543dd05c0", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "1501cc35-00c1-ca5b-ecbe-6820e3f42d74", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131118Z:015e5f65-8554-40a9-bcc6-6f2543dd05c0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927", - "name": "profileName3927", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771", + "name": "profileName3771", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3927", - "fqdn": "profilename3927.trafficmanager.net", + "relativeName": "profilename3771", + "fqdn": "profilename3771.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -182,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -195,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -212,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -222,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2377/providers/Microsoft.Network/trafficmanagerprofiles/profileName3927?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9975/providers/Microsoft.Network/trafficmanagerprofiles/profileName3771?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-97ddc65bc3e4198807a9348672d6a4ba-ce5a4845773d34b4-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "27d747d349603f458f5c1be4c46f731d", + "traceparent": "00-41aff73db29af5cecf2139da653b4211-00556ecc39643b8c-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "dcd37d6d66555ce59ebb71e383b61426", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:53 GMT", + "Date": "Tue, 15 Nov 2022 13:11:18 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc2e0889-e6da-4eb7-9285-553fe7545170", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10781", - "x-ms-request-id": "27d747d3-4960-3f45-8f5c-1be4c46f731d", - "x-ms-routing-request-id": "WESTUS2:20220815T191554Z:dc2e0889-e6da-4eb7-9285-553fe7545170", + "x-ms-correlation-request-id": "de098dd8-89a8-4ca0-a371-85246acb3348", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1984", + "x-ms-request-id": "dcd37d6d-6655-5ce5-9ebb-71e383b61426", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131118Z:de098dd8-89a8-4ca0-a371-85246acb3348", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927", - "name": "profileName3927", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771", + "name": "profileName3771", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -259,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3927", - "fqdn": "profilename3927.trafficmanager.net", + "relativeName": "profilename3771", + "fqdn": "profilename3771.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -274,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -287,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -304,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -314,36 +305,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficmanagerprofiles/profileName3927?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficmanagerprofiles/profileName3771?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6486380a11f42367e30e677cc4922e54-f17eebe444e5011d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1d2eef20feba785faee67bcdb86bb348", + "traceparent": "00-ada7f7d2a0e6e16d1870b2e48fb914c1-b89133b9cbd7410b-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3a267db9297bc718f13f3ae6e71835eb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:53 GMT", + "Date": "Tue, 15 Nov 2022 13:11:18 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43ffa6fd-df4f-42be-bce2-7af4d8a7b830", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10780", - "x-ms-request-id": "1d2eef20-feba-785f-aee6-7bcdb86bb348", - "x-ms-routing-request-id": "WESTUS2:20220815T191554Z:43ffa6fd-df4f-42be-bce2-7af4d8a7b830", + "x-ms-correlation-request-id": "d94d3996-eedf-426c-83aa-ddcd46e6f558", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1983", + "x-ms-request-id": "3a267db9-297b-c718-f13f-3ae6e71835eb", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131119Z:d94d3996-eedf-426c-83aa-ddcd46e6f558", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927", - "name": "profileName3927", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771", + "name": "profileName3771", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -351,8 +342,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3927", - "fqdn": "profilename3927.trafficmanager.net", + "relativeName": "profilename3771", + "fqdn": "profilename3771.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -366,7 +357,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -379,11 +370,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -396,7 +388,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -406,16 +399,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficmanagerprofiles/profileName3927?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficmanagerprofiles/profileName3771?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "46", "Content-Type": "application/json", - "traceparent": "00-6486380a11f42367e30e677cc4922e54-fb0defd31f59b805-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "16c2a6b4e57df3f28eaf43253129c8ff", + "traceparent": "00-ada7f7d2a0e6e16d1870b2e48fb914c1-ac947b78c3841c6c-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "572ecaa0dbc8cf6be6a577058f774635", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -427,22 +420,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:54 GMT", + "Date": "Tue, 15 Nov 2022 13:11:22 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "feeb593c-5084-4b31-97a9-1045e9911ab7", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10788", - "x-ms-request-id": "16c2a6b4-e57d-f3f2-8eaf-43253129c8ff", - "x-ms-routing-request-id": "WESTUS2:20220815T191554Z:feeb593c-5084-4b31-97a9-1045e9911ab7", + "x-ms-correlation-request-id": "dadee670-b884-4e3a-b352-7266a139fe10", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4493", + "x-ms-request-id": "572ecaa0-dbc8-cf6b-e6a5-77058f774635", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131122Z:dadee670-b884-4e3a-b352-7266a139fe10", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927", - "name": "profileName3927", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771", + "name": "profileName3771", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -452,8 +445,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3927", - "fqdn": "profilename3927.trafficmanager.net", + "relativeName": "profilename3771", + "fqdn": "profilename3771.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -467,7 +460,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -480,11 +473,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -497,7 +491,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -507,36 +502,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2377/providers/Microsoft.Network/trafficmanagerprofiles/profileName3927?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9975/providers/Microsoft.Network/trafficmanagerprofiles/profileName3771?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e82dd3d95ab57b8eda12481be25b22ed-721d87b6f5455a6c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a4cf02e15f24d472e75e7879cd778624", + "traceparent": "00-576527b134f9f6431bd0e3b12812e963-fc30cdbfb8f0fa18-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "656641aaf3cd43f8640ceb162bfe7485", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:54 GMT", + "Date": "Tue, 15 Nov 2022 13:11:22 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5df68d5e-5bdb-426e-b2d1-6f0324a5db84", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10779", - "x-ms-request-id": "a4cf02e1-5f24-d472-e75e-7879cd778624", - "x-ms-routing-request-id": "WESTUS2:20220815T191555Z:5df68d5e-5bdb-426e-b2d1-6f0324a5db84", + "x-ms-correlation-request-id": "16573409-9612-4fb5-a526-3b01fcdfce13", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1982", + "x-ms-request-id": "656641aa-f3cd-43f8-640c-eb162bfe7485", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131122Z:16573409-9612-4fb5-a526-3b01fcdfce13", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927", - "name": "profileName3927", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771", + "name": "profileName3771", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -546,8 +541,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3927", - "fqdn": "profilename3927.trafficmanager.net", + "relativeName": "profilename3771", + "fqdn": "profilename3771.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -561,7 +556,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -574,11 +569,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -591,7 +587,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -601,36 +598,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2377/providers/Microsoft.Network/trafficmanagerprofiles/profileName3927?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9975/providers/Microsoft.Network/trafficmanagerprofiles/profileName3771?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ad3c98d1a57322af0b98c19c5858e7ba-efc341d6ab03015b-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1d2fd2a85cad3a9ffd3b8f0abb3a4785", + "traceparent": "00-fcda8ab5f0a8c969b00dbce3260e5c4a-dcc50a97e615fa53-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b8428585bc88de5e115753d6b1133779", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:54 GMT", + "Date": "Tue, 15 Nov 2022 13:11:23 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89371db9-5f75-488b-a7ac-cb361c6c490e", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10778", - "x-ms-request-id": "1d2fd2a8-5cad-3a9f-fd3b-8f0abb3a4785", - "x-ms-routing-request-id": "WESTUS2:20220815T191555Z:89371db9-5f75-488b-a7ac-cb361c6c490e", + "x-ms-correlation-request-id": "215f2b3d-a7e2-49d6-98c3-bd5835ab70fa", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1981", + "x-ms-request-id": "b8428585-bc88-de5e-1157-53d6b1133779", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131123Z:215f2b3d-a7e2-49d6-98c3-bd5835ab70fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927", - "name": "profileName3927", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771", + "name": "profileName3771", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -640,8 +637,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3927", - "fqdn": "profilename3927.trafficmanager.net", + "relativeName": "profilename3771", + "fqdn": "profilename3771.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -655,7 +652,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -668,11 +665,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -685,7 +683,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -695,36 +694,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficmanagerprofiles/profileName3927?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficmanagerprofiles/profileName3771?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-51304a75964e52270a5da79f915a69ce-e84bd63dad577f53-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b6ec7b1e0f9c542433ed2f1f6c782517", + "traceparent": "00-9c11a3e9cacc14b9218e5e7bee4c1da5-f0282818d25fa004-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a53c05f8d0b1ad1ed2eaf3bbf055a3e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:55 GMT", + "Date": "Tue, 15 Nov 2022 13:11:23 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f5f45ac-4294-466a-a0e6-a6bde7ecb702", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10777", - "x-ms-request-id": "b6ec7b1e-0f9c-5424-33ed-2f1f6c782517", - "x-ms-routing-request-id": "WESTUS2:20220815T191555Z:5f5f45ac-4294-466a-a0e6-a6bde7ecb702", + "x-ms-correlation-request-id": "2941b2c5-7eb2-4f79-b284-70b58c178b07", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1980", + "x-ms-request-id": "a53c05f8-d0b1-ad1e-d2ea-f3bbf055a3e7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131124Z:2941b2c5-7eb2-4f79-b284-70b58c178b07", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927", - "name": "profileName3927", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771", + "name": "profileName3771", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -734,8 +733,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3927", - "fqdn": "profilename3927.trafficmanager.net", + "relativeName": "profilename3771", + "fqdn": "profilename3771.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -749,7 +748,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -762,11 +761,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -779,7 +779,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -789,16 +790,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficmanagerprofiles/profileName3927?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficmanagerprofiles/profileName3771?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "27", "Content-Type": "application/json", - "traceparent": "00-51304a75964e52270a5da79f915a69ce-58819ac3833442a3-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5e7c1f28aaf984526294a6e8d06819ac", + "traceparent": "00-9c11a3e9cacc14b9218e5e7bee4c1da5-a8d5b73d3375ccc7-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "097ff1318d35edade38854759f229151", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -808,22 +809,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:55 GMT", + "Date": "Tue, 15 Nov 2022 13:11:25 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5bdbfb12-9754-4754-896f-55816ce47121", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10787", - "x-ms-request-id": "5e7c1f28-aaf9-8452-6294-a6e8d06819ac", - "x-ms-routing-request-id": "WESTUS2:20220815T191556Z:5bdbfb12-9754-4754-896f-55816ce47121", + "x-ms-correlation-request-id": "a1372214-e0de-4d12-a73b-b5054a9cff2f", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4492", + "x-ms-request-id": "097ff131-8d35-edad-e388-54759f229151", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131125Z:a1372214-e0de-4d12-a73b-b5054a9cff2f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927", - "name": "profileName3927", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771", + "name": "profileName3771", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -831,8 +832,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3927", - "fqdn": "profilename3927.trafficmanager.net", + "relativeName": "profilename3771", + "fqdn": "profilename3771.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -846,7 +847,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -859,11 +860,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -876,7 +878,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -886,36 +889,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2377/providers/Microsoft.Network/trafficmanagerprofiles/profileName3927?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9975/providers/Microsoft.Network/trafficmanagerprofiles/profileName3771?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-60036280c7b0734b80086f8a07c564cc-6b84028a7bea3326-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "515bf316d08a9887addaeabf2d80ce85", + "traceparent": "00-f6249a8b222fbdd5cf541087956a1d60-f91c339961e23b0f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "261e71d4cec2b5d36795e69dc9a2eebc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:15:56 GMT", + "Date": "Tue, 15 Nov 2022 13:11:26 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a883104-f775-4b3c-a8cc-448de6322966", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10776", - "x-ms-request-id": "515bf316-d08a-9887-adda-eabf2d80ce85", - "x-ms-routing-request-id": "WESTUS2:20220815T191556Z:5a883104-f775-4b3c-a8cc-448de6322966", + "x-ms-correlation-request-id": "bd34d560-93c9-45ab-86c7-528d1a67eda0", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1979", + "x-ms-request-id": "261e71d4-cec2-b5d3-6795-e69dc9a2eebc", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131126Z:bd34d560-93c9-45ab-86c7-528d1a67eda0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927", - "name": "profileName3927", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771", + "name": "profileName3771", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -923,8 +926,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3927", - "fqdn": "profilename3927.trafficmanager.net", + "relativeName": "profilename3771", + "fqdn": "profilename3771.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -938,7 +941,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -951,11 +954,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2377/providers/Microsoft.Network/trafficManagerProfiles/profileName3927/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname9975/providers/Microsoft.Network/trafficManagerProfiles/profileName3771/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -968,7 +972,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -978,13 +983,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2377/providers/Microsoft.Network/trafficmanagerprofiles/profileName3927?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName9975/providers/Microsoft.Network/trafficmanagerprofiles/profileName3771?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9be27716e9bd748c29675408693b84cb", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bfa46bb42e946b44574fc2297ca80daf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -992,28 +997,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:15:57 GMT", + "Date": "Tue, 15 Nov 2022 13:11:31 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8b48812-aa5d-4d44-bae4-66e4b11d9fed", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "9be27716-e9bd-748c-2967-5408693b84cb", - "x-ms-routing-request-id": "WESTUS2:20220815T191557Z:c8b48812-aa5d-4d44-bae4-66e4b11d9fed", + "x-ms-correlation-request-id": "9d3a6669-ffc7-4289-b3c1-94efe0f3212c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "495", + "x-ms-request-id": "bfa46bb4-2e94-6b44-574f-c2297ca80daf", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131131Z:9d3a6669-ffc7-4289-b3c1-94efe0f3212c", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName2377?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName9975?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-52c158bad6ed33882efa497803c72d88-907116f9e53f0fef-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "790882d3d31c578c97e4b01ebf9357e1", + "traceparent": "00-9321d3aaa4428accd4a23305489c7a64-f154c2288538a2e8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7ee7a2587d3662251ec9a29fa60f2440", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1021,28 +1026,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:15:57 GMT", + "Date": "Tue, 15 Nov 2022 13:11:33 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ce56124-bf8f-4782-a0d4-23758ca4259a", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-request-id": "4ce56124-bf8f-4782-a0d4-23758ca4259a", - "x-ms-routing-request-id": "WESTUS2:20220815T191558Z:4ce56124-bf8f-4782-a0d4-23758ca4259a" + "x-ms-correlation-request-id": "528854d4-b5a9-4d80-ab39-04ee03ef9f0d", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-request-id": "528854d4-b5a9-4d80-ab39-04ee03ef9f0d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131133Z:528854d4-b5a9-4d80-ab39-04ee03ef9f0d" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-52c158bad6ed33882efa497803c72d88-31084bc49c3e13fd-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "aaeb1f5654774268eb8a03d9386eb496", + "traceparent": "00-9321d3aaa4428accd4a23305489c7a64-c26f0f8b1396b00c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "274537876fbb36854542a1ca8ca4c447", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1050,28 +1055,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:15:58 GMT", + "Date": "Tue, 15 Nov 2022 13:11:33 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da3a3f26-fcd0-4c99-81c7-5430071cf39f", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "da3a3f26-fcd0-4c99-81c7-5430071cf39f", - "x-ms-routing-request-id": "WESTUS2:20220815T191558Z:da3a3f26-fcd0-4c99-81c7-5430071cf39f" + "x-ms-correlation-request-id": "eb78695c-05e5-40a5-8bc0-25ad0757a2b8", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "eb78695c-05e5-40a5-8bc0-25ad0757a2b8", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131133Z:eb78695c-05e5-40a5-8bc0-25ad0757a2b8" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-52c158bad6ed33882efa497803c72d88-8d82719e8c4eac95-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4842720f2c69554593db1235aa68db18", + "traceparent": "00-9321d3aaa4428accd4a23305489c7a64-112936abe04df06d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e48e812bdae68631e5415083aeb25574", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1079,28 +1084,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:16:13 GMT", + "Date": "Tue, 15 Nov 2022 13:11:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c75d3e01-2f8a-4c4d-9889-01f601fd1616", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "c75d3e01-2f8a-4c4d-9889-01f601fd1616", - "x-ms-routing-request-id": "WESTUS2:20220815T191613Z:c75d3e01-2f8a-4c4d-9889-01f601fd1616" + "x-ms-correlation-request-id": "628b64e7-9584-4cfa-834b-02be851225a9", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "628b64e7-9584-4cfa-834b-02be851225a9", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131149Z:628b64e7-9584-4cfa-834b-02be851225a9" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-52c158bad6ed33882efa497803c72d88-94f9003c4a5db59c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a0c73eb4aca77169b88f6cfb7a15f4f8", + "traceparent": "00-9321d3aaa4428accd4a23305489c7a64-8053ca70e72b4969-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6f18e38ffcca2a85118bed3b30f21989", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1108,28 +1113,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:16:28 GMT", + "Date": "Tue, 15 Nov 2022 13:12:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29d3abf6-d570-4571-848c-747f7e91d630", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "29d3abf6-d570-4571-848c-747f7e91d630", - "x-ms-routing-request-id": "WESTUS2:20220815T191628Z:29d3abf6-d570-4571-848c-747f7e91d630" + "x-ms-correlation-request-id": "5ba2b38b-48eb-46d4-a0f5-0a9676277d83", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "5ba2b38b-48eb-46d4-a0f5-0a9676277d83", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131204Z:5ba2b38b-48eb-46d4-a0f5-0a9676277d83" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-52c158bad6ed33882efa497803c72d88-b3f9343e38091413-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "09139233e73c2908d995179c42329782", + "traceparent": "00-9321d3aaa4428accd4a23305489c7a64-b7df20eee03c0926-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8b4887ef551badd805be427a1f028893", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1137,28 +1142,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:16:43 GMT", + "Date": "Tue, 15 Nov 2022 13:12:20 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6247d9c9-2b0c-4902-b3fb-6efa498a5d13", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "6247d9c9-2b0c-4902-b3fb-6efa498a5d13", - "x-ms-routing-request-id": "WESTUS2:20220815T191644Z:6247d9c9-2b0c-4902-b3fb-6efa498a5d13" + "x-ms-correlation-request-id": "dca43305-6c44-44d1-9e9a-bacfa62e262c", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "dca43305-6c44-44d1-9e9a-bacfa62e262c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131220Z:dca43305-6c44-44d1-9e9a-bacfa62e262c" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-52c158bad6ed33882efa497803c72d88-a69e6af6fcc1fe26-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fa24eaaf13a662ee09d18fd9c04ada7d", + "traceparent": "00-9321d3aaa4428accd4a23305489c7a64-3d64854f255215e0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a93b2ded558c2e7dfb64d25becf656f3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1166,28 +1171,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:16:58 GMT", + "Date": "Tue, 15 Nov 2022 13:12:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee4f1d5f-a35d-49e9-948b-4e778954c8ca", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "ee4f1d5f-a35d-49e9-948b-4e778954c8ca", - "x-ms-routing-request-id": "WESTUS2:20220815T191659Z:ee4f1d5f-a35d-49e9-948b-4e778954c8ca" + "x-ms-correlation-request-id": "5b4c869d-fb68-43be-906c-0d8bb7e39814", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "5b4c869d-fb68-43be-906c-0d8bb7e39814", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131235Z:5b4c869d-fb68-43be-906c-0d8bb7e39814" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTIzNzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-52c158bad6ed33882efa497803c72d88-89b83eb5006bff10-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "18021ae7d155cddb359ec61195cd2f86", + "traceparent": "00-9321d3aaa4428accd4a23305489c7a64-6b0db54a519a166a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2794c727c96a3a580a6a690cba0b0b0f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1195,23 +1200,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:17:14 GMT", + "Date": "Tue, 15 Nov 2022 13:12:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed93ba6a-09ef-4bd7-950d-4c8995584363", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "ed93ba6a-09ef-4bd7-950d-4c8995584363", - "x-ms-routing-request-id": "WESTUS2:20220815T191714Z:ed93ba6a-09ef-4bd7-950d-4c8995584363" + "x-ms-correlation-request-id": "a42f2a36-97ba-4194-8da6-3a71efe13af6", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "a42f2a36-97ba-4194-8da6-3a71efe13af6", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131251Z:a42f2a36-97ba-4194-8da6-3a71efe13af6" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "523218407", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "961767981", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(True).json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(True).json index f3a7ecce15c3..564e9bc923a0 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(True).json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(True).json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-032f0c8f33f9464ca8c7c27b3176d743-87a5fea845a1894a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "45e149d414dadeebfd8732bdcd53be78", + "traceparent": "00-2095fb6af33464b44c1e3643d231d6d3-5355ba37a7176b94-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "53b6c1cfc3c82b67c4af076523bb6103", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:16 GMT", + "Date": "Tue, 15 Nov 2022 12:43:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8310f19-e5db-42b7-ad5d-e2adfe4d264c", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "a8310f19-e5db-42b7-ad5d-e2adfe4d264c", - "x-ms-routing-request-id": "WESTUS2:20220803T050216Z:a8310f19-e5db-42b7-ad5d-e2adfe4d264c" + "x-ms-correlation-request-id": "72cdbd91-d999-46ee-8787-0f3687ed8267", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "72cdbd91-d999-46ee-8787-0f3687ed8267", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124349Z:72cdbd91-d999-46ee-8787-0f3687ed8267" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName3712?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6443?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-a976a2dcaaffc544a2b10befc42270df-49edfc47f4ca6941-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0b9c97d55b958d08841c78bc44e8ced5", + "traceparent": "00-2a112d87501fbd098dcf2a4c9fe4bbe6-1b255d130d43fce7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "911ff23ebae61be4f5b7e158326f3692", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:17 GMT", + "Date": "Tue, 15 Nov 2022 12:43:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9dfd50e2-49f1-4dee-b1c3-8b6d5ab61e0e", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "9dfd50e2-49f1-4dee-b1c3-8b6d5ab61e0e", - "x-ms-routing-request-id": "WESTUS2:20220803T050217Z:9dfd50e2-49f1-4dee-b1c3-8b6d5ab61e0e" + "x-ms-correlation-request-id": "59482dba-c396-4126-9216-e704f8fa2829", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "59482dba-c396-4126-9216-e704f8fa2829", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124354Z:59482dba-c396-4126-9216-e704f8fa2829" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3712", - "name": "resourceGroupName3712", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6443", + "name": "resourceGroupName6443", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3712/providers/Microsoft.Network/trafficmanagerprofiles/profileName6358?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6443/providers/Microsoft.Network/trafficmanagerprofiles/profileName6452?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-3eecf58ca54e6843b6c1b0807c6d098c-7eea88403b05ea46-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "861d4f020bab1065beb4d030ded4e281", + "traceparent": "00-592c20b3a97b099232538ebc88a58bf8-3856f89fd1d4586a-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5aedb0fb6f05c68a52fde2d9ed911e8d", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName6358", + "name": "profileName6452", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName6358" + "relativeName": "profileName6452" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:18 GMT", + "Date": "Tue, 15 Nov 2022 12:44:04 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f2c9c78-08e2-48c3-9b72-e0bbb720c09c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "861d4f02-0bab-1065-beb4-d030ded4e281", - "x-ms-routing-request-id": "WESTUS2:20220803T050219Z:6f2c9c78-08e2-48c3-9b72-e0bbb720c09c", + "x-ms-correlation-request-id": "5ce73ccd-9b16-4f64-9d22-d6d5597e6ad0", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4499", + "x-ms-request-id": "5aedb0fb-6f05-c68a-52fd-e2d9ed911e8d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124404Z:5ce73ccd-9b16-4f64-9d22-d6d5597e6ad0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358", - "name": "profileName6358", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452", + "name": "profileName6452", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename6358", - "fqdn": "profilename6358.trafficmanager.net", + "relativeName": "profilename6452", + "fqdn": "profilename6452.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3712/providers/Microsoft.Network/trafficmanagerprofiles/profileName6358?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6443/providers/Microsoft.Network/trafficmanagerprofiles/profileName6452?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-dea3dcedda277f4082e007367ee07fbf-63a6a5d99e7cd24d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5c9060fdb83fee3ed9b856f77321b99e", + "traceparent": "00-aa5f02bb7fe01d699daf6890d38c005c-dd571b7ae24bdc9b-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5797a695d6ee07e8d238d20b85d39140", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:19 GMT", + "Date": "Tue, 15 Nov 2022 12:44:05 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d214294-c0cc-44a1-976f-53cc85c7b124", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "5c9060fd-b83f-ee3e-d9b8-56f77321b99e", - "x-ms-routing-request-id": "WESTUS2:20220803T050219Z:7d214294-c0cc-44a1-976f-53cc85c7b124", + "x-ms-correlation-request-id": "74bd99f0-4ec3-4656-a2b2-f2921055c994", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1999", + "x-ms-request-id": "5797a695-d6ee-07e8-d238-d20b85d39140", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124405Z:74bd99f0-4ec3-4656-a2b2-f2921055c994", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358", - "name": "profileName6358", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452", + "name": "profileName6452", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename6358", - "fqdn": "profilename6358.trafficmanager.net", + "relativeName": "profilename6452", + "fqdn": "profilename6452.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,14 +305,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d95270ddd8233540a635e601bcc29d98-7c28a9378ee78f4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "03cbe764f1a0c916318c4de08bd8aeaf", + "traceparent": "00-e76978f4f37b1bebc5a1cf253f16b4c1-e473307a7e4858ab-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0b27d2d1a973cea567583ee8d70b2d64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -325,34 +321,34 @@ "Cache-Control": "no-cache", "Content-Length": "274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:19 GMT", + "Date": "Tue, 15 Nov 2022 12:44:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da7da10a-8f68-4887-91fb-9155bb39e803", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "da7da10a-8f68-4887-91fb-9155bb39e803", - "x-ms-routing-request-id": "WESTUS2:20220803T050219Z:da7da10a-8f68-4887-91fb-9155bb39e803" + "x-ms-correlation-request-id": "6a95b347-8a42-43cf-94b4-cda5d0bb3e2f", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "6a95b347-8a42-43cf-94b4-cda5d0bb3e2f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124405Z:6a95b347-8a42-43cf-94b4-cda5d0bb3e2f" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficmanagerprofiles/profileName6358/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficmanagerprofiles/profileName6452/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "45", "Content-Type": "application/json", - "traceparent": "00-d95270ddd8233540a635e601bcc29d98-377da9054b34f842-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e3bef63971574996112fadf3b46d9c9c", + "traceparent": "00-e76978f4f37b1bebc5a1cf253f16b4c1-5246dc6a3d8a72db-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8cc25499ded725a4c7e687cd9c7f407f", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -367,18 +363,18 @@ "Cache-Control": "no-cache", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:20 GMT", + "Date": "Tue, 15 Nov 2022 12:44:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f989249-8985-4623-a57c-83f9fea8c071", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "2f989249-8985-4623-a57c-83f9fea8c071", - "x-ms-routing-request-id": "WESTUS2:20220803T050220Z:2f989249-8985-4623-a57c-83f9fea8c071" + "x-ms-correlation-request-id": "b4dd1a2d-87ef-4b37-8c5d-350484a3ac1b", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "b4dd1a2d-87ef-4b37-8c5d-350484a3ac1b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124408Z:b4dd1a2d-87ef-4b37-8c5d-350484a3ac1b" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficmanagerprofiles/profileName6358/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficmanagerprofiles/profileName6452/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -389,36 +385,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficmanagerprofiles/profileName6358?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficmanagerprofiles/profileName6452?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d95270ddd8233540a635e601bcc29d98-8a17887028aa1147-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f6cb31fadf090ce149c62ab26b5d6200", + "traceparent": "00-e76978f4f37b1bebc5a1cf253f16b4c1-d564b0042922ad5a-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1b07a26c1369ec1900c9ef9598002fc7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:20 GMT", + "Date": "Tue, 15 Nov 2022 12:44:09 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c1bd3d8-b2a4-4cd8-9531-1ec431d2ba49", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "f6cb31fa-df09-0ce1-49c6-2ab26b5d6200", - "x-ms-routing-request-id": "WESTUS2:20220803T050220Z:2c1bd3d8-b2a4-4cd8-9531-1ec431d2ba49", + "x-ms-correlation-request-id": "39b0a5d9-4a45-4b6e-99be-11f3634d7eb5", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1998", + "x-ms-request-id": "1b07a26c-1369-ec19-00c9-ef9598002fc7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124409Z:39b0a5d9-4a45-4b6e-99be-11f3634d7eb5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358", - "name": "profileName6358", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452", + "name": "profileName6452", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -428,8 +424,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename6358", - "fqdn": "profilename6358.trafficmanager.net", + "relativeName": "profilename6452", + "fqdn": "profilename6452.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -443,7 +439,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -456,11 +452,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -473,7 +470,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -483,36 +481,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3712/providers/Microsoft.Network/trafficmanagerprofiles/profileName6358?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6443/providers/Microsoft.Network/trafficmanagerprofiles/profileName6452?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d3526edfa3d5de4f84714f6496cbb49d-7e10f2c8c654b94e-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7cbda709d662f2465081f270442315c4", + "traceparent": "00-e415bd56533d871cef894a6b73737324-ea5469e74995be3f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "31726e0a0410f2692e02448c21d832e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:20 GMT", + "Date": "Tue, 15 Nov 2022 12:44:09 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c76d70a2-b2f6-4ac0-b80a-7f8a60912f80", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "7cbda709-d662-f246-5081-f270442315c4", - "x-ms-routing-request-id": "WESTUS2:20220803T050220Z:c76d70a2-b2f6-4ac0-b80a-7f8a60912f80", + "x-ms-correlation-request-id": "22756aeb-46ad-43d5-a709-fb97f3f7454e", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1997", + "x-ms-request-id": "31726e0a-0410-f269-2e02-448c21d832e8", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124409Z:22756aeb-46ad-43d5-a709-fb97f3f7454e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358", - "name": "profileName6358", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452", + "name": "profileName6452", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -522,8 +520,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename6358", - "fqdn": "profilename6358.trafficmanager.net", + "relativeName": "profilename6452", + "fqdn": "profilename6452.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -537,7 +535,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -550,11 +548,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -567,7 +566,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -577,36 +577,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3712/providers/Microsoft.Network/trafficmanagerprofiles/profileName6358?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6443/providers/Microsoft.Network/trafficmanagerprofiles/profileName6452?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2d0a2b7c3a12c849a68d89d6113bfe53-40a77ed3b458ef4d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5ae6b0efb80d5aa515b29a9147e3deb3", + "traceparent": "00-f6cae65ba5a39d7842c97d31b1f6e234-c3e0dd8c3f5434a5-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "357bbe17120386fa3ad68b0eef0e8dc7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:20 GMT", + "Date": "Tue, 15 Nov 2022 12:44:10 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a7d3fcf-3cab-4359-a20e-55dc55388cd9", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "5ae6b0ef-b80d-5aa5-15b2-9a9147e3deb3", - "x-ms-routing-request-id": "WESTUS2:20220803T050220Z:5a7d3fcf-3cab-4359-a20e-55dc55388cd9", + "x-ms-correlation-request-id": "44348006-17fc-4d59-b5be-1b3aa69ea893", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1996", + "x-ms-request-id": "357bbe17-1203-86fa-3ad6-8b0eef0e8dc7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124410Z:44348006-17fc-4d59-b5be-1b3aa69ea893", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358", - "name": "profileName6358", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452", + "name": "profileName6452", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -616,8 +616,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename6358", - "fqdn": "profilename6358.trafficmanager.net", + "relativeName": "profilename6452", + "fqdn": "profilename6452.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -631,7 +631,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -644,11 +644,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -661,7 +662,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -671,14 +673,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-58e8bb65e24eb14e81b51e6661b4b8a9-2527aff3972d8040-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0deaaccd20af243aead8a588ed70c726", + "traceparent": "00-5960ae798078eff7e6e4667d15e50a37-e24cc0fe5bc7d031-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2ec2c0b60f0d676f3914ec66ce8ccb28", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -687,18 +689,18 @@ "Cache-Control": "no-cache", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:20 GMT", + "Date": "Tue, 15 Nov 2022 12:44:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e64cdec4-d820-4f39-a0d3-358321b3eeb7", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "e64cdec4-d820-4f39-a0d3-358321b3eeb7", - "x-ms-routing-request-id": "WESTUS2:20220803T050220Z:e64cdec4-d820-4f39-a0d3-358321b3eeb7" + "x-ms-correlation-request-id": "3c2098dd-bf80-4ee9-81ce-6cebe9eca08b", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "3c2098dd-bf80-4ee9-81ce-6cebe9eca08b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124410Z:3c2098dd-bf80-4ee9-81ce-6cebe9eca08b" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficmanagerprofiles/profileName6358/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficmanagerprofiles/profileName6452/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -709,16 +711,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-58e8bb65e24eb14e81b51e6661b4b8a9-26d34bf1f48b7746-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "bac366b1087750f3016366b03bb5ab6d", + "traceparent": "00-5960ae798078eff7e6e4667d15e50a37-1f1d83db4b1be945-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d97d0796fa84f7c473ebf73a795a0320", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -731,18 +733,18 @@ "Cache-Control": "no-cache", "Content-Length": "283", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:21 GMT", + "Date": "Tue, 15 Nov 2022 12:44:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab6c4b53-2eef-4e63-9d47-87ae5e73e555", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "ab6c4b53-2eef-4e63-9d47-87ae5e73e555", - "x-ms-routing-request-id": "WESTUS2:20220803T050221Z:ab6c4b53-2eef-4e63-9d47-87ae5e73e555" + "x-ms-correlation-request-id": "eb71abb2-8e0b-4d18-8201-a34570edb68e", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "eb71abb2-8e0b-4d18-8201-a34570edb68e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124412Z:eb71abb2-8e0b-4d18-8201-a34570edb68e" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficmanagerprofiles/profileName6358/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficmanagerprofiles/profileName6452/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -751,36 +753,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficmanagerprofiles/profileName6358?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficmanagerprofiles/profileName6452?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-58e8bb65e24eb14e81b51e6661b4b8a9-1e872d7f7fef984a-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "97a33ea20739cf1476c16f34121d6da5", + "traceparent": "00-5960ae798078eff7e6e4667d15e50a37-85fb4ace83200734-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "60d57d75031508db4e14fbee2693b7ad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:21 GMT", + "Date": "Tue, 15 Nov 2022 12:44:13 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac428f44-b938-4af0-8801-bb51f8d23845", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10790", - "x-ms-request-id": "97a33ea2-0739-cf14-76c1-6f34121d6da5", - "x-ms-routing-request-id": "WESTUS2:20220803T050221Z:ac428f44-b938-4af0-8801-bb51f8d23845", + "x-ms-correlation-request-id": "07a42b3a-554a-439e-8f91-f51140adf3b1", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1995", + "x-ms-request-id": "60d57d75-0315-08db-4e14-fbee2693b7ad", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124413Z:07a42b3a-554a-439e-8f91-f51140adf3b1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358", - "name": "profileName6358", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452", + "name": "profileName6452", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -788,8 +790,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename6358", - "fqdn": "profilename6358.trafficmanager.net", + "relativeName": "profilename6452", + "fqdn": "profilename6452.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -803,7 +805,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -816,11 +818,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -833,7 +836,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -843,36 +847,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3712/providers/Microsoft.Network/trafficmanagerprofiles/profileName6358?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6443/providers/Microsoft.Network/trafficmanagerprofiles/profileName6452?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e42264519e0bdb4d90e9728e3fc22d71-7c6b82d632401847-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e1e073eb2420c43bb9990b4cb989e834", + "traceparent": "00-605bf8ad98a9c872bd63111d27b39ac1-a559da7b744ba8c2-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e777630ab390bc42fccbbb211735eede", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:21 GMT", + "Date": "Tue, 15 Nov 2022 12:44:13 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "771eec0a-f71c-4259-881c-1847231b2365", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10789", - "x-ms-request-id": "e1e073eb-2420-c43b-b999-0b4cb989e834", - "x-ms-routing-request-id": "WESTUS2:20220803T050221Z:771eec0a-f71c-4259-881c-1847231b2365", + "x-ms-correlation-request-id": "35c04ca1-f962-4096-a3b7-ab0efcc2508b", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1994", + "x-ms-request-id": "e777630a-b390-bc42-fccb-bb211735eede", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124414Z:35c04ca1-f962-4096-a3b7-ab0efcc2508b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358", - "name": "profileName6358", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452", + "name": "profileName6452", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -880,8 +884,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename6358", - "fqdn": "profilename6358.trafficmanager.net", + "relativeName": "profilename6452", + "fqdn": "profilename6452.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -895,7 +899,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -908,11 +912,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname3712/providers/Microsoft.Network/trafficManagerProfiles/profileName6358/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6443/providers/Microsoft.Network/trafficManagerProfiles/profileName6452/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -925,7 +930,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -935,13 +941,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName3712/providers/Microsoft.Network/trafficmanagerprofiles/profileName6358?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6443/providers/Microsoft.Network/trafficmanagerprofiles/profileName6452?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "aee5382d2fcca9ec51f443b698be3ee4", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "51f1cc116ab793132b748a70fed5d1df", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -949,28 +955,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:02:23 GMT", + "Date": "Tue, 15 Nov 2022 12:44:20 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6679dd38-10ac-40f3-a70b-244b002104e3", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "aee5382d-2fcc-a9ec-51f4-43b698be3ee4", - "x-ms-routing-request-id": "WESTUS2:20220803T050223Z:6679dd38-10ac-40f3-a70b-244b002104e3", + "x-ms-correlation-request-id": "e88e5cde-899a-4143-9768-52b15ef78a50", + "x-ms-ratelimit-remaining-subscription-resource-requests": "499", + "x-ms-request-id": "51f1cc11-6ab7-9313-2b74-8a70fed5d1df", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124420Z:e88e5cde-899a-4143-9768-52b15ef78a50", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName3712?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6443?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3bfc3c435ff35c42aec77ab749eae9a5-e9050ce9dff26947-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c8c4c1f5c9d57e4c02dfdea0fcc715ec", + "traceparent": "00-c3be387661661493f6b717b689672a99-5d7b2bc9dba13940-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "162f49341be3c18f3a19644a48b9f019", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:44:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cbe41973-e981-4d1c-a125-0d98f1f13a56", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "cbe41973-e981-4d1c-a125-0d98f1f13a56", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124422Z:cbe41973-e981-4d1c-a125-0d98f1f13a56" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c3be387661661493f6b717b689672a99-f290e9e45e248493-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ceecdbf9d805f5fb3c2f179d05c84b71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:44:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8fdf6805-7bd0-4e4e-b860-c747663acf3a", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "8fdf6805-7bd0-4e4e-b860-c747663acf3a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124422Z:8fdf6805-7bd0-4e4e-b860-c747663acf3a" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c3be387661661493f6b717b689672a99-c25ca4e49e761ac8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e14a718377f8ce3d538fc6ff60749867", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:44:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "71d0d8f8-41e3-4d0f-b76a-a61becab46f7", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "71d0d8f8-41e3-4d0f-b76a-a61becab46f7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124438Z:71d0d8f8-41e3-4d0f-b76a-a61becab46f7" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c3be387661661493f6b717b689672a99-fd6d433bc37df6ee-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6c503e5b22cc4c1321e81d724e589a87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:44:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8fc63075-0aef-47d9-8475-4c8fac679c99", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "8fc63075-0aef-47d9-8475-4c8fac679c99", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124453Z:8fc63075-0aef-47d9-8475-4c8fac679c99" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-c3be387661661493f6b717b689672a99-2f8cc6fcaedad9f4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b7974998dc87812e9d1e7b7612fb94c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -978,28 +1100,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:02:24 GMT", + "Date": "Tue, 15 Nov 2022 12:45:09 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM3MTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "afdd6f1b-9381-42c0-a436-318b32adfa31", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "afdd6f1b-9381-42c0-a436-318b32adfa31", - "x-ms-routing-request-id": "WESTUS2:20220803T050224Z:afdd6f1b-9381-42c0-a436-318b32adfa31" + "x-ms-correlation-request-id": "d6a1c671-7ded-466d-9f05-1ebdd2311020", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "d6a1c671-7ded-466d-9f05-1ebdd2311020", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124509Z:d6a1c671-7ded-466d-9f05-1ebdd2311020" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM3MTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3bfc3c435ff35c42aec77ab749eae9a5-7d167d63484bd042-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f856275a20c5635feb67abed514cad8a", + "traceparent": "00-c3be387661661493f6b717b689672a99-f30cfb082a14b439-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c742af96de7761a45dfebf0f59ca7ffa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1007,28 +1129,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:02:24 GMT", + "Date": "Tue, 15 Nov 2022 12:45:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM3MTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f7d86ac-922a-4a33-b81b-2abccdfd89e5", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "1f7d86ac-922a-4a33-b81b-2abccdfd89e5", - "x-ms-routing-request-id": "WESTUS2:20220803T050224Z:1f7d86ac-922a-4a33-b81b-2abccdfd89e5" + "x-ms-correlation-request-id": "bdc0b469-eda2-4057-ac07-a3323e4be3b6", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "bdc0b469-eda2-4057-ac07-a3323e4be3b6", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124524Z:bdc0b469-eda2-4057-ac07-a3323e4be3b6" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM3MTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3bfc3c435ff35c42aec77ab749eae9a5-f19968627fe9e94f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5ede56de64b736ade809419e3a219d7d", + "traceparent": "00-c3be387661661493f6b717b689672a99-83490a3d829ec3b5-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "16673ff4e0dc7edf0fcfceaea79c3a26", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1036,23 +1158,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:02:39 GMT", + "Date": "Tue, 15 Nov 2022 12:45:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32be1f3c-bf44-4a84-a449-62992fa0ed2c", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "32be1f3c-bf44-4a84-a449-62992fa0ed2c", - "x-ms-routing-request-id": "WESTUS2:20220803T050239Z:32be1f3c-bf44-4a84-a449-62992fa0ed2c" + "x-ms-correlation-request-id": "287a3cd6-537a-44bd-86e2-4a27a1e203b1", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "287a3cd6-537a-44bd-86e2-4a27a1e203b1", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124540Z:287a3cd6-537a-44bd-86e2-4a27a1e203b1" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1618947882", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "792829089", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(True)Async.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(True)Async.json index d9eb5154df72..9439cb7cd170 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(True)Async.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(True)Async.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3bfd7898ee44384485f9d6976cd45706-11c2ffd7188e6444-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "cba5f1c8ac79c45c24b6a00df9b3602f", + "traceparent": "00-3200b75fd6116f948054b0a7cb7b43d6-c07bd8193c382959-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5bec064f72b22c55eb9fc6b0d996d6bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:08 GMT", + "Date": "Tue, 15 Nov 2022 13:12:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26d27753-9af7-46a0-8b2f-cf48e774629c", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "26d27753-9af7-46a0-8b2f-cf48e774629c", - "x-ms-routing-request-id": "WESTUS2:20220803T051109Z:26d27753-9af7-46a0-8b2f-cf48e774629c" + "x-ms-correlation-request-id": "913c921b-8c9a-45bc-9636-62957e8a8c7e", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "913c921b-8c9a-45bc-9636-62957e8a8c7e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131252Z:913c921b-8c9a-45bc-9636-62957e8a8c7e" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName9937?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName5273?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-6ead08cd0bb89d4d82aaea504cba5d21-deac5d2e1731f948-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b3983e5633a3ba2a0e93280c9631ba04", + "traceparent": "00-042a70b5537828e7d888a2d088c1cf56-782669a470648e18-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a59206d61f784cd99cf7b74395324ee9", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:09 GMT", + "Date": "Tue, 15 Nov 2022 13:12:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2d660a1-e299-4e8b-82b5-4d9299a60872", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "a2d660a1-e299-4e8b-82b5-4d9299a60872", - "x-ms-routing-request-id": "WESTUS2:20220803T051110Z:a2d660a1-e299-4e8b-82b5-4d9299a60872" + "x-ms-correlation-request-id": "c7edcbf4-a8ad-41b0-b796-7ea010d6c82e", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "c7edcbf4-a8ad-41b0-b796-7ea010d6c82e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131253Z:c7edcbf4-a8ad-41b0-b796-7ea010d6c82e" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName9937", - "name": "resourceGroupName9937", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5273", + "name": "resourceGroupName5273", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName9937/providers/Microsoft.Network/trafficmanagerprofiles/profileName2380?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5273/providers/Microsoft.Network/trafficmanagerprofiles/profileName6796?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-ac2dc235c72657409252d5c1d53cc2d1-89618940403ca845-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5922c8cfff17f4fe9b6af379d1812f0f", + "traceparent": "00-d15bc8a340b658f40e4609ff8e59e4bf-7ecb8a4e69b42549-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "79719c16c3b36842a69bb7165758e680", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName2380", + "name": "profileName6796", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName2380" + "relativeName": "profileName6796" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:10 GMT", + "Date": "Tue, 15 Nov 2022 13:12:58 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a86a4bc1-9d79-4c1e-a16e-65d8760f0abb", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "5922c8cf-ff17-f4fe-9b6a-f379d1812f0f", - "x-ms-routing-request-id": "WESTUS2:20220803T051111Z:a86a4bc1-9d79-4c1e-a16e-65d8760f0abb", + "x-ms-correlation-request-id": "7ca043d4-18de-42e0-a942-4f5bc1569697", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4491", + "x-ms-request-id": "79719c16-c3b3-6842-a69b-b7165758e680", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131259Z:7ca043d4-18de-42e0-a942-4f5bc1569697", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380", - "name": "profileName2380", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796", + "name": "profileName6796", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2380", - "fqdn": "profilename2380.trafficmanager.net", + "relativeName": "profilename6796", + "fqdn": "profilename6796.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName9937/providers/Microsoft.Network/trafficmanagerprofiles/profileName2380?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5273/providers/Microsoft.Network/trafficmanagerprofiles/profileName6796?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-aa51f59d110d2b4ebe196b2d53311fb1-3569cd6a26e4bb4c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "452f3faa069bbd247a106b1933b78d85", + "traceparent": "00-b31aa1f033745fbdb03877e9066494fd-1842bfd9e0becf2f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "96429d142f5ee6d7130f167a9ee9556d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:10 GMT", + "Date": "Tue, 15 Nov 2022 13:12:58 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5fb157c0-bac4-40be-a8b6-35f651e542cc", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "452f3faa-069b-bd24-7a10-6b1933b78d85", - "x-ms-routing-request-id": "WESTUS2:20220803T051111Z:5fb157c0-bac4-40be-a8b6-35f651e542cc", + "x-ms-correlation-request-id": "4f8cc597-a0a3-41d1-a1c6-256e313a4ef6", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1978", + "x-ms-request-id": "96429d14-2f5e-e6d7-130f-167a9ee9556d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131259Z:4f8cc597-a0a3-41d1-a1c6-256e313a4ef6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380", - "name": "profileName2380", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796", + "name": "profileName6796", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2380", - "fqdn": "profilename2380.trafficmanager.net", + "relativeName": "profilename6796", + "fqdn": "profilename6796.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,14 +305,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c86e632045af9341bef170e9ba94caf6-01d8968061a40349-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ea2908e5d63d57493fa417393fb1e98c", + "traceparent": "00-834753fc790372e20fc26da22ec00c0a-f6f821cf05efc211-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fac2c778436512f9c32afedc68c3f443", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -325,34 +321,34 @@ "Cache-Control": "no-cache", "Content-Length": "274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:10 GMT", + "Date": "Tue, 15 Nov 2022 13:12:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5135a73-5b2e-4bd1-a358-16f8ad011497", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "b5135a73-5b2e-4bd1-a358-16f8ad011497", - "x-ms-routing-request-id": "WESTUS2:20220803T051111Z:b5135a73-5b2e-4bd1-a358-16f8ad011497" + "x-ms-correlation-request-id": "d0f359a2-5291-4480-ab33-b577de69a930", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "d0f359a2-5291-4480-ab33-b577de69a930", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131300Z:d0f359a2-5291-4480-ab33-b577de69a930" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficmanagerprofiles/profileName2380/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficmanagerprofiles/profileName6796/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "45", "Content-Type": "application/json", - "traceparent": "00-c86e632045af9341bef170e9ba94caf6-efe9df1a03d4f940-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "576219637501c968a365de0694e5c0e3", + "traceparent": "00-834753fc790372e20fc26da22ec00c0a-d0cd605fd0906204-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f82e3610b7f0e78ac58a65a4adc8c9bd", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -367,18 +363,18 @@ "Cache-Control": "no-cache", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:11 GMT", + "Date": "Tue, 15 Nov 2022 13:13:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e8aec33-f3ca-4845-90e9-1e9a3cedbec2", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "0e8aec33-f3ca-4845-90e9-1e9a3cedbec2", - "x-ms-routing-request-id": "WESTUS2:20220803T051112Z:0e8aec33-f3ca-4845-90e9-1e9a3cedbec2" + "x-ms-correlation-request-id": "f2761995-582d-48f7-8c6a-21ac29703c49", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "f2761995-582d-48f7-8c6a-21ac29703c49", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131303Z:f2761995-582d-48f7-8c6a-21ac29703c49" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficmanagerprofiles/profileName2380/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficmanagerprofiles/profileName6796/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -389,36 +385,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficmanagerprofiles/profileName2380?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficmanagerprofiles/profileName6796?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c86e632045af9341bef170e9ba94caf6-d0778702c727d543-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c8936edd4557d3d2f5d805f6eeeb7dc9", + "traceparent": "00-834753fc790372e20fc26da22ec00c0a-6c6ac6d046589ddd-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "909d4a45eb95d11ba32fd33330fa7e50", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:12 GMT", + "Date": "Tue, 15 Nov 2022 13:13:03 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "576c8dff-c240-4c56-8ad3-695cbd3383e9", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "c8936edd-4557-d3d2-f5d8-05f6eeeb7dc9", - "x-ms-routing-request-id": "WESTUS2:20220803T051112Z:576c8dff-c240-4c56-8ad3-695cbd3383e9", + "x-ms-correlation-request-id": "dbb30977-3359-4302-957b-decf02636c63", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1977", + "x-ms-request-id": "909d4a45-eb95-d11b-a32f-d33330fa7e50", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131303Z:dbb30977-3359-4302-957b-decf02636c63", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380", - "name": "profileName2380", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796", + "name": "profileName6796", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -428,8 +424,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2380", - "fqdn": "profilename2380.trafficmanager.net", + "relativeName": "profilename6796", + "fqdn": "profilename6796.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -443,7 +439,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -456,11 +452,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -473,7 +470,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -483,36 +481,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName9937/providers/Microsoft.Network/trafficmanagerprofiles/profileName2380?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5273/providers/Microsoft.Network/trafficmanagerprofiles/profileName6796?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b08fc83fc654ec49a85d59dc16668cd1-532c7f1c87e81047-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "1ab5de2736546f839f6046d8f742c35a", + "traceparent": "00-d293ba7e97c1b663b91049a7dbe56cf9-3bb9fa7a4afccee7-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6869d21b5dbac17c3cda35dadd5565fb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:12 GMT", + "Date": "Tue, 15 Nov 2022 13:13:04 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d25ca8bf-8201-43ef-aff8-dcbe1559effc", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "1ab5de27-3654-6f83-9f60-46d8f742c35a", - "x-ms-routing-request-id": "WESTUS2:20220803T051112Z:d25ca8bf-8201-43ef-aff8-dcbe1559effc", + "x-ms-correlation-request-id": "2f8c7712-d3bb-4af3-ab2a-f5383982e9e9", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1976", + "x-ms-request-id": "6869d21b-5dba-c17c-3cda-35dadd5565fb", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131304Z:2f8c7712-d3bb-4af3-ab2a-f5383982e9e9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380", - "name": "profileName2380", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796", + "name": "profileName6796", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -522,8 +520,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2380", - "fqdn": "profilename2380.trafficmanager.net", + "relativeName": "profilename6796", + "fqdn": "profilename6796.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -537,7 +535,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -550,11 +548,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -567,7 +566,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -577,36 +577,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName9937/providers/Microsoft.Network/trafficmanagerprofiles/profileName2380?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5273/providers/Microsoft.Network/trafficmanagerprofiles/profileName6796?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-522d1a7bfe49d14aafe4560dc8b14e0b-1b86409bce6c9f42-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d15b33e4201d1e34478e61297072dbb8", + "traceparent": "00-2feb7037b25bfe88693eaf610847eef0-d46254e6e206aadf-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1d974161642525ad1a5d54c0e456b6ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:12 GMT", + "Date": "Tue, 15 Nov 2022 13:13:04 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd210d85-9fd1-4585-81c1-b311077b0248", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "d15b33e4-201d-1e34-478e-61297072dbb8", - "x-ms-routing-request-id": "WESTUS2:20220803T051113Z:dd210d85-9fd1-4585-81c1-b311077b0248", + "x-ms-correlation-request-id": "bbcb5c14-ea53-4d5b-900c-24956928db55", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1975", + "x-ms-request-id": "1d974161-6425-25ad-1a5d-54c0e456b6ca", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131304Z:bbcb5c14-ea53-4d5b-900c-24956928db55", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380", - "name": "profileName2380", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796", + "name": "profileName6796", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -616,8 +616,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2380", - "fqdn": "profilename2380.trafficmanager.net", + "relativeName": "profilename6796", + "fqdn": "profilename6796.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -631,7 +631,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -644,11 +644,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -661,7 +662,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -671,14 +673,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cc11a16d34dc1e40814fe99e0d103ad3-b6f883460b22a146-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b5df15e7a62fa78fea2428f7fef9dcb3", + "traceparent": "00-ea8e5ab95ab750664da027b02e43a604-c4ad2b66541bcdc8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "da88150b605ee802cddc53bab640f34d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -687,18 +689,18 @@ "Cache-Control": "no-cache", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:12 GMT", + "Date": "Tue, 15 Nov 2022 13:13:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96b71222-5110-4134-833c-23029960d916", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "96b71222-5110-4134-833c-23029960d916", - "x-ms-routing-request-id": "WESTUS2:20220803T051113Z:96b71222-5110-4134-833c-23029960d916" + "x-ms-correlation-request-id": "fca0379b-3c1a-425e-8d25-2ee29267a609", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "fca0379b-3c1a-425e-8d25-2ee29267a609", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131305Z:fca0379b-3c1a-425e-8d25-2ee29267a609" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficmanagerprofiles/profileName2380/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficmanagerprofiles/profileName6796/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -709,16 +711,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-cc11a16d34dc1e40814fe99e0d103ad3-143c16f636671245-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ba12aa15ac8f07aca996d3c5d45aff2d", + "traceparent": "00-ea8e5ab95ab750664da027b02e43a604-c04e1b29ccab8213-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "efd2d7ca6063b72a25444d5c09bcdce5", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -731,18 +733,18 @@ "Cache-Control": "no-cache", "Content-Length": "283", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:13 GMT", + "Date": "Tue, 15 Nov 2022 13:13:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14f7db05-fa5c-4ead-aa07-ee6c6edfa10b", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "14f7db05-fa5c-4ead-aa07-ee6c6edfa10b", - "x-ms-routing-request-id": "WESTUS2:20220803T051113Z:14f7db05-fa5c-4ead-aa07-ee6c6edfa10b" + "x-ms-correlation-request-id": "f0d8fd75-38ea-4472-a761-f2292281bd65", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "f0d8fd75-38ea-4472-a761-f2292281bd65", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131307Z:f0d8fd75-38ea-4472-a761-f2292281bd65" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficmanagerprofiles/profileName2380/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficmanagerprofiles/profileName6796/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -751,36 +753,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficmanagerprofiles/profileName2380?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficmanagerprofiles/profileName6796?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cc11a16d34dc1e40814fe99e0d103ad3-0c55bff1a6bcb948-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e2f18e840d633d2ba4b4e6f9f83d204d", + "traceparent": "00-ea8e5ab95ab750664da027b02e43a604-7ef6693d2e4e6308-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c7ce6a248acc009c3eae504910f26ed9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:13 GMT", + "Date": "Tue, 15 Nov 2022 13:13:07 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ab58eca-1f95-4085-8f0e-e5dc2544725d", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "e2f18e84-0d63-3d2b-a4b4-e6f9f83d204d", - "x-ms-routing-request-id": "WESTUS2:20220803T051113Z:4ab58eca-1f95-4085-8f0e-e5dc2544725d", + "x-ms-correlation-request-id": "0d27abc2-3f40-447d-bcb5-305cf770747f", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1974", + "x-ms-request-id": "c7ce6a24-8acc-009c-3eae-504910f26ed9", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131307Z:0d27abc2-3f40-447d-bcb5-305cf770747f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380", - "name": "profileName2380", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796", + "name": "profileName6796", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -788,8 +790,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2380", - "fqdn": "profilename2380.trafficmanager.net", + "relativeName": "profilename6796", + "fqdn": "profilename6796.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -803,7 +805,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -816,11 +818,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -833,7 +836,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -843,36 +847,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName9937/providers/Microsoft.Network/trafficmanagerprofiles/profileName2380?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5273/providers/Microsoft.Network/trafficmanagerprofiles/profileName6796?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2878d627084bb640a780d6967c5656c7-6b88ba9599c2d844-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c614aeb2215f3a2869d80b98d3c9d390", + "traceparent": "00-95bb84aa845f971492a6e51c09a9be84-1e85331b0288b8cc-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0cf60669c784ab67ead1b51912a6df11", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:13 GMT", + "Date": "Tue, 15 Nov 2022 13:13:08 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3c4bcbd-25cd-4b3c-b8c9-ecfe3fc035ea", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "c614aeb2-215f-3a28-69d8-0b98d3c9d390", - "x-ms-routing-request-id": "WESTUS2:20220803T051114Z:b3c4bcbd-25cd-4b3c-b8c9-ecfe3fc035ea", + "x-ms-correlation-request-id": "8ec4172c-5f59-4b94-ac90-1f159e14b12f", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1973", + "x-ms-request-id": "0cf60669-c784-ab67-ead1-b51912a6df11", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131308Z:8ec4172c-5f59-4b94-ac90-1f159e14b12f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380", - "name": "profileName2380", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796", + "name": "profileName6796", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -880,8 +884,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename2380", - "fqdn": "profilename2380.trafficmanager.net", + "relativeName": "profilename6796", + "fqdn": "profilename6796.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -895,7 +899,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -908,11 +912,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9937/providers/Microsoft.Network/trafficManagerProfiles/profileName2380/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname5273/providers/Microsoft.Network/trafficManagerProfiles/profileName6796/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -925,7 +930,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -935,13 +941,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName9937/providers/Microsoft.Network/trafficmanagerprofiles/profileName2380?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName5273/providers/Microsoft.Network/trafficmanagerprofiles/profileName6796?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6f72fa24fa08074f7ed515dbc6b30e6c", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4c966eff2c713f803ad2b0b410e1a632", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -949,28 +955,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:11:15 GMT", + "Date": "Tue, 15 Nov 2022 13:13:13 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7299da49-1b14-4d41-b7eb-45074f3a2a9a", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "6f72fa24-fa08-074f-7ed5-15dbc6b30e6c", - "x-ms-routing-request-id": "WESTUS2:20220803T051115Z:7299da49-1b14-4d41-b7eb-45074f3a2a9a", + "x-ms-correlation-request-id": "e773ff01-d60d-4808-86d7-afa0cb867a9d", + "x-ms-ratelimit-remaining-subscription-resource-requests": "494", + "x-ms-request-id": "4c966eff-2c71-3f80-3ad2-b0b410e1a632", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131313Z:e773ff01-d60d-4808-86d7-afa0cb867a9d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName9937?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName5273?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-badcd2c5d63f5043ac5ca1eb19d991d9-6c8cb193c8888047-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "25138676394663ce66b6798b02926adb", + "traceparent": "00-d8ab45d75ef45dee7b3e975b5621a6d8-e1b2753ec91685cb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "02f273d5d0c55c610223dcfbd583ed98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:13:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyNzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7b1b44f2-1221-421d-827b-d111acafd619", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-request-id": "7b1b44f2-1221-421d-827b-d111acafd619", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131315Z:7b1b44f2-1221-421d-827b-d111acafd619" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyNzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-d8ab45d75ef45dee7b3e975b5621a6d8-46f4f7299f150c6f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9f43832adcb32f4b0c3a494d4f8569b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:13:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyNzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fd3d6ffc-030f-46ab-8e1c-b9f14f8e3bcf", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "fd3d6ffc-030f-46ab-8e1c-b9f14f8e3bcf", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131316Z:fd3d6ffc-030f-46ab-8e1c-b9f14f8e3bcf" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyNzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-d8ab45d75ef45dee7b3e975b5621a6d8-8f6736b08b30a378-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d2e518e40497b3d60bb47d0ffeaf4550", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:13:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyNzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a0945dd9-b2ea-4d39-aca4-4edb017383ca", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "a0945dd9-b2ea-4d39-aca4-4edb017383ca", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131331Z:a0945dd9-b2ea-4d39-aca4-4edb017383ca" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyNzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-d8ab45d75ef45dee7b3e975b5621a6d8-ac56fcaa2d287444-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "52d0d3894e3ff3e4f21a9421d91aeeff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:13:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyNzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dd92359b-2b79-481e-a7c3-380c5d216f31", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "dd92359b-2b79-481e-a7c3-380c5d216f31", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131347Z:dd92359b-2b79-481e-a7c3-380c5d216f31" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyNzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-d8ab45d75ef45dee7b3e975b5621a6d8-562e8cfd752145a4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fecd194dc7cd2572ad9093fe5e3c305d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -978,28 +1100,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:11:16 GMT", + "Date": "Tue, 15 Nov 2022 13:14:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5MzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyNzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "972276d4-91f9-4830-a21f-01d68ac10221", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-request-id": "972276d4-91f9-4830-a21f-01d68ac10221", - "x-ms-routing-request-id": "WESTUS2:20220803T051116Z:972276d4-91f9-4830-a21f-01d68ac10221" + "x-ms-correlation-request-id": "0d743a07-4523-4ff5-aef5-46295bd6210a", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "0d743a07-4523-4ff5-aef5-46295bd6210a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131402Z:0d743a07-4523-4ff5-aef5-46295bd6210a" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5MzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyNzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-badcd2c5d63f5043ac5ca1eb19d991d9-8759aab4efa3cf48-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4d229ec9adb6eb492c0f095281c304ec", + "traceparent": "00-d8ab45d75ef45dee7b3e975b5621a6d8-8fde7b22bb223be2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7cc4f9f417b5967834f1df7c70b4d9f1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1007,28 +1129,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:11:16 GMT", + "Date": "Tue, 15 Nov 2022 13:14:17 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5MzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyNzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72b13e89-7162-4c83-a85b-ddec05575a3f", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "72b13e89-7162-4c83-a85b-ddec05575a3f", - "x-ms-routing-request-id": "WESTUS2:20220803T051116Z:72b13e89-7162-4c83-a85b-ddec05575a3f" + "x-ms-correlation-request-id": "35dc54e6-6200-4daa-a53f-2589b56b33fa", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "35dc54e6-6200-4daa-a53f-2589b56b33fa", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131418Z:35dc54e6-6200-4daa-a53f-2589b56b33fa" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk5MzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTUyNzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-badcd2c5d63f5043ac5ca1eb19d991d9-d59592ec45c7ff43-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "70fa3a6b11dec6a2425ac639f2445819", + "traceparent": "00-d8ab45d75ef45dee7b3e975b5621a6d8-d5627262bdcc41bc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e5c27dc647e1c18260aaa5aebbe594b6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1036,23 +1158,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:11:31 GMT", + "Date": "Tue, 15 Nov 2022 13:14:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d89a356-5fb8-4632-8c5f-4976d798bdbe", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "2d89a356-5fb8-4632-8c5f-4976d798bdbe", - "x-ms-routing-request-id": "WESTUS2:20220803T051132Z:2d89a356-5fb8-4632-8c5f-4976d798bdbe" + "x-ms-correlation-request-id": "f9884497-9321-4490-9f8e-0208e070fbfc", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "f9884497-9321-4490-9f8e-0208e070fbfc", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131433Z:f9884497-9321-4490-9f8e-0208e070fbfc" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1646910594", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "2109008019", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(null).json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(null).json index fe883262b6a0..69502f578de9 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(null).json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(null).json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0daab9cee698f23f255cfbbc8d6d01bf-41b1b3dd113a7e3a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6130dda95436097bfa10d235cc78820b", + "traceparent": "00-a734ebb250b47296b7511bfde5839bfe-21ed0e820fd84e0a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a561e382b134674956f8adece74d1c7b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:56 GMT", + "Date": "Tue, 15 Nov 2022 12:38:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1706903-78e0-4aa6-a0a6-1bdc77bd1b63", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "a1706903-78e0-4aa6-a0a6-1bdc77bd1b63", - "x-ms-routing-request-id": "WESTUS2:20220815T184957Z:a1706903-78e0-4aa6-a0a6-1bdc77bd1b63" + "x-ms-correlation-request-id": "37b17ac0-53bb-4631-8553-7782819a98de", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "37b17ac0-53bb-4631-8553-7782819a98de", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123848Z:37b17ac0-53bb-4631-8553-7782819a98de" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName3475?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName3010?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-2d13e16229829f2ceaa3448f6cbbf0cf-e57730b1411a5b90-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9ce6b8a3f56674abe1e9bc32b863bff2", + "traceparent": "00-17885c0d1643d51568da18bf8e6a946d-502b1298b4f5844a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2b7c4c728e6825e5ea5ebcf645ef0c9c", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:57 GMT", + "Date": "Tue, 15 Nov 2022 12:38:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9fc31a23-b179-4c18-8561-cdb4284432c9", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "9fc31a23-b179-4c18-8561-cdb4284432c9", - "x-ms-routing-request-id": "WESTUS2:20220815T184958Z:9fc31a23-b179-4c18-8561-cdb4284432c9" + "x-ms-correlation-request-id": "ff4db604-2411-44c5-8779-6e3273557877", + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-request-id": "ff4db604-2411-44c5-8779-6e3273557877", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123849Z:ff4db604-2411-44c5-8779-6e3273557877" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName3475", - "name": "resourceGroupName3475", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010", + "name": "resourceGroupName3010", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -97,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName3475/providers/Microsoft.Network/trafficmanagerprofiles/profileName3531?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName3566?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-5821125add2be677e49777b5411e1c10-c8bdbda357cb9875-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ce322b60b76975b50a69140a5cac422e", + "traceparent": "00-f6ad84cfe7e4cf5b638f66ed4a65cf66-5861f63fae07942f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f833214426c36f75bfd37b7ba9cdedde", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName3531", + "name": "profileName3566", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName3531" + "relativeName": "profileName3566" }, "monitorConfig": { "protocol": "HTTP", @@ -145,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:58 GMT", + "Date": "Tue, 15 Nov 2022 12:38:52 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "725d4fd9-653d-41f7-a3ca-a208c4bddf96", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "ce322b60-b769-75b5-0a69-140a5cac422e", - "x-ms-routing-request-id": "WESTUS2:20220815T184959Z:725d4fd9-653d-41f7-a3ca-a208c4bddf96", + "x-ms-correlation-request-id": "8285a2ee-fdbc-47ca-87bb-9b3a95643895", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4492", + "x-ms-request-id": "f8332144-26c3-6f75-bfd3-7b7ba9cdedde", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123853Z:8285a2ee-fdbc-47ca-87bb-9b3a95643895", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531", - "name": "profileName3531", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566", + "name": "profileName3566", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3531", - "fqdn": "profilename3531.trafficmanager.net", + "relativeName": "profilename3566", + "fqdn": "profilename3566.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -182,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -195,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -212,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -222,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName3475/providers/Microsoft.Network/trafficmanagerprofiles/profileName3531?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName3566?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0a81d004c14df7f55821356d94609867-b123522ffbe6743e-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "50e77f4f78a0e74385ec556bbed642ad", + "traceparent": "00-62f38c4a0a13eb632d66189292355d0e-5d4e5a91df67ac0e-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b19cee1021f5551a7b804a528d711008", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:58 GMT", + "Date": "Tue, 15 Nov 2022 12:38:53 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7897f768-e8d0-4bdf-a2e6-b5c063f3186a", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "50e77f4f-78a0-e743-85ec-556bbed642ad", - "x-ms-routing-request-id": "WESTUS2:20220815T184959Z:7897f768-e8d0-4bdf-a2e6-b5c063f3186a", + "x-ms-correlation-request-id": "6ecc122d-962f-42ac-941d-a77a3b538b7e", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1989", + "x-ms-request-id": "b19cee10-21f5-551a-7b80-4a528d711008", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123853Z:6ecc122d-962f-42ac-941d-a77a3b538b7e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531", - "name": "profileName3531", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566", + "name": "profileName3566", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -259,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3531", - "fqdn": "profilename3531.trafficmanager.net", + "relativeName": "profilename3566", + "fqdn": "profilename3566.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -274,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -287,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -304,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -314,34 +305,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Resources?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-63ca62b893bf1c20dcc13cb4b6814681-95a33eb3aabe5b07-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4d6b42123c50eb4a027092fde1a11835", + "traceparent": "00-c50a6b72acedbb8ff7aa65fda3de9511-96412de8bec3fd81-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2ca34fa083e84cd3d60c6b94126a7c1d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "17477", + "Content-Length": "18075", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:58 GMT", + "Date": "Tue, 15 Nov 2022 12:38:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1dfe1263-9103-4cb8-81fa-e3293541bc52", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "1dfe1263-9103-4cb8-81fa-e3293541bc52", - "x-ms-routing-request-id": "WESTUS2:20220815T184959Z:1dfe1263-9103-4cb8-81fa-e3293541bc52" + "x-ms-correlation-request-id": "7feea4f6-4c33-493f-906f-d82beaff643f", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "7feea4f6-4c33-493f-906f-d82beaff643f", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123854Z:7feea4f6-4c33-493f-906f-d82beaff643f" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Resources", "namespace": "Microsoft.Resources", "authorizations": [ { @@ -875,7 +866,12 @@ "Jio India West", "West US 3", "Qatar Central", - "Sweden Central" + "Sweden Central", + "East US SLV", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" ], "apiVersions": [ "2019-05-01", @@ -952,7 +948,12 @@ "Jio India West", "West US 3", "Qatar Central", - "Sweden Central" + "Sweden Central", + "East US SLV", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" ], "apiVersions": [ "2019-05-01", @@ -1235,6 +1236,14 @@ ], "capabilities": "None" }, + { + "resourceType": "validateResources", + "locations": [], + "apiVersions": [ + "2022-06-01" + ], + "capabilities": "None" + }, { "resourceType": "links", "locations": [], @@ -1352,7 +1361,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1395,7 +1406,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1438,7 +1451,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1477,6 +1492,7 @@ "Korea South", "North Europe", "Norway East", + "Qatar Central", "Sweden Central", "UAE North", "West Central US", @@ -1485,7 +1501,9 @@ "West US", "West US 3", "South Central US", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2022-02-01", @@ -1526,6 +1544,7 @@ "Korea South", "North Europe", "Norway East", + "Qatar Central", "Sweden Central", "UAE North", "West Central US", @@ -1534,7 +1553,9 @@ "West US", "West US 3", "South Central US", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2022-02-01", @@ -1568,6 +1589,14 @@ "2022-03-01-preview" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "snapshots", + "locations": [], + "apiVersions": [ + "2022-11-01-preview" + ], + "capabilities": "SupportsExtension" } ], "registrationState": "Registered", @@ -1575,14 +1604,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-63ca62b893bf1c20dcc13cb4b6814681-1a27dd5563c25ed6-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "38e38ea66f7be851e84a497d624ab733", + "traceparent": "00-c50a6b72acedbb8ff7aa65fda3de9511-ce55154d27dd2fad-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "56e5dd715a5222a706de7d42db23e14d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1591,34 +1620,34 @@ "Cache-Control": "no-cache", "Content-Length": "274", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:58 GMT", + "Date": "Tue, 15 Nov 2022 12:38:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c4b264d-8f87-44fb-9aa8-96fa69debde9", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "2c4b264d-8f87-44fb-9aa8-96fa69debde9", - "x-ms-routing-request-id": "WESTUS2:20220815T184959Z:2c4b264d-8f87-44fb-9aa8-96fa69debde9" + "x-ms-correlation-request-id": "28798163-f1d5-4c52-9fb0-b9d14e9a0184", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "28798163-f1d5-4c52-9fb0-b9d14e9a0184", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123854Z:28798163-f1d5-4c52-9fb0-b9d14e9a0184" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficmanagerprofiles/profileName3531/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName3566/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "45", "Content-Type": "application/json", - "traceparent": "00-63ca62b893bf1c20dcc13cb4b6814681-5107c4046ec33313-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "19f76626f54012dd35fb4d30e54505e4", + "traceparent": "00-c50a6b72acedbb8ff7aa65fda3de9511-151732bab873b674-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "59da72c2c0298df61b50dbe8b5864211", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1633,18 +1662,18 @@ "Cache-Control": "no-cache", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:59 GMT", + "Date": "Tue, 15 Nov 2022 12:38:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e055b059-5899-4d14-bdf3-c801e49eca6d", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "e055b059-5899-4d14-bdf3-c801e49eca6d", - "x-ms-routing-request-id": "WESTUS2:20220815T185000Z:e055b059-5899-4d14-bdf3-c801e49eca6d" + "x-ms-correlation-request-id": "8ab240db-4df7-4ec6-bbaf-cb89bab57df0", + "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-request-id": "8ab240db-4df7-4ec6-bbaf-cb89bab57df0", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123858Z:8ab240db-4df7-4ec6-bbaf-cb89bab57df0" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficmanagerprofiles/profileName3531/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName3566/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -1655,36 +1684,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficmanagerprofiles/profileName3531?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName3566?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-63ca62b893bf1c20dcc13cb4b6814681-e47d47145f2b287f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "30c51fd40af3a331f0826506f3cd89b8", + "traceparent": "00-c50a6b72acedbb8ff7aa65fda3de9511-2e56103e177b53f5-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "afe12c03ba8b45b6a7802509059070b2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:49:59 GMT", + "Date": "Tue, 15 Nov 2022 12:38:58 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1da65af-ad50-4df7-b572-e586f7cc6164", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "30c51fd4-0af3-a331-f082-6506f3cd89b8", - "x-ms-routing-request-id": "WESTUS2:20220815T185000Z:e1da65af-ad50-4df7-b572-e586f7cc6164", + "x-ms-correlation-request-id": "be7f38b6-7327-4e41-be09-df6b1ea93db0", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1988", + "x-ms-request-id": "afe12c03-ba8b-45b6-a780-2509059070b2", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123858Z:be7f38b6-7327-4e41-be09-df6b1ea93db0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531", - "name": "profileName3531", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566", + "name": "profileName3566", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1694,8 +1723,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3531", - "fqdn": "profilename3531.trafficmanager.net", + "relativeName": "profilename3566", + "fqdn": "profilename3566.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1709,7 +1738,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1722,11 +1751,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1739,7 +1769,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1749,36 +1780,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName3475/providers/Microsoft.Network/trafficmanagerprofiles/profileName3531?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName3566?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e7ef0393ba430e7d5cdc4c71d17e7905-5118862c43670c1a-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7bd65eb9fea9b1f4b0d00380212102a2", + "traceparent": "00-f049c623dbd9d764d8c31b66f0449bd6-7294cf93d4da1d61-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a0d21d2a238fb0f3e7573b017fbf6d80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:50:00 GMT", + "Date": "Tue, 15 Nov 2022 12:38:58 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75c0b45a-6a15-4acc-bfac-b6baf0ab656e", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "7bd65eb9-fea9-b1f4-b0d0-0380212102a2", - "x-ms-routing-request-id": "WESTUS2:20220815T185000Z:75c0b45a-6a15-4acc-bfac-b6baf0ab656e", + "x-ms-correlation-request-id": "b14b4524-f439-41af-98a0-fb23ce7dcacb", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1987", + "x-ms-request-id": "a0d21d2a-238f-b0f3-e757-3b017fbf6d80", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123859Z:b14b4524-f439-41af-98a0-fb23ce7dcacb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531", - "name": "profileName3531", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566", + "name": "profileName3566", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1788,8 +1819,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3531", - "fqdn": "profilename3531.trafficmanager.net", + "relativeName": "profilename3566", + "fqdn": "profilename3566.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1803,7 +1834,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1816,11 +1847,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1833,7 +1865,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1843,36 +1876,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName3475/providers/Microsoft.Network/trafficmanagerprofiles/profileName3531?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName3566?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1d9a25ee0cd65983f9ad7d266d79eeff-10359fbe7791c345-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "43a9654486851c3f345428bd8fd71f67", + "traceparent": "00-c39b84502c8acdf17d9cdb18b7d1ce4d-2bcc18c1f83fc6b1-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ae3f6b9c324208c2bc94b1a99bec878b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:50:00 GMT", + "Date": "Tue, 15 Nov 2022 12:38:59 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7acde827-ccdc-4d54-809f-1fdd6bf58b43", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "43a96544-8685-1c3f-3454-28bd8fd71f67", - "x-ms-routing-request-id": "WESTUS2:20220815T185000Z:7acde827-ccdc-4d54-809f-1fdd6bf58b43", + "x-ms-correlation-request-id": "7885eb13-4e13-4d3b-acf2-0146f1231167", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1986", + "x-ms-request-id": "ae3f6b9c-3242-08c2-bc94-b1a99bec878b", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123900Z:7885eb13-4e13-4d3b-acf2-0146f1231167", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531", - "name": "profileName3531", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566", + "name": "profileName3566", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1882,8 +1915,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3531", - "fqdn": "profilename3531.trafficmanager.net", + "relativeName": "profilename3566", + "fqdn": "profilename3566.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1897,7 +1930,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1910,11 +1943,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1927,7 +1961,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1937,14 +1972,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2e728a1ae5eb67469723de71d5370e35-8bc9e62758a1d512-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "867795728a6fd53a2b137f2307b181cf", + "traceparent": "00-6a1931c6ed3c1d7ddc1cf51917f84207-030e9705cc868b04-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "97bd29e0a1b4e0813930c7347eb4c6e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1953,18 +1988,18 @@ "Cache-Control": "no-cache", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:50:00 GMT", + "Date": "Tue, 15 Nov 2022 12:39:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "452ce8b4-fd76-43fa-97df-6c7f8cb59b71", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "452ce8b4-fd76-43fa-97df-6c7f8cb59b71", - "x-ms-routing-request-id": "WESTUS2:20220815T185001Z:452ce8b4-fd76-43fa-97df-6c7f8cb59b71" + "x-ms-correlation-request-id": "723b0054-3e6e-43c7-85ff-dd8da519fac6", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "723b0054-3e6e-43c7-85ff-dd8da519fac6", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123900Z:723b0054-3e6e-43c7-85ff-dd8da519fac6" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficmanagerprofiles/profileName3531/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName3566/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -1975,16 +2010,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-2e728a1ae5eb67469723de71d5370e35-3168c740f8add0ca-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8dc1c37f452432331fba4654d63622d9", + "traceparent": "00-6a1931c6ed3c1d7ddc1cf51917f84207-cf71b0366b6a40a9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9a6da513c150f8705bc9e4fa714915fb", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1997,18 +2032,18 @@ "Cache-Control": "no-cache", "Content-Length": "283", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:50:01 GMT", + "Date": "Tue, 15 Nov 2022 12:39:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abbe3973-9169-49f2-9cfa-cf9df766770f", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "abbe3973-9169-49f2-9cfa-cf9df766770f", - "x-ms-routing-request-id": "WESTUS2:20220815T185001Z:abbe3973-9169-49f2-9cfa-cf9df766770f" + "x-ms-correlation-request-id": "ffe71db5-ef26-4577-ba71-badfc3b989d9", + "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-request-id": "ffe71db5-ef26-4577-ba71-badfc3b989d9", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123902Z:ffe71db5-ef26-4577-ba71-badfc3b989d9" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficmanagerprofiles/profileName3531/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName3566/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -2017,36 +2052,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficmanagerprofiles/profileName3531?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName3566?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2e728a1ae5eb67469723de71d5370e35-f952110b2b140672-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8c0d9bb17baaba332ad31871071c1483", + "traceparent": "00-6a1931c6ed3c1d7ddc1cf51917f84207-d164e8df8de32f14-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5621b0cfd501faccea5f75116a8d8908", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:50:01 GMT", + "Date": "Tue, 15 Nov 2022 12:39:02 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c04ad9d-d8c6-4840-9ae4-1b48e8f2b650", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10790", - "x-ms-request-id": "8c0d9bb1-7baa-ba33-2ad3-1871071c1483", - "x-ms-routing-request-id": "WESTUS2:20220815T185002Z:7c04ad9d-d8c6-4840-9ae4-1b48e8f2b650", + "x-ms-correlation-request-id": "08679657-6b48-44b3-8580-6e3e3ace5fce", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1985", + "x-ms-request-id": "5621b0cf-d501-facc-ea5f-75116a8d8908", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123903Z:08679657-6b48-44b3-8580-6e3e3ace5fce", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531", - "name": "profileName3531", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566", + "name": "profileName3566", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -2054,8 +2089,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3531", - "fqdn": "profilename3531.trafficmanager.net", + "relativeName": "profilename3566", + "fqdn": "profilename3566.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -2069,7 +2104,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2082,11 +2117,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2099,7 +2135,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -2109,36 +2146,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName3475/providers/Microsoft.Network/trafficmanagerprofiles/profileName3531?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName3566?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-62b2f71a324449ee05e290abed1fcbad-29ad14f0abca7958-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cb3d59d391152c43614467b443e5fff4", + "traceparent": "00-471510ea7434f0d485983b459a258e46-8e763085aa46e8ab-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f596c9ceed7e1f3ab8c53ceabd866eef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:50:01 GMT", + "Date": "Tue, 15 Nov 2022 12:39:03 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17531d67-6328-4c5e-ae63-a1b3d9b95165", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10789", - "x-ms-request-id": "cb3d59d3-9115-2c43-6144-67b443e5fff4", - "x-ms-routing-request-id": "WESTUS2:20220815T185002Z:17531d67-6328-4c5e-ae63-a1b3d9b95165", + "x-ms-correlation-request-id": "c1015cf9-f9ab-46df-a078-36da313590b6", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1984", + "x-ms-request-id": "f596c9ce-ed7e-1f3a-b8c5-3ceabd866eef", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123904Z:c1015cf9-f9ab-46df-a078-36da313590b6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531", - "name": "profileName3531", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566", + "name": "profileName3566", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -2146,8 +2183,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3531", - "fqdn": "profilename3531.trafficmanager.net", + "relativeName": "profilename3566", + "fqdn": "profilename3566.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -2161,7 +2198,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2174,11 +2211,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname3475/providers/Microsoft.Network/trafficManagerProfiles/profileName3531/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName3566/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2191,7 +2229,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -2201,13 +2240,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName3475/providers/Microsoft.Network/trafficmanagerprofiles/profileName3531?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName3566?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6b71a5f1f4a30424900663502dc12a02", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ce64cb1a70923ee7d973aff14b5e8dce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2215,86 +2254,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:50:02 GMT", + "Date": "Tue, 15 Nov 2022 12:39:07 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e201d33b-d8c9-4280-a83a-fb557a48c019", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "6b71a5f1-f4a3-0424-9006-63502dc12a02", - "x-ms-routing-request-id": "WESTUS2:20220815T185003Z:e201d33b-d8c9-4280-a83a-fb557a48c019", + "x-ms-correlation-request-id": "5e6e4535-7ca2-4cfc-989e-521d57490dd9", + "x-ms-ratelimit-remaining-subscription-resource-requests": "493", + "x-ms-request-id": "ce64cb1a-7092-3ee7-d973-aff14b5e8dce", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123908Z:5e6e4535-7ca2-4cfc-989e-521d57490dd9", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName3475?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName3010?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2edb18d1030129d056913c7f2acfd461-c47bb3ddc18ae9b4-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7c81c3a556f920c358e12b65147e7644", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:50:03 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af9b68b0-9442-4303-982b-7eaf0a1aa3eb", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-request-id": "af9b68b0-9442-4303-982b-7eaf0a1aa3eb", - "x-ms-routing-request-id": "WESTUS2:20220815T185004Z:af9b68b0-9442-4303-982b-7eaf0a1aa3eb" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-2edb18d1030129d056913c7f2acfd461-5ec0ea025bdf9cf5-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "800e651a82649bfbe25113c2c9beef11", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:50:03 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3509b2d6-e6fc-4260-b235-a852ddd3dc14", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "3509b2d6-e6fc-4260-b235-a852ddd3dc14", - "x-ms-routing-request-id": "WESTUS2:20220815T185004Z:3509b2d6-e6fc-4260-b235-a852ddd3dc14" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-2edb18d1030129d056913c7f2acfd461-e4ae2a4dc0fb1278-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "097c1e90c841fc57e4a247bf1ab4f265", + "traceparent": "00-c6b43a81041e3a5b0341e93db3803308-41252d0522b6877a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a82cdb4020b3e17d75029d3c99e13c63", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2302,28 +2283,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:50:24 GMT", + "Date": "Tue, 15 Nov 2022 12:39:09 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5804b4b2-13da-405a-8d6f-b1fac9d86dfb", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "5804b4b2-13da-405a-8d6f-b1fac9d86dfb", - "x-ms-routing-request-id": "WESTUS2:20220815T185025Z:5804b4b2-13da-405a-8d6f-b1fac9d86dfb" + "x-ms-correlation-request-id": "4db43248-ebd4-4e56-8bfe-510775469039", + "x-ms-ratelimit-remaining-subscription-deletes": "14980", + "x-ms-request-id": "4db43248-ebd4-4e56-8bfe-510775469039", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123910Z:4db43248-ebd4-4e56-8bfe-510775469039" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2edb18d1030129d056913c7f2acfd461-f75a2fbcfce41954-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ae4b8be2f66f52e028e47f59951c1576", + "traceparent": "00-c6b43a81041e3a5b0341e93db3803308-1e7360f23816563b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e2aa6e37c659fa3c4e825990d3aaa5f7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2331,28 +2312,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:50:39 GMT", + "Date": "Tue, 15 Nov 2022 12:39:09 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84d85f97-15e6-4a65-a3d0-4182a9bda9f0", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "84d85f97-15e6-4a65-a3d0-4182a9bda9f0", - "x-ms-routing-request-id": "WESTUS2:20220815T185040Z:84d85f97-15e6-4a65-a3d0-4182a9bda9f0" + "x-ms-correlation-request-id": "19cd4ece-e96e-450c-947f-7eda21ed7767", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "19cd4ece-e96e-450c-947f-7eda21ed7767", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123910Z:19cd4ece-e96e-450c-947f-7eda21ed7767" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2edb18d1030129d056913c7f2acfd461-082e7fb7943a4dd0-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0f7e2949f576515e0e129cc13a3b802d", + "traceparent": "00-c6b43a81041e3a5b0341e93db3803308-a9e51cfc11fef2ac-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c6004b36ef6785a565cfc65b0471a32c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2360,28 +2341,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:50:55 GMT", + "Date": "Tue, 15 Nov 2022 12:39:25 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87ebd83f-c095-42c8-adf0-9b9562b6dc5d", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "87ebd83f-c095-42c8-adf0-9b9562b6dc5d", - "x-ms-routing-request-id": "WESTUS2:20220815T185056Z:87ebd83f-c095-42c8-adf0-9b9562b6dc5d" + "x-ms-correlation-request-id": "4043ddd8-a3ef-4b13-9f8c-06d061ff3868", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "4043ddd8-a3ef-4b13-9f8c-06d061ff3868", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123926Z:4043ddd8-a3ef-4b13-9f8c-06d061ff3868" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2edb18d1030129d056913c7f2acfd461-f3033bad9e4b5db1-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3ee0ad5f41739aa13e29e05d48fd66c7", + "traceparent": "00-c6b43a81041e3a5b0341e93db3803308-0e18f7cf02017859-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2a05432f5a37290948fb4fa561e58937", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2389,28 +2370,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:51:11 GMT", + "Date": "Tue, 15 Nov 2022 12:39:40 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6fec4e06-77ad-4736-bd31-156265ded70c", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "6fec4e06-77ad-4736-bd31-156265ded70c", - "x-ms-routing-request-id": "WESTUS2:20220815T185111Z:6fec4e06-77ad-4736-bd31-156265ded70c" + "x-ms-correlation-request-id": "7030075a-1820-468b-af33-8b0c09c49f8c", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "7030075a-1820-468b-af33-8b0c09c49f8c", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123941Z:7030075a-1820-468b-af33-8b0c09c49f8c" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2edb18d1030129d056913c7f2acfd461-0a59490827ecc3de-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f175d18ce235edee2df9a05d591e17ec", + "traceparent": "00-c6b43a81041e3a5b0341e93db3803308-06c9a9d2be392d05-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f2d524b30c4848f1c8247c8a00e1f6dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2418,28 +2399,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:51:26 GMT", + "Date": "Tue, 15 Nov 2022 12:39:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e64c0ca3-ad9f-427c-a9ef-3f4550df0608", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "e64c0ca3-ad9f-427c-a9ef-3f4550df0608", - "x-ms-routing-request-id": "WESTUS2:20220815T185126Z:e64c0ca3-ad9f-427c-a9ef-3f4550df0608" + "x-ms-correlation-request-id": "f5c5e0ba-c861-48cd-8325-6ef8fb1e6e03", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "f5c5e0ba-c861-48cd-8325-6ef8fb1e6e03", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T123957Z:f5c5e0ba-c861-48cd-8325-6ef8fb1e6e03" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2edb18d1030129d056913c7f2acfd461-af69914c09b03102-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e7fa5264d73c080387e4d14d14000910", + "traceparent": "00-c6b43a81041e3a5b0341e93db3803308-ece747d70d929b73-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8f612ddf7aa4dbbf41d77d6b9fff2480", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2447,28 +2428,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:51:41 GMT", + "Date": "Tue, 15 Nov 2022 12:40:12 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "309493dc-d031-4f9d-b266-8dfbd4fe749e", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "309493dc-d031-4f9d-b266-8dfbd4fe749e", - "x-ms-routing-request-id": "WESTUS2:20220815T185141Z:309493dc-d031-4f9d-b266-8dfbd4fe749e" + "x-ms-correlation-request-id": "0c61485d-3b6a-4c94-b412-620c20fad979", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "0c61485d-3b6a-4c94-b412-620c20fad979", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124012Z:0c61485d-3b6a-4c94-b412-620c20fad979" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTM0NzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2edb18d1030129d056913c7f2acfd461-5d0b531af8209abd-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6934d4ab8fc67cf7bff31179a144401f", + "traceparent": "00-c6b43a81041e3a5b0341e93db3803308-8a5f87e3cb3ffd0e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "dfa88e45b19c22e351bd6212de7f2967", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2476,23 +2457,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:51:57 GMT", + "Date": "Tue, 15 Nov 2022 12:40:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48147a0d-2a72-44a9-b23e-a8d10f629137", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "48147a0d-2a72-44a9-b23e-a8d10f629137", - "x-ms-routing-request-id": "WESTUS2:20220815T185157Z:48147a0d-2a72-44a9-b23e-a8d10f629137" + "x-ms-correlation-request-id": "83fe91fa-c45a-4be0-a21b-c529982767b2", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "83fe91fa-c45a-4be0-a21b-c529982767b2", + "x-ms-routing-request-id": "CENTRALINDIA:20221115T124028Z:83fe91fa-c45a-4be0-a21b-c529982767b2" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "967964727", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1449855679", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(null)Async.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(null)Async.json index c28031e455fb..628b78886603 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(null)Async.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/RemoveTagTest(null)Async.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-db140ecb6a96c3c30ae44c37fceb2524-e78ec91960dff586-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "722410393c6daa902bfa0a481aee678d", + "traceparent": "00-39094ee115a17f2285afdf5557f7e73f-635fd64e39ca1970-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f37c7071339900dae989aadb02a6d729", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:03 GMT", + "Date": "Tue, 15 Nov 2022 13:09:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39ed8522-d977-4b5c-9656-c908d950a0b7", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "39ed8522-d977-4b5c-9656-c908d950a0b7", - "x-ms-routing-request-id": "WESTUS2:20220815T185604Z:39ed8522-d977-4b5c-9656-c908d950a0b7" + "x-ms-correlation-request-id": "d5c0f532-72c9-4880-8ebe-714396a35709", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "d5c0f532-72c9-4880-8ebe-714396a35709", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130928Z:d5c0f532-72c9-4880-8ebe-714396a35709" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName1034?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8031?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-7b844a62504b5c96c085fbd7229f6c84-30be4ed7329ce401-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8ed209194014f56e3840a3d78151859c", + "traceparent": "00-dc4577afb1648d598bd6b753241c3d1a-b79350d35bb81c5c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "33f97299cb773b7646e815932ac65f6e", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:04 GMT", + "Date": "Tue, 15 Nov 2022 13:09:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "effe0410-66db-4215-8ddb-e9dd3db8eefd", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-request-id": "effe0410-66db-4215-8ddb-e9dd3db8eefd", - "x-ms-routing-request-id": "WESTUS2:20220815T185605Z:effe0410-66db-4215-8ddb-e9dd3db8eefd" + "x-ms-correlation-request-id": "1d6f153a-7ac7-4ecf-908f-a33471f08d6c", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "1d6f153a-7ac7-4ecf-908f-a33471f08d6c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130931Z:1d6f153a-7ac7-4ecf-908f-a33471f08d6c" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName1034", - "name": "resourceGroupName1034", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8031", + "name": "resourceGroupName8031", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -97,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName1034/providers/Microsoft.Network/trafficmanagerprofiles/profileName4235?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8031/providers/Microsoft.Network/trafficmanagerprofiles/profileName643?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "561", + "Content-Length": "559", "Content-Type": "application/json", - "traceparent": "00-2ea2452a0b61899e10b3709e64c0a569-3ce59335db072b33-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e9c25326a2e56834acfb92368c442107", + "traceparent": "00-7b61e308f9391dba50b401b21653698e-89c243bf0619af7d-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "136f95e19b43479a94fc0891791e7aa4", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName4235", + "name": "profileName643", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName4235" + "relativeName": "profileName643" }, "monitorConfig": { "protocol": "HTTP", @@ -145,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1917", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:05 GMT", + "Date": "Tue, 15 Nov 2022 13:09:34 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1cc30645-8338-4978-86ff-392ba9f8d412", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10787", - "x-ms-request-id": "e9c25326-a2e5-6834-acfb-92368c442107", - "x-ms-routing-request-id": "WESTUS2:20220815T185606Z:1cc30645-8338-4978-86ff-392ba9f8d412", + "x-ms-correlation-request-id": "13a76235-cc92-413c-992d-53236b476a12", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4491", + "x-ms-request-id": "136f95e1-9b43-479a-94fc-0891791e7aa4", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130934Z:13a76235-cc92-413c-992d-53236b476a12", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235", - "name": "profileName4235", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643", + "name": "profileName643", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4235", - "fqdn": "profilename4235.trafficmanager.net", + "relativeName": "profilename643", + "fqdn": "profilename643.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -182,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -195,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -212,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -222,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName1034/providers/Microsoft.Network/trafficmanagerprofiles/profileName4235?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8031/providers/Microsoft.Network/trafficmanagerprofiles/profileName643?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b33d190a0cb89402ae1276ff717f4098-b6a7651e2124faca-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1f193f86db3bcf24b67d34fcedd3a9a9", + "traceparent": "00-1ca0debaa0e20b8a542689a4417404e9-72e75892a5ac2aa8-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d352a9ba94a9a4f906b8524bc46dbfc3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1927", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:05 GMT", + "Date": "Tue, 15 Nov 2022 13:09:34 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8a7f290-7c38-4112-84b9-1e17df753776", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10773", - "x-ms-request-id": "1f193f86-db3b-cf24-b67d-34fcedd3a9a9", - "x-ms-routing-request-id": "WESTUS2:20220815T185606Z:c8a7f290-7c38-4112-84b9-1e17df753776", + "x-ms-correlation-request-id": "f9dec8b5-5d49-489e-b995-6a27fd256ddd", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1986", + "x-ms-request-id": "d352a9ba-94a9-a4f9-06b8-524bc46dbfc3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130935Z:f9dec8b5-5d49-489e-b995-6a27fd256ddd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235", - "name": "profileName4235", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643", + "name": "profileName643", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -259,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4235", - "fqdn": "profilename4235.trafficmanager.net", + "relativeName": "profilename643", + "fqdn": "profilename643.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -274,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -287,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -304,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -314,34 +305,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Resources?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8cafa27298e697b05a6b02427f787490-8a9a3e67533bfd6b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9bf3ab84a4a577d7d569e219ae3869f4", + "traceparent": "00-8d49658be99b5486c853cc65acb0eb18-ab07132935a60cab-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "11206c4a1568fe8ad7b19e7bc3e4c128", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "17477", + "Content-Length": "18075", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:05 GMT", + "Date": "Tue, 15 Nov 2022 13:09:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "801fe198-7bb1-494e-8f7a-53e64256924a", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "801fe198-7bb1-494e-8f7a-53e64256924a", - "x-ms-routing-request-id": "WESTUS2:20220815T185606Z:801fe198-7bb1-494e-8f7a-53e64256924a" + "x-ms-correlation-request-id": "1e5ad760-2804-41ed-8977-6361af37d861", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "1e5ad760-2804-41ed-8977-6361af37d861", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130935Z:1e5ad760-2804-41ed-8977-6361af37d861" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Resources", "namespace": "Microsoft.Resources", "authorizations": [ { @@ -875,7 +866,12 @@ "Jio India West", "West US 3", "Qatar Central", - "Sweden Central" + "Sweden Central", + "East US SLV", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" ], "apiVersions": [ "2019-05-01", @@ -952,7 +948,12 @@ "Jio India West", "West US 3", "Qatar Central", - "Sweden Central" + "Sweden Central", + "East US SLV", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" ], "apiVersions": [ "2019-05-01", @@ -1235,6 +1236,14 @@ ], "capabilities": "None" }, + { + "resourceType": "validateResources", + "locations": [], + "apiVersions": [ + "2022-06-01" + ], + "capabilities": "None" + }, { "resourceType": "links", "locations": [], @@ -1352,7 +1361,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1395,7 +1406,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1438,7 +1451,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1477,6 +1492,7 @@ "Korea South", "North Europe", "Norway East", + "Qatar Central", "Sweden Central", "UAE North", "West Central US", @@ -1485,7 +1501,9 @@ "West US", "West US 3", "South Central US", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2022-02-01", @@ -1526,6 +1544,7 @@ "Korea South", "North Europe", "Norway East", + "Qatar Central", "Sweden Central", "UAE North", "West Central US", @@ -1534,7 +1553,9 @@ "West US", "West US 3", "South Central US", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2022-02-01", @@ -1568,6 +1589,14 @@ "2022-03-01-preview" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "snapshots", + "locations": [], + "apiVersions": [ + "2022-11-01-preview" + ], + "capabilities": "SupportsExtension" } ], "registrationState": "Registered", @@ -1575,50 +1604,50 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8cafa27298e697b05a6b02427f787490-4f7a89d4ea74eff0-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "42509b1e66374b602ef233686d377ad8", + "traceparent": "00-8d49658be99b5486c853cc65acb0eb18-a11590d0321474ad-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "80d9706e8b734dc59ccb0d8b484e8227", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "274", + "Content-Length": "273", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:06 GMT", + "Date": "Tue, 15 Nov 2022 13:09:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81b8bb30-50ba-4357-8fe6-70400cdae9bb", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "81b8bb30-50ba-4357-8fe6-70400cdae9bb", - "x-ms-routing-request-id": "WESTUS2:20220815T185606Z:81b8bb30-50ba-4357-8fe6-70400cdae9bb" + "x-ms-correlation-request-id": "6b4c72e2-1e0c-4a06-82eb-197faa8056f1", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "6b4c72e2-1e0c-4a06-82eb-197faa8056f1", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130935Z:6b4c72e2-1e0c-4a06-82eb-197faa8056f1" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficmanagerprofiles/profileName4235/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficmanagerprofiles/profileName643/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "45", "Content-Type": "application/json", - "traceparent": "00-8cafa27298e697b05a6b02427f787490-27abd1093d3ebdb6-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e0b1e9518550e26168a24ad1f90b217e", + "traceparent": "00-8d49658be99b5486c853cc65acb0eb18-38aa198465523590-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0d46453d69fea53c1f54fcf8f57ee121", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1631,20 +1660,20 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "302", + "Content-Length": "301", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:06 GMT", + "Date": "Tue, 15 Nov 2022 13:09:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dae44291-c3d6-4d44-b172-840ab3eddfd7", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-request-id": "dae44291-c3d6-4d44-b172-840ab3eddfd7", - "x-ms-routing-request-id": "WESTUS2:20220815T185607Z:dae44291-c3d6-4d44-b172-840ab3eddfd7" + "x-ms-correlation-request-id": "cd6a75ea-9ea5-4ac0-89f4-6d5719a08449", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "cd6a75ea-9ea5-4ac0-89f4-6d5719a08449", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130938Z:cd6a75ea-9ea5-4ac0-89f4-6d5719a08449" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficmanagerprofiles/profileName4235/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficmanagerprofiles/profileName643/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -1655,36 +1684,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficmanagerprofiles/profileName4235?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficmanagerprofiles/profileName643?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8cafa27298e697b05a6b02427f787490-88ade2134cd7505f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "51dd401467821e714aa86cb2716e099e", + "traceparent": "00-8d49658be99b5486c853cc65acb0eb18-3db1b47dc74a10a1-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "54dd29f73f94bf4fa7d2749c07feb588", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1946", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:07 GMT", + "Date": "Tue, 15 Nov 2022 13:09:38 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03d4fe0c-0d39-4b63-84a8-9c275b2670ae", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10772", - "x-ms-request-id": "51dd4014-6782-1e71-4aa8-6cb2716e099e", - "x-ms-routing-request-id": "WESTUS2:20220815T185607Z:03d4fe0c-0d39-4b63-84a8-9c275b2670ae", + "x-ms-correlation-request-id": "7b559df8-519c-4d02-a9f4-0b188111fcbc", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1985", + "x-ms-request-id": "54dd29f7-3f94-bf4f-a7d2-749c07feb588", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130939Z:7b559df8-519c-4d02-a9f4-0b188111fcbc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235", - "name": "profileName4235", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643", + "name": "profileName643", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1694,8 +1723,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4235", - "fqdn": "profilename4235.trafficmanager.net", + "relativeName": "profilename643", + "fqdn": "profilename643.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1709,7 +1738,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1722,11 +1751,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1739,7 +1769,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1749,36 +1780,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName1034/providers/Microsoft.Network/trafficmanagerprofiles/profileName4235?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8031/providers/Microsoft.Network/trafficmanagerprofiles/profileName643?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-522415755c0a55318be6820a6f112f46-e4fd78adc16ee0ea-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c4c709ee888698a4396ed9941c8f5123", + "traceparent": "00-bece650c2284e46f0d0a943c086d3209-fd17f305dd4505c3-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7e3e772eb49d042a3434601f8fcc581e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1946", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:07 GMT", + "Date": "Tue, 15 Nov 2022 13:09:39 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7332d16-90fc-4648-a778-9ed8be0d9856", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10771", - "x-ms-request-id": "c4c709ee-8886-98a4-396e-d9941c8f5123", - "x-ms-routing-request-id": "WESTUS2:20220815T185607Z:e7332d16-90fc-4648-a778-9ed8be0d9856", + "x-ms-correlation-request-id": "4ded571f-c8ff-4fb4-9f0c-e92166177b37", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1984", + "x-ms-request-id": "7e3e772e-b49d-042a-3434-601f8fcc581e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130939Z:4ded571f-c8ff-4fb4-9f0c-e92166177b37", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235", - "name": "profileName4235", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643", + "name": "profileName643", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1788,8 +1819,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4235", - "fqdn": "profilename4235.trafficmanager.net", + "relativeName": "profilename643", + "fqdn": "profilename643.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1803,7 +1834,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1816,11 +1847,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1833,7 +1865,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1843,36 +1876,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName1034/providers/Microsoft.Network/trafficmanagerprofiles/profileName4235?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8031/providers/Microsoft.Network/trafficmanagerprofiles/profileName643?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bec7de48f29e2ef34bb69cd8e5ed3164-5408f8c75e50e610-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2d53b5d12859ea55779395a718af70f9", + "traceparent": "00-da1853f7ce03dcbb40e72ad3b953adff-822b90169c202d75-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1f93ece92e71fd93f587652bf49f9d20", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1946", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:07 GMT", + "Date": "Tue, 15 Nov 2022 13:09:39 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3e828e7-eeb2-4972-83a7-3934e9a5791e", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10770", - "x-ms-request-id": "2d53b5d1-2859-ea55-7793-95a718af70f9", - "x-ms-routing-request-id": "WESTUS2:20220815T185607Z:c3e828e7-eeb2-4972-83a7-3934e9a5791e", + "x-ms-correlation-request-id": "9904d1cb-29ec-43f4-994d-23897c07e135", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1983", + "x-ms-request-id": "1f93ece9-2e71-fd93-f587-652bf49f9d20", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130940Z:9904d1cb-29ec-43f4-994d-23897c07e135", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235", - "name": "profileName4235", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643", + "name": "profileName643", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1882,8 +1915,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4235", - "fqdn": "profilename4235.trafficmanager.net", + "relativeName": "profilename643", + "fqdn": "profilename643.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1897,7 +1930,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1910,11 +1943,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1927,7 +1961,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1937,34 +1972,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a1b93cd62966116244aa912caf4a0739-0eb494e5ba03b9d0-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f0e2ab985c448bf79b4518148edd02bb", + "traceparent": "00-0b69c724972925dcfa6306eb3cc935fa-30d1b07253a3dfbe-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7dc9739e633f4383ffd81f60de2f30da", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "302", + "Content-Length": "301", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:07 GMT", + "Date": "Tue, 15 Nov 2022 13:09:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebabd263-911a-4295-a5c8-b51cc9f30f44", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "ebabd263-911a-4295-a5c8-b51cc9f30f44", - "x-ms-routing-request-id": "WESTUS2:20220815T185608Z:ebabd263-911a-4295-a5c8-b51cc9f30f44" + "x-ms-correlation-request-id": "44539f29-9bd9-4cca-b25e-990224e8066b", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "44539f29-9bd9-4cca-b25e-990224e8066b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130940Z:44539f29-9bd9-4cca-b25e-990224e8066b" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficmanagerprofiles/profileName4235/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficmanagerprofiles/profileName643/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -1975,16 +2010,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "26", "Content-Type": "application/json", - "traceparent": "00-a1b93cd62966116244aa912caf4a0739-f69f51788a50eb23-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bce14957db1ac644b3dd4cf2f2fd7f8a", + "traceparent": "00-0b69c724972925dcfa6306eb3cc935fa-3d560a1ef77ab48a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1bb2567a966bff17e44088164efe1094", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1995,20 +2030,20 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "283", + "Content-Length": "282", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:08 GMT", + "Date": "Tue, 15 Nov 2022 13:09:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79cd4c3f-d3a0-433f-b319-210fa73b46cc", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-request-id": "79cd4c3f-d3a0-433f-b319-210fa73b46cc", - "x-ms-routing-request-id": "WESTUS2:20220815T185608Z:79cd4c3f-d3a0-433f-b319-210fa73b46cc" + "x-ms-correlation-request-id": "fcc6052c-26a6-4f34-8b9b-f956bd2c20ed", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "fcc6052c-26a6-4f34-8b9b-f956bd2c20ed", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130943Z:fcc6052c-26a6-4f34-8b9b-f956bd2c20ed" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficmanagerprofiles/profileName4235/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficmanagerprofiles/profileName643/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -2017,36 +2052,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficmanagerprofiles/profileName4235?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficmanagerprofiles/profileName643?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a1b93cd62966116244aa912caf4a0739-d95f880cb6527335-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "70fbdffd61ac74dfbdc8911410415b9a", + "traceparent": "00-0b69c724972925dcfa6306eb3cc935fa-ca8ebc323995dc0a-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1b813f96da0386de68501f980e331fc5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1927", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:08 GMT", + "Date": "Tue, 15 Nov 2022 13:09:43 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3229e50b-3b9d-4483-9f35-c275ee461cfa", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10769", - "x-ms-request-id": "70fbdffd-61ac-74df-bdc8-911410415b9a", - "x-ms-routing-request-id": "WESTUS2:20220815T185608Z:3229e50b-3b9d-4483-9f35-c275ee461cfa", + "x-ms-correlation-request-id": "972ba574-d2b1-4699-9672-d357daff6a89", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1982", + "x-ms-request-id": "1b813f96-da03-86de-6850-1f980e331fc5", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130944Z:972ba574-d2b1-4699-9672-d357daff6a89", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235", - "name": "profileName4235", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643", + "name": "profileName643", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -2054,8 +2089,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4235", - "fqdn": "profilename4235.trafficmanager.net", + "relativeName": "profilename643", + "fqdn": "profilename643.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -2069,7 +2104,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2082,11 +2117,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2099,7 +2135,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -2109,36 +2146,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName1034/providers/Microsoft.Network/trafficmanagerprofiles/profileName4235?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8031/providers/Microsoft.Network/trafficmanagerprofiles/profileName643?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1a389867364e124bb3c918354fcde02c-2de59761dcfa206c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cf4fd991b4cdbcde671c3c660f04999e", + "traceparent": "00-4dc03c68b713062c0b87595c38da208d-9f5984884ea07cf5-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9db18a5681ec08b55bc999ffda6cf401", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1927", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:56:08 GMT", + "Date": "Tue, 15 Nov 2022 13:09:44 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78ddce77-12a2-4dba-a756-4937b2e1608f", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10768", - "x-ms-request-id": "cf4fd991-b4cd-bcde-671c-3c660f04999e", - "x-ms-routing-request-id": "WESTUS2:20220815T185609Z:78ddce77-12a2-4dba-a756-4937b2e1608f", + "x-ms-correlation-request-id": "aafdd737-5f40-46c0-9564-a15eab90146a", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1981", + "x-ms-request-id": "9db18a56-81ec-08b5-5bc9-99ffda6cf401", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130945Z:aafdd737-5f40-46c0-9564-a15eab90146a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235", - "name": "profileName4235", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643", + "name": "profileName643", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -2146,8 +2183,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4235", - "fqdn": "profilename4235.trafficmanager.net", + "relativeName": "profilename643", + "fqdn": "profilename643.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -2161,7 +2198,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2174,11 +2211,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname1034/providers/Microsoft.Network/trafficManagerProfiles/profileName4235/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8031/providers/Microsoft.Network/trafficManagerProfiles/profileName643/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2191,7 +2229,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -2201,13 +2240,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName1034/providers/Microsoft.Network/trafficmanagerprofiles/profileName4235?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8031/providers/Microsoft.Network/trafficmanagerprofiles/profileName643?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ae168dc591e1f60f6a6cfe524a30b572", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9fc98bc814ae9fd7782cb31a767ff0b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2215,28 +2254,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:56:09 GMT", + "Date": "Tue, 15 Nov 2022 13:09:50 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9242e10-8994-422c-876d-4260ea5b82b0", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "ae168dc5-91e1-f60f-6a6c-fe524a30b572", - "x-ms-routing-request-id": "WESTUS2:20220815T185610Z:c9242e10-8994-422c-876d-4260ea5b82b0", + "x-ms-correlation-request-id": "b86577f1-4138-44b8-bc1f-674890270406", + "x-ms-ratelimit-remaining-subscription-resource-requests": "494", + "x-ms-request-id": "9fc98bc8-14ae-9fd7-782c-b31a767ff0b1", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130951Z:b86577f1-4138-44b8-bc1f-674890270406", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName1034?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8031?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a2d03b080ed78c319d4dafd5a994087d-8df5db280fd2a104-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1861b281b0ad49bc013e098f247864b8", + "traceparent": "00-2bb3023a8ad3d5ce443e513db2c0cff0-e9f09c9956181995-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c4bfc321734c14a78978c03941deacfb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2244,28 +2283,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:56:10 GMT", + "Date": "Tue, 15 Nov 2022 13:09:51 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEwMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgwMzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5eebac8-9228-4349-a154-57d49d8a2707", - "x-ms-ratelimit-remaining-subscription-deletes": "14990", - "x-ms-request-id": "a5eebac8-9228-4349-a154-57d49d8a2707", - "x-ms-routing-request-id": "WESTUS2:20220815T185610Z:a5eebac8-9228-4349-a154-57d49d8a2707" + "x-ms-correlation-request-id": "67107dc6-8078-41d1-8ce5-73db15dfb77a", + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-request-id": "67107dc6-8078-41d1-8ce5-73db15dfb77a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130952Z:67107dc6-8078-41d1-8ce5-73db15dfb77a" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEwMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgwMzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a2d03b080ed78c319d4dafd5a994087d-795355261820e082-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5de5ca6780a314f1d0cdada28880d2f1", + "traceparent": "00-2bb3023a8ad3d5ce443e513db2c0cff0-7732861c9382c5d0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "17dee7d930ac55b4e3b41536539e5d9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2273,28 +2312,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:56:10 GMT", + "Date": "Tue, 15 Nov 2022 13:09:52 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEwMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgwMzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02eeafa9-4728-4a2f-8355-ca94b4fcd708", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "02eeafa9-4728-4a2f-8355-ca94b4fcd708", - "x-ms-routing-request-id": "WESTUS2:20220815T185611Z:02eeafa9-4728-4a2f-8355-ca94b4fcd708" + "x-ms-correlation-request-id": "f3487e91-3309-4544-be57-1920317ff292", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "f3487e91-3309-4544-be57-1920317ff292", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130952Z:f3487e91-3309-4544-be57-1920317ff292" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEwMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgwMzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a2d03b080ed78c319d4dafd5a994087d-7c3e8de66ecd6899-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5623460732e1d347f9614e544b5b9375", + "traceparent": "00-2bb3023a8ad3d5ce443e513db2c0cff0-8de52b0feb16414b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "58beb77f6db0a147ac7d103a4ee745ee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2302,28 +2341,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:56:25 GMT", + "Date": "Tue, 15 Nov 2022 13:10:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEwMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgwMzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff43a427-f66d-451c-9907-04275a294695", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "ff43a427-f66d-451c-9907-04275a294695", - "x-ms-routing-request-id": "WESTUS2:20220815T185626Z:ff43a427-f66d-451c-9907-04275a294695" + "x-ms-correlation-request-id": "1fb4d80e-9de3-4b23-91e8-522e26f41319", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "1fb4d80e-9de3-4b23-91e8-522e26f41319", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131008Z:1fb4d80e-9de3-4b23-91e8-522e26f41319" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEwMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgwMzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a2d03b080ed78c319d4dafd5a994087d-196516ea21a75427-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5a27d2cb0792ae14013ab25d00157749", + "traceparent": "00-2bb3023a8ad3d5ce443e513db2c0cff0-72eb5a8942e11260-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "5960e5e695ff2b4e6a7a9fb469e0ee14", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2331,28 +2370,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:56:40 GMT", + "Date": "Tue, 15 Nov 2022 13:10:23 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEwMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgwMzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12f829b7-1059-49ca-acad-078055af6de2", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "12f829b7-1059-49ca-acad-078055af6de2", - "x-ms-routing-request-id": "WESTUS2:20220815T185641Z:12f829b7-1059-49ca-acad-078055af6de2" + "x-ms-correlation-request-id": "2de7b71d-b490-463b-8ad6-cd7bec4e336f", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "2de7b71d-b490-463b-8ad6-cd7bec4e336f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131023Z:2de7b71d-b490-463b-8ad6-cd7bec4e336f" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEwMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgwMzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a2d03b080ed78c319d4dafd5a994087d-83284eb884d06e45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6e5873871c68345583126341319dc974", + "traceparent": "00-2bb3023a8ad3d5ce443e513db2c0cff0-46743bbbefb764cb-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "17418ab439dd6b2ba03d6a2f1f7907fc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2360,28 +2399,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:56:55 GMT", + "Date": "Tue, 15 Nov 2022 13:10:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEwMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgwMzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3468fa2a-8768-42b8-b0f3-51daa9768b97", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "3468fa2a-8768-42b8-b0f3-51daa9768b97", - "x-ms-routing-request-id": "WESTUS2:20220815T185656Z:3468fa2a-8768-42b8-b0f3-51daa9768b97" + "x-ms-correlation-request-id": "07fdf296-b516-426c-bcff-13e41578400a", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "07fdf296-b516-426c-bcff-13e41578400a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131039Z:07fdf296-b516-426c-bcff-13e41578400a" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEwMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgwMzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a2d03b080ed78c319d4dafd5a994087d-2b13a2597a213224-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b5d737397758005e317554a77fe9d2e4", + "traceparent": "00-2bb3023a8ad3d5ce443e513db2c0cff0-332a24503c4fba51-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6e4f276f043eea9a6992ee35cd9337cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2389,28 +2428,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:57:10 GMT", + "Date": "Tue, 15 Nov 2022 13:10:54 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEwMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgwMzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9670960-694b-4200-9d72-c41002132451", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "b9670960-694b-4200-9d72-c41002132451", - "x-ms-routing-request-id": "WESTUS2:20220815T185711Z:b9670960-694b-4200-9d72-c41002132451" + "x-ms-correlation-request-id": "3593cfaa-27ec-4063-9bbf-ca6b7088d03f", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "3593cfaa-27ec-4063-9bbf-ca6b7088d03f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131054Z:3593cfaa-27ec-4063-9bbf-ca6b7088d03f" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTEwMzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgwMzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a2d03b080ed78c319d4dafd5a994087d-e1e1e4c96b488da8-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d7cc05ea2402af0d7df3d680a4d37d64", + "traceparent": "00-2bb3023a8ad3d5ce443e513db2c0cff0-d2ae5f339487c2f4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c386fb8e2ea5ad10b9f4b9c22b1f0cf0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2418,23 +2457,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:57:26 GMT", + "Date": "Tue, 15 Nov 2022 13:11:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c31b7b1c-c79f-47ee-823e-4eabcecb25f7", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "c31b7b1c-c79f-47ee-823e-4eabcecb25f7", - "x-ms-routing-request-id": "WESTUS2:20220815T185726Z:c31b7b1c-c79f-47ee-823e-4eabcecb25f7" + "x-ms-correlation-request-id": "a9036818-1526-4d2f-a388-fe1a292e9432", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "a9036818-1526-4d2f-a388-fe1a292e9432", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131110Z:a9036818-1526-4d2f-a388-fe1a292e9432" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "984465480", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "905796778", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(False).json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(False).json index d550d9b3c046..69ea221449ea 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(False).json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(False).json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5cfd4d1b39e6560f97005adf20ce71b7-6f3274c66202b2af-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e8cb24ca077d605bfaf537224f0f0b4c", + "traceparent": "00-fbfaf5e289d9141396b98ac037ec38aa-17696d5c5ed3cc9a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3998572c0f951dd6f4ccecde32d2cf05", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:14:04 GMT", + "Date": "Tue, 15 Nov 2022 12:47:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28f9a77f-0d9d-4d6c-b823-e9c22e78b237", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "28f9a77f-0d9d-4d6c-b823-e9c22e78b237", - "x-ms-routing-request-id": "WESTUS2:20220815T191405Z:28f9a77f-0d9d-4d6c-b823-e9c22e78b237" + "x-ms-correlation-request-id": "29a7dad1-382b-4a6e-b264-ee0188bd0f1a", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "29a7dad1-382b-4a6e-b264-ee0188bd0f1a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124726Z:29a7dad1-382b-4a6e-b264-ee0188bd0f1a" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName7224?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8144?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-1e6c1e068ad1362c1a9a96eae5085786-ee846b5bc0ab5115-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e604713795c5c524f340eccf97e0f961", + "traceparent": "00-e673f6354558dbc9bfef2ff1cd05958c-d615d4023ece13ff-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1be84afea2bb9a006bdb4d3499592538", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:14:05 GMT", + "Date": "Tue, 15 Nov 2022 12:47:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4f4b86f-ffb6-4a4c-a092-85ed35bc3910", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "a4f4b86f-ffb6-4a4c-a092-85ed35bc3910", - "x-ms-routing-request-id": "WESTUS2:20220815T191406Z:a4f4b86f-ffb6-4a4c-a092-85ed35bc3910" + "x-ms-correlation-request-id": "e848d21a-262d-41d4-8bc5-b0043254a38e", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "e848d21a-262d-41d4-8bc5-b0043254a38e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124728Z:e848d21a-262d-41d4-8bc5-b0043254a38e" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName7224", - "name": "resourceGroupName7224", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8144", + "name": "resourceGroupName8144", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -97,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName7224/providers/Microsoft.Network/trafficmanagerprofiles/profileName7683?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8144/providers/Microsoft.Network/trafficmanagerprofiles/profileName7558?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-b901984be05adeef236dc31eab625d23-88185115cac4cc44-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1879d26d1b4f8ed1e27cefbd0a9f5a27", + "traceparent": "00-60dd9283fddb4379c7357017b9269bbe-77e07b04fcd3fce4-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "52fda190c1c49757416df10bb708f47c", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName7683", + "name": "profileName7558", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName7683" + "relativeName": "profileName7558" }, "monitorConfig": { "protocol": "HTTP", @@ -145,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:14:07 GMT", + "Date": "Tue, 15 Nov 2022 12:47:32 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96b7081e-a820-48ff-a981-91f19dbc3dae", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "1879d26d-1b4f-8ed1-e27c-efbd0a9f5a27", - "x-ms-routing-request-id": "WESTUS2:20220815T191408Z:96b7081e-a820-48ff-a981-91f19dbc3dae", + "x-ms-correlation-request-id": "2a863eb1-011e-4902-87af-8431fe1657e4", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4497", + "x-ms-request-id": "52fda190-c1c4-9757-416d-f10bb708f47c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124732Z:2a863eb1-011e-4902-87af-8431fe1657e4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683", - "name": "profileName7683", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558", + "name": "profileName7558", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7683", - "fqdn": "profilename7683.trafficmanager.net", + "relativeName": "profilename7558", + "fqdn": "profilename7558.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -182,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -195,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -212,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -222,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName7224/providers/Microsoft.Network/trafficmanagerprofiles/profileName7683?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8144/providers/Microsoft.Network/trafficmanagerprofiles/profileName7558?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8a760484ef4ffbca0bfb3743cf946646-3d5e2decfa9044e0-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c6ae96fb07648f04a62389c76e916214", + "traceparent": "00-f10ffa203c5fa99c949bf2fce7946f42-31159d26b332eb74-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3a71ed5b2f9eb471989f2a3388e95a73", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:14:07 GMT", + "Date": "Tue, 15 Nov 2022 12:47:33 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d30f5067-49ca-4c0c-94bb-13fa28e65535", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10790", - "x-ms-request-id": "c6ae96fb-0764-8f04-a623-89c76e916214", - "x-ms-routing-request-id": "WESTUS2:20220815T191408Z:d30f5067-49ca-4c0c-94bb-13fa28e65535", + "x-ms-correlation-request-id": "77950c5c-19f5-4665-b799-0af5e3bb967a", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1987", + "x-ms-request-id": "3a71ed5b-2f9e-b471-989f-2a3388e95a73", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124733Z:77950c5c-19f5-4665-b799-0af5e3bb967a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683", - "name": "profileName7683", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558", + "name": "profileName7558", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -259,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7683", - "fqdn": "profilename7683.trafficmanager.net", + "relativeName": "profilename7558", + "fqdn": "profilename7558.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -274,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -287,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -304,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -314,36 +305,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficmanagerprofiles/profileName7683?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficmanagerprofiles/profileName7558?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-59b7a08c9858e82f6993901588c8588c-8a98e120feaf8204-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3ce1c13e34921ca49f750448a567ba54", + "traceparent": "00-19e20f0d8252b27fcc9c612363ef0acf-fb3fb41eaa556b98-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "31a1a6c6b3d23d91f350d94eb1f4e262", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:14:07 GMT", + "Date": "Tue, 15 Nov 2022 12:47:33 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bbc8cede-f7dd-4063-81a0-0c735d16180f", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10789", - "x-ms-request-id": "3ce1c13e-3492-1ca4-9f75-0448a567ba54", - "x-ms-routing-request-id": "WESTUS2:20220815T191408Z:bbc8cede-f7dd-4063-81a0-0c735d16180f", + "x-ms-correlation-request-id": "20cd9bb9-c9c3-4f1c-bcba-dcfef4e42dd6", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1986", + "x-ms-request-id": "31a1a6c6-b3d2-3d91-f350-d94eb1f4e262", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124734Z:20cd9bb9-c9c3-4f1c-bcba-dcfef4e42dd6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683", - "name": "profileName7683", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558", + "name": "profileName7558", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -351,8 +342,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7683", - "fqdn": "profilename7683.trafficmanager.net", + "relativeName": "profilename7558", + "fqdn": "profilename7558.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -366,7 +357,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -379,11 +370,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -396,7 +388,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -406,16 +399,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficmanagerprofiles/profileName7683?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficmanagerprofiles/profileName7558?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "46", "Content-Type": "application/json", - "traceparent": "00-59b7a08c9858e82f6993901588c8588c-5376ea9ecc8a30d8-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "00d3c5e5323266fdcde9712c910a1f50", + "traceparent": "00-19e20f0d8252b27fcc9c612363ef0acf-27fa4c16870b009b-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "acd9d0e7eae761993048b92596230f57", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -427,22 +420,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:14:08 GMT", + "Date": "Tue, 15 Nov 2022 12:47:37 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7ce6ac4-402d-4000-a283-ad17ff7fa683", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "00d3c5e5-3232-66fd-cde9-712c910a1f50", - "x-ms-routing-request-id": "WESTUS2:20220815T191409Z:b7ce6ac4-402d-4000-a283-ad17ff7fa683", + "x-ms-correlation-request-id": "76b8b54c-601e-48f2-851e-b89be76ed97e", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4496", + "x-ms-request-id": "acd9d0e7-eae7-6199-3048-b92596230f57", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124737Z:76b8b54c-601e-48f2-851e-b89be76ed97e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683", - "name": "profileName7683", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558", + "name": "profileName7558", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -452,8 +445,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7683", - "fqdn": "profilename7683.trafficmanager.net", + "relativeName": "profilename7558", + "fqdn": "profilename7558.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -467,7 +460,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -480,11 +473,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -497,7 +491,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -507,36 +502,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName7224/providers/Microsoft.Network/trafficmanagerprofiles/profileName7683?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8144/providers/Microsoft.Network/trafficmanagerprofiles/profileName7558?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c4da51008f30549241603338ceb02c07-163ed38e33ea5d61-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "497fda1a1dbec794f29127ee02bcea3f", + "traceparent": "00-12506c13aaca22f856dc0afd640fd278-abdf1b622be28b1b-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "11457e12c366a8aa5b34474d552303a3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:14:08 GMT", + "Date": "Tue, 15 Nov 2022 12:47:37 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "403e96fa-4f0b-4f33-b53b-f2b1f9d30b8e", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10788", - "x-ms-request-id": "497fda1a-1dbe-c794-f291-27ee02bcea3f", - "x-ms-routing-request-id": "WESTUS2:20220815T191409Z:403e96fa-4f0b-4f33-b53b-f2b1f9d30b8e", + "x-ms-correlation-request-id": "8994fb61-2e49-4df2-918e-6ed87e3b62dc", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1985", + "x-ms-request-id": "11457e12-c366-a8aa-5b34-474d552303a3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124738Z:8994fb61-2e49-4df2-918e-6ed87e3b62dc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683", - "name": "profileName7683", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558", + "name": "profileName7558", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -546,8 +541,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7683", - "fqdn": "profilename7683.trafficmanager.net", + "relativeName": "profilename7558", + "fqdn": "profilename7558.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -561,7 +556,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -574,11 +569,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -591,7 +587,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -601,36 +598,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName7224/providers/Microsoft.Network/trafficmanagerprofiles/profileName7683?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8144/providers/Microsoft.Network/trafficmanagerprofiles/profileName7558?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ae0b7f8a85c813199565fe9ca20d7f6c-9042591043614f47-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a9e1356862be0be2c37b6fa8c2788a94", + "traceparent": "00-a67f87bf62b7c74a7f37dbbca2721860-5cee535bd1d9350c-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b74cc8bcad10db8b0c400189f96ca6cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:14:08 GMT", + "Date": "Tue, 15 Nov 2022 12:47:38 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1faea60d-5b0b-4d0a-8513-02401630c90c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10787", - "x-ms-request-id": "a9e13568-62be-0be2-c37b-6fa8c2788a94", - "x-ms-routing-request-id": "WESTUS2:20220815T191409Z:1faea60d-5b0b-4d0a-8513-02401630c90c", + "x-ms-correlation-request-id": "9ad6f7b8-53e6-4d83-9b11-7ab5948f0b98", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1984", + "x-ms-request-id": "b74cc8bc-ad10-db8b-0c40-0189f96ca6cf", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124738Z:9ad6f7b8-53e6-4d83-9b11-7ab5948f0b98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683", - "name": "profileName7683", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558", + "name": "profileName7558", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -640,8 +637,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7683", - "fqdn": "profilename7683.trafficmanager.net", + "relativeName": "profilename7558", + "fqdn": "profilename7558.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -655,7 +652,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -668,11 +665,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -685,7 +683,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -695,36 +694,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficmanagerprofiles/profileName7683?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficmanagerprofiles/profileName7558?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-23079a59b9e067bcce73bcc05d42b253-cc9da4d0f3bf9ae9-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ca2eb45671e7c895300b0da00b0f6310", + "traceparent": "00-1024a2890658734ba4330e10db5bba1e-ff2e9c34aefa8698-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "323b8141d1af24fb263150b3a34c0b0d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:14:09 GMT", + "Date": "Tue, 15 Nov 2022 12:47:38 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfd93060-73ab-4f65-9659-80d70cab9b7c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10786", - "x-ms-request-id": "ca2eb456-71e7-c895-300b-0da00b0f6310", - "x-ms-routing-request-id": "WESTUS2:20220815T191410Z:dfd93060-73ab-4f65-9659-80d70cab9b7c", + "x-ms-correlation-request-id": "41443cf8-80e3-4979-a967-792f51fc4a93", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1983", + "x-ms-request-id": "323b8141-d1af-24fb-2631-50b3a34c0b0d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124739Z:41443cf8-80e3-4979-a967-792f51fc4a93", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683", - "name": "profileName7683", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558", + "name": "profileName7558", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -734,8 +733,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7683", - "fqdn": "profilename7683.trafficmanager.net", + "relativeName": "profilename7558", + "fqdn": "profilename7558.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -749,7 +748,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -762,11 +761,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -779,7 +779,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -789,16 +790,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficmanagerprofiles/profileName7683?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficmanagerprofiles/profileName7558?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "86", "Content-Type": "application/json", - "traceparent": "00-23079a59b9e067bcce73bcc05d42b253-20c6084745e16b6c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5cc332ff7529b792f8738542aeec047a", + "traceparent": "00-1024a2890658734ba4330e10db5bba1e-cb742dfe132ecaab-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ce68164557d76447f36a0526c220aeef", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -812,22 +813,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1942", + "Content-Length": "1992", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:14:09 GMT", + "Date": "Tue, 15 Nov 2022 12:47:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "405139be-938c-4c13-aae5-ae28fb12f672", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "5cc332ff-7529-b792-f873-8542aeec047a", - "x-ms-routing-request-id": "WESTUS2:20220815T191410Z:405139be-938c-4c13-aae5-ae28fb12f672", + "x-ms-correlation-request-id": "1c543ee7-03a7-4a95-b30f-476e1244ac14", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4495", + "x-ms-request-id": "ce681645-57d7-6447-f36a-0526c220aeef", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124741Z:1c543ee7-03a7-4a95-b30f-476e1244ac14", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683", - "name": "profileName7683", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558", + "name": "profileName7558", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -839,8 +840,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7683", - "fqdn": "profilename7683.trafficmanager.net", + "relativeName": "profilename7558", + "fqdn": "profilename7558.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -854,7 +855,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -867,11 +868,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -884,7 +886,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -894,36 +897,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName7224/providers/Microsoft.Network/trafficmanagerprofiles/profileName7683?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8144/providers/Microsoft.Network/trafficmanagerprofiles/profileName7558?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b7a413cc289653b8e20bf7864c34fc24-daf9abdb36c810ce-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4e9892061f8ef6579f1979b2544200b4", + "traceparent": "00-528805ec85171eba051b10964170d3ef-3830a6d737992e22-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d40c788ed0e7ebf4cc2791de5cd738bf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1942", + "Content-Length": "1992", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:14:10 GMT", + "Date": "Tue, 15 Nov 2022 12:47:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aba780a6-3b2a-43e5-8df9-d8f79a4d9660", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10785", - "x-ms-request-id": "4e989206-1f8e-f657-9f19-79b2544200b4", - "x-ms-routing-request-id": "WESTUS2:20220815T191410Z:aba780a6-3b2a-43e5-8df9-d8f79a4d9660", + "x-ms-correlation-request-id": "496b0bcb-9ade-4cef-be14-629b16e24252", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1982", + "x-ms-request-id": "d40c788e-d0e7-ebf4-cc27-91de5cd738bf", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124742Z:496b0bcb-9ade-4cef-be14-629b16e24252", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683", - "name": "profileName7683", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558", + "name": "profileName7558", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -935,8 +938,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename7683", - "fqdn": "profilename7683.trafficmanager.net", + "relativeName": "profilename7558", + "fqdn": "profilename7558.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -950,7 +953,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -963,11 +966,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname7224/providers/Microsoft.Network/trafficManagerProfiles/profileName7683/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8144/providers/Microsoft.Network/trafficManagerProfiles/profileName7558/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -980,7 +984,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -990,13 +995,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName7224/providers/Microsoft.Network/trafficmanagerprofiles/profileName7683?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8144/providers/Microsoft.Network/trafficmanagerprofiles/profileName7558?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "90a85e182eb4e06b2176d274eb521943", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e344f335d703e9f739d63f45cbd56205", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1004,28 +1009,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:14:12 GMT", + "Date": "Tue, 15 Nov 2022 12:47:47 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66c7f321-fc46-42a3-9f10-2fd429bc22d6", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "90a85e18-2eb4-e06b-2176-d274eb521943", - "x-ms-routing-request-id": "WESTUS2:20220815T191413Z:66c7f321-fc46-42a3-9f10-2fd429bc22d6", + "x-ms-correlation-request-id": "20a5a4b1-74f8-4b54-8fa4-b65a83298adf", + "x-ms-ratelimit-remaining-subscription-resource-requests": "497", + "x-ms-request-id": "e344f335-d703-e9f7-39d6-3f45cbd56205", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124748Z:20a5a4b1-74f8-4b54-8fa4-b65a83298adf", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName7224?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8144?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bd775df136694965a5a483b2b7979144-9d8ef189e67114b1-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "789993071476e082daccbd0ffce063b5", + "traceparent": "00-7b90caa585d22a7767666f95b261b765-76ab72346f4b8027-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2a246182373f7425217d01afc669071b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1033,28 +1038,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:14:12 GMT", + "Date": "Tue, 15 Nov 2022 12:47:49 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0631e0e-357e-4e9b-8058-460b4eb3845c", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-request-id": "a0631e0e-357e-4e9b-8058-460b4eb3845c", - "x-ms-routing-request-id": "WESTUS2:20220815T191413Z:a0631e0e-357e-4e9b-8058-460b4eb3845c" + "x-ms-correlation-request-id": "278ba7b0-e898-4729-b09e-05b946b376c4", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-request-id": "278ba7b0-e898-4729-b09e-05b946b376c4", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124750Z:278ba7b0-e898-4729-b09e-05b946b376c4" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd775df136694965a5a483b2b7979144-bf0b5cbdd4fe66cd-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c1ab36ff87a9033ddcc8b5e7715ce441", + "traceparent": "00-7b90caa585d22a7767666f95b261b765-9035c39126f83172-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fb5c8cc50db2fe7fced0c186d64723d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1062,28 +1067,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:14:12 GMT", + "Date": "Tue, 15 Nov 2022 12:47:49 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9c536e8-ddd6-4335-bb76-d9dbb3742108", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "e9c536e8-ddd6-4335-bb76-d9dbb3742108", - "x-ms-routing-request-id": "WESTUS2:20220815T191413Z:e9c536e8-ddd6-4335-bb76-d9dbb3742108" + "x-ms-correlation-request-id": "49bad757-864b-4acc-b249-99ebf69f839e", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "49bad757-864b-4acc-b249-99ebf69f839e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124750Z:49bad757-864b-4acc-b249-99ebf69f839e" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd775df136694965a5a483b2b7979144-895934953924a725-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1a011c13ca289200cdc052bfe76992f6", + "traceparent": "00-7b90caa585d22a7767666f95b261b765-0fee81165d079b4e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "851323ce94e4b728756ea91d9c15e272", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1091,28 +1096,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:14:29 GMT", + "Date": "Tue, 15 Nov 2022 12:48:06 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21cbf6ce-c0f0-43f7-920f-8c9e12345ec3", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "21cbf6ce-c0f0-43f7-920f-8c9e12345ec3", - "x-ms-routing-request-id": "WESTUS2:20220815T191429Z:21cbf6ce-c0f0-43f7-920f-8c9e12345ec3" + "x-ms-correlation-request-id": "cbc53053-a5ae-4d73-ab46-7215d65e2acd", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "cbc53053-a5ae-4d73-ab46-7215d65e2acd", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124806Z:cbc53053-a5ae-4d73-ab46-7215d65e2acd" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd775df136694965a5a483b2b7979144-a0c55e14a289420f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c61070c1a134eb0c9327737abfde67ca", + "traceparent": "00-7b90caa585d22a7767666f95b261b765-2f2f85681937abd3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "39ea0a5d0c0c2368c5f2ff0b0965e039", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1120,28 +1125,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:14:44 GMT", + "Date": "Tue, 15 Nov 2022 12:48:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21e8923b-8cdd-4f10-88a8-0b2dddc76360", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "21e8923b-8cdd-4f10-88a8-0b2dddc76360", - "x-ms-routing-request-id": "WESTUS2:20220815T191444Z:21e8923b-8cdd-4f10-88a8-0b2dddc76360" + "x-ms-correlation-request-id": "a2defac4-a9a7-48bf-ba12-c066be426a62", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "a2defac4-a9a7-48bf-ba12-c066be426a62", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124821Z:a2defac4-a9a7-48bf-ba12-c066be426a62" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd775df136694965a5a483b2b7979144-0ece66480fc2f52b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3004ebd3f1e235243518f3e8357e1b72", + "traceparent": "00-7b90caa585d22a7767666f95b261b765-b33f5d77ea9c43c1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6e41c9ff9a9b311263a58544646261b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1149,28 +1154,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:14:59 GMT", + "Date": "Tue, 15 Nov 2022 12:48:36 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb24fefa-f83e-4473-86b3-347ed2c68f12", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "bb24fefa-f83e-4473-86b3-347ed2c68f12", - "x-ms-routing-request-id": "WESTUS2:20220815T191459Z:bb24fefa-f83e-4473-86b3-347ed2c68f12" + "x-ms-correlation-request-id": "62359dac-ef27-46a8-90a2-0926e72226cc", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "62359dac-ef27-46a8-90a2-0926e72226cc", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124837Z:62359dac-ef27-46a8-90a2-0926e72226cc" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd775df136694965a5a483b2b7979144-5bde091871760e35-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0026be351e4c710c0f1686005685d3ef", + "traceparent": "00-7b90caa585d22a7767666f95b261b765-f2d6d25855de8e4a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "cb284fede95dc2c4baefbff2941dad0f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1178,28 +1183,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:15:14 GMT", + "Date": "Tue, 15 Nov 2022 12:48:52 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5f376ef-7d0e-405d-b62a-eeaeb2d88d12", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "f5f376ef-7d0e-405d-b62a-eeaeb2d88d12", - "x-ms-routing-request-id": "WESTUS2:20220815T191514Z:f5f376ef-7d0e-405d-b62a-eeaeb2d88d12" + "x-ms-correlation-request-id": "5341c3ed-c103-4a01-8a1c-a76876074af0", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "5341c3ed-c103-4a01-8a1c-a76876074af0", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124853Z:5341c3ed-c103-4a01-8a1c-a76876074af0" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTcyMjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgxNDQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd775df136694965a5a483b2b7979144-8ab06b8aed1f53b9-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fceb88596265d0144bda901bae24b615", + "traceparent": "00-7b90caa585d22a7767666f95b261b765-15e157850f067e5a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d31d708e74d3c3d6f7b8d6678624bf62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1207,23 +1212,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:15:29 GMT", + "Date": "Tue, 15 Nov 2022 12:49:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d8e8506-a607-4b51-9271-6949d7f7e739", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "6d8e8506-a607-4b51-9271-6949d7f7e739", - "x-ms-routing-request-id": "WESTUS2:20220815T191529Z:6d8e8506-a607-4b51-9271-6949d7f7e739" + "x-ms-correlation-request-id": "fd494efe-427e-4667-8d43-234a2df1061d", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "fd494efe-427e-4667-8d43-234a2df1061d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124908Z:fd494efe-427e-4667-8d43-234a2df1061d" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "166391985", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1820861268", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(False)Async.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(False)Async.json index 0018a55170dc..867afd1c879f 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(False)Async.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(False)Async.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-21351059b81b0bcb19a6d34f3aa0e1f6-84ec4b73b8d33836-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "66eb39a5bcc6036686ae510a0d07e42c", + "traceparent": "00-bb6f1a0ff6594eac5e93c741023f00ef-908abf9833805dad-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e4839eb2ec070d0d59b64e686f3a4778", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:17:14 GMT", + "Date": "Tue, 15 Nov 2022 13:16:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abbd6479-c23e-4d71-a1d1-fc20f44d72c3", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "abbd6479-c23e-4d71-a1d1-fc20f44d72c3", - "x-ms-routing-request-id": "WESTUS2:20220815T191715Z:abbd6479-c23e-4d71-a1d1-fc20f44d72c3" + "x-ms-correlation-request-id": "afa14975-8b2a-44dc-be14-6e17c6d80abe", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "afa14975-8b2a-44dc-be14-6e17c6d80abe", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131621Z:afa14975-8b2a-44dc-be14-6e17c6d80abe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName8919?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName2519?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-1a394f09bb26fdae1862c98a90b90045-154c193005e4bc87-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d3c807cb8ec7341de6e6a79d8baa0dfe", + "traceparent": "00-8c76f0e8d02949ddf94c001cc13063c6-6bf78c91e3f633ab-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6aa08049e59d1e7f7ee60738788bb598", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:17:15 GMT", + "Date": "Tue, 15 Nov 2022 13:16:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6664fe8a-5d32-435c-b32a-df1d17ad1b19", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "6664fe8a-5d32-435c-b32a-df1d17ad1b19", - "x-ms-routing-request-id": "WESTUS2:20220815T191715Z:6664fe8a-5d32-435c-b32a-df1d17ad1b19" + "x-ms-correlation-request-id": "5f0f4168-6550-4888-a8d7-3cdbd948993b", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "5f0f4168-6550-4888-a8d7-3cdbd948993b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131623Z:5f0f4168-6550-4888-a8d7-3cdbd948993b" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName8919", - "name": "resourceGroupName8919", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2519", + "name": "resourceGroupName2519", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -97,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName8919/providers/Microsoft.Network/trafficmanagerprofiles/profileName8472?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2519/providers/Microsoft.Network/trafficmanagerprofiles/profileName8196?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-2cff60b954ed23d121a34087449ea140-34d8d93ee3df7808-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "712613f427744809c8909b873607ee3c", + "traceparent": "00-be91cc7cce4f784468728c9cea235b19-13742e4818f1ca86-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ef75641e77676f572c24919893be441f", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName8472", + "name": "profileName8196", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName8472" + "relativeName": "profileName8196" }, "monitorConfig": { "protocol": "HTTP", @@ -145,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:17:16 GMT", + "Date": "Tue, 15 Nov 2022 13:16:28 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9dcc84fa-f2bf-44ae-a9ae-49ce933acca3", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10786", - "x-ms-request-id": "712613f4-2774-4809-c890-9b873607ee3c", - "x-ms-routing-request-id": "WESTUS2:20220815T191717Z:9dcc84fa-f2bf-44ae-a9ae-49ce933acca3", + "x-ms-correlation-request-id": "fcba9533-7d2e-499b-9733-f9349346f864", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "ef75641e-7767-6f57-2c24-919893be441f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131628Z:fcba9533-7d2e-499b-9733-f9349346f864", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472", - "name": "profileName8472", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196", + "name": "profileName8196", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8472", - "fqdn": "profilename8472.trafficmanager.net", + "relativeName": "profilename8196", + "fqdn": "profilename8196.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -182,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -195,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -212,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -222,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName8919/providers/Microsoft.Network/trafficmanagerprofiles/profileName8472?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2519/providers/Microsoft.Network/trafficmanagerprofiles/profileName8196?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b5bd310f44678059cb322b996eab5bce-c820332cf861f2d7-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "144b3e59cfcfaadece32e0d5bf66fa04", + "traceparent": "00-d2194d55ad0ff560154baa4b90698710-80aee19356e67a38-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "470329612020b81504c6890506d5e02b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:17:17 GMT", + "Date": "Tue, 15 Nov 2022 13:16:28 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "241c9053-4177-46ee-a23c-4bf76d054e5f", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10775", - "x-ms-request-id": "144b3e59-cfcf-aade-ce32-e0d5bf66fa04", - "x-ms-routing-request-id": "WESTUS2:20220815T191717Z:241c9053-4177-46ee-a23c-4bf76d054e5f", + "x-ms-correlation-request-id": "400ad442-ae42-423c-af1e-2bb2c47489dd", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1981", + "x-ms-request-id": "47032961-2020-b815-04c6-890506d5e02b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131628Z:400ad442-ae42-423c-af1e-2bb2c47489dd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472", - "name": "profileName8472", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196", + "name": "profileName8196", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -259,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8472", - "fqdn": "profilename8472.trafficmanager.net", + "relativeName": "profilename8196", + "fqdn": "profilename8196.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -274,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -287,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -304,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -314,36 +305,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficmanagerprofiles/profileName8472?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficmanagerprofiles/profileName8196?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-579404aa4417c9b151f8d8785ed86aa3-5940f80cc358871f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f3180c44babda31ffd800b36f295fede", + "traceparent": "00-db10a955d51abf056e0a08de20245d4c-a1a95eacc17945c6-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d651cf9988d2d18829313d7954e78bbf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:17:17 GMT", + "Date": "Tue, 15 Nov 2022 13:16:29 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e107831-a974-462e-b445-31a8cd3a4c91", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10774", - "x-ms-request-id": "f3180c44-babd-a31f-fd80-0b36f295fede", - "x-ms-routing-request-id": "WESTUS2:20220815T191717Z:9e107831-a974-462e-b445-31a8cd3a4c91", + "x-ms-correlation-request-id": "6d063c16-3397-4fbd-99fa-7b474ad4559f", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1980", + "x-ms-request-id": "d651cf99-88d2-d188-2931-3d7954e78bbf", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131629Z:6d063c16-3397-4fbd-99fa-7b474ad4559f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472", - "name": "profileName8472", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196", + "name": "profileName8196", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -351,8 +342,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8472", - "fqdn": "profilename8472.trafficmanager.net", + "relativeName": "profilename8196", + "fqdn": "profilename8196.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -366,7 +357,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -379,11 +370,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -396,7 +388,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -406,16 +399,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficmanagerprofiles/profileName8472?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficmanagerprofiles/profileName8196?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "46", "Content-Type": "application/json", - "traceparent": "00-579404aa4417c9b151f8d8785ed86aa3-c0b87ae911f13cc5-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4d436bf7f85e242e357ca34247348862", + "traceparent": "00-db10a955d51abf056e0a08de20245d4c-84944f7911042cc6-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4ed6e7a26d87fe774fbdeba1ee516857", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -427,22 +420,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:17:18 GMT", + "Date": "Tue, 15 Nov 2022 13:16:31 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c733e5cc-bec4-45b0-9741-a93b419fd288", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10785", - "x-ms-request-id": "4d436bf7-f85e-242e-357c-a34247348862", - "x-ms-routing-request-id": "WESTUS2:20220815T191718Z:c733e5cc-bec4-45b0-9741-a93b419fd288", + "x-ms-correlation-request-id": "a8a91dca-9bb4-4eeb-ba17-37ef999a8eda", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4493", + "x-ms-request-id": "4ed6e7a2-6d87-fe77-4fbd-eba1ee516857", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131631Z:a8a91dca-9bb4-4eeb-ba17-37ef999a8eda", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472", - "name": "profileName8472", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196", + "name": "profileName8196", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -452,8 +445,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8472", - "fqdn": "profilename8472.trafficmanager.net", + "relativeName": "profilename8196", + "fqdn": "profilename8196.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -467,7 +460,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -480,11 +473,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -497,7 +491,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -507,36 +502,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName8919/providers/Microsoft.Network/trafficmanagerprofiles/profileName8472?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2519/providers/Microsoft.Network/trafficmanagerprofiles/profileName8196?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-009f18c803ccb4c1e5f9aba218a3ca21-97404216af35bf7b-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "29439795fbee9e7e1ea8174fc4a7b838", + "traceparent": "00-d848b8ea6428e39fed807e55876cf00c-9f42819e06bd166e-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c3fe65436d6dd84da1311eefe29b631c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:17:18 GMT", + "Date": "Tue, 15 Nov 2022 13:16:32 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fdb11441-8645-4e23-b47b-df1d194d29c6", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10773", - "x-ms-request-id": "29439795-fbee-9e7e-1ea8-174fc4a7b838", - "x-ms-routing-request-id": "WESTUS2:20220815T191719Z:fdb11441-8645-4e23-b47b-df1d194d29c6", + "x-ms-correlation-request-id": "0a61b402-98d1-40ce-ad4b-fc004646297a", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1979", + "x-ms-request-id": "c3fe6543-6d6d-d84d-a131-1eefe29b631c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131632Z:0a61b402-98d1-40ce-ad4b-fc004646297a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472", - "name": "profileName8472", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196", + "name": "profileName8196", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -546,8 +541,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8472", - "fqdn": "profilename8472.trafficmanager.net", + "relativeName": "profilename8196", + "fqdn": "profilename8196.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -561,7 +556,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -574,11 +569,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -591,7 +587,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -601,36 +598,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName8919/providers/Microsoft.Network/trafficmanagerprofiles/profileName8472?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2519/providers/Microsoft.Network/trafficmanagerprofiles/profileName8196?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f17065c57a5ba5c8925eac531f41a7ee-ec1b36836a4e3d85-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "54dd0134ad224ba5def3be4116dd5cc8", + "traceparent": "00-0e95c89ee2f7448a855938d51c9180bd-ebdc1385947bc6ee-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1e63c93a91fe2ca3585287149de6e3d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:17:18 GMT", + "Date": "Tue, 15 Nov 2022 13:16:32 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc30f0d6-f914-418a-8ced-c54bedbaab68", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10772", - "x-ms-request-id": "54dd0134-ad22-4ba5-def3-be4116dd5cc8", - "x-ms-routing-request-id": "WESTUS2:20220815T191719Z:cc30f0d6-f914-418a-8ced-c54bedbaab68", + "x-ms-correlation-request-id": "a7871fe9-0660-44ed-b263-6c5f95bb753f", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1978", + "x-ms-request-id": "1e63c93a-91fe-2ca3-5852-87149de6e3d8", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131632Z:a7871fe9-0660-44ed-b263-6c5f95bb753f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472", - "name": "profileName8472", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196", + "name": "profileName8196", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -640,8 +637,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8472", - "fqdn": "profilename8472.trafficmanager.net", + "relativeName": "profilename8196", + "fqdn": "profilename8196.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -655,7 +652,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -668,11 +665,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -685,7 +683,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -695,36 +694,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficmanagerprofiles/profileName8472?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficmanagerprofiles/profileName8196?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1daaf9403b8b6368ea7aace27cdc8b7f-ee66bd0a8dc0f17a-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5ba0a9f7d552fcf0eca52eb6e1df608d", + "traceparent": "00-ac0fd16f8d5253941df629787039c2e7-baf9b4c5b958c881-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ee35e6c8c8e835529afead564f881cb3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:17:18 GMT", + "Date": "Tue, 15 Nov 2022 13:16:33 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1dadcecb-8df8-4abc-b857-fff07ae77ab7", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10771", - "x-ms-request-id": "5ba0a9f7-d552-fcf0-eca5-2eb6e1df608d", - "x-ms-routing-request-id": "WESTUS2:20220815T191719Z:1dadcecb-8df8-4abc-b857-fff07ae77ab7", + "x-ms-correlation-request-id": "be0f3fd4-7926-4618-abe0-13e1529ddd7d", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1977", + "x-ms-request-id": "ee35e6c8-c8e8-3552-9afe-ad564f881cb3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131633Z:be0f3fd4-7926-4618-abe0-13e1529ddd7d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472", - "name": "profileName8472", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196", + "name": "profileName8196", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -734,8 +733,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8472", - "fqdn": "profilename8472.trafficmanager.net", + "relativeName": "profilename8196", + "fqdn": "profilename8196.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -749,7 +748,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -762,11 +761,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -779,7 +779,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -789,16 +790,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficmanagerprofiles/profileName8472?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficmanagerprofiles/profileName8196?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "86", "Content-Type": "application/json", - "traceparent": "00-1daaf9403b8b6368ea7aace27cdc8b7f-6af7baac2826185f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "450e6ac43457e73ff2f74bfa3c3d8741", + "traceparent": "00-ac0fd16f8d5253941df629787039c2e7-93983418ef025b9d-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2466ce594aeeb159c2d26b1ae5383bba", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -812,22 +813,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1942", + "Content-Length": "1992", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:17:19 GMT", + "Date": "Tue, 15 Nov 2022 13:16:36 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "22af2471-bc54-4e3f-bae3-016c28246d64", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10784", - "x-ms-request-id": "450e6ac4-3457-e73f-f2f7-4bfa3c3d8741", - "x-ms-routing-request-id": "WESTUS2:20220815T191720Z:22af2471-bc54-4e3f-bae3-016c28246d64", + "x-ms-correlation-request-id": "39d628f3-8675-4726-851a-ac9396b877cc", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4492", + "x-ms-request-id": "2466ce59-4aee-b159-c2d2-6b1ae5383bba", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131636Z:39d628f3-8675-4726-851a-ac9396b877cc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472", - "name": "profileName8472", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196", + "name": "profileName8196", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -839,8 +840,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8472", - "fqdn": "profilename8472.trafficmanager.net", + "relativeName": "profilename8196", + "fqdn": "profilename8196.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -854,7 +855,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -867,11 +868,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -884,7 +886,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -894,36 +897,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName8919/providers/Microsoft.Network/trafficmanagerprofiles/profileName8472?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2519/providers/Microsoft.Network/trafficmanagerprofiles/profileName8196?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e63f59a3289c11f4511db2a331cfaa01-5462e04086360b9e-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1b574e4b5c075fe611e0677d7fee6afe", + "traceparent": "00-0f8d8574c1b2aaa74c9ef460af269168-adaf8807491fa07f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fb26454e74667233762d83ffe44dddcf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1942", + "Content-Length": "1992", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 19:17:19 GMT", + "Date": "Tue, 15 Nov 2022 13:16:37 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05c6eed0-d237-4220-b02c-cd65e078ec86", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10770", - "x-ms-request-id": "1b574e4b-5c07-5fe6-11e0-677d7fee6afe", - "x-ms-routing-request-id": "WESTUS2:20220815T191720Z:05c6eed0-d237-4220-b02c-cd65e078ec86", + "x-ms-correlation-request-id": "2897a558-667f-4f3b-bbbe-2edccce9ef25", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1976", + "x-ms-request-id": "fb26454e-7466-7233-762d-83ffe44dddcf", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131637Z:2897a558-667f-4f3b-bbbe-2edccce9ef25", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472", - "name": "profileName8472", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196", + "name": "profileName8196", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -935,8 +938,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename8472", - "fqdn": "profilename8472.trafficmanager.net", + "relativeName": "profilename8196", + "fqdn": "profilename8196.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -950,7 +953,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -963,11 +966,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname8919/providers/Microsoft.Network/trafficManagerProfiles/profileName8472/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname2519/providers/Microsoft.Network/trafficManagerProfiles/profileName8196/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -980,7 +984,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -990,13 +995,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName8919/providers/Microsoft.Network/trafficmanagerprofiles/profileName8472?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName2519/providers/Microsoft.Network/trafficmanagerprofiles/profileName8196?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ac7d309317cec37169b8695a89f5c0af", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "cebbd435be807ee98d832c165c374f62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1004,28 +1009,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:17:22 GMT", + "Date": "Tue, 15 Nov 2022 13:16:43 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c19a7030-97b4-4c91-adbf-9c0d39ac9e2c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "ac7d3093-17ce-c371-69b8-695a89f5c0af", - "x-ms-routing-request-id": "WESTUS2:20220815T191723Z:c19a7030-97b4-4c91-adbf-9c0d39ac9e2c", + "x-ms-correlation-request-id": "8df1029d-1de1-4196-b57a-f5b1dc81985a", + "x-ms-ratelimit-remaining-subscription-resource-requests": "496", + "x-ms-request-id": "cebbd435-be80-7ee9-8d83-2c165c374f62", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131644Z:8df1029d-1de1-4196-b57a-f5b1dc81985a", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName8919?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName2519?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c79df9c81dc57733671015431994654e-1693f01e78d5997a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "926aed1d4487678684af3376ccc26803", + "traceparent": "00-ebacb86f062a3723515f13ef29969615-db0eaa056a60fb57-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0907f2c32062e54d9bf4adc0c659cd75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1033,28 +1038,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:17:23 GMT", + "Date": "Tue, 15 Nov 2022 13:16:45 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg5MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03be29d3-329e-4691-8835-c2d92f896caa", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "03be29d3-329e-4691-8835-c2d92f896caa", - "x-ms-routing-request-id": "WESTUS2:20220815T191724Z:03be29d3-329e-4691-8835-c2d92f896caa" + "x-ms-correlation-request-id": "2fb1aed0-ceea-4e70-a360-969f2ae25fe5", + "x-ms-ratelimit-remaining-subscription-deletes": "14989", + "x-ms-request-id": "2fb1aed0-ceea-4e70-a360-969f2ae25fe5", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131646Z:2fb1aed0-ceea-4e70-a360-969f2ae25fe5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg5MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c79df9c81dc57733671015431994654e-eef24c3648aa25a8-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9160b820d7844e77aa16271fe4fbf6a7", + "traceparent": "00-ebacb86f062a3723515f13ef29969615-00e1d22b6436bbd8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f23c20ded345156d87d5338b1029b733", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1062,28 +1067,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:17:23 GMT", + "Date": "Tue, 15 Nov 2022 13:16:46 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg5MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0adeff11-c9e0-4c5c-8321-1af95bca32fb", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "0adeff11-c9e0-4c5c-8321-1af95bca32fb", - "x-ms-routing-request-id": "WESTUS2:20220815T191724Z:0adeff11-c9e0-4c5c-8321-1af95bca32fb" + "x-ms-correlation-request-id": "6bdd5dbc-1bcb-4855-a227-c54dfd6ebef9", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "6bdd5dbc-1bcb-4855-a227-c54dfd6ebef9", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131646Z:6bdd5dbc-1bcb-4855-a227-c54dfd6ebef9" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg5MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c79df9c81dc57733671015431994654e-1f8eb001ccac2c94-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3dcc6550b48e41ef7b36b5f3923773f8", + "traceparent": "00-ebacb86f062a3723515f13ef29969615-5d87a8d149581047-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c121b7b63d5255e5b777adb9b16b9c7d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1091,28 +1096,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:17:38 GMT", + "Date": "Tue, 15 Nov 2022 13:17:01 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg5MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e5517069-6945-401b-b0c7-80f47e0a5c54", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "e5517069-6945-401b-b0c7-80f47e0a5c54", - "x-ms-routing-request-id": "WESTUS2:20220815T191739Z:e5517069-6945-401b-b0c7-80f47e0a5c54" + "x-ms-correlation-request-id": "6f0dec4e-482c-41b4-899a-01906e736ae3", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "6f0dec4e-482c-41b4-899a-01906e736ae3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131702Z:6f0dec4e-482c-41b4-899a-01906e736ae3" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg5MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c79df9c81dc57733671015431994654e-6ecabc289e7b77b4-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "135516dad661b67fd51861a9b4524fe2", + "traceparent": "00-ebacb86f062a3723515f13ef29969615-2b53a2b5985b0ca0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a5e16ededa1c212f2ecf8aa73aaf7f32", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1120,28 +1125,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:17:53 GMT", + "Date": "Tue, 15 Nov 2022 13:17:17 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg5MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e38e33e-8c4c-4b82-9de6-ecff2103ca0c", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "5e38e33e-8c4c-4b82-9de6-ecff2103ca0c", - "x-ms-routing-request-id": "WESTUS2:20220815T191754Z:5e38e33e-8c4c-4b82-9de6-ecff2103ca0c" + "x-ms-correlation-request-id": "e259617b-2c8e-4717-9afd-488dfb8206df", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "e259617b-2c8e-4717-9afd-488dfb8206df", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131717Z:e259617b-2c8e-4717-9afd-488dfb8206df" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg5MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c79df9c81dc57733671015431994654e-94dd7e5a2df305e1-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8dfe0a9d97c06c8ec91e164d2284bc72", + "traceparent": "00-ebacb86f062a3723515f13ef29969615-10d98f4193cf8c5f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "902b3bf054fca1ec3ae63bce26b3631c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1149,28 +1154,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:18:09 GMT", + "Date": "Tue, 15 Nov 2022 13:17:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg5MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99cde19a-0ec1-4728-a659-dadd5b7d867e", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "99cde19a-0ec1-4728-a659-dadd5b7d867e", - "x-ms-routing-request-id": "WESTUS2:20220815T191809Z:99cde19a-0ec1-4728-a659-dadd5b7d867e" + "x-ms-correlation-request-id": "e8dd4726-623b-432e-a04b-d392d74b153c", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "e8dd4726-623b-432e-a04b-d392d74b153c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131733Z:e8dd4726-623b-432e-a04b-d392d74b153c" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg5MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c79df9c81dc57733671015431994654e-46ff99c8acea160c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cd452fa2e2a57945e615687652458d28", + "traceparent": "00-ebacb86f062a3723515f13ef29969615-2ef9c19597e972b6-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a1adb5381247db1688ff9383b23e1b08", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1178,28 +1183,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:18:25 GMT", + "Date": "Tue, 15 Nov 2022 13:17:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg5MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3a41447-c116-4cbb-8a74-6d652559ad95", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "e3a41447-c116-4cbb-8a74-6d652559ad95", - "x-ms-routing-request-id": "WESTUS2:20220815T191825Z:e3a41447-c116-4cbb-8a74-6d652559ad95" + "x-ms-correlation-request-id": "5ec6d02e-ff81-447e-8f5b-ceb9d71e494b", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "5ec6d02e-ff81-447e-8f5b-ceb9d71e494b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131748Z:5ec6d02e-ff81-447e-8f5b-ceb9d71e494b" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg5MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI1MTktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c79df9c81dc57733671015431994654e-c6595c3b651806e5-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8755d2e6e539423888e84a43c0319451", + "traceparent": "00-ebacb86f062a3723515f13ef29969615-041069dbfd429d0f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "76c87af70c3f8a8182406a369f60fa7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1207,23 +1212,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 19:18:40 GMT", + "Date": "Tue, 15 Nov 2022 13:18:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07c395c1-970e-44da-80ce-9e3ad6198fd9", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "07c395c1-970e-44da-80ce-9e3ad6198fd9", - "x-ms-routing-request-id": "WESTUS2:20220815T191840Z:07c395c1-970e-44da-80ce-9e3ad6198fd9" + "x-ms-correlation-request-id": "ccdc0af8-ca95-4ddf-a07e-86927d3b342b", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "ccdc0af8-ca95-4ddf-a07e-86927d3b342b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131804Z:ccdc0af8-ca95-4ddf-a07e-86927d3b342b" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1627743844", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "48062430", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(True).json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(True).json index 535f4be8499b..bc9278765865 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(True).json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(True).json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3ce6e146b17aa54893f216cae7af5e94-01c9364d05005244-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "99f78189bc42b80c1af45007adbad18e", + "traceparent": "00-30437924f16a2ee32002dfc1dd8be712-dfae43128ad4c4c7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1751d223b307a5ad1d4bd6af15e00d33", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:39 GMT", + "Date": "Tue, 15 Nov 2022 12:49:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b4fc97d-680b-4c59-becc-3caa462b259c", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "6b4fc97d-680b-4c59-becc-3caa462b259c", - "x-ms-routing-request-id": "WESTUS2:20220803T050240Z:6b4fc97d-680b-4c59-becc-3caa462b259c" + "x-ms-correlation-request-id": "5f717192-b032-4344-bc06-70900f81ada8", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "5f717192-b032-4344-bc06-70900f81ada8", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124909Z:5f717192-b032-4344-bc06-70900f81ada8" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName4491?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName141?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-0e6a7709c229944fad77df93e0692235-2878900679897f4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "65c4faecec0f002c2ac74492f1c5e602", + "traceparent": "00-5c02a3ef160a2c348f40d612efab52a5-f499f550ea3c1692-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c71cf4e7e5c2718225293c364dee46c2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -69,21 +61,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "239", + "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:40 GMT", + "Date": "Tue, 15 Nov 2022 12:49:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e98d116-0ef4-436c-82f7-a205e628ce76", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "1e98d116-0ef4-436c-82f7-a205e628ce76", - "x-ms-routing-request-id": "WESTUS2:20220803T050241Z:1e98d116-0ef4-436c-82f7-a205e628ce76" + "x-ms-correlation-request-id": "87c7e3f4-dad5-486c-a2c1-317862b978b9", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "87c7e3f4-dad5-486c-a2c1-317862b978b9", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124911Z:87c7e3f4-dad5-486c-a2c1-317862b978b9" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName4491", - "name": "resourceGroupName4491", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName141", + "name": "resourceGroupName141", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName4491/providers/Microsoft.Network/trafficmanagerprofiles/profileName806?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName141/providers/Microsoft.Network/trafficmanagerprofiles/profileName9124?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "559", + "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-059bb9ee33d5a4499c73cbd29918deb2-8f54a6ebb5d20446-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "9105f807bf0deef03d06e1e89728e64e", + "traceparent": "00-088edda8a130294cc8248ed9de75c158-e3eff9a26517bcaf-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a2986be1e23495b276868a4060f00c04", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName806", + "name": "profileName9124", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName806" + "relativeName": "profileName9124" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1867", + "Content-Length": "1920", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:41 GMT", + "Date": "Tue, 15 Nov 2022 12:49:15 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0dbb2ce7-a87b-4cf3-8558-01c9d68deea6", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "9105f807-bf0d-eef0-3d06-e1e89728e64e", - "x-ms-routing-request-id": "WESTUS2:20220803T050242Z:0dbb2ce7-a87b-4cf3-8558-01c9d68deea6", + "x-ms-correlation-request-id": "3f7599fb-5d28-4024-9029-f92bf7d7dfd2", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "a2986be1-e234-95b2-7686-8a4060f00c04", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124915Z:3f7599fb-5d28-4024-9029-f92bf7d7dfd2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806", - "name": "profileName806", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124", + "name": "profileName9124", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename806", - "fqdn": "profilename806.trafficmanager.net", + "relativeName": "profilename9124", + "fqdn": "profilename9124.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName4491/providers/Microsoft.Network/trafficmanagerprofiles/profileName806?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName141/providers/Microsoft.Network/trafficmanagerprofiles/profileName9124?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-40bda6995f90e44ebd2ce8da1cde0ec0-4466b0acaa65d54e-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5fe5b1d528c29579ca9918f5c826292f", + "traceparent": "00-10bfd963f8918a9f45c4b515d114edfe-08166c4d046f6941-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e747383d80baec61cfa5e289716fcf5d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1877", + "Content-Length": "1930", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:41 GMT", + "Date": "Tue, 15 Nov 2022 12:49:15 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e51db958-ff74-4dfb-95e6-b81f0bd8af04", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10788", - "x-ms-request-id": "5fe5b1d5-28c2-9579-ca99-18f5c826292f", - "x-ms-routing-request-id": "WESTUS2:20220803T050242Z:e51db958-ff74-4dfb-95e6-b81f0bd8af04", + "x-ms-correlation-request-id": "a7896ec3-aeac-4b84-903a-de6abc38f5de", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1981", + "x-ms-request-id": "e747383d-80ba-ec61-cfa5-e289716fcf5d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124916Z:a7896ec3-aeac-4b84-903a-de6abc38f5de", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806", - "name": "profileName806", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124", + "name": "profileName9124", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename806", - "fqdn": "profilename806.trafficmanager.net", + "relativeName": "profilename9124", + "fqdn": "profilename9124.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,14 +305,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9a2e78dc3b47764eb9c8eb86a1da93d1-d2371653944bf94c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c1a60469fccc2db90ad527080a436902", + "traceparent": "00-887870d4055e2a2d4002531e6bec3782-51c6373a41c005af-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7534ec909074052a4287513b5b411135", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -325,34 +321,34 @@ "Cache-Control": "no-cache", "Content-Length": "273", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:42 GMT", + "Date": "Tue, 15 Nov 2022 12:49:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97442414-9584-4b97-b960-849b911df610", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "97442414-9584-4b97-b960-849b911df610", - "x-ms-routing-request-id": "WESTUS2:20220803T050242Z:97442414-9584-4b97-b960-849b911df610" + "x-ms-correlation-request-id": "24a67715-de8a-4d3f-bb78-c1fabd667a72", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "24a67715-de8a-4d3f-bb78-c1fabd667a72", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124916Z:24a67715-de8a-4d3f-bb78-c1fabd667a72" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficmanagerprofiles/profileName806/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficmanagerprofiles/profileName9124/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "45", "Content-Type": "application/json", - "traceparent": "00-9a2e78dc3b47764eb9c8eb86a1da93d1-c4a929f5f89ead49-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "3fbcf5e086dfde407f70c674a7fa2517", + "traceparent": "00-887870d4055e2a2d4002531e6bec3782-506851d960267b01-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "15f8381d5fa6600809acd38e00282406", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -367,18 +363,18 @@ "Cache-Control": "no-cache", "Content-Length": "301", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:42 GMT", + "Date": "Tue, 15 Nov 2022 12:49:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43a26116-e4ea-45bd-8a1e-dd76dc8d4e5b", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "43a26116-e4ea-45bd-8a1e-dd76dc8d4e5b", - "x-ms-routing-request-id": "WESTUS2:20220803T050243Z:43a26116-e4ea-45bd-8a1e-dd76dc8d4e5b" + "x-ms-correlation-request-id": "32a77912-dac4-4832-b5d0-b81ac37d4fbe", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "32a77912-dac4-4832-b5d0-b81ac37d4fbe", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124919Z:32a77912-dac4-4832-b5d0-b81ac37d4fbe" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficmanagerprofiles/profileName806/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficmanagerprofiles/profileName9124/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -389,36 +385,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficmanagerprofiles/profileName806?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficmanagerprofiles/profileName9124?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9a2e78dc3b47764eb9c8eb86a1da93d1-2450986f8fd2db4d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "937eb2dd2582d882f7b855ec00708a86", + "traceparent": "00-887870d4055e2a2d4002531e6bec3782-74b0e70c92ec0313-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "73b02db796bbad8f0d42a4332f26918d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1896", + "Content-Length": "1949", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:42 GMT", + "Date": "Tue, 15 Nov 2022 12:49:20 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c58b710-8ef6-4d8d-b477-155d50e6c8d1", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10787", - "x-ms-request-id": "937eb2dd-2582-d882-f7b8-55ec00708a86", - "x-ms-routing-request-id": "WESTUS2:20220803T050243Z:1c58b710-8ef6-4d8d-b477-155d50e6c8d1", + "x-ms-correlation-request-id": "d032a805-f1cd-4f65-bde9-1efa5e1d62a1", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1980", + "x-ms-request-id": "73b02db7-96bb-ad8f-0d42-a4332f26918d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124920Z:d032a805-f1cd-4f65-bde9-1efa5e1d62a1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806", - "name": "profileName806", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124", + "name": "profileName9124", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -428,8 +424,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename806", - "fqdn": "profilename806.trafficmanager.net", + "relativeName": "profilename9124", + "fqdn": "profilename9124.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -443,7 +439,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -456,11 +452,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -473,7 +470,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -483,36 +481,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName4491/providers/Microsoft.Network/trafficmanagerprofiles/profileName806?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName141/providers/Microsoft.Network/trafficmanagerprofiles/profileName9124?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b84c3baae6f75c48af914f1008342659-dc14b3b32a903d40-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d2141630e969e24fc3c7415b3645860f", + "traceparent": "00-321155a662421024efb8afc4cbedd614-724afad306816e35-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "386cac94b97630b6e4d36cc8bc9c0519", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1896", + "Content-Length": "1949", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:43 GMT", + "Date": "Tue, 15 Nov 2022 12:49:20 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7aa42c69-a062-4edb-9ca2-e3af08c251ed", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10786", - "x-ms-request-id": "d2141630-e969-e24f-c3c7-415b3645860f", - "x-ms-routing-request-id": "WESTUS2:20220803T050243Z:7aa42c69-a062-4edb-9ca2-e3af08c251ed", + "x-ms-correlation-request-id": "6e74b189-cc6a-44ab-bd20-63adfe6f21b4", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1979", + "x-ms-request-id": "386cac94-b976-30b6-e4d3-6cc8bc9c0519", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124920Z:6e74b189-cc6a-44ab-bd20-63adfe6f21b4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806", - "name": "profileName806", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124", + "name": "profileName9124", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -522,8 +520,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename806", - "fqdn": "profilename806.trafficmanager.net", + "relativeName": "profilename9124", + "fqdn": "profilename9124.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -537,7 +535,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -550,11 +548,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -567,7 +566,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -577,36 +577,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName4491/providers/Microsoft.Network/trafficmanagerprofiles/profileName806?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName141/providers/Microsoft.Network/trafficmanagerprofiles/profileName9124?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9e3f5cac8dc59141b51e0440b9ea651d-25f35654eb7cca44-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "582b0fb0d6c5ba7f73e347273153dd0f", + "traceparent": "00-888798abd43bd63e71438f25ae14a0ba-ea039997d9a1bd8e-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2d834a639d908679a84a0864bad431e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1896", + "Content-Length": "1949", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:43 GMT", + "Date": "Tue, 15 Nov 2022 12:49:21 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47d8ec3f-5649-4ca9-8587-311eaeb6b987", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10785", - "x-ms-request-id": "582b0fb0-d6c5-ba7f-73e3-47273153dd0f", - "x-ms-routing-request-id": "WESTUS2:20220803T050243Z:47d8ec3f-5649-4ca9-8587-311eaeb6b987", + "x-ms-correlation-request-id": "04c3b9dc-abb6-436e-b2bf-5c7c75cfc989", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1978", + "x-ms-request-id": "2d834a63-9d90-8679-a84a-0864bad431e2", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124921Z:04c3b9dc-abb6-436e-b2bf-5c7c75cfc989", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806", - "name": "profileName806", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124", + "name": "profileName9124", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -616,8 +616,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename806", - "fqdn": "profilename806.trafficmanager.net", + "relativeName": "profilename9124", + "fqdn": "profilename9124.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -631,7 +631,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -644,11 +644,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -661,7 +662,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -671,14 +673,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-35cc96c11a0d41478e2827eb12abda8a-b83d322740e8184a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "914340e652e5f4ae629ccfbbe326a2b1", + "traceparent": "00-7e776d6217bf669f8ce124c59fa6bd41-235cee759b374530-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "53fa451aebbcfd90767f8fe82ac6f071", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -686,27 +688,27 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:02:43 GMT", + "Date": "Tue, 15 Nov 2022 12:49:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96d3e0bc-f2a6-4161-bb9f-6753575bde3d", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-request-id": "96d3e0bc-f2a6-4161-bb9f-6753575bde3d", - "x-ms-routing-request-id": "WESTUS2:20220803T050244Z:96d3e0bc-f2a6-4161-bb9f-6753575bde3d" + "x-ms-correlation-request-id": "598373aa-864e-4d0c-928f-75821c61707c", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-request-id": "598373aa-864e-4d0c-928f-75821c61707c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124925Z:598373aa-864e-4d0c-928f-75821c61707c" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-35cc96c11a0d41478e2827eb12abda8a-02e6e5e51ae93045-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f13c453231455ac1965a5f86a128b170", + "traceparent": "00-7e776d6217bf669f8ce124c59fa6bd41-a6339016767e5c8a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e5d08a3c63a2f6fc32e58f2bb152760f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -715,18 +717,18 @@ "Cache-Control": "no-cache", "Content-Length": "282", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:44 GMT", + "Date": "Tue, 15 Nov 2022 12:49:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "147bd1ac-dd5b-4b0b-806f-d7b9acf27ebe", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "147bd1ac-dd5b-4b0b-806f-d7b9acf27ebe", - "x-ms-routing-request-id": "WESTUS2:20220803T050244Z:147bd1ac-dd5b-4b0b-806f-d7b9acf27ebe" + "x-ms-correlation-request-id": "f3f1ab4e-315f-4070-9858-23a5f6a2e971", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "f3f1ab4e-315f-4070-9858-23a5f6a2e971", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124925Z:f3f1ab4e-315f-4070-9858-23a5f6a2e971" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficmanagerprofiles/profileName806/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficmanagerprofiles/profileName9124/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -735,16 +737,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-35cc96c11a0d41478e2827eb12abda8a-bc7e391b05fb1849-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f57532e9f5025d296136f62806c4d74c", + "traceparent": "00-7e776d6217bf669f8ce124c59fa6bd41-8435b9889b9aedd2-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "76ae89a2b1a1775dba86b7110e915be1", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -761,18 +763,18 @@ "Cache-Control": "no-cache", "Content-Length": "341", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:44 GMT", + "Date": "Tue, 15 Nov 2022 12:49:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71c5cc0a-172d-4f0b-9a6e-943d6d74d809", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "71c5cc0a-172d-4f0b-9a6e-943d6d74d809", - "x-ms-routing-request-id": "WESTUS2:20220803T050245Z:71c5cc0a-172d-4f0b-9a6e-943d6d74d809" + "x-ms-correlation-request-id": "09a70125-81f7-4412-a006-3bcbdc9ae588", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "09a70125-81f7-4412-a006-3bcbdc9ae588", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124928Z:09a70125-81f7-4412-a006-3bcbdc9ae588" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficmanagerprofiles/profileName806/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficmanagerprofiles/profileName9124/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -785,36 +787,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficmanagerprofiles/profileName806?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficmanagerprofiles/profileName9124?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-35cc96c11a0d41478e2827eb12abda8a-6247d4688ae0b147-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ebf59540ec16b4ca7ee9fa8bf3275239", + "traceparent": "00-7e776d6217bf669f8ce124c59fa6bd41-7a78b5109e6108b1-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2f27975a4b04b640480421d75b644c23", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1936", + "Content-Length": "1989", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:44 GMT", + "Date": "Tue, 15 Nov 2022 12:49:28 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "37e62f87-4b31-4eaa-89b6-79aebc2d4b6b", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10784", - "x-ms-request-id": "ebf59540-ec16-b4ca-7ee9-fa8bf3275239", - "x-ms-routing-request-id": "WESTUS2:20220803T050245Z:37e62f87-4b31-4eaa-89b6-79aebc2d4b6b", + "x-ms-correlation-request-id": "5a004df6-d5e6-4f95-960e-d1a7df1c04ae", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1977", + "x-ms-request-id": "2f27975a-4b04-b640-4804-21d75b644c23", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124929Z:5a004df6-d5e6-4f95-960e-d1a7df1c04ae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806", - "name": "profileName806", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124", + "name": "profileName9124", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -826,8 +828,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename806", - "fqdn": "profilename806.trafficmanager.net", + "relativeName": "profilename9124", + "fqdn": "profilename9124.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -841,7 +843,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -854,11 +856,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -871,7 +874,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -881,36 +885,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName4491/providers/Microsoft.Network/trafficmanagerprofiles/profileName806?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName141/providers/Microsoft.Network/trafficmanagerprofiles/profileName9124?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-dbdc3dce81e5274da359206fde6ada18-8402f992df03e74e-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b0d15eeaadb13daf1cdf8f0e3a9853d2", + "traceparent": "00-d8b81d590921b481637201d30feb1370-1686dabbdf4a063f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a1457f0979188bcf2d582b1cacebe8a1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1936", + "Content-Length": "1989", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:02:45 GMT", + "Date": "Tue, 15 Nov 2022 12:49:29 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e5fdf54b-c4e1-46da-b671-7197b32108a0", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10783", - "x-ms-request-id": "b0d15eea-adb1-3daf-1cdf-8f0e3a9853d2", - "x-ms-routing-request-id": "WESTUS2:20220803T050245Z:e5fdf54b-c4e1-46da-b671-7197b32108a0", + "x-ms-correlation-request-id": "7d937206-9ed9-4cba-9c6b-ab2d08a1c5b8", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1976", + "x-ms-request-id": "a1457f09-7918-8bcf-2d58-2b1cacebe8a1", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124929Z:7d937206-9ed9-4cba-9c6b-ab2d08a1c5b8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806", - "name": "profileName806", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124", + "name": "profileName9124", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -922,8 +926,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename806", - "fqdn": "profilename806.trafficmanager.net", + "relativeName": "profilename9124", + "fqdn": "profilename9124.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -937,7 +941,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -950,11 +954,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname4491/providers/Microsoft.Network/trafficManagerProfiles/profileName806/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname141/providers/Microsoft.Network/trafficManagerProfiles/profileName9124/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -967,7 +972,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -977,13 +983,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName4491/providers/Microsoft.Network/trafficmanagerprofiles/profileName806?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName141/providers/Microsoft.Network/trafficmanagerprofiles/profileName9124?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0b451382c533fd5968c07618fa9e6a3a", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1ad1ad89462b560b49f72d9d90861c56", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -991,28 +997,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:02:46 GMT", + "Date": "Tue, 15 Nov 2022 12:49:35 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2909b859-7c73-4536-9cc5-6775c8fae507", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "0b451382-c533-fd59-68c0-7618fa9e6a3a", - "x-ms-routing-request-id": "WESTUS2:20220803T050247Z:2909b859-7c73-4536-9cc5-6775c8fae507", + "x-ms-correlation-request-id": "0bf687c4-fcb3-4616-8568-d6f93e10e26c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "496", + "x-ms-request-id": "1ad1ad89-462b-560b-49f7-2d9d90861c56", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124936Z:0bf687c4-fcb3-4616-8568-d6f93e10e26c", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName4491?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName141?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d2067af03656bf41bacdeed256721465-85afe3a00dfae144-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a73ebce426f2939ae6b7cf375cbb79e6", + "traceparent": "00-eff2097d150c7cf623640ee060540c64-1a17c4096b0b6b3a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8e079439ba4be0c9c79b02ab20230a5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:49:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e0484370-692b-4e54-9319-e9c22185d28a", + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-request-id": "e0484370-692b-4e54-9319-e9c22185d28a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124938Z:e0484370-692b-4e54-9319-e9c22185d28a" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-eff2097d150c7cf623640ee060540c64-2b871bd6a867de79-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "18e2d53c59e3cf55e4f1538f445f3525", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:49:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "63a1c735-6ff5-4c99-88a7-148d5519b149", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "63a1c735-6ff5-4c99-88a7-148d5519b149", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124938Z:63a1c735-6ff5-4c99-88a7-148d5519b149" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-eff2097d150c7cf623640ee060540c64-967da94e54ed46c1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1081d0ed6f3907c39b45195c61a89495", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:49:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c6dcc760-8f3e-4310-92a3-577db00ba73f", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "c6dcc760-8f3e-4310-92a3-577db00ba73f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124954Z:c6dcc760-8f3e-4310-92a3-577db00ba73f" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-eff2097d150c7cf623640ee060540c64-ec2a637ed6395757-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4b6f5ba1f241c179297dc8a1de687e15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 12:50:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "780d0328-ab06-4338-ab0e-0c0562fe6202", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "780d0328-ab06-4338-ab0e-0c0562fe6202", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125010Z:780d0328-ab06-4338-ab0e-0c0562fe6202" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-eff2097d150c7cf623640ee060540c64-bdf5f8d884a6764b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7b3332b9e9b0cc6d11da7c9e40f96d3c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1020,28 +1142,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:02:47 GMT", + "Date": "Tue, 15 Nov 2022 12:50:25 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0OTEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0aea254d-0cc2-49d8-92c9-653d70ad8765", - "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-request-id": "0aea254d-0cc2-49d8-92c9-653d70ad8765", - "x-ms-routing-request-id": "WESTUS2:20220803T050247Z:0aea254d-0cc2-49d8-92c9-653d70ad8765" + "x-ms-correlation-request-id": "b5d9f0e8-8f0a-4366-9f66-cddaee5a359f", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "b5d9f0e8-8f0a-4366-9f66-cddaee5a359f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125025Z:b5d9f0e8-8f0a-4366-9f66-cddaee5a359f" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0OTEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d2067af03656bf41bacdeed256721465-da9d46591ebef545-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7d2a5574ab5a5be078b2257bf621a0ac", + "traceparent": "00-eff2097d150c7cf623640ee060540c64-342ca076a487e1f4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e8eebe5deaeffae356bfe7bba6222933", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1049,28 +1171,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:02:47 GMT", + "Date": "Tue, 15 Nov 2022 12:50:40 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0OTEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be5f157f-7b46-4433-b830-f94c85b66af7", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "be5f157f-7b46-4433-b830-f94c85b66af7", - "x-ms-routing-request-id": "WESTUS2:20220803T050247Z:be5f157f-7b46-4433-b830-f94c85b66af7" + "x-ms-correlation-request-id": "fe63c2d4-e976-40be-80ea-83e60b7cdc1d", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "fe63c2d4-e976-40be-80ea-83e60b7cdc1d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125041Z:fe63c2d4-e976-40be-80ea-83e60b7cdc1d" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0OTEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE0MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d2067af03656bf41bacdeed256721465-e59766adca3c514e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d38290468a959c58b619a21edea95d4f", + "traceparent": "00-eff2097d150c7cf623640ee060540c64-79fe39da6ca48b10-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2ea204c61874b7e4eda23a6675db812f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1078,23 +1200,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:03:02 GMT", + "Date": "Tue, 15 Nov 2022 12:50:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d82e9470-f5e9-44b3-8ab7-0fcab3f243da", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "d82e9470-f5e9-44b3-8ab7-0fcab3f243da", - "x-ms-routing-request-id": "WESTUS2:20220803T050303Z:d82e9470-f5e9-44b3-8ab7-0fcab3f243da" + "x-ms-correlation-request-id": "fc5dd926-9aaa-4800-a77b-890c62d3c596", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "fc5dd926-9aaa-4800-a77b-890c62d3c596", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T125056Z:fc5dd926-9aaa-4800-a77b-890c62d3c596" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "2101991279", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1301027867", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(True)Async.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(True)Async.json index b4ce53914873..02cc6fcba6fe 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(True)Async.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(True)Async.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d38256e3f82e6c408008e019651f7917-31d56832352d914f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7600495cf22a38b40b4215df866803d4", + "traceparent": "00-abadb426636aeab29ff69ac484b6dcd7-9f0d589dd28cab1d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bc70a7bf9fd6ffaa2fc07059319f9f20", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:31 GMT", + "Date": "Tue, 15 Nov 2022 13:18:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62813180-bed2-435b-8938-8f8dc1830ad1", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "62813180-bed2-435b-8938-8f8dc1830ad1", - "x-ms-routing-request-id": "WESTUS2:20220803T051132Z:62813180-bed2-435b-8938-8f8dc1830ad1" + "x-ms-correlation-request-id": "c3fda886-1c18-4380-b070-a704175e58b8", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "c3fda886-1c18-4380-b070-a704175e58b8", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131805Z:c3fda886-1c18-4380-b070-a704175e58b8" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName7447?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName3010?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-b739de11011760478035c770ea29688b-d394066db9ab8241-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5f5a189fc26fee7469d93bdf957038d8", + "traceparent": "00-a6ea3a7896428629285797fe0653da64-c84181bbe9939c94-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e142d9155c6dcb5661fe33f1b4681004", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:32 GMT", + "Date": "Tue, 15 Nov 2022 13:18:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2152200-a50c-4b70-8f39-5c51870433a1", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "f2152200-a50c-4b70-8f39-5c51870433a1", - "x-ms-routing-request-id": "WESTUS2:20220803T051133Z:f2152200-a50c-4b70-8f39-5c51870433a1" + "x-ms-correlation-request-id": "a0ac0ed2-0df1-4a54-aa1a-95f0097cff5b", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-request-id": "a0ac0ed2-0df1-4a54-aa1a-95f0097cff5b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131807Z:a0ac0ed2-0df1-4a54-aa1a-95f0097cff5b" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7447", - "name": "resourceGroupName7447", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010", + "name": "resourceGroupName3010", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7447/providers/Microsoft.Network/trafficmanagerprofiles/profileName4365?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-5702a0dff521f843aa1367725ea7259a-de7a1077add8bb4f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "14ff5127d2ee768d6f0780942238aa2b", + "traceparent": "00-3f47d369a1440d42a4bbca4492b72862-f72451247bc421e2-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "496804f6b6e536eea1f78123f1b26e2a", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName4365", + "name": "profileName2877", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName4365" + "relativeName": "profileName2877" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:33 GMT", + "Date": "Tue, 15 Nov 2022 13:18:10 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10e40fd0-fc92-415c-9ca1-7c2458db2c42", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "14ff5127-d2ee-768d-6f07-80942238aa2b", - "x-ms-routing-request-id": "WESTUS2:20220803T051134Z:10e40fd0-fc92-415c-9ca1-7c2458db2c42", + "x-ms-correlation-request-id": "18df9967-b9d6-4ef4-b32c-fea6270f74ec", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4491", + "x-ms-request-id": "496804f6-b6e5-36ee-a1f7-8123f1b26e2a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131811Z:18df9967-b9d6-4ef4-b32c-fea6270f74ec", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365", - "name": "profileName4365", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877", + "name": "profileName2877", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4365", - "fqdn": "profilename4365.trafficmanager.net", + "relativeName": "profilename2877", + "fqdn": "profilename2877.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7447/providers/Microsoft.Network/trafficmanagerprofiles/profileName4365?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8b64aa3b367dcb42b3915e41e9318f60-25a8459111288347-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d77eee7b719587ed8b88c119785876d2", + "traceparent": "00-413c961b8643b658b20b72f21dacf6d7-4e89227a323a123a-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "311b0f9d52444a521af075a1770d7b58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:33 GMT", + "Date": "Tue, 15 Nov 2022 13:18:11 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53206ba2-199a-4cbe-bc56-9064d7ad50de", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10790", - "x-ms-request-id": "d77eee7b-7195-87ed-8b88-c119785876d2", - "x-ms-routing-request-id": "WESTUS2:20220803T051134Z:53206ba2-199a-4cbe-bc56-9064d7ad50de", + "x-ms-correlation-request-id": "226e31e8-d1c8-40e7-892a-0fad026fb745", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1975", + "x-ms-request-id": "311b0f9d-5244-4a52-1af0-75a1770d7b58", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131812Z:226e31e8-d1c8-40e7-892a-0fad026fb745", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365", - "name": "profileName4365", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877", + "name": "profileName2877", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4365", - "fqdn": "profilename4365.trafficmanager.net", + "relativeName": "profilename2877", + "fqdn": "profilename2877.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,14 +305,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a24bcd5a7352ba48b5f821b5d5c89ea1-9c5074f83999604e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "175f06dcbf04cc118be3ef6741e0cc30", + "traceparent": "00-8e7649d5387fc460f4b89307207e9513-9bb859f74338e2ba-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9b3a555fd6365e52eb0b4075db32daae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -325,34 +321,34 @@ "Cache-Control": "no-cache", "Content-Length": "274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:34 GMT", + "Date": "Tue, 15 Nov 2022 13:18:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b544e3e-5ae4-41c7-9138-5e50175da064", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "1b544e3e-5ae4-41c7-9138-5e50175da064", - "x-ms-routing-request-id": "WESTUS2:20220803T051134Z:1b544e3e-5ae4-41c7-9138-5e50175da064" + "x-ms-correlation-request-id": "b6675bb9-ec38-499f-b7f1-a690bede9c35", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "b6675bb9-ec38-499f-b7f1-a690bede9c35", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131812Z:b6675bb9-ec38-499f-b7f1-a690bede9c35" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficmanagerprofiles/profileName4365/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "45", "Content-Type": "application/json", - "traceparent": "00-a24bcd5a7352ba48b5f821b5d5c89ea1-2db5ce768cc3c945-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a6640f2e61f1b642647889661173fd17", + "traceparent": "00-8e7649d5387fc460f4b89307207e9513-a099952bdd0e9cbd-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a4540890df4ca4bfb21e2ff4404dbf93", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -367,18 +363,18 @@ "Cache-Control": "no-cache", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:34 GMT", + "Date": "Tue, 15 Nov 2022 13:18:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "497f5835-0e96-480d-a83a-91a77a10c924", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "497f5835-0e96-480d-a83a-91a77a10c924", - "x-ms-routing-request-id": "WESTUS2:20220803T051135Z:497f5835-0e96-480d-a83a-91a77a10c924" + "x-ms-correlation-request-id": "aefd3834-1e56-4312-8abd-55d02f729354", + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-request-id": "aefd3834-1e56-4312-8abd-55d02f729354", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131815Z:aefd3834-1e56-4312-8abd-55d02f729354" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficmanagerprofiles/profileName4365/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -389,36 +385,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficmanagerprofiles/profileName4365?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a24bcd5a7352ba48b5f821b5d5c89ea1-51d572cc3ef9124d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "1bb7ad9093d8bb27ddb14cb2818546ab", + "traceparent": "00-8e7649d5387fc460f4b89307207e9513-cb851d7fdcacb528-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9cc4297cd277c6f3bcbc463811dc6fe8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:34 GMT", + "Date": "Tue, 15 Nov 2022 13:18:15 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c93819d-7d0a-4ec8-828c-5f2cedd13c14", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10789", - "x-ms-request-id": "1bb7ad90-93d8-bb27-ddb1-4cb2818546ab", - "x-ms-routing-request-id": "WESTUS2:20220803T051135Z:8c93819d-7d0a-4ec8-828c-5f2cedd13c14", + "x-ms-correlation-request-id": "6d135705-d5a5-4b28-8cb0-19383a38bcbc", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1974", + "x-ms-request-id": "9cc4297c-d277-c6f3-bcbc-463811dc6fe8", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131816Z:6d135705-d5a5-4b28-8cb0-19383a38bcbc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365", - "name": "profileName4365", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877", + "name": "profileName2877", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -428,8 +424,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4365", - "fqdn": "profilename4365.trafficmanager.net", + "relativeName": "profilename2877", + "fqdn": "profilename2877.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -443,7 +439,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -456,11 +452,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -473,7 +470,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -483,36 +481,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7447/providers/Microsoft.Network/trafficmanagerprofiles/profileName4365?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cffe22a2f5d8dc46887f974d9e3055e4-19b3842dbe43364e-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "68eb90bcd0f37be1c3a9b28c36abbb17", + "traceparent": "00-84622da6fb6461f1c014c39edd978c3d-1c7a82a573f3613d-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6e10c616d6b97f0b9596e918a75d1e9d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:35 GMT", + "Date": "Tue, 15 Nov 2022 13:18:15 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d66a1d8-7cb1-468c-a0d8-8f3656d9ec89", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10788", - "x-ms-request-id": "68eb90bc-d0f3-7be1-c3a9-b28c36abbb17", - "x-ms-routing-request-id": "WESTUS2:20220803T051135Z:2d66a1d8-7cb1-468c-a0d8-8f3656d9ec89", + "x-ms-correlation-request-id": "216b0848-1f61-49e9-b030-71f1eedec078", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1973", + "x-ms-request-id": "6e10c616-d6b9-7f0b-9596-e918a75d1e9d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131816Z:216b0848-1f61-49e9-b030-71f1eedec078", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365", - "name": "profileName4365", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877", + "name": "profileName2877", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -522,8 +520,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4365", - "fqdn": "profilename4365.trafficmanager.net", + "relativeName": "profilename2877", + "fqdn": "profilename2877.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -537,7 +535,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -550,11 +548,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -567,7 +566,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -577,36 +577,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7447/providers/Microsoft.Network/trafficmanagerprofiles/profileName4365?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7f035affc0b84542986f7bb914828652-3eab3933040fc845-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "94d7d8e5b0289a57e8a8c840149034df", + "traceparent": "00-6c28c84144293711e9e05c49f58a0ed9-6773c0a6b42b274d-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b1f8ad4c3d6dbd37148de890998792d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:35 GMT", + "Date": "Tue, 15 Nov 2022 13:18:16 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb4294ad-a9fe-4b28-9b1f-dc99e4e7b0b0", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10787", - "x-ms-request-id": "94d7d8e5-b028-9a57-e8a8-c840149034df", - "x-ms-routing-request-id": "WESTUS2:20220803T051136Z:cb4294ad-a9fe-4b28-9b1f-dc99e4e7b0b0", + "x-ms-correlation-request-id": "c3c55e1a-ec85-4561-b700-100f95db9adb", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1972", + "x-ms-request-id": "b1f8ad4c-3d6d-bd37-148d-e890998792d5", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131817Z:c3c55e1a-ec85-4561-b700-100f95db9adb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365", - "name": "profileName4365", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877", + "name": "profileName2877", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -616,8 +616,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4365", - "fqdn": "profilename4365.trafficmanager.net", + "relativeName": "profilename2877", + "fqdn": "profilename2877.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -631,7 +631,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -644,11 +644,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -661,7 +662,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -671,14 +673,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-592e138b860b894381db5a5d2f8005ed-fe9cce0d9f8d9746-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "80aade329587bf23cc3c582fe09b8432", + "traceparent": "00-74bab77f7529c1666ebc2efd9cf3330e-e2163e88bd624057-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7ade47ae503ca6d91e4406e0e9db1e5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -686,27 +688,27 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:11:36 GMT", + "Date": "Tue, 15 Nov 2022 13:18:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5110ef96-1095-4640-9aab-824adfc78713", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-request-id": "5110ef96-1095-4640-9aab-824adfc78713", - "x-ms-routing-request-id": "WESTUS2:20220803T051137Z:5110ef96-1095-4640-9aab-824adfc78713" + "x-ms-correlation-request-id": "ba664d41-5c40-4713-b4fb-9adc3f21a342", + "x-ms-ratelimit-remaining-subscription-deletes": "14988", + "x-ms-request-id": "ba664d41-5c40-4713-b4fb-9adc3f21a342", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131819Z:ba664d41-5c40-4713-b4fb-9adc3f21a342" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-592e138b860b894381db5a5d2f8005ed-8aa121d0e6065443-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a8cc34f6b1ad0b823950804a08a06632", + "traceparent": "00-74bab77f7529c1666ebc2efd9cf3330e-68ecb3e0de070947-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "63eca89ebde3d87a8f53592bee7be60e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -715,18 +717,18 @@ "Cache-Control": "no-cache", "Content-Length": "283", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:36 GMT", + "Date": "Tue, 15 Nov 2022 13:18:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e585eda-a070-4e58-9bab-c45ae02b6864", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "7e585eda-a070-4e58-9bab-c45ae02b6864", - "x-ms-routing-request-id": "WESTUS2:20220803T051137Z:7e585eda-a070-4e58-9bab-c45ae02b6864" + "x-ms-correlation-request-id": "7d53ab06-aad9-44bd-9533-caf08ca58709", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "7d53ab06-aad9-44bd-9533-caf08ca58709", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131819Z:7d53ab06-aad9-44bd-9533-caf08ca58709" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficmanagerprofiles/profileName4365/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -735,16 +737,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-592e138b860b894381db5a5d2f8005ed-dc6d822ded7f584c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "585ad3743a01508fb517c7ec5728b94c", + "traceparent": "00-74bab77f7529c1666ebc2efd9cf3330e-93fa6f9317d19604-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "60691303a37ffc61d45293283656d339", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -761,18 +763,18 @@ "Cache-Control": "no-cache", "Content-Length": "342", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:37 GMT", + "Date": "Tue, 15 Nov 2022 13:18:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32a3b47f-de75-41c0-b6a8-edb8f84e0731", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "32a3b47f-de75-41c0-b6a8-edb8f84e0731", - "x-ms-routing-request-id": "WESTUS2:20220803T051137Z:32a3b47f-de75-41c0-b6a8-edb8f84e0731" + "x-ms-correlation-request-id": "1d582050-beb8-4258-a208-c67d884ec1f4", + "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-request-id": "1d582050-beb8-4258-a208-c67d884ec1f4", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131822Z:1d582050-beb8-4258-a208-c67d884ec1f4" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficmanagerprofiles/profileName4365/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -785,36 +787,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficmanagerprofiles/profileName4365?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-592e138b860b894381db5a5d2f8005ed-0e134d9cc7f97e46-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e04995248bc480315b9e473714d8b72b", + "traceparent": "00-74bab77f7529c1666ebc2efd9cf3330e-21a63493b67b2838-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f0f1896f2f9bf1f1cc05eae8f6adb8a3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1942", + "Content-Length": "1992", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:37 GMT", + "Date": "Tue, 15 Nov 2022 13:18:21 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64d6c7d6-c6f8-405e-8be8-871276c6b136", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10786", - "x-ms-request-id": "e0499524-8bc4-8031-5b9e-473714d8b72b", - "x-ms-routing-request-id": "WESTUS2:20220803T051138Z:64d6c7d6-c6f8-405e-8be8-871276c6b136", + "x-ms-correlation-request-id": "880ba4a7-7622-42ca-8082-6c882deaf108", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1971", + "x-ms-request-id": "f0f1896f-2f9b-f1f1-cc05-eae8f6adb8a3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131822Z:880ba4a7-7622-42ca-8082-6c882deaf108", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365", - "name": "profileName4365", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877", + "name": "profileName2877", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -826,8 +828,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4365", - "fqdn": "profilename4365.trafficmanager.net", + "relativeName": "profilename2877", + "fqdn": "profilename2877.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -841,7 +843,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -854,11 +856,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -871,7 +874,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -881,36 +885,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7447/providers/Microsoft.Network/trafficmanagerprofiles/profileName4365?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8e85b5e0ab9c174da5e4bc27ab98e07d-8c501bd8ac77ed41-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0dba25d52c41bb31a47bf396ea96b311", + "traceparent": "00-109ba419229418bde32f70b1a8218622-14dcbce9f77d0ee6-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d6ddf85ebe71fadf47ef8f912951a138", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1942", + "Content-Length": "1992", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:11:37 GMT", + "Date": "Tue, 15 Nov 2022 13:18:22 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f67c4e21-97fb-45e2-9e71-e0e13f0d652f", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10785", - "x-ms-request-id": "0dba25d5-2c41-bb31-a47b-f396ea96b311", - "x-ms-routing-request-id": "WESTUS2:20220803T051138Z:f67c4e21-97fb-45e2-9e71-e0e13f0d652f", + "x-ms-correlation-request-id": "45e7ac6d-2284-4409-a3ee-de49d91727de", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1970", + "x-ms-request-id": "d6ddf85e-be71-fadf-47ef-8f912951a138", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131823Z:45e7ac6d-2284-4409-a3ee-de49d91727de", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365", - "name": "profileName4365", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877", + "name": "profileName2877", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -922,8 +926,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4365", - "fqdn": "profilename4365.trafficmanager.net", + "relativeName": "profilename2877", + "fqdn": "profilename2877.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -937,7 +941,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -950,11 +954,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7447/providers/Microsoft.Network/trafficManagerProfiles/profileName4365/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname3010/providers/Microsoft.Network/trafficManagerProfiles/profileName2877/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -967,7 +972,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -977,13 +983,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7447/providers/Microsoft.Network/trafficmanagerprofiles/profileName4365?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName3010/providers/Microsoft.Network/trafficmanagerprofiles/profileName2877?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "722633978657e96da1dafc62f2583cdc", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "64bc2080f589d47321789379b9780527", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -991,28 +997,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:11:39 GMT", + "Date": "Tue, 15 Nov 2022 13:18:28 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c698890-32d1-4304-b625-78bc2ce324ee", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "72263397-8657-e96d-a1da-fc62f2583cdc", - "x-ms-routing-request-id": "WESTUS2:20220803T051140Z:2c698890-32d1-4304-b625-78bc2ce324ee", + "x-ms-correlation-request-id": "d207aa90-6a4f-46d8-9d48-3afeab316551", + "x-ms-ratelimit-remaining-subscription-resource-requests": "495", + "x-ms-request-id": "64bc2080-f589-d473-2178-9379b9780527", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131828Z:d207aa90-6a4f-46d8-9d48-3afeab316551", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName7447?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName3010?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-50951f9726b61c4b9ebe76ee7e487964-14b0c071015ce34b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "31169b60ac6df70b648d3b49979b95c5", + "traceparent": "00-14da228ca9993c7caf4c28c79beb8eb2-81c69ccb84f1fde0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3ecaf099fc79b0c8a9f6a9aba060c77a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1020,28 +1026,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:11:40 GMT", + "Date": "Tue, 15 Nov 2022 13:18:29 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a5a0696-f98a-4899-8e63-8d6c1fe31979", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "9a5a0696-f98a-4899-8e63-8d6c1fe31979", - "x-ms-routing-request-id": "WESTUS2:20220803T051140Z:9a5a0696-f98a-4899-8e63-8d6c1fe31979" + "x-ms-correlation-request-id": "80115f71-4d80-424a-a5d7-88eb87d41604", + "x-ms-ratelimit-remaining-subscription-deletes": "14987", + "x-ms-request-id": "80115f71-4d80-424a-a5d7-88eb87d41604", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131829Z:80115f71-4d80-424a-a5d7-88eb87d41604" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-50951f9726b61c4b9ebe76ee7e487964-5753b16ac25d9e4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4e35173f8180eba3282f0ec94b245106", + "traceparent": "00-14da228ca9993c7caf4c28c79beb8eb2-f3ac57070cb480ca-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "39f768ea638783bf580bbb934bc834c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1049,28 +1055,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:11:40 GMT", + "Date": "Tue, 15 Nov 2022 13:18:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff1df798-ddee-4c6c-b47f-bad7b0e278e9", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "ff1df798-ddee-4c6c-b47f-bad7b0e278e9", - "x-ms-routing-request-id": "WESTUS2:20220803T051141Z:ff1df798-ddee-4c6c-b47f-bad7b0e278e9" + "x-ms-correlation-request-id": "640ca3d3-26c3-4a3b-b5de-d2fd8c82b0cd", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "640ca3d3-26c3-4a3b-b5de-d2fd8c82b0cd", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131830Z:640ca3d3-26c3-4a3b-b5de-d2fd8c82b0cd" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-50951f9726b61c4b9ebe76ee7e487964-b94b416cb6243b41-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "bb7737445bb81b2bc7c6799c40a4c795", + "traceparent": "00-14da228ca9993c7caf4c28c79beb8eb2-5e2b3c0836ac4a4a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "061618b12f0f4636d760b97047cf8643", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1078,28 +1084,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:11:55 GMT", + "Date": "Tue, 15 Nov 2022 13:18:45 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5166a7aa-9072-4ae9-aa83-69ba6407d411", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "5166a7aa-9072-4ae9-aa83-69ba6407d411", - "x-ms-routing-request-id": "WESTUS2:20220803T051156Z:5166a7aa-9072-4ae9-aa83-69ba6407d411" + "x-ms-correlation-request-id": "da9169c8-776c-4d69-a8e9-c21264f689b4", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "da9169c8-776c-4d69-a8e9-c21264f689b4", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131845Z:da9169c8-776c-4d69-a8e9-c21264f689b4" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-50951f9726b61c4b9ebe76ee7e487964-4ace3c89a9116c4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "800aeec44765694593b4b982360b0493", + "traceparent": "00-14da228ca9993c7caf4c28c79beb8eb2-f75d0f79ea1a1662-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "37c0dab48e6900f2f2e57ee497861dbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1107,28 +1113,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:12:10 GMT", + "Date": "Tue, 15 Nov 2022 13:19:00 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "356f4601-9472-49ec-b825-d06b9bc620b2", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "356f4601-9472-49ec-b825-d06b9bc620b2", - "x-ms-routing-request-id": "WESTUS2:20220803T051211Z:356f4601-9472-49ec-b825-d06b9bc620b2" + "x-ms-correlation-request-id": "b5a4cf14-18a0-4d09-a14a-4095e9529fd5", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "b5a4cf14-18a0-4d09-a14a-4095e9529fd5", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131901Z:b5a4cf14-18a0-4d09-a14a-4095e9529fd5" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-50951f9726b61c4b9ebe76ee7e487964-059ab3d4244ae84c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f822657f0d56e393eb1a87b90706aa83", + "traceparent": "00-14da228ca9993c7caf4c28c79beb8eb2-236df31f20048c0f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1147f4d43a4fbbbf31b06227a94e3b89", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1136,28 +1142,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:12:26 GMT", + "Date": "Tue, 15 Nov 2022 13:19:16 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6c38069-0841-432b-86d3-bb2a9ec0fb79", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "b6c38069-0841-432b-86d3-bb2a9ec0fb79", - "x-ms-routing-request-id": "WESTUS2:20220803T051226Z:b6c38069-0841-432b-86d3-bb2a9ec0fb79" + "x-ms-correlation-request-id": "9c311002-12d0-4e03-b0a8-0cc754afead8", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "9c311002-12d0-4e03-b0a8-0cc754afead8", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131916Z:9c311002-12d0-4e03-b0a8-0cc754afead8" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-50951f9726b61c4b9ebe76ee7e487964-c7d2dccce16c1741-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5c047867d01afda0f20e2803a2a9e4bb", + "traceparent": "00-14da228ca9993c7caf4c28c79beb8eb2-3b937d9a5773fa16-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "70de7885fc0722572616142ab051ae50", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1165,28 +1171,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:12:41 GMT", + "Date": "Tue, 15 Nov 2022 13:19:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74d79c4c-3fcf-4cc9-a820-ce7f7e50ef96", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "74d79c4c-3fcf-4cc9-a820-ce7f7e50ef96", - "x-ms-routing-request-id": "WESTUS2:20220803T051241Z:74d79c4c-3fcf-4cc9-a820-ce7f7e50ef96" + "x-ms-correlation-request-id": "631ff91c-eadc-4777-8d65-4a0814f85ad2", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "631ff91c-eadc-4777-8d65-4a0814f85ad2", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131932Z:631ff91c-eadc-4777-8d65-4a0814f85ad2" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0NDctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTMwMTAtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-50951f9726b61c4b9ebe76ee7e487964-8c16979c4e99e34e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "da1ce6c2cf81b73e5b26954bbf8b618c", + "traceparent": "00-14da228ca9993c7caf4c28c79beb8eb2-92f037c96d6ab0ac-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "539bfc4374877af31b0506b82ccb56a4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1194,23 +1200,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:12:56 GMT", + "Date": "Tue, 15 Nov 2022 13:19:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81202bd9-6279-48c5-b01c-e17f32d3e35c", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "81202bd9-6279-48c5-b01c-e17f32d3e35c", - "x-ms-routing-request-id": "WESTUS2:20220803T051256Z:81202bd9-6279-48c5-b01c-e17f32d3e35c" + "x-ms-correlation-request-id": "9456c4ff-1ac8-4d43-9428-38b63b6e2169", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "9456c4ff-1ac8-4d43-9428-38b63b6e2169", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131947Z:9456c4ff-1ac8-4d43-9428-38b63b6e2169" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1523526200", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1892565995", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(null).json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(null).json index 32bb39dc4db8..a745be7c2ce5 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(null).json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(null).json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7d866fee9f9c29e1ecad4c0257351bf7-6f55233f0dcb18c8-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a0037f4bd25c501343cb4405fd130377", + "traceparent": "00-e9310f6c7256b54d18b00a1df2757d40-653442224348866b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8fe0e4b5c58d6baca261f6c82826d3e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:18 GMT", + "Date": "Tue, 15 Nov 2022 12:45:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5528c336-1022-4e15-a69d-bc420d2d632c", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "5528c336-1022-4e15-a69d-bc420d2d632c", - "x-ms-routing-request-id": "WESTUS2:20220815T185219Z:5528c336-1022-4e15-a69d-bc420d2d632c" + "x-ms-correlation-request-id": "2abb0ec3-48c5-46fb-8a82-fcb8b8ad83a0", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "2abb0ec3-48c5-46fb-8a82-fcb8b8ad83a0", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124541Z:2abb0ec3-48c5-46fb-8a82-fcb8b8ad83a0" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName4445?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName4445?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-f15ce6a8852f0470c65bdad242f17c5c-d924fff65c27b31a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9d793ca74e0fe834a30f85292ca6aa53", + "traceparent": "00-413ca108f6589a989397f773718e59be-20b7bab8a97b64ed-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "59735a40497383787bfe88cc91230977", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,18 +63,18 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:19 GMT", + "Date": "Tue, 15 Nov 2022 12:45:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dead4997-6606-4e9d-ac74-799c2b5f6719", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "dead4997-6606-4e9d-ac74-799c2b5f6719", - "x-ms-routing-request-id": "WESTUS2:20220815T185220Z:dead4997-6606-4e9d-ac74-799c2b5f6719" + "x-ms-correlation-request-id": "eb697d1e-6168-4a26-ae08-26983b43b627", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "eb697d1e-6168-4a26-ae08-26983b43b627", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124543Z:eb697d1e-6168-4a26-ae08-26983b43b627" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName4445", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4445", "name": "resourceGroupName4445", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", @@ -97,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName5195?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName389?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "561", + "Content-Length": "559", "Content-Type": "application/json", - "traceparent": "00-aba25a1f2f9338316e796927b9c9ee92-1b1c90f1de859224-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c2693f95fc48535460fa7d8d5a87c37a", + "traceparent": "00-a40e70377b32d8fdc3d7339652a43c4f-70d7c4451d8446d4-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8faf8708c4f8540849af03f5c588bc08", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName5195", + "name": "profileName389", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName5195" + "relativeName": "profileName389" }, "monitorConfig": { "protocol": "HTTP", @@ -145,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1917", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:20 GMT", + "Date": "Tue, 15 Nov 2022 12:45:48 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d00b6544-37cf-49b0-b21f-21f27487fb90", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "c2693f95-fc48-5354-60fa-7d8d5a87c37a", - "x-ms-routing-request-id": "WESTUS2:20220815T185221Z:d00b6544-37cf-49b0-b21f-21f27487fb90", + "x-ms-correlation-request-id": "fb7bec00-04f5-4259-b2f4-be0225695183", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4498", + "x-ms-request-id": "8faf8708-c4f8-5408-49af-03f5c588bc08", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124548Z:fb7bec00-04f5-4259-b2f4-be0225695183", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195", - "name": "profileName5195", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389", + "name": "profileName389", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename5195", - "fqdn": "profilename5195.trafficmanager.net", + "relativeName": "profilename389", + "fqdn": "profilename389.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -182,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -195,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -212,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -222,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName5195?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName389?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-31990c44698df1441a71af1d3b08ae79-3ac28643219a1790-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e5aae9167a9f313bcfb8b9c38d261625", + "traceparent": "00-ea3eccc026dd715fc3c9e97d9f2c7ad2-dc6f3c3108880062-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c4de5d32ee569a42670b11c7249f103e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1927", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:21 GMT", + "Date": "Tue, 15 Nov 2022 12:45:48 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c04f0df6-a6f9-49b2-be22-498e4947435b", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10786", - "x-ms-request-id": "e5aae916-7a9f-313b-cfb8-b9c38d261625", - "x-ms-routing-request-id": "WESTUS2:20220815T185221Z:c04f0df6-a6f9-49b2-be22-498e4947435b", + "x-ms-correlation-request-id": "5cf39ef6-7dff-4500-ab54-1cd8e78c5972", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1993", + "x-ms-request-id": "c4de5d32-ee56-9a42-670b-11c7249f103e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124549Z:5cf39ef6-7dff-4500-ab54-1cd8e78c5972", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195", - "name": "profileName5195", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389", + "name": "profileName389", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -259,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename5195", - "fqdn": "profilename5195.trafficmanager.net", + "relativeName": "profilename389", + "fqdn": "profilename389.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -274,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -287,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -304,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -314,34 +305,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Resources?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c13b88b6b163aad12aa3333aaf581e71-5b20c643ed01aa2f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d367b29ab599ab79e8263c15d0a68d1b", + "traceparent": "00-d495fe0c1de446d2cefa3ecdd0516eae-8e0f97787a84ecf3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9e1f50ed50237b5b511e0fc44683bef3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "17477", + "Content-Length": "18075", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:21 GMT", + "Date": "Tue, 15 Nov 2022 12:45:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88e09dcf-fbb2-4153-8734-226d3a0bdcf5", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "88e09dcf-fbb2-4153-8734-226d3a0bdcf5", - "x-ms-routing-request-id": "WESTUS2:20220815T185221Z:88e09dcf-fbb2-4153-8734-226d3a0bdcf5" + "x-ms-correlation-request-id": "c23524a8-bf26-4f86-8d21-c7ad0880ab9d", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "c23524a8-bf26-4f86-8d21-c7ad0880ab9d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124549Z:c23524a8-bf26-4f86-8d21-c7ad0880ab9d" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Resources", "namespace": "Microsoft.Resources", "authorizations": [ { @@ -875,7 +866,12 @@ "Jio India West", "West US 3", "Qatar Central", - "Sweden Central" + "Sweden Central", + "East US SLV", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" ], "apiVersions": [ "2019-05-01", @@ -952,7 +948,12 @@ "Jio India West", "West US 3", "Qatar Central", - "Sweden Central" + "Sweden Central", + "East US SLV", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" ], "apiVersions": [ "2019-05-01", @@ -1235,6 +1236,14 @@ ], "capabilities": "None" }, + { + "resourceType": "validateResources", + "locations": [], + "apiVersions": [ + "2022-06-01" + ], + "capabilities": "None" + }, { "resourceType": "links", "locations": [], @@ -1352,7 +1361,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1395,7 +1406,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1438,7 +1451,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1477,6 +1492,7 @@ "Korea South", "North Europe", "Norway East", + "Qatar Central", "Sweden Central", "UAE North", "West Central US", @@ -1485,7 +1501,9 @@ "West US", "West US 3", "South Central US", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2022-02-01", @@ -1526,6 +1544,7 @@ "Korea South", "North Europe", "Norway East", + "Qatar Central", "Sweden Central", "UAE North", "West Central US", @@ -1534,7 +1553,9 @@ "West US", "West US 3", "South Central US", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2022-02-01", @@ -1568,6 +1589,14 @@ "2022-03-01-preview" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "snapshots", + "locations": [], + "apiVersions": [ + "2022-11-01-preview" + ], + "capabilities": "SupportsExtension" } ], "registrationState": "Registered", @@ -1575,50 +1604,50 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c13b88b6b163aad12aa3333aaf581e71-b9254da3c6c68afe-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "43130a4bc5fc1ab30337f28f4290c539", + "traceparent": "00-d495fe0c1de446d2cefa3ecdd0516eae-9deb5d4a6d372d72-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "349a804244441a20451528ecb34130a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "274", + "Content-Length": "273", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:21 GMT", + "Date": "Tue, 15 Nov 2022 12:45:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c6a0308-700b-4ca1-8a11-4569ebc284c2", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "5c6a0308-700b-4ca1-8a11-4569ebc284c2", - "x-ms-routing-request-id": "WESTUS2:20220815T185222Z:5c6a0308-700b-4ca1-8a11-4569ebc284c2" + "x-ms-correlation-request-id": "8325ac78-1136-4dee-b2eb-61babf0072e7", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "8325ac78-1136-4dee-b2eb-61babf0072e7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124549Z:8325ac78-1136-4dee-b2eb-61babf0072e7" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName5195/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName389/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "45", "Content-Type": "application/json", - "traceparent": "00-c13b88b6b163aad12aa3333aaf581e71-8d1f983e1061ed19-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a7f358e4ef1f60e070fffc793d266028", + "traceparent": "00-d495fe0c1de446d2cefa3ecdd0516eae-abd9bec32b62c55f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7408c59e1d69e1e501637237de7d54e4", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1631,20 +1660,20 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "302", + "Content-Length": "301", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:22 GMT", + "Date": "Tue, 15 Nov 2022 12:45:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b66a753-9772-4a61-a077-fa2f6d096dda", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "7b66a753-9772-4a61-a077-fa2f6d096dda", - "x-ms-routing-request-id": "WESTUS2:20220815T185222Z:7b66a753-9772-4a61-a077-fa2f6d096dda" + "x-ms-correlation-request-id": "a81fcae6-3df0-4b0c-93d9-f49bc01cb291", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "a81fcae6-3df0-4b0c-93d9-f49bc01cb291", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124552Z:a81fcae6-3df0-4b0c-93d9-f49bc01cb291" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName5195/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName389/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -1655,36 +1684,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName5195?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName389?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c13b88b6b163aad12aa3333aaf581e71-7822093f3c6cc05c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "82779d2ad213d528ff4dcf61c2e96857", + "traceparent": "00-d495fe0c1de446d2cefa3ecdd0516eae-ecaf7adc6409d9e1-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a3841e4ddb05a8f93005590e286ec810", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1946", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:22 GMT", + "Date": "Tue, 15 Nov 2022 12:45:52 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01142cee-d7ee-46a9-aff8-0c43b43c24be", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10785", - "x-ms-request-id": "82779d2a-d213-d528-ff4d-cf61c2e96857", - "x-ms-routing-request-id": "WESTUS2:20220815T185223Z:01142cee-d7ee-46a9-aff8-0c43b43c24be", + "x-ms-correlation-request-id": "36dc3a7c-0861-4612-8ced-f939a9e648da", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1992", + "x-ms-request-id": "a3841e4d-db05-a8f9-3005-590e286ec810", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124553Z:36dc3a7c-0861-4612-8ced-f939a9e648da", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195", - "name": "profileName5195", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389", + "name": "profileName389", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1694,8 +1723,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename5195", - "fqdn": "profilename5195.trafficmanager.net", + "relativeName": "profilename389", + "fqdn": "profilename389.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1709,7 +1738,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1722,11 +1751,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1739,7 +1769,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1749,36 +1780,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName5195?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName389?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-416e7bfbc029c60bda7f95b0eb8a4427-1aea789068a005cb-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "78300360e6b35cfc29b2d3fdc83adddd", + "traceparent": "00-1112a2bcbe5af7f48f7d9c895a290041-197cc7b03bc11cbb-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "812665ee497a258a9ab932e1d2e93bc7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1946", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:22 GMT", + "Date": "Tue, 15 Nov 2022 12:45:53 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e4f2953-5f7e-4bc3-ac0d-e4e7733d1dcc", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10784", - "x-ms-request-id": "78300360-e6b3-5cfc-29b2-d3fdc83adddd", - "x-ms-routing-request-id": "WESTUS2:20220815T185223Z:0e4f2953-5f7e-4bc3-ac0d-e4e7733d1dcc", + "x-ms-correlation-request-id": "e469ae34-0e71-4706-83eb-2aa0e4609c01", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1991", + "x-ms-request-id": "812665ee-497a-258a-9ab9-32e1d2e93bc7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124553Z:e469ae34-0e71-4706-83eb-2aa0e4609c01", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195", - "name": "profileName5195", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389", + "name": "profileName389", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1788,8 +1819,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename5195", - "fqdn": "profilename5195.trafficmanager.net", + "relativeName": "profilename389", + "fqdn": "profilename389.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1803,7 +1834,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1816,11 +1847,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1833,7 +1865,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1843,36 +1876,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName5195?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName389?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f785fb952ed7275a9ad6c668c959a7e2-bb710253e638455e-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a565c9d7431911262f1da7d21f7e9e86", + "traceparent": "00-042d801b2e51130d008517ebdbb453c7-2684b58d0909dae1-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "949f43c18cbcc2a4cb604463c3d7b892", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1946", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:22 GMT", + "Date": "Tue, 15 Nov 2022 12:45:53 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2470338f-b43a-4d98-9cf4-2d3896daa48d", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10783", - "x-ms-request-id": "a565c9d7-4319-1126-2f1d-a7d21f7e9e86", - "x-ms-routing-request-id": "WESTUS2:20220815T185223Z:2470338f-b43a-4d98-9cf4-2d3896daa48d", + "x-ms-correlation-request-id": "e75e34b5-cfa5-4563-9cc0-187fed7aea96", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1990", + "x-ms-request-id": "949f43c1-8cbc-c2a4-cb60-4463c3d7b892", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124554Z:e75e34b5-cfa5-4563-9cc0-187fed7aea96", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195", - "name": "profileName5195", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389", + "name": "profileName389", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1882,8 +1915,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename5195", - "fqdn": "profilename5195.trafficmanager.net", + "relativeName": "profilename389", + "fqdn": "profilename389.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1897,7 +1930,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1910,11 +1943,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1927,7 +1961,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1937,14 +1972,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5cbbaa2cc8bb7e71487ed35038e212a9-2f62d3690e81b025-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3a18a497e8f64475a11b5860ff2b0cc5", + "traceparent": "00-baac64f80c4fe73c2dc7ff7e97209e32-8c6157f28a2f36f7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7849629ad3570469935f084ba818d546", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1952,47 +1987,47 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:52:23 GMT", + "Date": "Tue, 15 Nov 2022 12:45:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae249825-8df2-4a0c-8ca7-41b734076540", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-request-id": "ae249825-8df2-4a0c-8ca7-41b734076540", - "x-ms-routing-request-id": "WESTUS2:20220815T185224Z:ae249825-8df2-4a0c-8ca7-41b734076540" + "x-ms-correlation-request-id": "190885e0-4113-4254-829f-1950160b3d10", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "190885e0-4113-4254-829f-1950160b3d10", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124556Z:190885e0-4113-4254-829f-1950160b3d10" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5cbbaa2cc8bb7e71487ed35038e212a9-0a6a698623218652-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f88af26fc2841d3edc1e49953e2a3caa", + "traceparent": "00-baac64f80c4fe73c2dc7ff7e97209e32-1be8d7019c7b30c9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e54c91ca33cf6153c163b51a042661c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "283", + "Content-Length": "282", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:23 GMT", + "Date": "Tue, 15 Nov 2022 12:45:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c0aa4a2-c405-4810-be35-2d40f676ac59", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "6c0aa4a2-c405-4810-be35-2d40f676ac59", - "x-ms-routing-request-id": "WESTUS2:20220815T185224Z:6c0aa4a2-c405-4810-be35-2d40f676ac59" + "x-ms-correlation-request-id": "a2fb3208-b9c8-4c58-915d-fa44f5f6a915", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "a2fb3208-b9c8-4c58-915d-fa44f5f6a915", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124556Z:a2fb3208-b9c8-4c58-915d-fa44f5f6a915" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName5195/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName389/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -2001,16 +2036,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-5cbbaa2cc8bb7e71487ed35038e212a9-79057d34894be98c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "24664c14a221eee7542103feeac61203", + "traceparent": "00-baac64f80c4fe73c2dc7ff7e97209e32-e97edaef2e34b287-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7046a000c29fed70d99a005d835819b2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -2025,20 +2060,20 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "342", + "Content-Length": "341", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:24 GMT", + "Date": "Tue, 15 Nov 2022 12:45:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09b740cb-5cd5-4ba2-ab43-53c49f37e6b1", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "09b740cb-5cd5-4ba2-ab43-53c49f37e6b1", - "x-ms-routing-request-id": "WESTUS2:20220815T185225Z:09b740cb-5cd5-4ba2-ab43-53c49f37e6b1" + "x-ms-correlation-request-id": "9c82c852-eb20-4b82-9061-5478e8f13f38", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "9c82c852-eb20-4b82-9061-5478e8f13f38", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124559Z:9c82c852-eb20-4b82-9061-5478e8f13f38" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName5195/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName389/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -2051,36 +2086,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName5195?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName389?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5cbbaa2cc8bb7e71487ed35038e212a9-cc30fadba7a9802f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2d62e211a5f4d40266fb5dd79edf0576", + "traceparent": "00-baac64f80c4fe73c2dc7ff7e97209e32-86ceb576822f4398-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3299fd8ad38a67c30fe7b7f31d4fff6d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1942", + "Content-Length": "1986", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:24 GMT", + "Date": "Tue, 15 Nov 2022 12:45:59 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "241a012d-5ff5-409b-b908-67af52f457d7", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10782", - "x-ms-request-id": "2d62e211-a5f4-d402-66fb-5dd79edf0576", - "x-ms-routing-request-id": "WESTUS2:20220815T185225Z:241a012d-5ff5-409b-b908-67af52f457d7", + "x-ms-correlation-request-id": "43ceeebf-f34a-493c-a233-4d312a4ed93c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1989", + "x-ms-request-id": "3299fd8a-d38a-67c3-0fe7-b7f31d4fff6d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124600Z:43ceeebf-f34a-493c-a233-4d312a4ed93c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195", - "name": "profileName5195", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389", + "name": "profileName389", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -2092,8 +2127,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename5195", - "fqdn": "profilename5195.trafficmanager.net", + "relativeName": "profilename389", + "fqdn": "profilename389.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -2107,7 +2142,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2120,11 +2155,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2137,7 +2173,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -2147,36 +2184,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName5195?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName389?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fd8b42cbfbd72e909feb1497817e26fc-b4073660e21e4242-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b24baddfe8c5cda30a9ba362be3f3316", + "traceparent": "00-5f63058aa6f331b410a08cdecbb9a2d9-b2f2266ff99c5b97-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "084b45fe65d107a6205e0b3432f5de68", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1942", + "Content-Length": "1986", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:52:24 GMT", + "Date": "Tue, 15 Nov 2022 12:46:00 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51a7ec2d-ed1c-4063-b38d-9c69ccc2d64b", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10781", - "x-ms-request-id": "b24baddf-e8c5-cda3-0a9b-a362be3f3316", - "x-ms-routing-request-id": "WESTUS2:20220815T185225Z:51a7ec2d-ed1c-4063-b38d-9c69ccc2d64b", + "x-ms-correlation-request-id": "0a39b1d3-d321-4cf7-b61a-21246e8a8eac", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1988", + "x-ms-request-id": "084b45fe-65d1-07a6-205e-0b3432f5de68", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124600Z:0a39b1d3-d321-4cf7-b61a-21246e8a8eac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195", - "name": "profileName5195", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389", + "name": "profileName389", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -2188,8 +2225,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename5195", - "fqdn": "profilename5195.trafficmanager.net", + "relativeName": "profilename389", + "fqdn": "profilename389.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -2203,7 +2240,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2216,11 +2253,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName5195/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4445/providers/Microsoft.Network/trafficManagerProfiles/profileName389/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2233,7 +2271,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -2243,13 +2282,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName5195?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4445/providers/Microsoft.Network/trafficmanagerprofiles/profileName389?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5c84460b0ec76fb64991bd26450f5074", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "068f03492e8d2d39dddf60b80a7cd08a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2257,28 +2296,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:52:26 GMT", + "Date": "Tue, 15 Nov 2022 12:46:05 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7161509-63f1-48fd-90b8-565b0ef481ca", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "5c84460b-0ec7-6fb6-4991-bd26450f5074", - "x-ms-routing-request-id": "WESTUS2:20220815T185227Z:c7161509-63f1-48fd-90b8-565b0ef481ca", + "x-ms-correlation-request-id": "5fd8863f-c0d1-4b1c-ae7e-d7b190e852b9", + "x-ms-ratelimit-remaining-subscription-resource-requests": "498", + "x-ms-request-id": "068f0349-2e8d-2d39-dddf-60b80a7cd08a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124605Z:5fd8863f-c0d1-4b1c-ae7e-d7b190e852b9", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName4445?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName4445?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ad44a230ff9390490639d4b5a50e3efc-f67929bdf3492f20-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3c1f8d1b5f7a283d3e952258019f1527", + "traceparent": "00-62f90ec324e28c06a84eea5172ace978-719e7ad5421fd91a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3e5e939b110d24e15691112bc88e3519", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2286,28 +2325,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:52:26 GMT", + "Date": "Tue, 15 Nov 2022 12:46:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2549ef36-7e87-490a-9af7-f3485aa8afbc", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "2549ef36-7e87-490a-9af7-f3485aa8afbc", - "x-ms-routing-request-id": "WESTUS2:20220815T185227Z:2549ef36-7e87-490a-9af7-f3485aa8afbc" + "x-ms-correlation-request-id": "01858159-8ca2-4311-bdf4-156a201fa5bf", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "01858159-8ca2-4311-bdf4-156a201fa5bf", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124607Z:01858159-8ca2-4311-bdf4-156a201fa5bf" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ad44a230ff9390490639d4b5a50e3efc-65332bba94b53352-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "31472e4bf620ac9b085b1d32eb5e6ea9", + "traceparent": "00-62f90ec324e28c06a84eea5172ace978-1b4e1d68c3c14175-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9e99818e9f97385a216baffc1d0d644e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2315,28 +2354,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:52:26 GMT", + "Date": "Tue, 15 Nov 2022 12:46:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92fef44c-1d93-4d40-8bdd-89fe7ea9edd3", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "92fef44c-1d93-4d40-8bdd-89fe7ea9edd3", - "x-ms-routing-request-id": "WESTUS2:20220815T185227Z:92fef44c-1d93-4d40-8bdd-89fe7ea9edd3" + "x-ms-correlation-request-id": "beb1c5b6-8e10-42af-9376-cec649154dec", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "beb1c5b6-8e10-42af-9376-cec649154dec", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124608Z:beb1c5b6-8e10-42af-9376-cec649154dec" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ad44a230ff9390490639d4b5a50e3efc-d58adaa1a3fbe619-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fe5e967cf7437219de4e459ef609fdc0", + "traceparent": "00-62f90ec324e28c06a84eea5172ace978-b575a417ace85ffc-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bbaf47aab6d2a2cab48e32efe5ef1f68", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2344,28 +2383,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:52:42 GMT", + "Date": "Tue, 15 Nov 2022 12:46:22 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec132199-ba35-4ea6-b359-c18fd72eb902", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "ec132199-ba35-4ea6-b359-c18fd72eb902", - "x-ms-routing-request-id": "WESTUS2:20220815T185242Z:ec132199-ba35-4ea6-b359-c18fd72eb902" + "x-ms-correlation-request-id": "73a7ff81-7c3b-4222-a25b-c3a40e469713", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "73a7ff81-7c3b-4222-a25b-c3a40e469713", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124623Z:73a7ff81-7c3b-4222-a25b-c3a40e469713" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ad44a230ff9390490639d4b5a50e3efc-66e4ad6c1f308791-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d20c270de358d107aa1f50008b7ce498", + "traceparent": "00-62f90ec324e28c06a84eea5172ace978-816f63fadd571946-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "469d6d9496f46882f471f85449e3b2fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2373,28 +2412,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:52:57 GMT", + "Date": "Tue, 15 Nov 2022 12:46:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6af3532f-db91-45c5-9cfd-9bee05fb571d", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "6af3532f-db91-45c5-9cfd-9bee05fb571d", - "x-ms-routing-request-id": "WESTUS2:20220815T185258Z:6af3532f-db91-45c5-9cfd-9bee05fb571d" + "x-ms-correlation-request-id": "c5735343-88ec-45b0-9bd3-560c357cd0be", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "c5735343-88ec-45b0-9bd3-560c357cd0be", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124639Z:c5735343-88ec-45b0-9bd3-560c357cd0be" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ad44a230ff9390490639d4b5a50e3efc-9466d9af8d4cc7d1-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "94b6bf6d891f54b715d453d1b1fdb5fe", + "traceparent": "00-62f90ec324e28c06a84eea5172ace978-0da2c3953aee7c4a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bd47dcb9413ed7d1b6f7e9086d6b5232", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2402,28 +2441,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:53:13 GMT", + "Date": "Tue, 15 Nov 2022 12:46:54 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "793bc4e3-7e81-4bc7-a1ad-de8fa3b0292f", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "793bc4e3-7e81-4bc7-a1ad-de8fa3b0292f", - "x-ms-routing-request-id": "WESTUS2:20220815T185313Z:793bc4e3-7e81-4bc7-a1ad-de8fa3b0292f" + "x-ms-correlation-request-id": "af188012-b595-4b01-89e3-12176398d800", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "af188012-b595-4b01-89e3-12176398d800", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124654Z:af188012-b595-4b01-89e3-12176398d800" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ad44a230ff9390490639d4b5a50e3efc-ec8bd60fd3eb4501-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c4255c5d9b5199518f8d5323a719e661", + "traceparent": "00-62f90ec324e28c06a84eea5172ace978-4093bb7a74d508c8-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "af67474b1d701359c547c661bd7558d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2431,28 +2470,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:53:28 GMT", + "Date": "Tue, 15 Nov 2022 12:47:09 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17eabd52-0f39-4e2d-a175-56857f952de9", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "17eabd52-0f39-4e2d-a175-56857f952de9", - "x-ms-routing-request-id": "WESTUS2:20220815T185328Z:17eabd52-0f39-4e2d-a175-56857f952de9" + "x-ms-correlation-request-id": "e506183f-ac8b-45ce-aff8-43c3544fa658", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "e506183f-ac8b-45ce-aff8-43c3544fa658", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124710Z:e506183f-ac8b-45ce-aff8-43c3544fa658" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ0NDUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ad44a230ff9390490639d4b5a50e3efc-9f1b7e14a802da26-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3731ac6a685284a170b8bc848f351fad", + "traceparent": "00-62f90ec324e28c06a84eea5172ace978-d7678b2f00020c8a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "083534dc62a7532a9cc590fdac79fb89", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2460,23 +2499,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:53:43 GMT", + "Date": "Tue, 15 Nov 2022 12:47:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2aa78634-5aa8-4fca-9720-1aa051bdf74f", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "2aa78634-5aa8-4fca-9720-1aa051bdf74f", - "x-ms-routing-request-id": "WESTUS2:20220815T185343Z:2aa78634-5aa8-4fca-9720-1aa051bdf74f" + "x-ms-correlation-request-id": "ebef0d8e-eeef-4657-8d1d-0ab3dd5d16eb", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "ebef0d8e-eeef-4657-8d1d-0ab3dd5d16eb", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T124725Z:ebef0d8e-eeef-4657-8d1d-0ab3dd5d16eb" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "325331999", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "252012492", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(null)Async.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(null)Async.json index 6f65dfa19ba8..9b3ea4063ff6 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(null)Async.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/SetTagsTest(null)Async.json @@ -1,52 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a5d13cae8b5a361b079261d3e91e2f5e-f8800c5c35bbb3f9-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "25e49117f9ec582d273c3db4d0d79b78", + "traceparent": "00-25d9d05d496cea764a34e6f5b88b387d-e1c50e34b9d7a023-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e30ba9545652a23dbe15f4c31bd8d4a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:48 GMT", + "Date": "Tue, 15 Nov 2022 13:14:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e904d836-3d1f-4dfb-8f31-a06798a39ba1", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "e904d836-3d1f-4dfb-8f31-a06798a39ba1", - "x-ms-routing-request-id": "WESTUS2:20220815T185748Z:e904d836-3d1f-4dfb-8f31-a06798a39ba1" + "x-ms-correlation-request-id": "839350aa-2262-4b5d-914c-c9aad8b493e4", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "839350aa-2262-4b5d-914c-c9aad8b493e4", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131434Z:839350aa-2262-4b5d-914c-c9aad8b493e4" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", "managedByTenants": [], - "tags": { - "TagKey-9823": "TagValue-566", - "TagKey-3481": "TagValue-320", - "TagKey-4926": "TagValue-1187", - "TagKey-751": "TagValue-3921", - "TagKey-1866": "TagValue-8559", - "TagKey-3094": "TagValue-9190", - "TagKey-2449": "TagValue-9", - "TagKey-8379": "TagValue-164", - "TagKey-7470": "TagValue-2205", - "TagKey-4236": "TagValue-3698", - "TagKey-5316": "TagValue-2725" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -56,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName2926?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName1622?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-421a904a434f6fce635647fd4550da32-8e43301fbafd7179-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e004c80fc7b265baa3fafd5d8a40110e", + "traceparent": "00-e51cebaba769a93a65a8b3aa52be4a2f-9767eb5088ecd031-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "84d1af77b8ea8a9bcd08c4f88f8e7185", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:49 GMT", + "Date": "Tue, 15 Nov 2022 13:14:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f248b41-4ad8-4b2e-b459-07b50689c82a", - "x-ms-ratelimit-remaining-subscription-writes": "1181", - "x-ms-request-id": "0f248b41-4ad8-4b2e-b459-07b50689c82a", - "x-ms-routing-request-id": "WESTUS2:20220815T185749Z:0f248b41-4ad8-4b2e-b459-07b50689c82a" + "x-ms-correlation-request-id": "cf481063-114f-40cf-ab06-53fe2520e8f4", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "cf481063-114f-40cf-ab06-53fe2520e8f4", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131436Z:cf481063-114f-40cf-ab06-53fe2520e8f4" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2926", - "name": "resourceGroupName2926", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1622", + "name": "resourceGroupName1622", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -97,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2926/providers/Microsoft.Network/trafficmanagerprofiles/profileName3090?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1622/providers/Microsoft.Network/trafficmanagerprofiles/profileName6194?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-f30bec8df9adc3341e178cfca399d536-8a8209c73aef9a94-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c0e41e7693b15ac1b18fc8044f17cd4f", + "traceparent": "00-78bebab29c138cde10bbfa560f990165-f2fa7b0eade2d3bd-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "386cc13096f3dc44bbfdde79e539af3d", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName3090", + "name": "profileName6194", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName3090" + "relativeName": "profileName6194" }, "monitorConfig": { "protocol": "HTTP", @@ -145,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:50 GMT", + "Date": "Tue, 15 Nov 2022 13:14:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3738694c-96bf-490c-a442-56358cbbb2b4", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10784", - "x-ms-request-id": "c0e41e76-93b1-5ac1-b18f-c8044f17cd4f", - "x-ms-routing-request-id": "WESTUS2:20220815T185750Z:3738694c-96bf-490c-a442-56358cbbb2b4", + "x-ms-correlation-request-id": "2e964910-cc78-4881-879e-a3f29c34c5eb", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4490", + "x-ms-request-id": "386cc130-96f3-dc44-bbfd-de79e539af3d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131441Z:2e964910-cc78-4881-879e-a3f29c34c5eb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090", - "name": "profileName3090", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194", + "name": "profileName6194", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3090", - "fqdn": "profilename3090.trafficmanager.net", + "relativeName": "profilename6194", + "fqdn": "profilename6194.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -182,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -195,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -212,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -222,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2926/providers/Microsoft.Network/trafficmanagerprofiles/profileName3090?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1622/providers/Microsoft.Network/trafficmanagerprofiles/profileName6194?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8f3d69e07c5d257d98f11544ced9c0bb-ae5730c2efc13a39-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8a0483e12a45ca6529c049ff2ffa9cfc", + "traceparent": "00-0364f9b4ce180bf239891318d7dbb366-ec7c4d02225992e9-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6bcd78f1aaa3f16a6f58854d78aa2e87", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:50 GMT", + "Date": "Tue, 15 Nov 2022 13:14:42 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff58e49a-5851-45ad-b8c6-6322aab590cb", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10765", - "x-ms-request-id": "8a0483e1-2a45-ca65-29c0-49ff2ffa9cfc", - "x-ms-routing-request-id": "WESTUS2:20220815T185750Z:ff58e49a-5851-45ad-b8c6-6322aab590cb", + "x-ms-correlation-request-id": "aba10e4d-c2c2-40f7-840f-9db7f13a6fc1", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1972", + "x-ms-request-id": "6bcd78f1-aaa3-f16a-6f58-854d78aa2e87", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131442Z:aba10e4d-c2c2-40f7-840f-9db7f13a6fc1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090", - "name": "profileName3090", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194", + "name": "profileName6194", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -259,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3090", - "fqdn": "profilename3090.trafficmanager.net", + "relativeName": "profilename6194", + "fqdn": "profilename6194.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -274,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -287,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -304,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -314,34 +305,34 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Resources?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d775421a6a3c01380fd0a7a5405b76b7-4f718557a34674b2-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b85aa52bb7b77ced06a92f23feb6158b", + "traceparent": "00-f7b2314ee943129509f9ea634b1f6d7b-8c33f2a9d851a043-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "16eb3e837068e1bd6af5c9ecd921a593", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "17477", + "Content-Length": "18075", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:50 GMT", + "Date": "Tue, 15 Nov 2022 13:14:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dae0e941-f466-45d6-ba53-36f1ec55a087", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "dae0e941-f466-45d6-ba53-36f1ec55a087", - "x-ms-routing-request-id": "WESTUS2:20220815T185750Z:dae0e941-f466-45d6-ba53-36f1ec55a087" + "x-ms-correlation-request-id": "f156287b-6540-43b5-bc4e-21e635c479a9", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "f156287b-6540-43b5-bc4e-21e635c479a9", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131442Z:f156287b-6540-43b5-bc4e-21e635c479a9" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Resources", "namespace": "Microsoft.Resources", "authorizations": [ { @@ -875,7 +866,12 @@ "Jio India West", "West US 3", "Qatar Central", - "Sweden Central" + "Sweden Central", + "East US SLV", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" ], "apiVersions": [ "2019-05-01", @@ -952,7 +948,12 @@ "Jio India West", "West US 3", "Qatar Central", - "Sweden Central" + "Sweden Central", + "East US SLV", + "East US STG", + "South Central US STG", + "East US 2 EUAP", + "Central US EUAP" ], "apiVersions": [ "2019-05-01", @@ -1235,6 +1236,14 @@ ], "capabilities": "None" }, + { + "resourceType": "validateResources", + "locations": [], + "apiVersions": [ + "2022-06-01" + ], + "capabilities": "None" + }, { "resourceType": "links", "locations": [], @@ -1352,7 +1361,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1395,7 +1406,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1438,7 +1451,9 @@ "West US", "South Central US", "West US 3", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2020-10-01", @@ -1477,6 +1492,7 @@ "Korea South", "North Europe", "Norway East", + "Qatar Central", "Sweden Central", "UAE North", "West Central US", @@ -1485,7 +1501,9 @@ "West US", "West US 3", "South Central US", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2022-02-01", @@ -1526,6 +1544,7 @@ "Korea South", "North Europe", "Norway East", + "Qatar Central", "Sweden Central", "UAE North", "West Central US", @@ -1534,7 +1553,9 @@ "West US", "West US 3", "South Central US", - "South Africa North" + "South Africa North", + "Central US EUAP", + "East US 2 EUAP" ], "apiVersions": [ "2022-02-01", @@ -1568,6 +1589,14 @@ "2022-03-01-preview" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "snapshots", + "locations": [], + "apiVersions": [ + "2022-11-01-preview" + ], + "capabilities": "SupportsExtension" } ], "registrationState": "Registered", @@ -1575,14 +1604,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d775421a6a3c01380fd0a7a5405b76b7-43ac37c608f481e4-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "067cae2c873c4bc9b91a97f14ac22ab6", + "traceparent": "00-f7b2314ee943129509f9ea634b1f6d7b-754ca8f77261bbe4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1706865806c086e1577bc99b11f66310", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1591,34 +1620,34 @@ "Cache-Control": "no-cache", "Content-Length": "274", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:50 GMT", + "Date": "Tue, 15 Nov 2022 13:14:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b3c292d-12cc-4e5d-8b97-6dab6873cc25", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "1b3c292d-12cc-4e5d-8b97-6dab6873cc25", - "x-ms-routing-request-id": "WESTUS2:20220815T185750Z:1b3c292d-12cc-4e5d-8b97-6dab6873cc25" + "x-ms-correlation-request-id": "e26e43e1-3e40-4b37-a63e-482c64485002", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "e26e43e1-3e40-4b37-a63e-482c64485002", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131442Z:e26e43e1-3e40-4b37-a63e-482c64485002" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficmanagerprofiles/profileName3090/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficmanagerprofiles/profileName6194/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "45", "Content-Type": "application/json", - "traceparent": "00-d775421a6a3c01380fd0a7a5405b76b7-55bb363329e04cca-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "aad8ccf215bd29979688839bfb42cb73", + "traceparent": "00-f7b2314ee943129509f9ea634b1f6d7b-c29b043232356a2a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a6f656ce994e80d5baec00aee07e174d", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -1633,18 +1662,18 @@ "Cache-Control": "no-cache", "Content-Length": "302", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:51 GMT", + "Date": "Tue, 15 Nov 2022 13:14:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb3294fa-dd9f-492f-ad7b-32e73f3195a2", - "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-request-id": "bb3294fa-dd9f-492f-ad7b-32e73f3195a2", - "x-ms-routing-request-id": "WESTUS2:20220815T185751Z:bb3294fa-dd9f-492f-ad7b-32e73f3195a2" + "x-ms-correlation-request-id": "92657b4f-4599-4c34-80df-9966d1e9d360", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "92657b4f-4599-4c34-80df-9966d1e9d360", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131445Z:92657b4f-4599-4c34-80df-9966d1e9d360" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficmanagerprofiles/profileName3090/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficmanagerprofiles/profileName6194/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -1655,36 +1684,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficmanagerprofiles/profileName3090?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficmanagerprofiles/profileName6194?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d775421a6a3c01380fd0a7a5405b76b7-7de45177f3775baf-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "81d2bdaa967ea4c0dc0eff9d20fb3244", + "traceparent": "00-f7b2314ee943129509f9ea634b1f6d7b-0e611530b72b570d-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f1f5f2b317a37dc75d64bfeda722cf73", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:51 GMT", + "Date": "Tue, 15 Nov 2022 13:14:45 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af0daa0c-f230-41c4-9d7b-56b2da56bf45", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10764", - "x-ms-request-id": "81d2bdaa-967e-a4c0-dc0e-ff9d20fb3244", - "x-ms-routing-request-id": "WESTUS2:20220815T185751Z:af0daa0c-f230-41c4-9d7b-56b2da56bf45", + "x-ms-correlation-request-id": "6d8499fd-4ac9-41ab-a74e-3d310793a5f3", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1971", + "x-ms-request-id": "f1f5f2b3-17a3-7dc7-5d64-bfeda722cf73", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131446Z:6d8499fd-4ac9-41ab-a74e-3d310793a5f3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090", - "name": "profileName3090", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194", + "name": "profileName6194", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1694,8 +1723,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3090", - "fqdn": "profilename3090.trafficmanager.net", + "relativeName": "profilename6194", + "fqdn": "profilename6194.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1709,7 +1738,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1722,11 +1751,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1739,7 +1769,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1749,36 +1780,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2926/providers/Microsoft.Network/trafficmanagerprofiles/profileName3090?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1622/providers/Microsoft.Network/trafficmanagerprofiles/profileName6194?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e87beb258bbee47c0d8eb66706558041-39df147e2b12adcf-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3130787f6bdd17ce17526fb4032d5076", + "traceparent": "00-3057b012109989d7f7aff4a5550a8f3c-95056894f532556a-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "831db892fe2bbf44b1855cd40533a5d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:51 GMT", + "Date": "Tue, 15 Nov 2022 13:14:46 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64a93b3f-72d4-4120-96ec-ce7281fd7660", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10763", - "x-ms-request-id": "3130787f-6bdd-17ce-1752-6fb4032d5076", - "x-ms-routing-request-id": "WESTUS2:20220815T185751Z:64a93b3f-72d4-4120-96ec-ce7281fd7660", + "x-ms-correlation-request-id": "85b505d3-4431-422f-8013-193b8659f2d4", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1970", + "x-ms-request-id": "831db892-fe2b-bf44-b185-5cd40533a5d8", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131446Z:85b505d3-4431-422f-8013-193b8659f2d4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090", - "name": "profileName3090", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194", + "name": "profileName6194", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1788,8 +1819,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3090", - "fqdn": "profilename3090.trafficmanager.net", + "relativeName": "profilename6194", + "fqdn": "profilename6194.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1803,7 +1834,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1816,11 +1847,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1833,7 +1865,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1843,36 +1876,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2926/providers/Microsoft.Network/trafficmanagerprofiles/profileName3090?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1622/providers/Microsoft.Network/trafficmanagerprofiles/profileName6194?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d0f1c4ad585fe3ff10b24c3047a772ba-21bc2f5d3ee02cd0-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8c46234ea9f05b370c34ceae15f9099b", + "traceparent": "00-c9da6e1303bd1a2ec8bad4ce12a92039-5d28f97fdf249003-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1fe87b637101b76d8f7949e9dae8d998", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1902", + "Content-Length": "1952", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:52 GMT", + "Date": "Tue, 15 Nov 2022 13:14:47 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "414a44ce-29c7-469b-a223-bb4485b5586a", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10762", - "x-ms-request-id": "8c46234e-a9f0-5b37-0c34-ceae15f9099b", - "x-ms-routing-request-id": "WESTUS2:20220815T185752Z:414a44ce-29c7-469b-a223-bb4485b5586a", + "x-ms-correlation-request-id": "931fcc35-177f-4a20-99bc-781e3ec39946", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1969", + "x-ms-request-id": "1fe87b63-7101-b76d-8f79-49e9dae8d998", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131447Z:931fcc35-177f-4a20-99bc-781e3ec39946", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090", - "name": "profileName3090", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194", + "name": "profileName6194", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -1882,8 +1915,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3090", - "fqdn": "profilename3090.trafficmanager.net", + "relativeName": "profilename6194", + "fqdn": "profilename6194.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -1897,7 +1930,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1910,11 +1943,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -1927,7 +1961,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -1937,14 +1972,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-19b8eace85d721cf7ccc6366f0c80639-3ebd2fdafc059871-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "821c3f5599113f95efba6a2c270ba1ae", + "traceparent": "00-7fbee889a5f415fa920c9956711ce706-9976742468d76c0e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "281c8c1c9460b421ad36401ebbf37729", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1952,27 +1987,27 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:57:53 GMT", + "Date": "Tue, 15 Nov 2022 13:14:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6c9d4f1-257e-42b2-b2ff-3e077b1d97a1", - "x-ms-ratelimit-remaining-subscription-deletes": "14988", - "x-ms-request-id": "a6c9d4f1-257e-42b2-b2ff-3e077b1d97a1", - "x-ms-routing-request-id": "WESTUS2:20220815T185753Z:a6c9d4f1-257e-42b2-b2ff-3e077b1d97a1" + "x-ms-correlation-request-id": "fbde54ff-3b71-4fba-858b-849ed48070f3", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-request-id": "fbde54ff-3b71-4fba-858b-849ed48070f3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131450Z:fbde54ff-3b71-4fba-858b-849ed48070f3" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-19b8eace85d721cf7ccc6366f0c80639-9c340c9d49b85afe-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fc4f88bda5b5d55340d425a99c1f021d", + "traceparent": "00-7fbee889a5f415fa920c9956711ce706-2cae583df97ee75e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2c89e6bfb03a20724b66f3b2b55ae4c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1981,18 +2016,18 @@ "Cache-Control": "no-cache", "Content-Length": "283", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:53 GMT", + "Date": "Tue, 15 Nov 2022 13:14:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb09c6fc-34f8-4448-a819-153150161420", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "cb09c6fc-34f8-4448-a819-153150161420", - "x-ms-routing-request-id": "WESTUS2:20220815T185753Z:cb09c6fc-34f8-4448-a819-153150161420" + "x-ms-correlation-request-id": "08283f84-d300-4dcf-a3fb-64fd9825d0c1", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "08283f84-d300-4dcf-a3fb-64fd9825d0c1", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131450Z:08283f84-d300-4dcf-a3fb-64fd9825d0c1" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficmanagerprofiles/profileName3090/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficmanagerprofiles/profileName6194/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -2001,16 +2036,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/providers/Microsoft.Resources/tags/default?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "85", "Content-Type": "application/json", - "traceparent": "00-19b8eace85d721cf7ccc6366f0c80639-d3e839cb9dddbb6f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c35ed449cd11b4658d079c353f0b3400", + "traceparent": "00-7fbee889a5f415fa920c9956711ce706-378e65ec230d3fea-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "78b7c3ac7d17ce78593371cb314efb9b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -2027,18 +2062,18 @@ "Cache-Control": "no-cache", "Content-Length": "342", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:53 GMT", + "Date": "Tue, 15 Nov 2022 13:14:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb502ed4-3c43-48b4-a776-9d44d7efe047", - "x-ms-ratelimit-remaining-subscription-writes": "1179", - "x-ms-request-id": "cb502ed4-3c43-48b4-a776-9d44d7efe047", - "x-ms-routing-request-id": "WESTUS2:20220815T185754Z:cb502ed4-3c43-48b4-a776-9d44d7efe047" + "x-ms-correlation-request-id": "adfd0612-cd97-463a-8104-38c53fbcc99e", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "adfd0612-cd97-463a-8104-38c53fbcc99e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131452Z:adfd0612-cd97-463a-8104-38c53fbcc99e" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficmanagerprofiles/profileName3090/providers/Microsoft.Resources/tags/default", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficmanagerprofiles/profileName6194/providers/Microsoft.Resources/tags/default", "name": "default", "type": "Microsoft.Resources/tags", "properties": { @@ -2051,36 +2086,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficmanagerprofiles/profileName3090?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficmanagerprofiles/profileName6194?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-19b8eace85d721cf7ccc6366f0c80639-8549cb50c6d0bba4-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8cf020920caab0e6ec46423c74eca2d0", + "traceparent": "00-7fbee889a5f415fa920c9956711ce706-d019383ec52a778d-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f32a1f01ac5e6b5e1afbdcfaa06fff52", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1942", + "Content-Length": "1992", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:54 GMT", + "Date": "Tue, 15 Nov 2022 13:14:52 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75eda5f1-6345-4c9b-8c79-61f4125de518", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10761", - "x-ms-request-id": "8cf02092-0caa-b0e6-ec46-423c74eca2d0", - "x-ms-routing-request-id": "WESTUS2:20220815T185754Z:75eda5f1-6345-4c9b-8c79-61f4125de518", + "x-ms-correlation-request-id": "bbe16cba-3b60-49aa-a7e0-e9f1139a40d1", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1968", + "x-ms-request-id": "f32a1f01-ac5e-6b5e-1afb-dcfaa06fff52", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131453Z:bbe16cba-3b60-49aa-a7e0-e9f1139a40d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090", - "name": "profileName3090", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194", + "name": "profileName6194", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -2092,8 +2127,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3090", - "fqdn": "profilename3090.trafficmanager.net", + "relativeName": "profilename6194", + "fqdn": "profilename6194.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -2107,7 +2142,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2120,11 +2155,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2137,7 +2173,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -2147,36 +2184,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2926/providers/Microsoft.Network/trafficmanagerprofiles/profileName3090?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1622/providers/Microsoft.Network/trafficmanagerprofiles/profileName6194?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3dbcd3c6e877aefa86105672e7e4dc33-4e6aff47b51c05a7-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "53e24db8deadf09d239a6ead081e9635", + "traceparent": "00-43b2fc3b0bbbd0602d8d175214237f22-fd51d211d89d70c3-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f7717751fe3b42126ebad2063fa6effc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1942", + "Content-Length": "1992", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 15 Aug 2022 18:57:54 GMT", + "Date": "Tue, 15 Nov 2022 13:14:53 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e7a9a07-373a-46de-b388-8d14b249ed1c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10760", - "x-ms-request-id": "53e24db8-dead-f09d-239a-6ead081e9635", - "x-ms-routing-request-id": "WESTUS2:20220815T185754Z:7e7a9a07-373a-46de-b388-8d14b249ed1c", + "x-ms-correlation-request-id": "32271d7c-5fe3-414d-b404-a5d22653b926", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1967", + "x-ms-request-id": "f7717751-fe3b-4212-6eba-d2063fa6effc", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131454Z:32271d7c-5fe3-414d-b404-a5d22653b926", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090", - "name": "profileName3090", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194", + "name": "profileName6194", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": { @@ -2188,8 +2225,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3090", - "fqdn": "profilename3090.trafficmanager.net", + "relativeName": "profilename6194", + "fqdn": "profilename6194.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -2203,7 +2240,7 @@ }, "endpoints": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2216,11 +2253,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourcegroupname2926/providers/Microsoft.Network/trafficManagerProfiles/profileName3090/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname1622/providers/Microsoft.Network/trafficManagerProfiles/profileName6194/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -2233,7 +2271,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -2243,13 +2282,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/resourceGroupName2926/providers/Microsoft.Network/trafficmanagerprofiles/profileName3090?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName1622/providers/Microsoft.Network/trafficmanagerprofiles/profileName6194?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220815.1 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7c1625a0752e3d72eeadd7ca8b2840a1", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "95b0586af130ff6a654c5e1ba07d2eea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2257,28 +2296,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:57:56 GMT", + "Date": "Tue, 15 Nov 2022 13:14:59 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8ca811b-f48e-4644-b700-ef609dd58827", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10789", - "x-ms-request-id": "7c1625a0-752e-3d72-eead-d7ca8b2840a1", - "x-ms-routing-request-id": "WESTUS2:20220815T185756Z:a8ca811b-f48e-4644-b700-ef609dd58827", + "x-ms-correlation-request-id": "5ef1654e-c8e6-4f4e-8d76-fa689818e526", + "x-ms-ratelimit-remaining-subscription-resource-requests": "497", + "x-ms-request-id": "95b0586a-f130-ff6a-654c-5e1ba07d2eea", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131500Z:5ef1654e-c8e6-4f4e-8d76-fa689818e526", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/resourceGroupName2926?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName1622?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-466eab22190ba456b337815163dca96a-0dbbd136b36f4993-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f27ccc65e128b452820069109d38a7cd", + "traceparent": "00-b53a2d87ac45a6d4552009343848c947-6bc6bb2db181fe5d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ba7a1e3404dd03600de785a3da572c74", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2286,28 +2325,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:57:57 GMT", + "Date": "Tue, 15 Nov 2022 13:15:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5MjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2MjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b437973d-816c-443b-8c67-eb41631f91cd", - "x-ms-ratelimit-remaining-subscription-deletes": "14987", - "x-ms-request-id": "b437973d-816c-443b-8c67-eb41631f91cd", - "x-ms-routing-request-id": "WESTUS2:20220815T185757Z:b437973d-816c-443b-8c67-eb41631f91cd" + "x-ms-correlation-request-id": "03f34636-04ce-4da4-a5b2-6e7ae4d306c3", + "x-ms-ratelimit-remaining-subscription-deletes": "14990", + "x-ms-request-id": "03f34636-04ce-4da4-a5b2-6e7ae4d306c3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131502Z:03f34636-04ce-4da4-a5b2-6e7ae4d306c3" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5MjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2MjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-466eab22190ba456b337815163dca96a-c2294c61355152eb-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3b48cd59a4a2bf0cd262f92d0c629fb5", + "traceparent": "00-b53a2d87ac45a6d4552009343848c947-abc046f4098c796f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "20d2e88c342c661ef7ad88496cc6250d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2315,28 +2354,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:57:57 GMT", + "Date": "Tue, 15 Nov 2022 13:15:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5MjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2MjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "427f476f-6770-451a-8839-53e846820ef7", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "427f476f-6770-451a-8839-53e846820ef7", - "x-ms-routing-request-id": "WESTUS2:20220815T185757Z:427f476f-6770-451a-8839-53e846820ef7" + "x-ms-correlation-request-id": "964b2e9e-d0d3-4995-b2b5-478c4bc7886c", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "964b2e9e-d0d3-4995-b2b5-478c4bc7886c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131503Z:964b2e9e-d0d3-4995-b2b5-478c4bc7886c" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5MjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2MjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-466eab22190ba456b337815163dca96a-386419c25a508bed-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7d1a0906f18b3ecb2a3917827c52adb0", + "traceparent": "00-b53a2d87ac45a6d4552009343848c947-e1beee394f6c9036-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c00ee91fe6eeca2bfc1aad6c71716215", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2344,28 +2383,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:58:12 GMT", + "Date": "Tue, 15 Nov 2022 13:15:17 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5MjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2MjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51bd992d-02a2-48b4-a3c2-21ccabe3cb74", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "51bd992d-02a2-48b4-a3c2-21ccabe3cb74", - "x-ms-routing-request-id": "WESTUS2:20220815T185812Z:51bd992d-02a2-48b4-a3c2-21ccabe3cb74" + "x-ms-correlation-request-id": "e306b78f-6731-4745-a5da-63d0e751a5a2", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "e306b78f-6731-4745-a5da-63d0e751a5a2", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131518Z:e306b78f-6731-4745-a5da-63d0e751a5a2" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5MjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2MjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-466eab22190ba456b337815163dca96a-0d70b57898b5ca9b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d0b66e9b6bf00b2b00dd7c732c743778", + "traceparent": "00-b53a2d87ac45a6d4552009343848c947-b75204f82615a95c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f21794450b85d747c1295011e1d9f346", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2373,28 +2412,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:58:27 GMT", + "Date": "Tue, 15 Nov 2022 13:15:33 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5MjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2MjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65b73b84-8de4-40b5-bf33-150c0341616b", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "65b73b84-8de4-40b5-bf33-150c0341616b", - "x-ms-routing-request-id": "WESTUS2:20220815T185827Z:65b73b84-8de4-40b5-bf33-150c0341616b" + "x-ms-correlation-request-id": "b08bb45b-6cbf-40a0-af4a-b66381f48506", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "b08bb45b-6cbf-40a0-af4a-b66381f48506", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131534Z:b08bb45b-6cbf-40a0-af4a-b66381f48506" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5MjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2MjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-466eab22190ba456b337815163dca96a-f051291efb28929b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fdf9af06e7b7686f020911688d89427f", + "traceparent": "00-b53a2d87ac45a6d4552009343848c947-46efc749a7fcc7be-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b6cf854ce2e8a602bd07241287b2f486", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2402,28 +2441,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:58:42 GMT", + "Date": "Tue, 15 Nov 2022 13:15:49 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5MjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2MjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ad98b65-dca5-4105-840d-3857b7c08e65", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "8ad98b65-dca5-4105-840d-3857b7c08e65", - "x-ms-routing-request-id": "WESTUS2:20220815T185842Z:8ad98b65-dca5-4105-840d-3857b7c08e65" + "x-ms-correlation-request-id": "c5ae665d-75c3-4dac-81c7-7ba71aa3ab6f", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "c5ae665d-75c3-4dac-81c7-7ba71aa3ab6f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131549Z:c5ae665d-75c3-4dac-81c7-7ba71aa3ab6f" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5MjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2MjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-466eab22190ba456b337815163dca96a-f95f665fda08ce23-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9d9249b5cfab9ac5de0f7cae755712b6", + "traceparent": "00-b53a2d87ac45a6d4552009343848c947-866179a648d32364-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d703724b33af1387a237fec49519e923", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2431,28 +2470,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:58:57 GMT", + "Date": "Tue, 15 Nov 2022 13:16:04 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5MjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2MjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1598ab86-0267-452c-a0d9-85bb884af483", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "1598ab86-0267-452c-a0d9-85bb884af483", - "x-ms-routing-request-id": "WESTUS2:20220815T185858Z:1598ab86-0267-452c-a0d9-85bb884af483" + "x-ms-correlation-request-id": "9391e297-4050-492a-b249-ea93f62dec6a", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "9391e297-4050-492a-b249-ea93f62dec6a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131605Z:9391e297-4050-492a-b249-ea93f62dec6a" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5MjYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTE2MjItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-466eab22190ba456b337815163dca96a-353a2e8cabede52e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.0-alpha.20220801.2 (.NET 6.0.8; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cc7c9e01af59b3f8fe4ecde75ac27e77", + "traceparent": "00-b53a2d87ac45a6d4552009343848c947-a0fe7f754b4201da-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ec1f6726aba1632d9271357ee7344f0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -2460,23 +2499,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 15 Aug 2022 18:59:12 GMT", + "Date": "Tue, 15 Nov 2022 13:16:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86ea51d2-d799-4ebe-a2ea-0a6a56c91495", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "86ea51d2-d799-4ebe-a2ea-0a6a56c91495", - "x-ms-routing-request-id": "WESTUS2:20220815T185913Z:86ea51d2-d799-4ebe-a2ea-0a6a56c91495" + "x-ms-correlation-request-id": "a7e73d17-8b7d-4ca5-ae63-487be98f5c48", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "a7e73d17-8b7d-4ca5-ae63-487be98f5c48", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T131620Z:a7e73d17-8b7d-4ca5-ae63-487be98f5c48" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1936683059", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1781143669", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateCollectionTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateCollectionTest.json index 3e9885445cd0..e4931f8d8e65 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateCollectionTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateCollectionTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e5689a081f6c784b986650a7119a5b93-81d11bb5a948f944-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "28dcc12340b0e2604f952249df2aa9f0", + "traceparent": "00-36441d858f569c267ab6eb874838bda9-c0bac537e8255e8a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fa78a2aa6e2cae79844cc2f0d498ac2a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:03 GMT", + "Date": "Tue, 15 Nov 2022 13:02:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba3993d1-1227-4a8c-b77b-d4f607181103", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "ba3993d1-1227-4a8c-b77b-d4f607181103", - "x-ms-routing-request-id": "WESTUS2:20220803T050303Z:ba3993d1-1227-4a8c-b77b-d4f607181103" + "x-ms-correlation-request-id": "dd279385-c6ba-4fc6-ad54-b9a9fb62e7b7", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "dd279385-c6ba-4fc6-ad54-b9a9fb62e7b7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130212Z:dd279385-c6ba-4fc6-ad54-b9a9fb62e7b7" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName7439?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName4573?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-63582b4c038ed540b37873d8d18d284e-f46ee50ce06d0341-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "841aadce43c2a773e2f5b2b2ee74d423", + "traceparent": "00-b27f81fd41f719ae5cea22a1fc548a59-a8523b6bcdbcdd43-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a4a6a7e6346752a7a9d1ab5c08ee5c96", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:04 GMT", + "Date": "Tue, 15 Nov 2022 13:02:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3be3e7ef-5549-4429-b86e-18c624427a3d", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "3be3e7ef-5549-4429-b86e-18c624427a3d", - "x-ms-routing-request-id": "WESTUS2:20220803T050304Z:3be3e7ef-5549-4429-b86e-18c624427a3d" + "x-ms-correlation-request-id": "51fba75b-9cca-420c-b24e-9ad8151db792", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "51fba75b-9cca-420c-b24e-9ad8151db792", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130216Z:51fba75b-9cca-420c-b24e-9ad8151db792" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7439", - "name": "resourceGroupName7439", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4573", + "name": "resourceGroupName4573", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7439/providers/Microsoft.Network/trafficmanagerprofiles/profileName3569?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4573/providers/Microsoft.Network/trafficmanagerprofiles/profileName6476?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-a38226749d1aec4290cd5ee318c67545-51746df301286642-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "2fe49bb17a1b3b02f81ef79ead126b56", + "traceparent": "00-71c63fd836a418ac1992fc745da183bd-0683e8501b50e94b-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c9e8000e0dfbce187fb3765e3b325566", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName3569", + "name": "profileName6476", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName3569" + "relativeName": "profileName6476" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:05 GMT", + "Date": "Tue, 15 Nov 2022 13:02:20 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46505c65-1a6b-4211-9965-967c737bd614", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "2fe49bb1-7a1b-3b02-f81e-f79ead126b56", - "x-ms-routing-request-id": "WESTUS2:20220803T050305Z:46505c65-1a6b-4211-9965-967c737bd614", + "x-ms-correlation-request-id": "f5e051a8-656d-4e18-9bfa-26cb2c92c507", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4499", + "x-ms-request-id": "c9e8000e-0dfb-ce18-7fb3-765e3b325566", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130220Z:f5e051a8-656d-4e18-9bfa-26cb2c92c507", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569", - "name": "profileName3569", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476", + "name": "profileName6476", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3569", - "fqdn": "profilename3569.trafficmanager.net", + "relativeName": "profilename6476", + "fqdn": "profilename6476.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7439/providers/Microsoft.Network/trafficmanagerprofiles/profileName3569?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4573/providers/Microsoft.Network/trafficmanagerprofiles/profileName6476?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-dcffeedb8e5371449f63bd2bb09ec137-22d4fac0e26b9341-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "96e742d3c2667d616981cd4bad306020", + "traceparent": "00-65f46c0c126d4ad81ff20eff76fa2f01-a4dd7db1488085e0-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "797b4cbd7ef96d42d0a8839dcd527c5d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:05 GMT", + "Date": "Tue, 15 Nov 2022 13:02:20 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "057e3de8-d188-404f-96b6-2e87a7c1159b", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10782", - "x-ms-request-id": "96e742d3-c266-7d61-6981-cd4bad306020", - "x-ms-routing-request-id": "WESTUS2:20220803T050306Z:057e3de8-d188-404f-96b6-2e87a7c1159b", + "x-ms-correlation-request-id": "fa122b89-6974-4ec6-bd11-fa28346e5f14", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1999", + "x-ms-request-id": "797b4cbd-7ef9-6d42-d0a8-839dcd527c5d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130221Z:fa122b89-6974-4ec6-bd11-fa28346e5f14", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569", - "name": "profileName3569", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476", + "name": "profileName6476", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3569", - "fqdn": "profilename3569.trafficmanager.net", + "relativeName": "profilename6476", + "fqdn": "profilename6476.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,29 +305,29 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7439/providers/Microsoft.Network/trafficmanagerprofiles/profileName3569?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4573/providers/Microsoft.Network/trafficmanagerprofiles/profileName6476?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "1525", + "Content-Length": "1575", "Content-Type": "application/json", - "traceparent": "00-6fc2e2b1dfbf074bb07b911addaba2ed-c238b2844b48f349-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8f2e254dc1c454e1aadf8ba44bd4f9d0", + "traceparent": "00-40576d65e11f7b91976710636e33f645-c14fa3415c2349d8-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "97c55a6561c4d93a8ed724b3be481676", "x-ms-return-client-request-id": "true" }, "RequestBody": { "tags": {}, "location": "global", - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569", - "name": "profileName3569", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476", + "name": "profileName6476", "type": "Microsoft.Network/trafficManagerProfiles", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Priority", "dnsConfig": { - "relativeName": "profilename3569", + "relativeName": "profilename6476", "ttl": 0 }, "monitorConfig": { @@ -345,7 +341,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -353,11 +349,12 @@ "endpointStatus": "Enabled", "weight": 1000, "priority": 1, - "endpointMonitorStatus": "CheckingEndpoint" + "endpointMonitorStatus": "CheckingEndpoint", + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -365,7 +362,8 @@ "endpointStatus": "Enabled", "weight": 1, "priority": 2, - "endpointMonitorStatus": "CheckingEndpoint" + "endpointMonitorStatus": "CheckingEndpoint", + "alwaysServe": "Disabled" } } ], @@ -375,22 +373,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:07 GMT", + "Date": "Tue, 15 Nov 2022 13:02:25 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a899303d-15e6-4c10-9eef-9ea3043e5bdf", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "8f2e254d-c1c4-54e1-aadf-8ba44bd4f9d0", - "x-ms-routing-request-id": "WESTUS2:20220803T050307Z:a899303d-15e6-4c10-9eef-9ea3043e5bdf", + "x-ms-correlation-request-id": "74158ff3-0bde-47d1-9f23-b55cd124b72c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4498", + "x-ms-request-id": "97c55a65-61c4-d93a-8ed7-24b3be481676", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130226Z:74158ff3-0bde-47d1-9f23-b55cd124b72c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569", - "name": "profileName3569", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476", + "name": "profileName6476", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -398,8 +396,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Priority", "dnsConfig": { - "relativeName": "profilename3569", - "fqdn": "profilename3569.trafficmanager.net", + "relativeName": "profilename6476", + "fqdn": "profilename6476.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -413,7 +411,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -426,11 +424,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -443,7 +442,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -453,36 +453,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7439/providers/Microsoft.Network/trafficmanagerprofiles/profileName3569?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4573/providers/Microsoft.Network/trafficmanagerprofiles/profileName6476?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-02b7d70386c3f44da29177cfd40f556b-e79de6addd7eae43-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "abde5c893e8deebc3a67c699acb78dc7", + "traceparent": "00-7e8010d04b2d63b87a610aa092a7ce4c-78d6470021c29c06-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bc9e447be372909cbd7af853897a002d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:07 GMT", + "Date": "Tue, 15 Nov 2022 13:02:26 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ddd37e4-06fb-459a-893a-7f87329b761b", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10781", - "x-ms-request-id": "abde5c89-3e8d-eebc-3a67-c699acb78dc7", - "x-ms-routing-request-id": "WESTUS2:20220803T050307Z:6ddd37e4-06fb-459a-893a-7f87329b761b", + "x-ms-correlation-request-id": "db62a45c-407f-48a8-9bd3-9f1114f40258", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1998", + "x-ms-request-id": "bc9e447b-e372-909c-bd7a-f853897a002d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130227Z:db62a45c-407f-48a8-9bd3-9f1114f40258", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569", - "name": "profileName3569", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476", + "name": "profileName6476", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -490,8 +490,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Priority", "dnsConfig": { - "relativeName": "profilename3569", - "fqdn": "profilename3569.trafficmanager.net", + "relativeName": "profilename6476", + "fqdn": "profilename6476.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -505,7 +505,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -518,11 +518,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname7439/providers/Microsoft.Network/trafficManagerProfiles/profileName3569/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname4573/providers/Microsoft.Network/trafficManagerProfiles/profileName6476/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -535,7 +536,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -545,13 +547,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName7439/providers/Microsoft.Network/trafficmanagerprofiles/profileName3569?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName4573/providers/Microsoft.Network/trafficmanagerprofiles/profileName6476?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8850d7bddce312926192eb8736bd3294", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e1f91837bd6c5ca211a2ea22598faf87", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -559,28 +561,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:03:08 GMT", + "Date": "Tue, 15 Nov 2022 13:02:30 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e42dac1-795a-4a1e-be25-7b4d3c7671dd", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "8850d7bd-dce3-1292-6192-eb8736bd3294", - "x-ms-routing-request-id": "WESTUS2:20220803T050309Z:9e42dac1-795a-4a1e-be25-7b4d3c7671dd", + "x-ms-correlation-request-id": "047a3c49-ad02-4cf2-9752-595771161ec5", + "x-ms-ratelimit-remaining-subscription-resource-requests": "499", + "x-ms-request-id": "e1f91837-bd6c-5ca2-11a2-ea22598faf87", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130231Z:047a3c49-ad02-4cf2-9752-595771161ec5", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName7439?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName4573?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4efe315ed6213a43a5ff16da568eb222-ebd270844b809a4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "51c1fc87b5520f93683f555dfa47a8f3", + "traceparent": "00-21618bfadd8d403db79868754366c28a-6d8e74b06819926c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "89210c91bfb482eabd35d94968e74f13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:02:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ1NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dd3c4f60-5719-4ccc-b255-8b48cce0326c", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "dd3c4f60-5719-4ccc-b255-8b48cce0326c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130234Z:dd3c4f60-5719-4ccc-b255-8b48cce0326c" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ1NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-21618bfadd8d403db79868754366c28a-15c54830a53f3ff9-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "7cc171cb775978792d772337e359f42a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:02:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ1NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1323748b-e780-4e76-9c01-982d0501d944", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "1323748b-e780-4e76-9c01-982d0501d944", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130235Z:1323748b-e780-4e76-9c01-982d0501d944" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ1NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-21618bfadd8d403db79868754366c28a-315e956a73e7826e-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "624ad65209135b380262e672141a8943", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:02:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ1NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "82b72205-946d-48b1-b6c3-512a3fb6b99a", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "82b72205-946d-48b1-b6c3-512a3fb6b99a", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130250Z:82b72205-946d-48b1-b6c3-512a3fb6b99a" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ1NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-21618bfadd8d403db79868754366c28a-6c4cc1257b55fef3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f67dabfed2255fba7d0378d812d2db49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:03:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ1NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d9ebf307-9913-4b3d-83de-94b6a9f590f7", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "d9ebf307-9913-4b3d-83de-94b6a9f590f7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130306Z:d9ebf307-9913-4b3d-83de-94b6a9f590f7" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ1NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-21618bfadd8d403db79868754366c28a-18fa6e6bb0c3686f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "217d7f4cd42fc21b38667af690066313", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -588,28 +706,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:03:09 GMT", + "Date": "Tue, 15 Nov 2022 13:03:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0MzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ1NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "382ffd68-a6f7-4423-a715-4bee1dadfe7d", - "x-ms-ratelimit-remaining-subscription-deletes": "14991", - "x-ms-request-id": "382ffd68-a6f7-4423-a715-4bee1dadfe7d", - "x-ms-routing-request-id": "WESTUS2:20220803T050309Z:382ffd68-a6f7-4423-a715-4bee1dadfe7d" + "x-ms-correlation-request-id": "a969b6d7-f4a3-4fed-ae62-93d4e0d06f43", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "a969b6d7-f4a3-4fed-ae62-93d4e0d06f43", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130321Z:a969b6d7-f4a3-4fed-ae62-93d4e0d06f43" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0MzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ1NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4efe315ed6213a43a5ff16da568eb222-85c879945a7cd843-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "af1232353bf5087544401fa487341719", + "traceparent": "00-21618bfadd8d403db79868754366c28a-bb9152d0f0b228d3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3738dfedfddb80051cebe510915f4830", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -617,28 +735,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:03:09 GMT", + "Date": "Tue, 15 Nov 2022 13:03:36 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0MzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ1NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0e68ec1-8ed8-4302-ba81-e754bda93a45", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "a0e68ec1-8ed8-4302-ba81-e754bda93a45", - "x-ms-routing-request-id": "WESTUS2:20220803T050310Z:a0e68ec1-8ed8-4302-ba81-e754bda93a45" + "x-ms-correlation-request-id": "c5cee2c4-8d67-4d18-ae82-f4095e8d93ed", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "c5cee2c4-8d67-4d18-ae82-f4095e8d93ed", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130337Z:c5cee2c4-8d67-4d18-ae82-f4095e8d93ed" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTc0MzktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTQ1NzMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4efe315ed6213a43a5ff16da568eb222-1d74892a309bb543-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "7235f8eabdd6150f101487856a98bd33", + "traceparent": "00-21618bfadd8d403db79868754366c28a-6b37db61fb88b5b1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "95269d87689c2a1490bbbdbe58c3ce77", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -646,23 +764,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:03:24 GMT", + "Date": "Tue, 15 Nov 2022 13:03:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d08a5d0e-eedb-411c-82a4-c9c545f66a6d", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "d08a5d0e-eedb-411c-82a4-c9c545f66a6d", - "x-ms-routing-request-id": "WESTUS2:20220803T050325Z:d08a5d0e-eedb-411c-82a4-c9c545f66a6d" + "x-ms-correlation-request-id": "30d29852-56f2-4e10-bd74-c08621272693", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "30d29852-56f2-4e10-bd74-c08621272693", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130352Z:30d29852-56f2-4e10-bd74-c08621272693" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1791335131", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "2097134806", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateCollectionTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateCollectionTestAsync.json index ee74ad76d4f1..7e8060a4f06f 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateCollectionTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateCollectionTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d5e8bca7b782ef44a4779b157228cbbe-388c46c18e5d5547-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "10c306fa99da28f888cd29d6bca71302", + "traceparent": "00-b586d7129f10c7ac29dda55c0d7d35f2-6602f9e0153fab69-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9ce081ba43f45b22fca4e486d274cf21", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:12:57 GMT", + "Date": "Tue, 15 Nov 2022 13:29:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdf02ad0-4f41-45ff-bdd3-c467e487adff", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "bdf02ad0-4f41-45ff-bdd3-c467e487adff", - "x-ms-routing-request-id": "WESTUS2:20220803T051257Z:bdf02ad0-4f41-45ff-bdd3-c467e487adff" + "x-ms-correlation-request-id": "26da2a74-ef54-446a-ada3-650e95838b41", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "26da2a74-ef54-446a-ada3-650e95838b41", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132914Z:26da2a74-ef54-446a-ada3-650e95838b41" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6416?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6715?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-04c46f6840e4c545914f403731a839e6-b2368831265bef4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "744710486c5ef6e5ed4aa333b851b3ed", + "traceparent": "00-018361b2dda6bb8da40584c1b3ee2e95-abd38c7abda70baf-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "486ea9e68060521ab2cb0ebd7ef5accf", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:12:57 GMT", + "Date": "Tue, 15 Nov 2022 13:29:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "078076dd-7f68-44d1-83a1-860ec5c03c2d", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "078076dd-7f68-44d1-83a1-860ec5c03c2d", - "x-ms-routing-request-id": "WESTUS2:20220803T051258Z:078076dd-7f68-44d1-83a1-860ec5c03c2d" + "x-ms-correlation-request-id": "5c5b7cae-8d83-4362-8b75-50cba0de42d1", + "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-request-id": "5c5b7cae-8d83-4362-8b75-50cba0de42d1", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132916Z:5c5b7cae-8d83-4362-8b75-50cba0de42d1" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6416", - "name": "resourceGroupName6416", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6715", + "name": "resourceGroupName6715", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6416/providers/Microsoft.Network/trafficmanagerprofiles/profileName6024?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6715/providers/Microsoft.Network/trafficmanagerprofiles/profileName8279?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-904215e1fad8ff47bead34ddf1c22a30-94b28b5707bf9048-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "07c9c3d66cb62dbc3213d669991818c3", + "traceparent": "00-8b752fd166334f01b31c7d3938a43ad4-1d40981f53a9bc20-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4367c98bb6edeb88aa53e15117b5b295", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName6024", + "name": "profileName8279", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName6024" + "relativeName": "profileName8279" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:12:59 GMT", + "Date": "Tue, 15 Nov 2022 13:29:20 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44311cc4-d1f1-4354-910f-94181fd19b65", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "07c9c3d6-6cb6-2dbc-3213-d669991818c3", - "x-ms-routing-request-id": "WESTUS2:20220803T051259Z:44311cc4-d1f1-4354-910f-94181fd19b65", + "x-ms-correlation-request-id": "b3d04de2-507d-413d-924e-b0d5fb5c654c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "4367c98b-b6ed-eb88-aa53-e15117b5b295", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132921Z:b3d04de2-507d-413d-924e-b0d5fb5c654c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024", - "name": "profileName6024", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279", + "name": "profileName8279", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename6024", - "fqdn": "profilename6024.trafficmanager.net", + "relativeName": "profilename8279", + "fqdn": "profilename8279.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6416/providers/Microsoft.Network/trafficmanagerprofiles/profileName6024?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6715/providers/Microsoft.Network/trafficmanagerprofiles/profileName8279?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d972e14b077c664e9f8365fa569f45ad-5fe74e6bb28f024c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "35c8fc03f2549a9cdd19ec4e54f5cf7b", + "traceparent": "00-cfa0cf6c6d5c82118f0d5e6edf0f8ec6-976d103925f07249-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a5ae7ac33fec0159c64a4178149e7eaf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:12:59 GMT", + "Date": "Tue, 15 Nov 2022 13:29:22 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5abca1b-13ea-4051-9f20-82f039212437", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10784", - "x-ms-request-id": "35c8fc03-f254-9a9c-dd19-ec4e54f5cf7b", - "x-ms-routing-request-id": "WESTUS2:20220803T051259Z:a5abca1b-13ea-4051-9f20-82f039212437", + "x-ms-correlation-request-id": "fe754f03-fd97-4637-972a-bf5c9fc6d064", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1994", + "x-ms-request-id": "a5ae7ac3-3fec-0159-c64a-4178149e7eaf", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132922Z:fe754f03-fd97-4637-972a-bf5c9fc6d064", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024", - "name": "profileName6024", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279", + "name": "profileName8279", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename6024", - "fqdn": "profilename6024.trafficmanager.net", + "relativeName": "profilename8279", + "fqdn": "profilename8279.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,29 +305,29 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6416/providers/Microsoft.Network/trafficmanagerprofiles/profileName6024?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6715/providers/Microsoft.Network/trafficmanagerprofiles/profileName8279?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "1525", + "Content-Length": "1575", "Content-Type": "application/json", - "traceparent": "00-583f5fdb0aae9f41addb60aee1989ab1-335f407b0c2eee44-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e3e6e876fb49db005419424b957c5dd5", + "traceparent": "00-fb3410227ee1e4c7dd88701d0b3380d4-048923809240c657-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "aa47b637de68301920829d0d9ec83afd", "x-ms-return-client-request-id": "true" }, "RequestBody": { "tags": {}, "location": "global", - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024", - "name": "profileName6024", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279", + "name": "profileName8279", "type": "Microsoft.Network/trafficManagerProfiles", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Priority", "dnsConfig": { - "relativeName": "profilename6024", + "relativeName": "profilename8279", "ttl": 0 }, "monitorConfig": { @@ -345,7 +341,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -353,11 +349,12 @@ "endpointStatus": "Enabled", "weight": 1000, "priority": 1, - "endpointMonitorStatus": "CheckingEndpoint" + "endpointMonitorStatus": "CheckingEndpoint", + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -365,7 +362,8 @@ "endpointStatus": "Enabled", "weight": 1, "priority": 2, - "endpointMonitorStatus": "CheckingEndpoint" + "endpointMonitorStatus": "CheckingEndpoint", + "alwaysServe": "Disabled" } } ], @@ -375,22 +373,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:13:00 GMT", + "Date": "Tue, 15 Nov 2022 13:29:26 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98cfba5a-1139-46a1-9a41-2094000f2cd7", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "e3e6e876-fb49-db00-5419-424b957c5dd5", - "x-ms-routing-request-id": "WESTUS2:20220803T051301Z:98cfba5a-1139-46a1-9a41-2094000f2cd7", + "x-ms-correlation-request-id": "cef6f977-b11e-415d-b8e8-f87fc1f43d37", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4493", + "x-ms-request-id": "aa47b637-de68-3019-2082-9d0d9ec83afd", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132927Z:cef6f977-b11e-415d-b8e8-f87fc1f43d37", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024", - "name": "profileName6024", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279", + "name": "profileName8279", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -398,8 +396,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Priority", "dnsConfig": { - "relativeName": "profilename6024", - "fqdn": "profilename6024.trafficmanager.net", + "relativeName": "profilename8279", + "fqdn": "profilename8279.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -413,7 +411,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -426,11 +424,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -443,7 +442,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -453,36 +453,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6416/providers/Microsoft.Network/trafficmanagerprofiles/profileName6024?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6715/providers/Microsoft.Network/trafficmanagerprofiles/profileName8279?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ccb38985de43764db6b2e2f54f2d7cfa-50d7665b8f564144-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "bc2fe0317d89e399272f299d806dd93d", + "traceparent": "00-454d0ef629b48091802fac17fa7bae49-6c2e50d0519f3c0c-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "03f9781807474be36f667ca3740fd70c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:13:01 GMT", + "Date": "Tue, 15 Nov 2022 13:29:27 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8bd0542-6da4-46c9-9c4c-fb61a06f572d", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10783", - "x-ms-request-id": "bc2fe031-7d89-e399-272f-299d806dd93d", - "x-ms-routing-request-id": "WESTUS2:20220803T051301Z:b8bd0542-6da4-46c9-9c4c-fb61a06f572d", + "x-ms-correlation-request-id": "d0af3717-053b-4336-9130-db4469de8de5", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1993", + "x-ms-request-id": "03f97818-0747-4be3-6f66-7ca3740fd70c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132927Z:d0af3717-053b-4336-9130-db4469de8de5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024", - "name": "profileName6024", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279", + "name": "profileName8279", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -490,8 +490,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Priority", "dnsConfig": { - "relativeName": "profilename6024", - "fqdn": "profilename6024.trafficmanager.net", + "relativeName": "profilename8279", + "fqdn": "profilename8279.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -505,7 +505,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -518,11 +518,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname6416/providers/Microsoft.Network/trafficManagerProfiles/profileName6024/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname6715/providers/Microsoft.Network/trafficManagerProfiles/profileName8279/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -535,7 +536,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -545,13 +547,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName6416/providers/Microsoft.Network/trafficmanagerprofiles/profileName6024?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName6715/providers/Microsoft.Network/trafficmanagerprofiles/profileName8279?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b0f25b433432087afbece13bb0500561", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "601932d4076ee52d607d846aa14c63fd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -559,28 +561,144 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:13:02 GMT", + "Date": "Tue, 15 Nov 2022 13:29:30 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a26c95b-d90c-439e-a888-69d2756c8f88", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "b0f25b43-3432-087a-fbec-e13bb0500561", - "x-ms-routing-request-id": "WESTUS2:20220803T051302Z:9a26c95b-d90c-439e-a888-69d2756c8f88", + "x-ms-correlation-request-id": "f4fbbe7b-7735-48ce-b563-b7387456cd6d", + "x-ms-ratelimit-remaining-subscription-resource-requests": "494", + "x-ms-request-id": "601932d4-076e-e52d-607d-846aa14c63fd", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132931Z:f4fbbe7b-7735-48ce-b563-b7387456cd6d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName6416?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName6715?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fae771a747e8f5468a133c74b08b7d53-1ee2c298b0619b49-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "741c17bb12c6f9f24f02bc19d1635be6", + "traceparent": "00-3a1debf66333a2c17d1459632606b5d5-fdfb6afa207acaa7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9b60440f7ba43067d3fb3b016176bc10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:29:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MTUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "103bef97-e104-4570-b121-00a63f99cd61", + "x-ms-ratelimit-remaining-subscription-deletes": "14980", + "x-ms-request-id": "103bef97-e104-4570-b121-00a63f99cd61", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132933Z:103bef97-e104-4570-b121-00a63f99cd61" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MTUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3a1debf66333a2c17d1459632606b5d5-65c4a52c69b9f42b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2f937e033caf5967cbe98d72cc2b83ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:29:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MTUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b234269b-d5c8-43b8-89b9-53424c3601f5", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "b234269b-d5c8-43b8-89b9-53424c3601f5", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132933Z:b234269b-d5c8-43b8-89b9-53424c3601f5" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MTUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3a1debf66333a2c17d1459632606b5d5-05f2a9db385c4469-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "10c074c1f712364eb64f4f8fd89dae5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:29:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MTUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f67b955f-b7af-4b90-8cd1-f51bba2d8098", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "f67b955f-b7af-4b90-8cd1-f51bba2d8098", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T132949Z:f67b955f-b7af-4b90-8cd1-f51bba2d8098" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MTUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3a1debf66333a2c17d1459632606b5d5-c47a3d2117cfb54d-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "e2fe18518de26d6129e0a0c54c1b4420", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:30:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MTUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a3d1da1e-7d82-46eb-ba0c-82e1def98ff7", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "a3d1da1e-7d82-46eb-ba0c-82e1def98ff7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133005Z:a3d1da1e-7d82-46eb-ba0c-82e1def98ff7" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MTUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-3a1debf66333a2c17d1459632606b5d5-7c3d6d1c814f9f7c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0e08b89099b80b102f5d7860edd7802d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -588,28 +706,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:13:03 GMT", + "Date": "Tue, 15 Nov 2022 13:30:20 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MTUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "997f6977-5421-4e8e-bf72-bc4573e36fa8", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-request-id": "997f6977-5421-4e8e-bf72-bc4573e36fa8", - "x-ms-routing-request-id": "WESTUS2:20220803T051303Z:997f6977-5421-4e8e-bf72-bc4573e36fa8" + "x-ms-correlation-request-id": "e75291e6-55db-49ce-845e-9695d2c31f2d", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "e75291e6-55db-49ce-845e-9695d2c31f2d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133021Z:e75291e6-55db-49ce-845e-9695d2c31f2d" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MTUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fae771a747e8f5468a133c74b08b7d53-04367dc02c6f074f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "68e1c72a6550317768f8612f78603697", + "traceparent": "00-3a1debf66333a2c17d1459632606b5d5-59ca906f0eeac837-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b421323aa12c34081352e6325788ea9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -617,28 +735,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:13:03 GMT", + "Date": "Tue, 15 Nov 2022 13:30:36 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MTUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db903c9c-8c44-42ec-92c0-1d8ad249b878", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "db903c9c-8c44-42ec-92c0-1d8ad249b878", - "x-ms-routing-request-id": "WESTUS2:20220803T051303Z:db903c9c-8c44-42ec-92c0-1d8ad249b878" + "x-ms-correlation-request-id": "a2a0e2a2-46b0-4094-bf93-7bfa1b6caf2d", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "a2a0e2a2-46b0-4094-bf93-7bfa1b6caf2d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133036Z:a2a0e2a2-46b0-4094-bf93-7bfa1b6caf2d" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY0MTYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTY3MTUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fae771a747e8f5468a133c74b08b7d53-65f817001b8eab45-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "abfafa91ca490ed8741f0d9e50565ef0", + "traceparent": "00-3a1debf66333a2c17d1459632606b5d5-b230cce417a4069f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1fff2f0ba095b7a207f3b28414008052", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -646,23 +764,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:13:18 GMT", + "Date": "Tue, 15 Nov 2022 13:30:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c239b12-1c53-40cb-b0da-c8b637e59125", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "4c239b12-1c53-40cb-b0da-c8b637e59125", - "x-ms-routing-request-id": "WESTUS2:20220803T051318Z:4c239b12-1c53-40cb-b0da-c8b637e59125" + "x-ms-correlation-request-id": "fcaa259c-79f7-4e7c-b758-c179e9a65ab7", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "fcaa259c-79f7-4e7c-b758-c179e9a65ab7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133052Z:fcaa259c-79f7-4e7c-b758-c179e9a65ab7" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "359960124", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1611695573", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateEntityTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateEntityTest.json index 11a6ebca2668..d60159b38fd8 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateEntityTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateEntityTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-085078f0feab724bad2dd69d9bbad6b2-67281a75317b064c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d5b82d63dae634ab1693d8a5d0f6cbbd", + "traceparent": "00-050973eddf3eacd943199531bf0cbbc1-44d803fa79c0ae67-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "75f6972669a11720940984a8234c8ff7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:25 GMT", + "Date": "Tue, 15 Nov 2022 13:03:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c4de27c-7c85-44cc-988b-c6f4a4f38834", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "8c4de27c-7c85-44cc-988b-c6f4a4f38834", - "x-ms-routing-request-id": "WESTUS2:20220803T050325Z:8c4de27c-7c85-44cc-988b-c6f4a4f38834" + "x-ms-correlation-request-id": "56253d2d-f0d5-4323-8db4-a1b16e8b732c", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "56253d2d-f0d5-4323-8db4-a1b16e8b732c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130355Z:56253d2d-f0d5-4323-8db4-a1b16e8b732c" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName9624?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8235?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-48e02975f1f3114983764549e8fd4d9c-922d5e53624dbd48-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e410973555c70da0881407843e95074c", + "traceparent": "00-c0f38f59f5ab8d4375477941091bdb60-f2107b271e60188b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f2aa553875f47db9472b7294a42f9981", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:26 GMT", + "Date": "Tue, 15 Nov 2022 13:03:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3310e954-2d70-4456-85b7-6961ad15cf88", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "3310e954-2d70-4456-85b7-6961ad15cf88", - "x-ms-routing-request-id": "WESTUS2:20220803T050326Z:3310e954-2d70-4456-85b7-6961ad15cf88" + "x-ms-correlation-request-id": "c9904a03-1f68-44ac-8e0f-a416baa48426", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "c9904a03-1f68-44ac-8e0f-a416baa48426", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130356Z:c9904a03-1f68-44ac-8e0f-a416baa48426" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName9624", - "name": "resourceGroupName9624", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8235", + "name": "resourceGroupName8235", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName9624/providers/Microsoft.Network/trafficmanagerprofiles/profileName4703?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8235/providers/Microsoft.Network/trafficmanagerprofiles/profileName3708?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-bd4130aa0854154989aa6c931c89ec17-62087bfd6f6ef748-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b952fff546f238a1dcd5f1e679609095", + "traceparent": "00-63265cec72357a4b6df626268e6ecc77-a6eb797f464e316a-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "74f53b7bb4bf3e6c0784b5eea7c85889", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName4703", + "name": "profileName3708", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName4703" + "relativeName": "profileName3708" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:27 GMT", + "Date": "Tue, 15 Nov 2022 13:03:59 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2efe2ae0-2226-49ca-8d88-9299c07522ee", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10790", - "x-ms-request-id": "b952fff5-46f2-38a1-dcd5-f1e679609095", - "x-ms-routing-request-id": "WESTUS2:20220803T050327Z:2efe2ae0-2226-49ca-8d88-9299c07522ee", + "x-ms-correlation-request-id": "7b1ef04d-7ada-4397-bf57-6696583f2079", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4497", + "x-ms-request-id": "74f53b7b-b4bf-3e6c-0784-b5eea7c85889", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130400Z:7b1ef04d-7ada-4397-bf57-6696583f2079", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703", - "name": "profileName4703", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708", + "name": "profileName3708", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4703", - "fqdn": "profilename4703.trafficmanager.net", + "relativeName": "profilename3708", + "fqdn": "profilename3708.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName9624/providers/Microsoft.Network/trafficmanagerprofiles/profileName4703?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8235/providers/Microsoft.Network/trafficmanagerprofiles/profileName3708?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2fe1aadff9d2834ca82beef3ea351857-bf1b60d56b579548-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "de9d9f88a0c7d89c18c75dc6a3afd7fe", + "traceparent": "00-af8197d8f4d5f1b14e8d82bee970661b-4df164281cf23929-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "0ffada6e22a522313cf7593eae82efd9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:27 GMT", + "Date": "Tue, 15 Nov 2022 13:04:00 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e74d9d5c-6737-4761-8ee2-a892b20cded6", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10780", - "x-ms-request-id": "de9d9f88-a0c7-d89c-18c7-5dc6a3afd7fe", - "x-ms-routing-request-id": "WESTUS2:20220803T050327Z:e74d9d5c-6737-4761-8ee2-a892b20cded6", + "x-ms-correlation-request-id": "787afcd1-794d-4713-a4b5-44bf34e340aa", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1997", + "x-ms-request-id": "0ffada6e-22a5-2231-3cf7-593eae82efd9", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130400Z:787afcd1-794d-4713-a4b5-44bf34e340aa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703", - "name": "profileName4703", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708", + "name": "profileName3708", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename4703", - "fqdn": "profilename4703.trafficmanager.net", + "relativeName": "profilename3708", + "fqdn": "profilename3708.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,30 +305,29 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficmanagerprofiles/profileName4703?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficmanagerprofiles/profileName3708?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Connection": "close", "Content-Length": "649", "Content-Type": "application/json", - "traceparent": "00-a84ee625088e2f4bb9fc48d5529af2d6-7df29c7d77ee9d49-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f6db58d00479efc6f5d707f163b99427", + "traceparent": "00-e1ab9cc26e79e8056ad4b76dce036a83-d61fe140f55aff8f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "10a726eb839a8313e86beb6fc0cad67f", "x-ms-return-client-request-id": "true" }, "RequestBody": { "tags": {}, "location": "global", - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703", - "name": "profileName4703", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708", + "name": "profileName3708", "type": "Microsoft.Network/trafficManagerProfiles", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Priority", "dnsConfig": { - "relativeName": "profilename4703", + "relativeName": "profilename3708", "ttl": 0 }, "monitorConfig": { @@ -351,23 +346,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Connection": "close", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:27 GMT", + "Date": "Tue, 15 Nov 2022 13:04:02 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b47bcfe-166b-4ee2-9d28-00731ae7089c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10789", - "x-ms-request-id": "f6db58d0-0479-efc6-f5d7-07f163b99427", - "x-ms-routing-request-id": "WESTUS2:20220803T050328Z:5b47bcfe-166b-4ee2-9d28-00731ae7089c", + "x-ms-correlation-request-id": "9f126878-1a8f-46ae-9a50-a3cb6d79fad1", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4496", + "x-ms-request-id": "10a726eb-839a-8313-e86b-eb6fc0cad67f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130402Z:9f126878-1a8f-46ae-9a50-a3cb6d79fad1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703", - "name": "profileName4703", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708", + "name": "profileName3708", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -375,8 +369,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Priority", "dnsConfig": { - "relativeName": "profilename4703", - "fqdn": "profilename4703.trafficmanager.net", + "relativeName": "profilename3708", + "fqdn": "profilename3708.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -390,7 +384,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -403,11 +397,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -420,7 +415,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -430,36 +426,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName9624/providers/Microsoft.Network/trafficmanagerprofiles/profileName4703?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8235/providers/Microsoft.Network/trafficmanagerprofiles/profileName3708?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-355b9145eca7ba4496c73d330ca112f2-8cc4bfc46af7ec48-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "9ffc718329f855846379a02be8db952c", + "traceparent": "00-e47818864d4a92f5dd32b246a4503add-25d8b7d4bde8f6b0-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ca25e8d28a3459dc09d337c85b2e9084", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:03:27 GMT", + "Date": "Tue, 15 Nov 2022 13:04:02 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18a31308-e8c9-4ccb-99d6-95ff7c082b64", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "9ffc7183-29f8-5584-6379-a02be8db952c", - "x-ms-routing-request-id": "WESTUS:20220803T050328Z:18a31308-e8c9-4ccb-99d6-95ff7c082b64", + "x-ms-correlation-request-id": "86e0e282-5037-4abc-a6d9-0e6c547b027b", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1996", + "x-ms-request-id": "ca25e8d2-8a34-59dc-09d3-37c85b2e9084", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130403Z:86e0e282-5037-4abc-a6d9-0e6c547b027b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703", - "name": "profileName4703", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708", + "name": "profileName3708", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -467,8 +463,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Priority", "dnsConfig": { - "relativeName": "profilename4703", - "fqdn": "profilename4703.trafficmanager.net", + "relativeName": "profilename3708", + "fqdn": "profilename3708.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -482,7 +478,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -495,11 +491,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname9624/providers/Microsoft.Network/trafficManagerProfiles/profileName4703/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8235/providers/Microsoft.Network/trafficManagerProfiles/profileName3708/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -512,7 +509,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -522,13 +520,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName9624/providers/Microsoft.Network/trafficmanagerprofiles/profileName4703?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8235/providers/Microsoft.Network/trafficmanagerprofiles/profileName3708?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "2015f3fd9a85841cd9ade8f098aa755e", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8002dc944820ebefc677263a37c26271", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -536,28 +534,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:03:32 GMT", + "Date": "Tue, 15 Nov 2022 13:04:07 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c961892-a5fe-4894-a31b-eb47c6475ebf", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "2015f3fd-9a85-841c-d9ad-e8f098aa755e", - "x-ms-routing-request-id": "WESTUS:20220803T050332Z:2c961892-a5fe-4894-a31b-eb47c6475ebf", + "x-ms-correlation-request-id": "cf066a72-2943-4338-9474-011918bc80dc", + "x-ms-ratelimit-remaining-subscription-resource-requests": "498", + "x-ms-request-id": "8002dc94-4820-ebef-c677-263a37c26271", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130407Z:cf066a72-2943-4338-9474-011918bc80dc", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName9624?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8235?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fe77eb1da0d8764ca1f18a6e99deadec-4d68825bb228f041-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "3243353338b3a705d38592ff639b071a", + "traceparent": "00-39b9b65b8dd1fa95ec5962a14a9a122a-e4a56cf3a601e923-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c56bda21255d61a54a4e06c64b4a27ba", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -565,28 +563,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:03:33 GMT", + "Date": "Tue, 15 Nov 2022 13:04:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk2MjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6bf70aa-82b3-41da-8d72-3448088fa896", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "d6bf70aa-82b3-41da-8d72-3448088fa896", - "x-ms-routing-request-id": "WESTUS:20220803T050333Z:d6bf70aa-82b3-41da-8d72-3448088fa896" + "x-ms-correlation-request-id": "68bc0348-07a6-4010-9c8d-dfa38e32455b", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "68bc0348-07a6-4010-9c8d-dfa38e32455b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130409Z:68bc0348-07a6-4010-9c8d-dfa38e32455b" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk2MjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fe77eb1da0d8764ca1f18a6e99deadec-44cbda3c46776941-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b2f842046297c579ed6e4dff071d203d", + "traceparent": "00-39b9b65b8dd1fa95ec5962a14a9a122a-ff91fe2b82d88d98-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "80a6c571cac26f2736a036d241289f7c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -594,28 +592,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:03:33 GMT", + "Date": "Tue, 15 Nov 2022 13:04:09 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk2MjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "702422ec-1366-4d41-8104-51ca11ec77a8", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "702422ec-1366-4d41-8104-51ca11ec77a8", - "x-ms-routing-request-id": "WESTUS:20220803T050333Z:702422ec-1366-4d41-8104-51ca11ec77a8" + "x-ms-correlation-request-id": "9c002fe5-970c-41d5-b4fd-68ace0274a2e", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "9c002fe5-970c-41d5-b4fd-68ace0274a2e", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130410Z:9c002fe5-970c-41d5-b4fd-68ace0274a2e" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTk2MjQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fe77eb1da0d8764ca1f18a6e99deadec-42572ae20d34be47-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "bdaecea605b6bfba925adc3b72ba663f", + "traceparent": "00-39b9b65b8dd1fa95ec5962a14a9a122a-ed8eb2a3cc0145f1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d05e6c507ee7cca97be0cc2221e9fea8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:04:25 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bdf71f1b-9bcc-4841-9f9f-15fd0e75d712", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "bdf71f1b-9bcc-4841-9f9f-15fd0e75d712", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130426Z:bdf71f1b-9bcc-4841-9f9f-15fd0e75d712" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-39b9b65b8dd1fa95ec5962a14a9a122a-1dcc07b18f096954-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8655bf2ba6a411f73f6bad271e8c49d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:04:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b278704c-7f88-4b6f-810e-201cffaa1f4c", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "b278704c-7f88-4b6f-810e-201cffaa1f4c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130441Z:b278704c-7f88-4b6f-810e-201cffaa1f4c" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-39b9b65b8dd1fa95ec5962a14a9a122a-67ae68d96d180d7f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f76c879a5243f3601bda05e2fd044d4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:04:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f8be20a4-df96-4a28-84ab-5597e7d29c7c", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "f8be20a4-df96-4a28-84ab-5597e7d29c7c", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130457Z:f8be20a4-df96-4a28-84ab-5597e7d29c7c" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-39b9b65b8dd1fa95ec5962a14a9a122a-3e3ff6a7d653a5a7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "82a78ea219d3a9d7754d907cd082adef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:05:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "58294c7d-3164-46c2-9027-9643715063e3", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "58294c7d-3164-46c2-9027-9643715063e3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130512Z:58294c7d-3164-46c2-9027-9643715063e3" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTgyMzUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-39b9b65b8dd1fa95ec5962a14a9a122a-b6846f7628d7207c-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9a88fb97077cd9645f616acaa115133b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -623,23 +737,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:03:48 GMT", + "Date": "Tue, 15 Nov 2022 13:05:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d38fb41-88dd-4ee3-930c-ef06dc5832dd", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "5d38fb41-88dd-4ee3-930c-ef06dc5832dd", - "x-ms-routing-request-id": "WESTUS:20220803T050349Z:5d38fb41-88dd-4ee3-930c-ef06dc5832dd" + "x-ms-correlation-request-id": "16a200e0-2e2a-45ff-a8fb-0b7190076781", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "16a200e0-2e2a-45ff-a8fb-0b7190076781", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T130528Z:16a200e0-2e2a-45ff-a8fb-0b7190076781" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1899666907", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1747082396", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateEntityTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateEntityTestAsync.json index e761cf3d28e9..69826f314571 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateEntityTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/ProfileTests/UpdateEntityTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-86785fd5565bfa42b7183e1e08b1bdf4-b32cddf650185049-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "8e02c89f44dac0cf8f4b7d35a02454ee", + "traceparent": "00-7ac0c8e14c0d6513c40f71eb96dc0d44-63c78976d6b1c34f-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1b0d289e50d1c2783678235d1aa59400", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:13:18 GMT", + "Date": "Tue, 15 Nov 2022 13:30:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c96a2f6-0b40-4ea5-9903-89fa1e97e5b3", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "1c96a2f6-0b40-4ea5-9903-89fa1e97e5b3", - "x-ms-routing-request-id": "WESTUS2:20220803T051319Z:1c96a2f6-0b40-4ea5-9903-89fa1e97e5b3" + "x-ms-correlation-request-id": "62341c72-ac74-45f2-946a-a7b6672d20b7", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "62341c72-ac74-45f2-946a-a7b6672d20b7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133052Z:62341c72-ac74-45f2-946a-a7b6672d20b7" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,16 +43,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName2974?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8631?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-45ed5447f3caf24f988dc5578bdd77d9-93bb4fdce11fb747-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "75cac273dee83e3466c130a021899ee1", + "traceparent": "00-97762de5acd3f22cd418faadce4fe05e-ff2c4ea554c74ce0-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "346059cd642218efdf42ba24e2e11538", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -71,19 +63,19 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:13:19 GMT", + "Date": "Tue, 15 Nov 2022 13:30:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed4b845f-7b0d-40b7-8026-742e1ff8fd3b", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "ed4b845f-7b0d-40b7-8026-742e1ff8fd3b", - "x-ms-routing-request-id": "WESTUS2:20220803T051320Z:ed4b845f-7b0d-40b7-8026-742e1ff8fd3b" + "x-ms-correlation-request-id": "012f3f7a-960d-447f-8bc0-77308d958f46", + "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-request-id": "012f3f7a-960d-447f-8bc0-77308d958f46", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133054Z:012f3f7a-960d-447f-8bc0-77308d958f46" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2974", - "name": "resourceGroupName2974", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8631", + "name": "resourceGroupName8631", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -92,25 +84,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2974/providers/Microsoft.Network/trafficmanagerprofiles/profileName3376?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8631/providers/Microsoft.Network/trafficmanagerprofiles/profileName9395?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "561", "Content-Type": "application/json", - "traceparent": "00-67e462212aa4bd42a8ef577637949e1f-8a21018ab757474a-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ac4bd9f82465ea9f3d3c0daa8f3ae0cc", + "traceparent": "00-5c46d137df79d3d7e89e8335a38be569-8af02a557a0f30a3-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d07e06ebe93ad56b4c7a30385e443148", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "global", - "name": "profileName3376", + "name": "profileName9395", "properties": { "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profileName3376" + "relativeName": "profileName9395" }, "monitorConfig": { "protocol": "HTTP", @@ -140,30 +132,30 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1873", + "Content-Length": "1923", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:13:20 GMT", + "Date": "Tue, 15 Nov 2022 13:30:59 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3ea7adf-42a4-4446-9b12-bab4697385a0", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "ac4bd9f8-2465-ea9f-3d3c-0daa8f3ae0cc", - "x-ms-routing-request-id": "WESTUS2:20220803T051321Z:b3ea7adf-42a4-4446-9b12-bab4697385a0", + "x-ms-correlation-request-id": "6aa862c7-81e1-429a-b250-2bbd53f48e49", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4495", + "x-ms-request-id": "d07e06eb-e93a-d56b-4c7a-30385e443148", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133100Z:6aa862c7-81e1-429a-b250-2bbd53f48e49", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376", - "name": "profileName3376", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395", + "name": "profileName9395", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3376", - "fqdn": "profilename3376.trafficmanager.net", + "relativeName": "profilename9395", + "fqdn": "profilename9395.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -177,7 +169,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -190,11 +182,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -207,7 +200,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -217,36 +211,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2974/providers/Microsoft.Network/trafficmanagerprofiles/profileName3376?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8631/providers/Microsoft.Network/trafficmanagerprofiles/profileName9395?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-499953992a9adb44968eddb70f73f71f-5f918e27a4c6694f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "03566e3f5e1beab6ce5073839f1f6ec1", + "traceparent": "00-c746153b5e3b26df42750f8aedb50ba8-aa1af3fc0be3cfe7-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8ebca575d983c47b1e02f10dbe9d5496", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:13:20 GMT", + "Date": "Tue, 15 Nov 2022 13:31:00 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2adf3d9-f7f1-4d19-8ee4-74ef8c92b932", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10782", - "x-ms-request-id": "03566e3f-5e1b-eab6-ce50-73839f1f6ec1", - "x-ms-routing-request-id": "WESTUS2:20220803T051321Z:e2adf3d9-f7f1-4d19-8ee4-74ef8c92b932", + "x-ms-correlation-request-id": "394c2de5-7786-434e-bb72-a276146775e7", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1995", + "x-ms-request-id": "8ebca575-d983-c47b-1e02-f10dbe9d5496", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133100Z:394c2de5-7786-434e-bb72-a276146775e7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376", - "name": "profileName3376", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395", + "name": "profileName9395", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -254,8 +248,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Weighted", "dnsConfig": { - "relativeName": "profilename3376", - "fqdn": "profilename3376.trafficmanager.net", + "relativeName": "profilename9395", + "fqdn": "profilename9395.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -269,7 +263,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -282,11 +276,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -299,7 +294,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -309,29 +305,29 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficmanagerprofiles/profileName3376?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficmanagerprofiles/profileName9395?api-version=2022-04-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "649", "Content-Type": "application/json", - "traceparent": "00-d9eef31920601645af332d01b3d8642b-4683fe4992d52547-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "4ba753de42094f9423e038acd089af2c", + "traceparent": "00-4aae4fa5ed3a16046bd36368d9b2768c-4b085581cd110304-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "9f2f240e2f15e40ced8be8a833b6ba9b", "x-ms-return-client-request-id": "true" }, "RequestBody": { "tags": {}, "location": "global", - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376", - "name": "profileName3376", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395", + "name": "profileName9395", "type": "Microsoft.Network/trafficManagerProfiles", "properties": { "profileStatus": "Enabled", "trafficRoutingMethod": "Priority", "dnsConfig": { - "relativeName": "profilename3376", + "relativeName": "profilename9395", "ttl": 0 }, "monitorConfig": { @@ -350,22 +346,22 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:13:21 GMT", + "Date": "Tue, 15 Nov 2022 13:31:02 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60d9b83a-3115-44b6-a466-5c08edd75599", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "4ba753de-4209-4f94-23e0-38acd089af2c", - "x-ms-routing-request-id": "WESTUS2:20220803T051322Z:60d9b83a-3115-44b6-a466-5c08edd75599", + "x-ms-correlation-request-id": "fcfed1a3-5f83-47f4-909b-0e0d2c221dbf", + "x-ms-ratelimit-remaining-subscription-resource-requests": "4494", + "x-ms-request-id": "9f2f240e-2f15-e40c-ed8b-e8a833b6ba9b", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133102Z:fcfed1a3-5f83-47f4-909b-0e0d2c221dbf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376", - "name": "profileName3376", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395", + "name": "profileName9395", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -373,8 +369,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Priority", "dnsConfig": { - "relativeName": "profilename3376", - "fqdn": "profilename3376.trafficmanager.net", + "relativeName": "profilename9395", + "fqdn": "profilename9395.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -388,7 +384,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -401,11 +397,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -418,7 +415,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -428,36 +426,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2974/providers/Microsoft.Network/trafficmanagerprofiles/profileName3376?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8631/providers/Microsoft.Network/trafficmanagerprofiles/profileName9395?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2f5ae2725a069c42a18c5de37b8810e7-0d6927d419a6aa4d-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b26163e09a339ac62361de15b11c4a1e", + "traceparent": "00-da1d7a3ad593f1ae70761f72c48c984b-2905cd35d9ce2dbf-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3cae7111862512b58bbab237f75e17ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "private", - "Content-Length": "1883", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:13:21 GMT", + "Date": "Tue, 15 Nov 2022 13:31:02 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a302d12f-6b8e-4225-ad9e-73629d5be394", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10781", - "x-ms-request-id": "b26163e0-9a33-9ac6-2361-de15b11c4a1e", - "x-ms-routing-request-id": "WESTUS2:20220803T051322Z:a302d12f-6b8e-4225-ad9e-73629d5be394", + "x-ms-correlation-request-id": "196d6c58-78b8-4d1a-aed0-de1ded13b6e6", + "x-ms-ratelimit-remaining-subscription-resource-requests": "1994", + "x-ms-request-id": "3cae7111-8625-12b5-8bba-b237f75e17ae", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133103Z:196d6c58-78b8-4d1a-aed0-de1ded13b6e6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376", - "name": "profileName3376", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395", + "name": "profileName9395", "type": "Microsoft.Network/trafficManagerProfiles", "location": "global", "tags": {}, @@ -465,8 +463,8 @@ "profileStatus": "Enabled", "trafficRoutingMethod": "Priority", "dnsConfig": { - "relativeName": "profilename3376", - "fqdn": "profilename3376.trafficmanager.net", + "relativeName": "profilename9395", + "fqdn": "profilename9395.trafficmanager.net", "ttl": 0 }, "monitorConfig": { @@ -480,7 +478,7 @@ }, "endpoints": [ { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376/externalEndpoints/endpoint1", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395/externalEndpoints/endpoint1", "name": "endpoint1", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -493,11 +491,12 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } }, { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourcegroupname2974/providers/Microsoft.Network/trafficManagerProfiles/profileName3376/externalEndpoints/endpoint2", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourcegroupname8631/providers/Microsoft.Network/trafficManagerProfiles/profileName9395/externalEndpoints/endpoint2", "name": "endpoint2", "type": "Microsoft.Network/trafficManagerProfiles/externalEndpoints", "properties": { @@ -510,7 +509,8 @@ "endpointLocation": null, "minChildEndpoints": null, "minChildEndpointsIPv4": null, - "minChildEndpointsIPv6": null + "minChildEndpointsIPv6": null, + "alwaysServe": "Disabled" } } ], @@ -520,13 +520,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourceGroups/resourceGroupName2974/providers/Microsoft.Network/trafficmanagerprofiles/profileName3376?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourceGroups/resourceGroupName8631/providers/Microsoft.Network/trafficmanagerprofiles/profileName9395?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "3bcc4cce9592fcc3da07e03b260a1944", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "392a9a259215453298d8a1f7f0d29068", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -534,28 +534,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:13:23 GMT", + "Date": "Tue, 15 Nov 2022 13:31:08 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0828cf41-6953-494f-99c2-06888323d622", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "3bcc4cce-9592-fcc3-da07-e03b260a1944", - "x-ms-routing-request-id": "WESTUS2:20220803T051323Z:0828cf41-6953-494f-99c2-06888323d622", + "x-ms-correlation-request-id": "de39bc4a-33f1-4239-b4e7-d35501ba43d1", + "x-ms-ratelimit-remaining-subscription-resource-requests": "496", + "x-ms-request-id": "392a9a25-9215-4532-98d8-a1f7f0d29068", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133108Z:de39bc4a-33f1-4239-b4e7-d35501ba43d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/resourcegroups/resourceGroupName2974?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/resourcegroups/resourceGroupName8631?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8cb6ee9539c90c4d8a5c1a513d502f79-b5866d08e3756440-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "3ca247a0bbbd448e8d0d28a8647e9d06", + "traceparent": "00-6f4f9bdcaa4a11c7658ee579cb0ea97c-a5f91e5a1de09d15-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4cfb564717ef87716f1c135b7dd5ec8e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -563,28 +563,28 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:13:23 GMT", + "Date": "Tue, 15 Nov 2022 13:31:10 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5NzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg2MzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9836b5a4-7d17-41e3-bf9d-85839ea70d96", - "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-request-id": "9836b5a4-7d17-41e3-bf9d-85839ea70d96", - "x-ms-routing-request-id": "WESTUS2:20220803T051324Z:9836b5a4-7d17-41e3-bf9d-85839ea70d96" + "x-ms-correlation-request-id": "94689524-987f-44a7-823d-0aa7a7a9e245", + "x-ms-ratelimit-remaining-subscription-deletes": "14979", + "x-ms-request-id": "94689524-987f-44a7-823d-0aa7a7a9e245", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133111Z:94689524-987f-44a7-823d-0aa7a7a9e245" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5NzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg2MzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8cb6ee9539c90c4d8a5c1a513d502f79-9d035ef58aae9b49-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "6a7499470e7a1360bd88ad856d1b985b", + "traceparent": "00-6f4f9bdcaa4a11c7658ee579cb0ea97c-c5833b22d945f86b-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a1ef4a29ca620ebf29a3c9f87ed7c8c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -592,28 +592,144 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:13:23 GMT", + "Date": "Tue, 15 Nov 2022 13:31:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5NzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg2MzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1f14e1c-5da3-4614-8a3e-23906df30b89", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "a1f14e1c-5da3-4614-8a3e-23906df30b89", - "x-ms-routing-request-id": "WESTUS2:20220803T051324Z:a1f14e1c-5da3-4614-8a3e-23906df30b89" + "x-ms-correlation-request-id": "7c200265-fd07-4685-8b38-0fbe3ad21a56", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "7c200265-fd07-4685-8b38-0fbe3ad21a56", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133111Z:7c200265-fd07-4685-8b38-0fbe3ad21a56" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTI5NzQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg2MzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8cb6ee9539c90c4d8a5c1a513d502f79-21b42d79d07c294c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0ba5da69942c2c87ad569c58e2618a02", + "traceparent": "00-6f4f9bdcaa4a11c7658ee579cb0ea97c-c2cf8e0336758628-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "b68312ecf74fc5dcd07c0e867324a1b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:31:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg2MzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8d9e5541-d608-4233-a44b-2540c9cfe551", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "8d9e5541-d608-4233-a44b-2540c9cfe551", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133127Z:8d9e5541-d608-4233-a44b-2540c9cfe551" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg2MzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6f4f9bdcaa4a11c7658ee579cb0ea97c-6f76956724c98db1-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "33315bfa4ae5aa2c7a746fe8b88c0067", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:31:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg2MzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "72942676-62e3-47e1-9438-911caa9c129f", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "72942676-62e3-47e1-9438-911caa9c129f", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133142Z:72942676-62e3-47e1-9438-911caa9c129f" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg2MzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6f4f9bdcaa4a11c7658ee579cb0ea97c-c12ff9f5a4e7b2f4-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d360e0a06b3a31696d29d1e6bb389a04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:31:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg2MzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "573555a5-2a40-44b0-a4fb-0266bee0ff71", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "573555a5-2a40-44b0-a4fb-0266bee0ff71", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133158Z:573555a5-2a40-44b0-a4fb-0266bee0ff71" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg2MzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6f4f9bdcaa4a11c7658ee579cb0ea97c-e7db9ec86d34a445-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "23fe170194a5a1dde6d93bda87f40d43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 15 Nov 2022 13:32:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg2MzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "Pragma": "no-cache", + "Retry-After": "15", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "054d21bc-529e-4181-a4cd-c2bb463da6e0", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "054d21bc-529e-4181-a4cd-c2bb463da6e0", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133213Z:054d21bc-529e-4181-a4cd-c2bb463da6e0" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQTkFNRTg2MzEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2021-04-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-6f4f9bdcaa4a11c7658ee579cb0ea97c-ec6528a2d8403759-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "93e6a77bcec38e77f100c6bb7845ee42", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -621,23 +737,23 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:13:38 GMT", + "Date": "Tue, 15 Nov 2022 13:32:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8fe5ead-8b44-4c86-b164-b043630c4644", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "f8fe5ead-8b44-4c86-b164-b043630c4644", - "x-ms-routing-request-id": "WESTUS2:20220803T051339Z:f8fe5ead-8b44-4c86-b164-b043630c4644" + "x-ms-correlation-request-id": "67747b7a-c4d4-4fb6-9320-5a86dd0b2585", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "67747b7a-c4d4-4fb6-9320-5a86dd0b2585", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133229Z:67747b7a-c4d4-4fb6-9320-5a86dd0b2585" }, "ResponseBody": null } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1620454269", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "57942453", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/TrafficManagerGeographicHierarchyTests/GetTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/TrafficManagerGeographicHierarchyTests/GetTest.json index 3fc760386ec4..8831c12fe209 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/TrafficManagerGeographicHierarchyTests/GetTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/TrafficManagerGeographicHierarchyTests/GetTest.json @@ -1,15 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/providers/Microsoft.Network/trafficManagerGeographicHierarchies/default?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/providers/Microsoft.Network/trafficManagerGeographicHierarchies/default?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Connection": "keep-alive", - "traceparent": "00-899e8e52bc92a44087cebfdd5ab5b6aa-1ece816e9049f149-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "698d5c735682f61a9fd0618a2fec1562", + "traceparent": "00-993b5afd2b18180d83e3a07486170dad-6f05c3fa737b1647-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f1a81b958e8e8bf662a89fa48be7a88d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -18,15 +17,15 @@ "Cache-Control": "private", "Content-Length": "16124", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:17:17 GMT", + "Date": "Tue, 15 Nov 2022 13:32:29 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abb16cab-36ba-42de-9660-2955a73d2a1a", - "x-ms-ratelimit-remaining-tenant-reads": "11999", - "x-ms-request-id": "698d5c73-5682-f61a-9fd0-618a2fec1562", - "x-ms-routing-request-id": "WESTUS2:20220803T051717Z:abb16cab-36ba-42de-9660-2955a73d2a1a", + "x-ms-correlation-request-id": "2b75f553-1284-4b7f-b413-9d4e0efdc768", + "x-ms-ratelimit-remaining-tenant-resource-requests": "99", + "x-ms-request-id": "f1a81b95-8e8e-8bf6-62a8-9fa48be7a88d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133230Z:2b75f553-1284-4b7f-b413-9d4e0efdc768", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1722,9 +1721,9 @@ } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "150038270", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1953093330", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/TrafficManagerGeographicHierarchyTests/GetTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/TrafficManagerGeographicHierarchyTests/GetTestAsync.json index 0e3167e0b866..949a85ab4280 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/TrafficManagerGeographicHierarchyTests/GetTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/TrafficManagerGeographicHierarchyTests/GetTestAsync.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/providers/Microsoft.Network/trafficManagerGeographicHierarchies/default?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/providers/Microsoft.Network/trafficManagerGeographicHierarchies/default?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5605d1bdb4a650479b0eafecb6d67255-9fa3c761827ed747-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "304d0b6b9e741cc58248e9e1eedb4dd5", + "traceparent": "00-f7e078d32aa6945feeb5612f0c9d4286-7981e1703d7c53be-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8448e9908f5c08c14c6fda8868c08f23", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,15 +17,15 @@ "Cache-Control": "private", "Content-Length": "16124", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:17:18 GMT", + "Date": "Tue, 15 Nov 2022 13:32:30 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "036af240-d42f-4fb4-8d86-146cbd9d3239", - "x-ms-ratelimit-remaining-tenant-reads": "11998", - "x-ms-request-id": "304d0b6b-9e74-1cc5-8248-e9e1eedb4dd5", - "x-ms-routing-request-id": "WESTUS2:20220803T051718Z:036af240-d42f-4fb4-8d86-146cbd9d3239", + "x-ms-correlation-request-id": "bb4732e9-c98d-4a1b-86d8-5c76a700c761", + "x-ms-ratelimit-remaining-tenant-resource-requests": "98", + "x-ms-request-id": "8448e990-8f5c-08c1-4c6f-da8868c08f23", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133230Z:bb4732e9-c98d-4a1b-86d8-5c76a700c761", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1721,9 +1721,9 @@ } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "374999733", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1944766541", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/CreateTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/CreateTest.json index 5deb8f5bfefb..5f88efe47a4a 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/CreateTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/CreateTest.json @@ -1,48 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Connection": "keep-alive", - "traceparent": "00-86c04bae429b474884204b33adf09b96-4c6387dd78558c40-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a5965192a8fd5ab1af4bcda983584083", + "traceparent": "00-9e7c7a4093079b71ce6e274a39aa2d4d-e65dc23aa5602a68-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ab2939acee9807ed29eef5bf097aefdf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:44 GMT", + "Date": "Tue, 15 Nov 2022 13:32:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b74f80ea-3af1-4cc3-8647-cf8ced7161a6", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "b74f80ea-3af1-4cc3-8647-cf8ced7161a6", - "x-ms-routing-request-id": "WESTUS2:20220803T051544Z:b74f80ea-3af1-4cc3-8647-cf8ced7161a6" + "x-ms-correlation-request-id": "3e651a14-8ddb-497c-a6f0-98acc7c097e4", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "3e651a14-8ddb-497c-a6f0-98acc7c097e4", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133231Z:3e651a14-8ddb-497c-a6f0-98acc7c097e4" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -52,14 +43,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6a5538b0ed568f4bbc56664dab2b8a01-25efdea9ff7d834c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "06e90b731c53ff42e5192e7546d7b3b4", + "traceparent": "00-f6990d1361b812c41ecaa2d349bd5e91-23e7729b972a1e9c-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8d6e07e8ea7f7e93f770029ed12f8c12", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -68,15 +59,15 @@ "Cache-Control": "private", "Content-Length": "276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:45 GMT", + "Date": "Tue, 15 Nov 2022 13:32:31 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71225118-a62f-454c-a7d3-1ff7c21a238c", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "06e90b73-1c53-ff42-e519-2e7546d7b3b4", - "x-ms-routing-request-id": "WESTUS2:20220803T051545Z:71225118-a62f-454c-a7d3-1ff7c21a238c", + "x-ms-correlation-request-id": "e82a2b62-75ca-471c-9794-1a1ea41c72d9", + "x-ms-ratelimit-remaining-subscription-resource-requests": "99", + "x-ms-request-id": "8d6e07e8-ea7f-7e93-f770-029ed12f8c12", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133231Z:e82a2b62-75ca-471c-9794-1a1ea41c72d9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -90,14 +81,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e1371d5dbf8fdd4b9664e039a2ed8516-ddffa58eb42a9c45-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "78daa26b0cf7e89cc380ea9aea24d6ff", + "traceparent": "00-3ced32b5c4c36482281261d4c67c4043-d1bd9b773044bd10-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "a1e5dff90346e6b46dacb960280287c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -105,28 +96,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:15:45 GMT", + "Date": "Tue, 15 Nov 2022 13:32:31 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3f6b806-538f-43dc-b8f8-c814a6925764", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "78daa26b-0cf7-e89c-c380-ea9aea24d6ff", - "x-ms-routing-request-id": "WESTUS2:20220803T051545Z:b3f6b806-538f-43dc-b8f8-c814a6925764", + "x-ms-correlation-request-id": "5337789e-a182-4120-a386-a7a04ae7f10c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "99", + "x-ms-request-id": "a1e5dff9-0346-e6b4-6dac-b960280287c3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133232Z:5337789e-a182-4120-a386-a7a04ae7f10c", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-21dc633341a26643bcb860018f9137b4-4e4b5a8659d83340-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "2c02ea6fa1f7760b0e96c0e4793b13d8", + "traceparent": "00-50dec5d1e4ed07e8d3a15013063ef4ef-33dee5129050547d-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "35ee6a5618e2c1faa5abb328eb4f35fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -135,15 +126,15 @@ "Cache-Control": "private", "Content-Length": "276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:45 GMT", + "Date": "Tue, 15 Nov 2022 13:32:32 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa80836f-1e6a-4618-83d4-98db03ebd62e", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "2c02ea6f-a1f7-760b-0e96-c0e4793b13d8", - "x-ms-routing-request-id": "WESTUS2:20220803T051545Z:aa80836f-1e6a-4618-83d4-98db03ebd62e", + "x-ms-correlation-request-id": "c6e97fb2-434f-44aa-8d64-518c2b5b022c", + "x-ms-ratelimit-remaining-subscription-resource-requests": "98", + "x-ms-request-id": "35ee6a56-18e2-c1fa-a5ab-b328eb4f35fa", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133232Z:c6e97fb2-434f-44aa-8d64-518c2b5b022c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -157,14 +148,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-038d65a0a3316d41ab215aa11f3f7205-17ae6f38b7388a4e-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e13d1997c77d678c6e0143d331a714c0", + "traceparent": "00-e9e14d7df011b350578117ef831dfdd7-3a6d4e52396738e5-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "29c5e3624d95e499538820d3313355f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -173,15 +164,15 @@ "Cache-Control": "private", "Content-Length": "276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:45 GMT", + "Date": "Tue, 15 Nov 2022 13:32:32 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d4ac0ba-a497-4ffb-8d21-bc113b2a03d5", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "e13d1997-c77d-678c-6e01-43d331a714c0", - "x-ms-routing-request-id": "WESTUS2:20220803T051546Z:9d4ac0ba-a497-4ffb-8d21-bc113b2a03d5", + "x-ms-correlation-request-id": "abb4c2b5-b1d0-4c64-b071-d17d206b7b4b", + "x-ms-ratelimit-remaining-subscription-resource-requests": "97", + "x-ms-request-id": "29c5e362-4d95-e499-5388-20d3313355f5", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133232Z:abb4c2b5-b1d0-4c64-b071-d17d206b7b4b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -195,15 +186,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "0", - "traceparent": "00-293fe07077985d499cb21311736d8514-711137ecb34bac4c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "5b062f4286d5c9bd976469614cb86e87", + "traceparent": "00-59b949ad5ff295c4e66033a81e92b222-d617796b21424240-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "66483ee95641e030e423fc9b4f8bfa1d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -212,15 +203,15 @@ "Cache-Control": "private", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:46 GMT", + "Date": "Tue, 15 Nov 2022 13:32:32 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c803eeb0-7642-47ef-a9dd-4fc9773fcdf7", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10799", - "x-ms-request-id": "5b062f42-86d5-c9bd-9764-69614cb86e87", - "x-ms-routing-request-id": "WESTUS2:20220803T051546Z:c803eeb0-7642-47ef-a9dd-4fc9773fcdf7", + "x-ms-correlation-request-id": "c19e954c-b198-4fb9-af25-99abd4bd71eb", + "x-ms-ratelimit-remaining-subscription-resource-requests": "99", + "x-ms-request-id": "66483ee9-5641-e030-e423-fc9b4f8bfa1d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133233Z:c19e954c-b198-4fb9-af25-99abd4bd71eb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -229,19 +220,19 @@ "name": "default", "type": "Microsoft.Network/trafficManagerUserMetricsKeys", "properties": { - "key": "5ee57e7cbb50e881bfec25d3ffe9dd6c" + "key": "20188325b5070b46bbeb8eec5eb61106" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5b96d79c33506c4c9c6c6fc11ac4e85e-68bfce3962f96045-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "d103126df5e6a8815e9abef55e384467", + "traceparent": "00-04f031f7997540df79f1748d23f6099d-bc0697412abf13b4-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "45fdbf765d3c082ed109e25af8279071", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -250,15 +241,15 @@ "Cache-Control": "private", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:46 GMT", + "Date": "Tue, 15 Nov 2022 13:32:33 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6353721-c87e-43b4-ab7b-3523204888b0", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "d103126d-f5e6-a881-5e9a-bef55e384467", - "x-ms-routing-request-id": "WESTUS2:20220803T051546Z:a6353721-c87e-43b4-ab7b-3523204888b0", + "x-ms-correlation-request-id": "0e785736-94f7-4e83-8ec2-206dfa2499d2", + "x-ms-ratelimit-remaining-subscription-resource-requests": "96", + "x-ms-request-id": "45fdbf76-5d3c-082e-d109-e25af8279071", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133233Z:0e785736-94f7-4e83-8ec2-206dfa2499d2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -267,15 +258,15 @@ "name": "default", "type": "Microsoft.Network/trafficManagerUserMetricsKeys", "properties": { - "key": "5ee57e7cbb50e881bfec25d3ffe9dd6c" + "key": "20188325b5070b46bbeb8eec5eb61106" } } } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1189310424", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1074787248", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/CreateTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/CreateTestAsync.json index 27245568f347..a30a01979d67 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/CreateTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/CreateTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-86dfee176f778d49bd1ab6ee5da86a9c-9a894b71bdd2ef4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "b55df9fec4167777e5a4249a2e2098ab", + "traceparent": "00-d14accc8d27e6a8a20095599e5f47023-4ffca3aa9c1ca10a-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6afe67437cb590acd081bf8f5913dcb4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:48 GMT", + "Date": "Tue, 15 Nov 2022 13:32:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "37e38052-d1fb-49b2-9acb-1ca39150995b", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "37e38052-d1fb-49b2-9acb-1ca39150995b", - "x-ms-routing-request-id": "WESTUS2:20220803T051548Z:37e38052-d1fb-49b2-9acb-1ca39150995b" + "x-ms-correlation-request-id": "1c00ecec-fb03-4732-bfa9-e53b1b27bbe3", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "1c00ecec-fb03-4732-bfa9-e53b1b27bbe3", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133237Z:1c00ecec-fb03-4732-bfa9-e53b1b27bbe3" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,14 +43,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4637ca6c93ad384abe7b88320881098c-9150e940771eab44-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "62bb84e77d605933619190fa49b7cc27", + "traceparent": "00-3474698a3f6d0f615b8be4b11d2db48f-38d5aa7c06e06e26-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "aa00127ac050ea58fc27c06efc11aeba", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -67,15 +59,15 @@ "Cache-Control": "private", "Content-Length": "276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:48 GMT", + "Date": "Tue, 15 Nov 2022 13:32:36 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c54b4a03-5486-49f6-a9a4-b783bc1b9684", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10791", - "x-ms-request-id": "62bb84e7-7d60-5933-6191-90fa49b7cc27", - "x-ms-routing-request-id": "WESTUS2:20220803T051548Z:c54b4a03-5486-49f6-a9a4-b783bc1b9684", + "x-ms-correlation-request-id": "c6cd7341-be8b-4d35-bb03-cbe97576efb7", + "x-ms-ratelimit-remaining-subscription-resource-requests": "91", + "x-ms-request-id": "aa00127a-c050-ea58-fc27-c06efc11aeba", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133237Z:c6cd7341-be8b-4d35-bb03-cbe97576efb7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -89,14 +81,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-91854bf0359d224c821240b3ab216127-6c85b64ec6b87441-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e99a81bdca3d5f4ad648af2626761aef", + "traceparent": "00-3a761d5a9ed2562aeb305d24d09d2119-56e92f19d973d23d-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "d0a332ccb9d773e53676fbeecd408d57", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -104,28 +96,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:15:48 GMT", + "Date": "Tue, 15 Nov 2022 13:32:38 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c2556e7-3049-403a-9881-3c9f35b3e3d4", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "e99a81bd-ca3d-5f4a-d648-af2626761aef", - "x-ms-routing-request-id": "WESTUS2:20220803T051548Z:3c2556e7-3049-403a-9881-3c9f35b3e3d4", + "x-ms-correlation-request-id": "c0cf336d-7044-43f7-a6f0-39d6606dc9ef", + "x-ms-ratelimit-remaining-subscription-resource-requests": "97", + "x-ms-request-id": "d0a332cc-b9d7-73e5-3676-fbeecd408d57", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133238Z:c0cf336d-7044-43f7-a6f0-39d6606dc9ef", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8aca60a96f5e9e4f9e4d6001c4becbec-3efb4ddf3796b64c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "e7143f7f6e2e80e4c5045484337d2e2e", + "traceparent": "00-ddab516ac0de0ce3c640c9d5f25a3aef-c6e274c6de97824a-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "2b75d6702f3182d30f146d8ebc3d94be", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -134,15 +126,15 @@ "Cache-Control": "private", "Content-Length": "276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:48 GMT", + "Date": "Tue, 15 Nov 2022 13:32:38 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1fedf528-d3c2-4296-9d12-05d3cc40880e", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10790", - "x-ms-request-id": "e7143f7f-6e2e-80e4-c504-5484337d2e2e", - "x-ms-routing-request-id": "WESTUS2:20220803T051548Z:1fedf528-d3c2-4296-9d12-05d3cc40880e", + "x-ms-correlation-request-id": "0c363830-7037-40a4-9dfd-d19779c4f141", + "x-ms-ratelimit-remaining-subscription-resource-requests": "90", + "x-ms-request-id": "2b75d670-2f31-82d3-0f14-6d8ebc3d94be", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133238Z:0c363830-7037-40a4-9dfd-d19779c4f141", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -156,14 +148,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4305a56d87913b40b3504a6644a0820e-c79dfa1e1db6cf44-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "acddfdd8ae851d6e395c8c18ce0d32eb", + "traceparent": "00-7a5439666084c5fee0f17b1d637c2787-8a69520219baf061-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "26c204d20b70c0dd2c8c73dac5691cbb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -172,15 +164,15 @@ "Cache-Control": "private", "Content-Length": "276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:48 GMT", + "Date": "Tue, 15 Nov 2022 13:32:38 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f36821e6-762c-4853-8f07-7eb959b2d0ad", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10789", - "x-ms-request-id": "acddfdd8-ae85-1d6e-395c-8c18ce0d32eb", - "x-ms-routing-request-id": "WESTUS2:20220803T051549Z:f36821e6-762c-4853-8f07-7eb959b2d0ad", + "x-ms-correlation-request-id": "ac9d68ed-15b7-4535-a1cf-3652044e1daf", + "x-ms-ratelimit-remaining-subscription-resource-requests": "89", + "x-ms-request-id": "26c204d2-0b70-c0dd-2c8c-73dac5691cbb", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133239Z:ac9d68ed-15b7-4535-a1cf-3652044e1daf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -194,15 +186,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "0", - "traceparent": "00-ad60a9cea499434d85a6bcabd8124283-880c1c6d33486f46-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "0a7aa177e4a24ef89d19243875c62b59", + "traceparent": "00-2cdf352af87c8b1577c7f8220e229afb-2ac2b9d46fcb37f8-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "26fe689a839b9d895e20c1c24c57b6f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -211,15 +203,15 @@ "Cache-Control": "private", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:48 GMT", + "Date": "Tue, 15 Nov 2022 13:32:39 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b96ceb9b-146d-4417-8a73-b96784d599f3", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10797", - "x-ms-request-id": "0a7aa177-e4a2-4ef8-9d19-243875c62b59", - "x-ms-routing-request-id": "WESTUS2:20220803T051549Z:b96ceb9b-146d-4417-8a73-b96784d599f3", + "x-ms-correlation-request-id": "f39852aa-1dd9-4afc-9f7c-8a8a6c116275", + "x-ms-ratelimit-remaining-subscription-resource-requests": "97", + "x-ms-request-id": "26fe689a-839b-9d89-5e20-c1c24c57b6f9", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133239Z:f39852aa-1dd9-4afc-9f7c-8a8a6c116275", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -228,19 +220,19 @@ "name": "default", "type": "Microsoft.Network/trafficManagerUserMetricsKeys", "properties": { - "key": "ea2d8cbfc57a11e08f7c6684940c8b78" + "key": "8aa44901021f50b3988b4155991d8f92" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8519e9a287a6d143a5bf7d910841c1b9-fff553a313a7734b-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "284e80196e99d069d1f7aed2e2ccb2b8", + "traceparent": "00-a311c1b0526eb29a385b040f65683b7f-44f57f3dda949424-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c91b3ce2667e65e7f8b5fea4bbf9bda5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -249,15 +241,15 @@ "Cache-Control": "private", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:49 GMT", + "Date": "Tue, 15 Nov 2022 13:32:39 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2abaef7f-eeca-4842-b764-ee8e2bbb6884", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10788", - "x-ms-request-id": "284e8019-6e99-d069-d1f7-aed2e2ccb2b8", - "x-ms-routing-request-id": "WESTUS2:20220803T051549Z:2abaef7f-eeca-4842-b764-ee8e2bbb6884", + "x-ms-correlation-request-id": "dc17b50a-bac5-46ca-9ff8-35189c868055", + "x-ms-ratelimit-remaining-subscription-resource-requests": "88", + "x-ms-request-id": "c91b3ce2-667e-65e7-f8b5-fea4bbf9bda5", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133239Z:dc17b50a-bac5-46ca-9ff8-35189c868055", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -266,15 +258,15 @@ "name": "default", "type": "Microsoft.Network/trafficManagerUserMetricsKeys", "properties": { - "key": "ea2d8cbfc57a11e08f7c6684940c8b78" + "key": "8aa44901021f50b3988b4155991d8f92" } } } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1386244381", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1614325219", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteFailureTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteFailureTest.json index 156db2d838b6..16b3c4ae6838 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteFailureTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteFailureTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ed375d7be05b0e42adc457e0379f21ab-ed67f57345ce514e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "660ffb5f890bc78ac9f4b138624088f1", + "traceparent": "00-2ecd9839322edb2177b083edc5978b3b-ccb0eafa1e122de3-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "68f75572a633b6bae037ed841f8c9cdc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:46 GMT", + "Date": "Tue, 15 Nov 2022 13:32:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9be9a63d-67fb-44a4-a46c-0f7f722a9035", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "9be9a63d-67fb-44a4-a46c-0f7f722a9035", - "x-ms-routing-request-id": "WESTUS2:20220803T051546Z:9be9a63d-67fb-44a4-a46c-0f7f722a9035" + "x-ms-correlation-request-id": "876cd83f-422a-4b45-b765-6ee33fac9f1d", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "876cd83f-422a-4b45-b765-6ee33fac9f1d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133234Z:876cd83f-422a-4b45-b765-6ee33fac9f1d" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,14 +43,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/5941c11c-485a-4a27-a87f-db38d642b886/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/5941c11c-485a-4a27-a87f-db38d642b886/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b02c92dc8c56834f89b46650f002466c-bdc68acb4f749c4c-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c66666c3296589f0fcfa0c264ba955b5", + "traceparent": "00-b2e2f717b0323e184a47a0d6688877cc-bb2be12d36628db8-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1a9f458770dbc489dc71d2cdd3cb4392", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -67,15 +59,15 @@ "Cache-Control": "no-cache", "Content-Length": "129", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:46 GMT", + "Date": "Tue, 15 Nov 2022 13:32:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75c4d050-65d3-40e4-9c5c-c15bfb810a26", + "x-ms-correlation-request-id": "94343e76-e52c-42c3-898d-6e9ca51c0203", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "75c4d050-65d3-40e4-9c5c-c15bfb810a26", - "x-ms-routing-request-id": "WESTUS2:20220803T051547Z:75c4d050-65d3-40e4-9c5c-c15bfb810a26" + "x-ms-request-id": "94343e76-e52c-42c3-898d-6e9ca51c0203", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133234Z:94343e76-e52c-42c3-898d-6e9ca51c0203" }, "ResponseBody": { "error": { @@ -86,9 +78,9 @@ } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "322970844", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1060385861", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteFailureTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteFailureTestAsync.json index 9efe7b419759..f30ac77bd7da 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteFailureTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteFailureTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7ef36132ba6a42409ff0f142cd502c1e-26cc098f692c0642-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ef236e89f9be4e856e059401290e349c", + "traceparent": "00-0ba44f857b0edecabf39a914ac8d9a84-59d74266a19bfa56-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "1810e6be38374956ae707b0c3d17cd3d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:49 GMT", + "Date": "Tue, 15 Nov 2022 13:32:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b29b0a7-c263-4f1c-bc7b-72de54cca4cc", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "6b29b0a7-c263-4f1c-bc7b-72de54cca4cc", - "x-ms-routing-request-id": "WESTUS2:20220803T051549Z:6b29b0a7-c263-4f1c-bc7b-72de54cca4cc" + "x-ms-correlation-request-id": "5c072336-1e84-4da3-9801-b784246305b4", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "5c072336-1e84-4da3-9801-b784246305b4", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133240Z:5c072336-1e84-4da3-9801-b784246305b4" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,14 +43,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/5941c11c-485a-4a27-a87f-db38d642b886/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/5941c11c-485a-4a27-a87f-db38d642b886/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-dfbde5354b920d4fb71b09a84923e7c9-d1a472fd60e0ea45-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "f86bcd457693e1a9589fa486c0b829e3", + "traceparent": "00-23231a3126f96fe0ac7e8c5ad174b073-e783c4df931cb896-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "8c5acfa5467b1f07c43787dbf9c6d0ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -67,15 +59,15 @@ "Cache-Control": "no-cache", "Content-Length": "129", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:49 GMT", + "Date": "Tue, 15 Nov 2022 13:32:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9919bf7c-e615-45ef-929c-9c885fafb36f", + "x-ms-correlation-request-id": "e380b824-b886-479f-b4d5-ec0cefc20b79", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "9919bf7c-e615-45ef-929c-9c885fafb36f", - "x-ms-routing-request-id": "WESTUS2:20220803T051549Z:9919bf7c-e615-45ef-929c-9c885fafb36f" + "x-ms-request-id": "e380b824-b886-479f-b4d5-ec0cefc20b79", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133240Z:e380b824-b886-479f-b4d5-ec0cefc20b79" }, "ResponseBody": { "error": { @@ -86,9 +78,9 @@ } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1760956002", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "229693415", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteTest.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteTest.json index 4a0cace8f19c..71e9eae3eec1 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteTest.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteTest.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4fbfcb00059c324b8fc294b1ab167854-e497f03a41d56947-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "1540ed787335c0f973463002eee3694d", + "traceparent": "00-d20bba2dc33e5eaeab96ec9870236ab4-6530a8878cac8ea7-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "497e4eed31fd88944db3960b4825290f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:47 GMT", + "Date": "Tue, 15 Nov 2022 13:32:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abc8c682-88a5-41a7-8678-47495247715c", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "abc8c682-88a5-41a7-8678-47495247715c", - "x-ms-routing-request-id": "WESTUS2:20220803T051547Z:abc8c682-88a5-41a7-8678-47495247715c" + "x-ms-correlation-request-id": "53339a6d-efd8-4402-89c7-a704d9b2aba1", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "53339a6d-efd8-4402-89c7-a704d9b2aba1", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133234Z:53339a6d-efd8-4402-89c7-a704d9b2aba1" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,14 +43,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-27b1263ea448ca44bfff850f6dbd6fbe-2b22baaa0eed4f42-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "070a71fb3a65837f81f1ee5399ec982b", + "traceparent": "00-0dd2e74344ce09f74d9c04aa8453ae2c-11232e3256a594a5-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "c458d3306855a19ec0f6a17123a288a6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -67,15 +59,15 @@ "Cache-Control": "private", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:47 GMT", + "Date": "Tue, 15 Nov 2022 13:32:34 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "498955a0-6870-4303-960c-9598c2be5b29", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10795", - "x-ms-request-id": "070a71fb-3a65-837f-81f1-ee5399ec982b", - "x-ms-routing-request-id": "WESTUS2:20220803T051547Z:498955a0-6870-4303-960c-9598c2be5b29", + "x-ms-correlation-request-id": "758a7aed-d1a1-4ccb-b236-feaee7cef2ac", + "x-ms-ratelimit-remaining-subscription-resource-requests": "95", + "x-ms-request-id": "c458d330-6855-a19e-c0f6-a17123a288a6", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133234Z:758a7aed-d1a1-4ccb-b236-feaee7cef2ac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -84,20 +76,20 @@ "name": "default", "type": "Microsoft.Network/trafficManagerUserMetricsKeys", "properties": { - "key": "5ee57e7cbb50e881bfec25d3ffe9dd6c" + "key": "20188325b5070b46bbeb8eec5eb61106" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "0", - "traceparent": "00-2b080e2694babe489ae779d79595354b-7640c52246668546-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "fbb1291b3d34a5c42f6f57d5421cd88c", + "traceparent": "00-bc0a0a818f7ecd6df83033e05a273b79-51a29ada6b4a10e5-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4b16db9d559057bfffdbc3acf5ec2aa8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -106,15 +98,15 @@ "Cache-Control": "private", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:47 GMT", + "Date": "Tue, 15 Nov 2022 13:32:34 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e864358-4e93-4368-b6a2-ecc8b0fb5288", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "fbb1291b-3d34-a5c4-2f6f-57d5421cd88c", - "x-ms-routing-request-id": "WESTUS2:20220803T051547Z:5e864358-4e93-4368-b6a2-ecc8b0fb5288", + "x-ms-correlation-request-id": "36ac1469-2b80-4d6e-a1f6-dad244d6c968", + "x-ms-ratelimit-remaining-subscription-resource-requests": "98", + "x-ms-request-id": "4b16db9d-5590-57bf-ffdb-c3acf5ec2aa8", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133235Z:36ac1469-2b80-4d6e-a1f6-dad244d6c968", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -123,19 +115,19 @@ "name": "default", "type": "Microsoft.Network/trafficManagerUserMetricsKeys", "properties": { - "key": "7ff08b2531c7bebab6d9b8a027d1493a" + "key": "eafc178f650d44e4921e9c19b838c570" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5e50ddca37cbc444ac78f9f093f96057-8c299e2b6cd7764f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c068ecd21cd93d556dbd934484a62787", + "traceparent": "00-51be79faf8dfe9d8b3a727deea46835c-2d66bb31c390129f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4194db0c37a28498afdc88078f2365aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -144,15 +136,15 @@ "Cache-Control": "private", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:47 GMT", + "Date": "Tue, 15 Nov 2022 13:32:35 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa6096c1-341c-4c82-bece-2ffcd71bd420", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10794", - "x-ms-request-id": "c068ecd2-1cd9-3d55-6dbd-934484a62787", - "x-ms-routing-request-id": "WESTUS2:20220803T051547Z:aa6096c1-341c-4c82-bece-2ffcd71bd420", + "x-ms-correlation-request-id": "1e23b0f6-eb9f-43a3-9124-3cf80fcd4ec2", + "x-ms-ratelimit-remaining-subscription-resource-requests": "94", + "x-ms-request-id": "4194db0c-37a2-8498-afdc-88078f2365aa", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133235Z:1e23b0f6-eb9f-43a3-9124-3cf80fcd4ec2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -161,19 +153,19 @@ "name": "default", "type": "Microsoft.Network/trafficManagerUserMetricsKeys", "properties": { - "key": "7ff08b2531c7bebab6d9b8a027d1493a" + "key": "eafc178f650d44e4921e9c19b838c570" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f2ca8340c6e635489f254c2dae68b550-38a504bcab75ca43-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "c4e705ae6d32be18ad65d8f6e3aa4164", + "traceparent": "00-70cf08ae86de1c95fd486bc7fc250dce-0296bcbbe8e7746d-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "6c6df02bdd0fdb7e1401c579a5f1acd4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -182,15 +174,15 @@ "Cache-Control": "private", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:47 GMT", + "Date": "Tue, 15 Nov 2022 13:32:35 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bbe7d6ae-afd3-4e26-8d56-db8e7b497795", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10793", - "x-ms-request-id": "c4e705ae-6d32-be18-ad65-d8f6e3aa4164", - "x-ms-routing-request-id": "WESTUS2:20220803T051548Z:bbe7d6ae-afd3-4e26-8d56-db8e7b497795", + "x-ms-correlation-request-id": "8c9a80f1-7d3d-4ebe-a127-2ff6ad60f811", + "x-ms-ratelimit-remaining-subscription-resource-requests": "93", + "x-ms-request-id": "6c6df02b-dd0f-db7e-1401-c579a5f1acd4", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133236Z:8c9a80f1-7d3d-4ebe-a127-2ff6ad60f811", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -199,19 +191,19 @@ "name": "default", "type": "Microsoft.Network/trafficManagerUserMetricsKeys", "properties": { - "key": "7ff08b2531c7bebab6d9b8a027d1493a" + "key": "eafc178f650d44e4921e9c19b838c570" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3f57245e874c63499600389ee7d84e78-ff21448575d14d42-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ac806218d784fe52d3738e77aa7f2089", + "traceparent": "00-642fb32750012db849504614c6b4baf1-cf52b00e7f6081af-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "4764f8cc460e650343919cb4ccb8c7dc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -219,28 +211,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:15:47 GMT", + "Date": "Tue, 15 Nov 2022 13:32:35 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a7d5590f-e524-4786-bbe6-2b50658de5f9", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10798", - "x-ms-request-id": "ac806218-d784-fe52-d373-8e77aa7f2089", - "x-ms-routing-request-id": "WESTUS2:20220803T051548Z:a7d5590f-e524-4786-bbe6-2b50658de5f9", + "x-ms-correlation-request-id": "dda0cbe1-0fa4-408c-b62c-8b6e4242bcff", + "x-ms-ratelimit-remaining-subscription-resource-requests": "98", + "x-ms-request-id": "4764f8cc-460e-6503-4391-9cb4ccb8c7dc", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133236Z:dda0cbe1-0fa4-408c-b62c-8b6e4242bcff", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-98b574c7cc4dcd4487bcc9dbe5e2bde0-1e1288d17e36a841-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "3c26d0481335645ad3aa1373445f5ac3", + "traceparent": "00-d330bfb5d038051beedd2d063b23fb28-3254c310c6e14284-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "04811876bd7e2f985db92da1721edebe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -249,15 +241,15 @@ "Cache-Control": "private", "Content-Length": "276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:48 GMT", + "Date": "Tue, 15 Nov 2022 13:32:36 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af3bcd49-0af4-4403-a442-529182e70145", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10792", - "x-ms-request-id": "3c26d048-1335-645a-d3aa-1373445f5ac3", - "x-ms-routing-request-id": "WESTUS2:20220803T051548Z:af3bcd49-0af4-4403-a442-529182e70145", + "x-ms-correlation-request-id": "5aa67fc2-66e8-4704-998f-a757d721414b", + "x-ms-ratelimit-remaining-subscription-resource-requests": "92", + "x-ms-request-id": "04811876-bd7e-2f98-5db9-2da1721edebe", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133236Z:5aa67fc2-66e8-4704-998f-a757d721414b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -272,9 +264,9 @@ } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1969332442", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "2017114923", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteTestAsync.json b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteTestAsync.json index d4a377ec93d2..b60810a88a4f 100644 --- a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteTestAsync.json +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/tests/SessionRecords/UserMetricsModelTests/DeleteTestAsync.json @@ -1,47 +1,39 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-82412d13f52b104ab9f442c9166cbc97-a8935c05f8bfe949-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "1361590125044bb6620fff6e490b5ac5", + "traceparent": "00-7963d04b109d81dbbec5075449139e4c-6274e2d0c1fe34ae-00", + "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3017472e8a8ac116dd95c3f133e46506", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "541", + "Content-Length": "436", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:49 GMT", + "Date": "Tue, 15 Nov 2022 13:32:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9e7c09a-ce4d-41c7-9935-865cf42d810a", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "f9e7c09a-ce4d-41c7-9935-865cf42d810a", - "x-ms-routing-request-id": "WESTUS2:20220803T051550Z:f9e7c09a-ce4d-41c7-9935-865cf42d810a" + "x-ms-correlation-request-id": "4716eff7-7085-49f7-a902-626af0c780a7", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "4716eff7-7085-49f7-a902-626af0c780a7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133240Z:4716eff7-7085-49f7-a902-626af0c780a7" }, "ResponseBody": { - "id": "/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327", + "id": "/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065", "authorizationSource": "RoleBased", - "managedByTenants": [ - { - "tenantId": "2f4a9838-26b7-47ee-be60-ccc1fdec5953" - } - ], - "tags": { - "NRMS12581055": "20220228", - "NRMSBreakGlassNonHighRisk ": "NRMSBreakGlassNonHighRisk " - }, - "subscriptionId": "fb9e7fe1-af44-47ef-852d-2d086a069327", + "managedByTenants": [], + "subscriptionId": "6bb9d374-1f0d-437e-8bbe-4bc892850065", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "GenevaMetrics_Int", + "displayName": "Azure DNS Managed Resolver (Test) (Monitoring) (Shoebox)", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -51,14 +43,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-787178d862908f4490b3247792a89ea2-fb8b2c764e28234f-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "757741d016fd1e50e02240cab2ad6de9", + "traceparent": "00-1b26d881eff8ed5dad9d7827354f7581-00b14da4c8b66f57-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "3b4d74997cca6db24db01fde5ed6e9ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -67,15 +59,15 @@ "Cache-Control": "private", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:50 GMT", + "Date": "Tue, 15 Nov 2022 13:32:40 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a809131-9ecf-4eae-bf52-8045d59517b7", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10787", - "x-ms-request-id": "757741d0-16fd-1e50-e022-40cab2ad6de9", - "x-ms-routing-request-id": "WESTUS2:20220803T051550Z:0a809131-9ecf-4eae-bf52-8045d59517b7", + "x-ms-correlation-request-id": "cfbf5860-014a-4048-822a-2660fc3583ab", + "x-ms-ratelimit-remaining-subscription-resource-requests": "87", + "x-ms-request-id": "3b4d7499-7cca-6db2-4db0-1fde5ed6e9ca", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133240Z:cfbf5860-014a-4048-822a-2660fc3583ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -84,20 +76,20 @@ "name": "default", "type": "Microsoft.Network/trafficManagerUserMetricsKeys", "properties": { - "key": "ea2d8cbfc57a11e08f7c6684940c8b78" + "key": "8aa44901021f50b3988b4155991d8f92" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "0", - "traceparent": "00-b373e2c854e61a40ad6ec3ea22914323-a0cb22e32ab8b640-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "ee7ca5ff96bedb81dbb747611f5cda80", + "traceparent": "00-fadca386bf99d3ecc5be4a61d4dd3d27-eeec29abc0378a28-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "f155562d122ad058aa7d62f46b3f39e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -106,15 +98,15 @@ "Cache-Control": "private", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:50 GMT", + "Date": "Tue, 15 Nov 2022 13:32:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2efe4865-5f63-4737-a480-199276e8022a", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "ee7ca5ff-96be-db81-dbb7-47611f5cda80", - "x-ms-routing-request-id": "WESTUS2:20220803T051550Z:2efe4865-5f63-4737-a480-199276e8022a", + "x-ms-correlation-request-id": "552a8da3-9994-4913-b1bc-e09a3d2e3afd", + "x-ms-ratelimit-remaining-subscription-resource-requests": "96", + "x-ms-request-id": "f155562d-122a-d058-aa7d-62f46b3f39e1", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133241Z:552a8da3-9994-4913-b1bc-e09a3d2e3afd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -123,19 +115,19 @@ "name": "default", "type": "Microsoft.Network/trafficManagerUserMetricsKeys", "properties": { - "key": "23bcf93f71b508f2bfa30ef5a9af15ff" + "key": "30c858e88c61c0bc820bd570b509f962" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b4415bb609e57f4b9414a95bf45519ab-dfa6d3d5ddffed41-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "cdc63ce22e69eb07084332e2e5eb99b4", + "traceparent": "00-0606ab111c8c7afd02c80a292794c276-d9432aa494c0e810-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "bf0d61d2a8adb22895aae2d96b376306", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -144,15 +136,15 @@ "Cache-Control": "private", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:50 GMT", + "Date": "Tue, 15 Nov 2022 13:32:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d9ef94a-e605-4055-b7e3-ec7baa138331", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10786", - "x-ms-request-id": "cdc63ce2-2e69-eb07-0843-32e2e5eb99b4", - "x-ms-routing-request-id": "WESTUS2:20220803T051550Z:2d9ef94a-e605-4055-b7e3-ec7baa138331", + "x-ms-correlation-request-id": "e9d72609-3abb-43be-8fb7-9dac49a9daff", + "x-ms-ratelimit-remaining-subscription-resource-requests": "86", + "x-ms-request-id": "bf0d61d2-a8ad-b228-95aa-e2d96b376306", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133241Z:e9d72609-3abb-43be-8fb7-9dac49a9daff", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -161,19 +153,19 @@ "name": "default", "type": "Microsoft.Network/trafficManagerUserMetricsKeys", "properties": { - "key": "23bcf93f71b508f2bfa30ef5a9af15ff" + "key": "30c858e88c61c0bc820bd570b509f962" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7e4e704d09cefb4b800cba582c340b76-dd13d620564f854b-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "a36f15a26b8f3a06c09b9946ceefff84", + "traceparent": "00-518bc997fa48cb1c8db29897d17d5d6f-17f28a51b75bf4bf-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "ddc4f9ab748f86db1c7d914c19bd020d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -182,15 +174,15 @@ "Cache-Control": "private", "Content-Length": "308", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:50 GMT", + "Date": "Tue, 15 Nov 2022 13:32:41 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb2c568d-54fa-4c17-8a0c-00da50637192", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10785", - "x-ms-request-id": "a36f15a2-6b8f-3a06-c09b-9946ceefff84", - "x-ms-routing-request-id": "WESTUS2:20220803T051550Z:bb2c568d-54fa-4c17-8a0c-00da50637192", + "x-ms-correlation-request-id": "bbafbe9a-fa13-424b-af51-2946ba6dce75", + "x-ms-ratelimit-remaining-subscription-resource-requests": "85", + "x-ms-request-id": "ddc4f9ab-748f-86db-1c7d-914c19bd020d", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133242Z:bbafbe9a-fa13-424b-af51-2946ba6dce75", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -199,19 +191,19 @@ "name": "default", "type": "Microsoft.Network/trafficManagerUserMetricsKeys", "properties": { - "key": "23bcf93f71b508f2bfa30ef5a9af15ff" + "key": "30c858e88c61c0bc820bd570b509f962" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7d449c5956c0e54d8aaab81ab06240f6-a68f5c9410fbc141-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "76e7c0489fe7d0809e91e67b639ef6ef", + "traceparent": "00-6601d14b6c640c1e45b60acf8ce631f8-737d6b8b0a9dbddf-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "fd0c3e772ac8851c2da35c80307e6573", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -219,28 +211,28 @@ "ResponseHeaders": { "Cache-Control": "private", "Content-Length": "0", - "Date": "Wed, 03 Aug 2022 05:15:50 GMT", + "Date": "Tue, 15 Nov 2022 13:32:42 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71d0ee2c-25db-4154-8e42-db8300994eed", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10796", - "x-ms-request-id": "76e7c048-9fe7-d080-9e91-e67b639ef6ef", - "x-ms-routing-request-id": "WESTUS2:20220803T051550Z:71d0ee2c-25db-4154-8e42-db8300994eed", + "x-ms-correlation-request-id": "a48fee44-587f-4fbf-a9bc-42df8b412560", + "x-ms-ratelimit-remaining-subscription-resource-requests": "96", + "x-ms-request-id": "fd0c3e77-2ac8-851c-2da3-5c80307e6573", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133242Z:a48fee44-587f-4fbf-a9bc-42df8b412560", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/fb9e7fe1-af44-47ef-852d-2d086a069327/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2018-08-01", + "RequestUri": "https://management.azure.com/subscriptions/6bb9d374-1f0d-437e-8bbe-4bc892850065/providers/Microsoft.Network/trafficManagerUserMetricsKeys?api-version=2022-04-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e172f8e7187ee042ae7210fb336649c2-89c6e432abbac44e-00", - "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.0.0-alpha.20220802.1 (.NET Framework 4.8.9032.0; Microsoft Windows 10.0.22622 )", - "x-ms-client-request-id": "09bf931e36ec76f1358c0cce94c01d19", + "traceparent": "00-c65f9e13c995fe0f123ec31dc4261f63-64e523850c2dfa6f-00", + "User-Agent": "azsdk-net-ResourceManager.TrafficManager/1.1.0-alpha.20221115.1 (.NET 6.0.11; Microsoft Windows 10.0.19045)", + "x-ms-client-request-id": "71495b1a5b7a5d528587a23016dc98d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -249,15 +241,15 @@ "Cache-Control": "private", "Content-Length": "276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 03 Aug 2022 05:15:50 GMT", + "Date": "Tue, 15 Nov 2022 13:32:42 GMT", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66f3d6f5-b7f4-4d43-b334-3deb4ca9c7cc", - "x-ms-ratelimit-remaining-subscription-resource-requests": "10784", - "x-ms-request-id": "09bf931e-36ec-76f1-358c-0cce94c01d19", - "x-ms-routing-request-id": "WESTUS2:20220803T051551Z:66f3d6f5-b7f4-4d43-b334-3deb4ca9c7cc", + "x-ms-correlation-request-id": "89a31137-faa3-4f36-8e9b-969c81a554a7", + "x-ms-ratelimit-remaining-subscription-resource-requests": "84", + "x-ms-request-id": "71495b1a-5b7a-5d52-8587-a23016dc98d7", + "x-ms-routing-request-id": "JIOINDIACENTRAL:20221115T133243Z:89a31137-faa3-4f36-8e9b-969c81a554a7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -272,9 +264,9 @@ } ], "Variables": { - "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1447105707", + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com/", + "RandomSeed": "1221917881", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "fb9e7fe1-af44-47ef-852d-2d086a069327" + "SUBSCRIPTION_ID": "6bb9d374-1f0d-437e-8bbe-4bc892850065" } }